summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEdgar Leon <800736+eleon@users.noreply.github.com>2021-10-01 07:56:22 -0700
committerGitHub <noreply@github.com>2021-10-01 16:56:22 +0200
commit4078c5e5374e45357a30ef1336acb34ff0fd5164 (patch)
tree1f963d1d5c5625e3ebbfd1cdab00886b254bfdf9 /var
parent60aa97b25fa8f79c350969f0c0fcd71421603d89 (diff)
downloadspack-4078c5e5374e45357a30ef1336acb34ff0fd5164.tar.gz
spack-4078c5e5374e45357a30ef1336acb34ff0fd5164.tar.bz2
spack-4078c5e5374e45357a30ef1336acb34ff0fd5164.tar.xz
spack-4078c5e5374e45357a30ef1336acb34ff0fd5164.zip
mpibind: add v0.7.0 and new flux variant (#26359)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mpibind/package.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mpibind/package.py b/var/spack/repos/builtin/packages/mpibind/package.py
index f448d9b952..7c023e0964 100644
--- a/var/spack/repos/builtin/packages/mpibind/package.py
+++ b/var/spack/repos/builtin/packages/mpibind/package.py
@@ -21,12 +21,15 @@ class Mpibind(AutotoolsPackage):
# The build process uses 'git describe --tags' to get the
# package version, thus we need 'get_full_repo'
version('master', branch='master', get_full_repo=True)
+ version('0.7.0', sha256='33077e7eb50322d2bcfe87bb3ea9159c2e49f6f045cbbcd2e69e763c3bec4330')
version('0.5.0', sha256='51bb27341109aeef121a8630bd56f5551c70ebfd337a459fb70ef9015d97d2b7')
variant('cuda', default=False,
description='Build w/support for NVIDIA GPUs.')
variant('rocm', default=False,
description='Build w/support for AMD GPUs.')
+ variant('flux', default=False,
+ description='Build the Flux plugin.')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
@@ -39,9 +42,20 @@ class Mpibind(AutotoolsPackage):
depends_on('hwloc@2:+cuda+nvml', when='+cuda', type='link')
depends_on('hwloc@2.4:+rocm+opencl', when='+rocm', type='link')
+ # Requiring @master temporarily while Flux adds
+ # FLUX_SHELL_RC_PATH to a stable version (>0.29.0).
+ # mpibind will require at least such version.
+ depends_on('flux-core@master', when='+flux', type='link')
+
def autoreconf(self, spec, prefix):
autoreconf('--install', '--verbose', '--force')
+ @when('+flux')
+ def setup_run_environment(self, env):
+ """Load the mpibind plugin into Flux"""
+ env.prepend_path('FLUX_SHELL_RC_PATH',
+ join_path(self.prefix, 'share', 'mpibind'))
+
# To build and run the tests, make sure 'libtap' is installed
# on the target system and is recognized by pkg-config.
# Unfortunately, libtap is not in Spack.