summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Delaruelle <xavier.delaruelle@cea.fr>2021-09-13 07:58:40 +0200
committerGitHub <noreply@github.com>2021-09-13 07:58:40 +0200
commite0d8f67f341f0b5050b16ac5b807d964001a47d2 (patch)
tree61ad4ce43fc8a4e2c87eb48b5e3ea57f271f2f6a
parent0545f7d5ccc74bf2d06516e9b7201b0e173c7781 (diff)
downloadspack-e0d8f67f341f0b5050b16ac5b807d964001a47d2.tar.gz
spack-e0d8f67f341f0b5050b16ac5b807d964001a47d2.tar.bz2
spack-e0d8f67f341f0b5050b16ac5b807d964001a47d2.tar.xz
spack-e0d8f67f341f0b5050b16ac5b807d964001a47d2.zip
environment-modules: add version 5.0.0 (#25904)
Adapt configure arguments to only keep useful ones for this new major release version.
-rw-r--r--var/spack/repos/builtin/packages/environment-modules/package.py34
1 files changed, 22 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/environment-modules/package.py b/var/spack/repos/builtin/packages/environment-modules/package.py
index 2af0caadff..9a6888d50a 100644
--- a/var/spack/repos/builtin/packages/environment-modules/package.py
+++ b/var/spack/repos/builtin/packages/environment-modules/package.py
@@ -10,10 +10,11 @@ class EnvironmentModules(Package):
"""
homepage = 'https://cea-hpc.github.io/modules/'
- url = 'https://github.com/cea-hpc/modules/releases/download/v4.8.0/modules-4.8.0.tar.gz'
+ url = 'https://github.com/cea-hpc/modules/releases/download/v5.0.0/modules-5.0.0.tar.gz'
maintainers = ['xdelaruelle']
+ version('5.0.0', sha256='428e23ac51a6006605de65ed9114d544a5506cb4b6bfb03d8522778f13e4f7ea')
version('4.8.0', sha256='d6b45cadc2146ed5e0b25a96d44643ad516054eb7745acb14a1dc7bf30744f6e')
version('4.7.1', sha256='ee7ecd62bbbde6d51e30788a97800c39e72515b6a910839fb84041b35ba42b4d')
version('4.7.0', sha256='3ab0a649e23b4dd00963e4cae60e573b449194ecb4035c5ce487330b272b4d06')
@@ -48,19 +49,14 @@ class EnvironmentModules(Package):
# Dependencies:
depends_on('tcl', type=('build', 'link', 'run'))
- depends_on('tcl@8.4:', type=('build', 'link', 'run'), when='@4.0.0:')
+ depends_on('tcl@8.4:', type=('build', 'link', 'run'), when='@4.0.0:4.8')
+ depends_on('tcl@8.5:', type=('build', 'link', 'run'), when='@5.0.0:')
def install(self, spec, prefix):
tcl = spec['tcl']
config_args = [
"--prefix=" + prefix,
- "--without-tclx",
- "--with-tclx-ver=0.0",
- # It looks for tclConfig.sh
- "--with-tcl=" + tcl.libs.directories[0],
- "--with-tcl-ver={0}".format(tcl.version.up_to(2)),
- '--disable-versioning',
'--datarootdir=' + prefix.share
]
@@ -75,19 +71,19 @@ class EnvironmentModules(Package):
if '~X' in spec:
config_args = ['--without-x'] + config_args
- if '@4.4.0:' in self.spec:
+ if '@4.4.0:4.8' in self.spec:
config_args.extend([
'--with-icase=search',
'--enable-extended-default',
'--enable-advanced-version-spec'
])
- if '@4.3.0:' in self.spec:
+ if '@4.3.0:4.8' in self.spec:
config_args.extend([
'--enable-color'
])
- if '@4.2.0:' in self.spec:
+ if '@4.2.0:4.8' in self.spec:
config_args.extend([
'--enable-auto-handling'
])
@@ -100,9 +96,13 @@ class EnvironmentModules(Package):
'--with-quarantine-vars=LD_LIBRARY_PATH LD_PRELOAD'
])
+ if '@4.0.0:4.8' in self.spec:
+ config_args.extend([
+ '--disable-compat-version'
+ ])
+
if '@4.0.0:' in self.spec:
config_args.extend([
- '--disable-compat-version',
'--with-tclsh={0}'.format(tcl.prefix.bin.tclsh)
])
@@ -113,6 +113,16 @@ class EnvironmentModules(Package):
'CPPFLAGS=-DUSE_INTERP_ERRORLINE'
])
+ if '@:3.2' in self.spec:
+ config_args.extend([
+ "--without-tclx",
+ "--with-tclx-ver=0.0",
+ # It looks for tclConfig.sh
+ "--with-tcl=" + tcl.libs.directories[0],
+ "--with-tcl-ver={0}".format(tcl.version.up_to(2)),
+ '--disable-versioning'
+ ])
+
configure(*config_args)
make()
make('install')