QMCPACK: add version 3.11.0 (#22978)

Additional changes:

* Boost dependency is only needed for build
* Make serial HDF5 the default
This commit is contained in:
Nichols A. Romero 2021-04-14 16:52:03 -05:00 committed by GitHub
parent 05ebe52643
commit c011e2156f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,7 @@ class Qmcpack(CMakePackage, CudaPackage):
# can occasionally change. # can occasionally change.
# NOTE: 12/19/2017 QMCPACK 3.0.0 does not build properly with Spack. # NOTE: 12/19/2017 QMCPACK 3.0.0 does not build properly with Spack.
version('develop') version('develop')
version('3.11.0', tag='v3.11.0')
version('3.10.0', tag='v3.10.0') version('3.10.0', tag='v3.10.0')
version('3.9.2', tag='v3.9.2') version('3.9.2', tag='v3.9.2')
version('3.9.1', tag='v3.9.1') version('3.9.1', tag='v3.9.1')
@ -41,7 +42,7 @@ class Qmcpack(CMakePackage, CudaPackage):
description='The build type to build', description='The build type to build',
values=('Debug', 'Release', 'RelWithDebInfo')) values=('Debug', 'Release', 'RelWithDebInfo'))
variant('mpi', default=True, description='Build with MPI support') variant('mpi', default=True, description='Build with MPI support')
variant('phdf5', default=True, description='Build with parallel collective I/O') variant('phdf5', default=False, description='Build with parallel collective I/O')
variant('complex', default=False, variant('complex', default=False,
description='Build the complex (general twist/k-point) version') description='Build the complex (general twist/k-point) version')
variant('mixed', default=False, variant('mixed', default=False,
@ -145,8 +146,8 @@ class Qmcpack(CMakePackage, CudaPackage):
depends_on('cmake@3.4.3:', when='@:3.5.0', type='build') depends_on('cmake@3.4.3:', when='@:3.5.0', type='build')
depends_on('cmake@3.6.0:', when='@3.6.0:', type='build') depends_on('cmake@3.6.0:', when='@3.6.0:', type='build')
depends_on('cmake@3.14.0:', when='@3.10.0:', type='build') depends_on('cmake@3.14.0:', when='@3.10.0:', type='build')
depends_on('boost') depends_on('boost', type='build')
depends_on('boost@1.61.0:', when='@3.6.0:') depends_on('boost@1.61.0:', when='@3.6.0:', type='build')
depends_on('libxml2') depends_on('libxml2')
depends_on('mpi', when='+mpi') depends_on('mpi', when='+mpi')
depends_on('python@3:', when='@3.9:') depends_on('python@3:', when='@3.9:')