diff options
author | fcannini <fcannini@gmail.com> | 2020-12-01 06:44:19 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 10:44:19 +0100 |
commit | 2530d53ac6fab106405c2bba1666685299dc16f3 (patch) | |
tree | ac6e2f4a4e28f35162e81ebf560221863ef0d335 | |
parent | e2033566bf79da12c32cd1807f02b2b9ae4a4e4f (diff) | |
download | spack-2530d53ac6fab106405c2bba1666685299dc16f3.tar.gz spack-2530d53ac6fab106405c2bba1666685299dc16f3.tar.bz2 spack-2530d53ac6fab106405c2bba1666685299dc16f3.tar.xz spack-2530d53ac6fab106405c2bba1666685299dc16f3.zip |
quantum-espresso: Enables build with Environ library. (#20131)
-rw-r--r-- | var/spack/repos/builtin/packages/quantum-espresso/package.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/quantum-espresso/package.py b/var/spack/repos/builtin/packages/quantum-espresso/package.py index d3fdbc2bb3..cff7c57ad4 100644 --- a/var/spack/repos/builtin/packages/quantum-espresso/package.py +++ b/var/spack/repos/builtin/packages/quantum-espresso/package.py @@ -30,6 +30,20 @@ class QuantumEspresso(Package): version('5.4', sha256='e3993fccae9cea04a5c6492e8b961a053a63727051cb5c4eb6008f62cda8f335') version('5.3', sha256='3b26038efb9e3f8ac7a2b950c31d8c29169a3556c0b68c299eb88a4be8dc9048') + resource(name='environ', + git='https://github.com/environ-developers/Environ.git', + tag='v1.1', + when='@6.3:6.4.99 +environ', + destination='.' + ) + + resource(name='environ', + git='https://github.com/environ-developers/Environ.git', + tag='v1.0', + when='@6.2.1:6.2.99 +environ', + destination='.' + ) + variant('mpi', default=True, description='Builds with mpi support') variant('openmp', default=False, description='Enables openMP support') variant('scalapack', default=True, description='Enables scalapack support') @@ -58,6 +72,11 @@ class QuantumEspresso(Package): variant('qmcpack', default=False, description='Build QE-to-QMCPACK wave function converter') + variant('environ', default=False, + description='Enables support for introducing environment effects ' + 'into atomistic first-principles simulations.' + 'See http://quantum-environ.org/about.html') + # Dependencies depends_on('blas') depends_on('lapack') @@ -179,6 +198,9 @@ class QuantumEspresso(Package): conflicts('@5.3:', when='%gcc@8 target=a64fx', msg='Internal compiler error with gcc8 and a64fx') + conflicts('@6.5:', when='+environ', + msg='6.4.x is the latest QE series supported by Environ') + # 6.4.1 patch_url = 'https://raw.githubusercontent.com/QMCPACK/qmcpack/develop/external_codes/quantum_espresso/add_pw2qmcpack_to_qe-6.4.1.diff' patch_checksum = '57cb1b06ee2653a87c3acc0dd4f09032fcf6ce6b8cbb9677ae9ceeb6a78f85e2' @@ -373,6 +395,19 @@ class QuantumEspresso(Package): else: make('all') + if '+environ' in spec: + addsonpatch = Executable('./install/addsonpatch.sh') + environpatch = Executable('./Environ/patches/environpatch.sh') + makedeps = Executable('./install/makedeps.sh') + + addsonpatch('Environ', 'Environ/src', 'Modules', '-patch') + + environpatch('-patch') + + makedeps() + + make('pw') + if 'platform=darwin' in spec: mkdirp(prefix.bin) install('bin/*.x', prefix.bin) |