diff options
author | t-nojiri <68096132+t-nojiri@users.noreply.github.com> | 2020-09-01 00:27:23 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 10:27:23 -0500 |
commit | b0a1a7e9aa1cfd36a521653e10901831f5afd136 (patch) | |
tree | d780ab98c7c1073c221b273510f1458352bcb71a | |
parent | 122a4719caf8c066aea18eb7276db8b8aea2f9b3 (diff) | |
download | spack-b0a1a7e9aa1cfd36a521653e10901831f5afd136.tar.gz spack-b0a1a7e9aa1cfd36a521653e10901831f5afd136.tar.bz2 spack-b0a1a7e9aa1cfd36a521653e10901831f5afd136.tar.xz spack-b0a1a7e9aa1cfd36a521653e10901831f5afd136.zip |
cp2k: Add depend on libxc@4.3.4. (#18346)
* cp2k: Add depend on libxc@4.3.4.
* cp2k: The fix of depend of libxc@4.3.4 was redone.
-rw-r--r-- | var/spack/repos/builtin/packages/cp2k/package.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/cp2k/package.py b/var/spack/repos/builtin/packages/cp2k/package.py index 1ea4d44640..814cb848e7 100644 --- a/var/spack/repos/builtin/packages/cp2k/package.py +++ b/var/spack/repos/builtin/packages/cp2k/package.py @@ -94,9 +94,9 @@ class Cp2k(MakefilePackage, CudaPackage): depends_on('libint@2.6.0:+fortran tune=cp2k-lmax-{0}'.format(lmax), when='+libint@7.0: lmax={0}'.format(lmax)) - depends_on('libxc@2.2.2:', when='+libxc@:5.5999', type='build') - depends_on('libxc@4.0.3:', when='+libxc@6.0:6.9', type='build') - depends_on('libxc@4.0.3:', when='+libxc@7.0:') + depends_on('libxc@2.2.2:3.99.0', when='+libxc@:5.5999', type='build') + depends_on('libxc@4.0.3:4.99.0', when='+libxc@6.0:6.9', type='build') + depends_on('libxc@4.0.3:4.99.0', when='+libxc@7.0:') depends_on('mpi@2:', when='+mpi') depends_on('scalapack', when='+mpi') |