summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSajid Ali <sajidsyed2021@u.northwestern.edu>2020-10-21 13:38:09 -0500
committerGitHub <noreply@github.com>2020-10-21 13:38:09 -0500
commit2bb775496ed0ecddee1eb5b55d149f25a33fd8a2 (patch)
tree4fe2fd08104dd58637046854bb28d88d17512930 /var
parentb616dbc56b8bcba8a7dd1c01aeb67ed60ba0d041 (diff)
downloadspack-2bb775496ed0ecddee1eb5b55d149f25a33fd8a2.tar.gz
spack-2bb775496ed0ecddee1eb5b55d149f25a33fd8a2.tar.bz2
spack-2bb775496ed0ecddee1eb5b55d149f25a33fd8a2.tar.xz
spack-2bb775496ed0ecddee1eb5b55d149f25a33fd8a2.zip
mpich : add python build-only dependency (#19403)
* mpich: yaksa configure fix modified: var/spack/repos/builtin/packages/mpich/package.py * typo * python is not needed when building from preconfigured tarballs * add maintainers
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mpich/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mpich/package.py b/var/spack/repos/builtin/packages/mpich/package.py
index 2269ad7b33..d44d8a5a2d 100644
--- a/var/spack/repos/builtin/packages/mpich/package.py
+++ b/var/spack/repos/builtin/packages/mpich/package.py
@@ -19,6 +19,8 @@ class Mpich(AutotoolsPackage):
list_url = "http://www.mpich.org/static/downloads/"
list_depth = 1
+ maintainers = ['raffenet', 'yfguo']
+
executables = ['^mpichversion$']
version('develop', submodules=True)
@@ -162,6 +164,9 @@ spack package at this time.''',
depends_on("m4", when="@3.3 +hwloc", type="build"),
depends_on("autoconf@2.67:", when='@3.3 +hwloc', type="build")
+ # MPICH's Yaksa submodule requires python to configure
+ depends_on("python@3.0:", when="@develop", type="build")
+
conflicts('device=ch4', when='@:3.2')
conflicts('netmod=ofi', when='@:3.1.4')
conflicts('netmod=ucx', when='device=ch3')