summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmen Stoppels <me@harmenstoppels.nl>2023-11-06 15:58:50 +0100
committerGitHub <noreply@github.com>2023-11-06 07:58:50 -0700
commitb8a18f0a78a9af0ee3cda810ce05abbd232c347d (patch)
tree55e834dff7b0ae1c219653a4795368299e2af696
parent17656b2ea03dbd699667df81d54b652a8aebee5e (diff)
downloadspack-b8a18f0a78a9af0ee3cda810ce05abbd232c347d.tar.gz
spack-b8a18f0a78a9af0ee3cda810ce05abbd232c347d.tar.bz2
spack-b8a18f0a78a9af0ee3cda810ce05abbd232c347d.tar.xz
spack-b8a18f0a78a9af0ee3cda810ce05abbd232c347d.zip
mpich: remove unnecessary tuples and upperbounds (#40899)
* mpich: remove unnecessary tuples * remove redundant :3.3.99 upperbound
-rw-r--r--var/spack/repos/builtin/packages/mpich/package.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/mpich/package.py b/var/spack/repos/builtin/packages/mpich/package.py
index a68c7292b5..b66c0b8fd4 100644
--- a/var/spack/repos/builtin/packages/mpich/package.py
+++ b/var/spack/repos/builtin/packages/mpich/package.py
@@ -164,7 +164,7 @@ spack package at this time.""",
patch(
"https://github.com/pmodels/mpich/commit/8a851b317ee57366cd15f4f28842063d8eff4483.patch?full_index=1",
sha256="d2dafc020941d2d8cab82bc1047e4a6a6d97736b62b06e2831d536de1ac01fd0",
- when="@3.3:3.3.99 +hwloc",
+ when="@3.3 +hwloc",
)
# fix MPI_Barrier segmentation fault
@@ -249,14 +249,14 @@ spack package at this time.""",
# building from git requires regenerating autotools files
depends_on("automake@1.15:", when="@develop", type="build")
depends_on("libtool@2.4.4:", when="@develop", type="build")
- depends_on("m4", when="@develop", type="build"),
+ depends_on("m4", when="@develop", type="build")
depends_on("autoconf@2.67:", when="@develop", type="build")
# building with "+hwloc' also requires regenerating autotools files
- depends_on("automake@1.15:", when="@3.3:3.3.99 +hwloc", type="build")
- depends_on("libtool@2.4.4:", when="@3.3:3.3.99 +hwloc", type="build")
- depends_on("m4", when="@3.3:3.3.99 +hwloc", type="build"),
- depends_on("autoconf@2.67:", when="@3.3:3.3.99 +hwloc", type="build")
+ depends_on("automake@1.15:", when="@3.3 +hwloc", type="build")
+ depends_on("libtool@2.4.4:", when="@3.3 +hwloc", type="build")
+ 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")
@@ -462,7 +462,7 @@ spack package at this time.""",
def autoreconf(self, spec, prefix):
"""Not needed usually, configure should be already there"""
# If configure exists nothing needs to be done
- if os.path.exists(self.configure_abs_path) and not spec.satisfies("@3.3:3.3.99 +hwloc"):
+ if os.path.exists(self.configure_abs_path) and not spec.satisfies("@3.3 +hwloc"):
return
# Else bootstrap with autotools
bash = which("bash")