diff options
author | Matt Thompson <matthew.thompson@nasa.gov> | 2024-06-25 00:32:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 22:32:46 -0600 |
commit | a6ac78c7c6e0c740a0064b8673e16666710f228a (patch) | |
tree | 2295259c50457fb660e5f54f066f38811c0d9adc | |
parent | 8479122e7139a07edbcae85e3bad03386ceaf4d8 (diff) | |
download | spack-a6ac78c7c6e0c740a0064b8673e16666710f228a.tar.gz spack-a6ac78c7c6e0c740a0064b8673e16666710f228a.tar.bz2 spack-a6ac78c7c6e0c740a0064b8673e16666710f228a.tar.xz spack-a6ac78c7c6e0c740a0064b8673e16666710f228a.zip |
mapl: add 2.47.0 (#44842)
* mapl: add 2.47.0
* Fix typo
-rw-r--r-- | var/spack/repos/builtin/packages/mapl/package.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/mapl/package.py b/var/spack/repos/builtin/packages/mapl/package.py index d20044ca39..497f7f73af 100644 --- a/var/spack/repos/builtin/packages/mapl/package.py +++ b/var/spack/repos/builtin/packages/mapl/package.py @@ -38,6 +38,7 @@ class Mapl(CMakePackage): version("develop", branch="develop") version("main", branch="main") + version("2.47.0", sha256="66c862d2ab8bcd6969e9728091dbca54f1f420e97e41424c4ba93ef606088459") version("2.46.2", sha256="6d397ad73042355967de8ef5b521d6135c004f96e93ae7b215f9ee325e75c6f0") version("2.46.1", sha256="f3090281de6293b484259d58f852c45b98759de8291d36a4950e6d348ece6573") version("2.46.0", sha256="726d9588b724bd43e5085d1a2f8d806d548f185ed6b22a1b13c0ed06212d7be2") @@ -142,8 +143,14 @@ class Mapl(CMakePackage): resource( name="esma_cmake", git="https://github.com/GEOS-ESM/ESMA_cmake.git", + tag="v3.46.0", + when="@2.47:", + ) + resource( + name="esma_cmake", + git="https://github.com/GEOS-ESM/ESMA_cmake.git", tag="v3.45.2", - when="@2.45:", + when="@2.45:2.46", ) resource( name="esma_cmake", @@ -338,6 +345,7 @@ class Mapl(CMakePackage): # - Intel MPI --> intelmpi # - MVAPICH --> mvapich # - HPE MPT --> mpt + # - Cray MPICH --> mpich if self.spec.satisfies("^mpich"): args.append(self.define("MPI_STACK", "mpich")) @@ -349,6 +357,8 @@ class Mapl(CMakePackage): args.append(self.define("MPI_STACK", "mvapich")) elif self.spec.satisfies("^mpt"): args.append(self.define("MPI_STACK", "mpt")) + elif self.spec.satisfies("^cray-mpich"): + args.append(self.define("MPI_STACK", "mpich")) else: raise InstallError("Unsupported MPI stack") |