summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2023-03-21 08:13:27 +0100
committerGitHub <noreply@github.com>2023-03-21 03:13:27 -0400
commit9288ece826a92730d04eaeb3c7248895d06790e2 (patch)
tree24c1c625ad4c3d7f762dd4982100bcac7555bb1a
parent9b09d8bc49be2968e9863e8ee1bb2fcfbc176987 (diff)
downloadspack-9288ece826a92730d04eaeb3c7248895d06790e2.tar.gz
spack-9288ece826a92730d04eaeb3c7248895d06790e2.tar.bz2
spack-9288ece826a92730d04eaeb3c7248895d06790e2.tar.xz
spack-9288ece826a92730d04eaeb3c7248895d06790e2.zip
environment-modules: add main branch (#36268)
-rw-r--r--var/spack/repos/builtin/packages/environment-modules/package.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/environment-modules/package.py b/var/spack/repos/builtin/packages/environment-modules/package.py
index 2f8ca1cb16..90ab6ea3fd 100644
--- a/var/spack/repos/builtin/packages/environment-modules/package.py
+++ b/var/spack/repos/builtin/packages/environment-modules/package.py
@@ -14,9 +14,11 @@ class EnvironmentModules(Package):
homepage = "https://cea-hpc.github.io/modules/"
url = "https://github.com/cea-hpc/modules/releases/download/v5.2.0/modules-5.2.0.tar.gz"
+ git = "https://github.com/cea-hpc/modules.git"
maintainers("xdelaruelle")
+ version("main", branch="main")
version("5.2.0", sha256="48f9f10864303df628a48cab17074820a6251ad8cd7d66dd62aa7798af479254")
version("5.1.1", sha256="1985f79e0337f63d6564b08db0238cf96a276a4184def822bb8ad37996dc8295")
version("5.1.0", sha256="1ab1e859b9c8bca8a8d332945366567fae4cf8dd7e312a689daaff46e7ffa949")
@@ -55,6 +57,11 @@ class EnvironmentModules(Package):
variant("X", default=True, description="Build with X functionality")
+ depends_on("autoconf", type="build", when="@main")
+ depends_on("automake", type="build", when="@main")
+ depends_on("libtool", type="build", when="@main")
+ depends_on("m4", type="build", when="@main")
+
# Dependencies:
depends_on("tcl", type=("build", "link", "run"))
depends_on("tcl@8.4:", type=("build", "link", "run"), when="@4.0.0:4.8")