summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnehring <7978778+snehring@users.noreply.github.com>2024-06-20 11:13:08 -0500
committerGitHub <noreply@github.com>2024-06-20 10:13:08 -0600
commite8670088192e5d7e324298e6ac73b21b1dc1fb4e (patch)
treed37d511b3b4b1e1d851bd937cb93b9240b686604
parent9910e06b25862f00d05820f85847ada68eb90105 (diff)
downloadspack-e8670088192e5d7e324298e6ac73b21b1dc1fb4e.tar.gz
spack-e8670088192e5d7e324298e6ac73b21b1dc1fb4e.tar.bz2
spack-e8670088192e5d7e324298e6ac73b21b1dc1fb4e.tar.xz
spack-e8670088192e5d7e324298e6ac73b21b1dc1fb4e.zip
votca: tighten up boost dep (#44777)
* votca: tighten up boost dep Signed-off-by: Shane Nehring <snehring@iastate.edu>
-rw-r--r--var/spack/repos/builtin/packages/votca/package.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/votca/package.py b/var/spack/repos/builtin/packages/votca/package.py
index e0edcfefc9..141d2141a3 100644
--- a/var/spack/repos/builtin/packages/votca/package.py
+++ b/var/spack/repos/builtin/packages/votca/package.py
@@ -39,7 +39,10 @@ class Votca(CMakePackage):
depends_on("expat")
depends_on("fftw-api@3")
depends_on("eigen@3.3:")
- depends_on("boost")
+ depends_on("boost+filesystem+system+regex+timer")
+ depends_on("boost@1.71:")
+ depends_on("boost@1.71:1.84", when="@=2024")
+ depends_on("boost@1.71:1.82", when="@:2023")
depends_on("mkl", when="+mkl")
depends_on("hdf5+cxx~mpi")
depends_on("gromacs~mpi@5.1:")