summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Frasch <simon.frasch@cscs.ch>2024-06-13 06:53:28 +0200
committerGitHub <noreply@github.com>2024-06-13 06:53:28 +0200
commit74210c7f469cf7d6ea72625b04817619c4cf657e (patch)
treeb9d4076b4efde8779ef1d7e2e9838b4c30f4a606
parenteff4451cdd2370c90e4d248cfc6756f494aa942c (diff)
downloadspack-74210c7f469cf7d6ea72625b04817619c4cf657e.tar.gz
spack-74210c7f469cf7d6ea72625b04817619c4cf657e.tar.bz2
spack-74210c7f469cf7d6ea72625b04817619c4cf657e.tar.xz
spack-74210c7f469cf7d6ea72625b04817619c4cf657e.zip
sirius: fix spla+openmp requirement (#44685)
-rw-r--r--var/spack/repos/builtin/packages/sirius/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/sirius/package.py b/var/spack/repos/builtin/packages/sirius/package.py
index 8259f358c3..39cb8b2cf9 100644
--- a/var/spack/repos/builtin/packages/sirius/package.py
+++ b/var/spack/repos/builtin/packages/sirius/package.py
@@ -155,7 +155,8 @@ class Sirius(CMakePackage, CudaPackage, ROCmPackage):
depends_on("spla@1.1.0:")
depends_on("spla+cuda", when="+cuda")
depends_on("spla+rocm", when="+rocm")
- depends_on("spla+openmp", when="+openmp")
+ # spla removed the openmp option in 1.6.0
+ conflicts("^spla@:1.5~openmp", when="+openmp")
depends_on("nlcglib", when="+nlcglib")
depends_on("nlcglib+rocm", when="+nlcglib+rocm")