diff options
author | Thomas-Ulrich <ulrich@geophysik.uni-muenchen.de> | 2023-12-19 17:08:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 17:08:22 +0100 |
commit | a688479564ee33ae549c39631072d7b92918c8f0 (patch) | |
tree | 45aff792cad04293436d4bf6f8a4d59d78ac75e7 | |
parent | 5ead4c2d56b5fa934d96e157bc8ebc11817ffcb3 (diff) | |
download | spack-a688479564ee33ae549c39631072d7b92918c8f0.tar.gz spack-a688479564ee33ae549c39631072d7b92918c8f0.tar.bz2 spack-a688479564ee33ae549c39631072d7b92918c8f0.tar.xz spack-a688479564ee33ae549c39631072d7b92918c8f0.zip |
easi: specify better the impalajit dependency (#41637)
-rw-r--r-- | var/spack/repos/builtin/packages/easi/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/easi/package.py b/var/spack/repos/builtin/packages/easi/package.py index a6d8b3ae32..2e5908fc9c 100644 --- a/var/spack/repos/builtin/packages/easi/package.py +++ b/var/spack/repos/builtin/packages/easi/package.py @@ -14,7 +14,7 @@ class Easi(CMakePackage): homepage = "https://easyinit.readthedocs.io" git = "https://github.com/SeisSol/easi.git" - maintainers("ravil-mobile", "Thomas-Ulrich", "krenzland", "ThrudPrimrose") + maintainers("ravil-mobile", "Thomas-Ulrich", "krenzland", "ThrudPrimrose", "davschneller") version("develop", branch="master") version("1.2.0", tag="v1.2.0", commit="305a119338116a0ceac6b68b36841a50250d05b1") @@ -34,7 +34,7 @@ class Easi(CMakePackage): depends_on("impalajit@llvm-1.0.0", when="jit=impalajit-llvm") depends_on("lua@5.3.2", when="jit=lua") - depends_on("impalajit", when="jit=impalajit") + depends_on("impalajit@main", when="jit=impalajit") conflicts("jit=impalajit", when="jit=impalajit-llvm") conflicts("jit=impalajit-llvm", when="jit=impalajit") |