damaris: bump version to 1.5.0, add variant examples (#26220)
This commit is contained in:
parent
bc6edc7baf
commit
aaf35fd520
1 changed files with 12 additions and 8 deletions
|
@ -1,20 +1,22 @@
|
|||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
||||
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Damaris(CMakePackage):
|
||||
"""Damaris is a middleware for I/O and in situ analytics
|
||||
"""Damaris is a middleware for asynchronous I/O and in situ analytics
|
||||
targeting large-scale, MPI-based HPC simulations."""
|
||||
|
||||
homepage = "https://project.inria.fr/damaris/"
|
||||
git = "https://gitlab.inria.fr/Damaris/damaris.git"
|
||||
maintainers = ['jcbowden']
|
||||
|
||||
version('master', branch='master')
|
||||
version('1.5.0', tag='v1.5.0')
|
||||
version('1.3.3', tag='v1.3.3')
|
||||
version('1.3.2', tag='v1.3.2')
|
||||
version('1.3.1', tag='v1.3.1')
|
||||
|
||||
variant('fortran', default=True, description='Enables Fortran support')
|
||||
|
@ -22,22 +24,21 @@ class Damaris(CMakePackage):
|
|||
variant('static', default=False, description='Builds a static version of the library')
|
||||
variant('catalyst', default=False, description='Enables the Catalyst visualization plugin')
|
||||
variant('visit', default=False, description='Enables the VisIt visualization plugin')
|
||||
variant('examples', default=False, description='Enables compilation and installation of the examples code')
|
||||
|
||||
depends_on('mpi')
|
||||
depends_on('cmake@3.12.0:', type=('build'))
|
||||
depends_on('cmake@3.18.0:', type=('build'))
|
||||
depends_on('boost +thread+log+filesystem+date_time @1.67:')
|
||||
depends_on('xsd')
|
||||
depends_on('xerces-c')
|
||||
depends_on('hdf5@1.8.20:', when='+hdf5')
|
||||
depends_on('catalyst+python', when='+catalyst')
|
||||
depends_on('paraview+python3', when='+catalyst')
|
||||
depends_on('visit+mpi', when='+visit')
|
||||
|
||||
def cmake_args(self):
|
||||
|
||||
args = []
|
||||
if(not self.spec.variants['static'].value):
|
||||
args.extend(['-DBUILD_SHARED_LIBS=ON'])
|
||||
|
||||
args.extend(['-DCMAKE_CXX_COMPILER=%s' % self.spec['mpi'].mpicxx])
|
||||
args.extend(['-DCMAKE_C_COMPILER=%s' % self.spec['mpi'].mpicc])
|
||||
args.extend(['-DBOOST_ROOT=%s' % self.spec['boost'].prefix])
|
||||
|
@ -58,6 +59,9 @@ def cmake_args(self):
|
|||
args.extend(['-DParaView_ROOT:PATH=%s'
|
||||
% self.spec['catalyst'].prefix])
|
||||
|
||||
if (self.spec.variants['examples'].value):
|
||||
args.extend(['-DENABLE_EXAMPLES:BOOL=ON'])
|
||||
|
||||
if (self.spec.variants['visit'].value):
|
||||
args.extend(['-DENABLE_VISIT:BOOL=ON'])
|
||||
args.extend(['-DVisIt_ROOT:PATH=%s' % self.spec['visit'].prefix])
|
||||
|
|
Loading…
Reference in a new issue