summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Thies <16190001+jthies@users.noreply.github.com>2023-08-25 03:12:42 +0200
committerGitHub <noreply@github.com>2023-08-24 18:12:42 -0700
commit884a5b8b07c881d1dd19961652db5c6bfce35f65 (patch)
treecbe7c8772a59e34879769a18bbc9c7d8dfbaf4db
parent91d674f5d09db78b893319ebedc10dbe469a11cc (diff)
downloadspack-884a5b8b07c881d1dd19961652db5c6bfce35f65.tar.gz
spack-884a5b8b07c881d1dd19961652db5c6bfce35f65.tar.bz2
spack-884a5b8b07c881d1dd19961652db5c6bfce35f65.tar.xz
spack-884a5b8b07c881d1dd19961652db5c6bfce35f65.zip
phist: new version 1.12.0 (#39616)
-rw-r--r--var/spack/repos/builtin/packages/phist/package.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/phist/package.py b/var/spack/repos/builtin/packages/phist/package.py
index 62b8b131d4..097eb8b187 100644
--- a/var/spack/repos/builtin/packages/phist/package.py
+++ b/var/spack/repos/builtin/packages/phist/package.py
@@ -34,6 +34,9 @@ class Phist(CMakePackage):
version("develop", branch="devel")
version("master", branch="master")
+ # compatible with trilinos@14:
+ version("1.12.0", sha256="0f02e39b16d14cf7c47a3c468e788c7c0e71857eb1c0a4edb601e1e5b67e8668")
+
# compatible with python@3.11: and cray-libsci as BLAS/LAPACK provider
version("1.11.2", sha256="e23f76307c26b930f7331a734b0a864ea6d7fb4a13c12f3c5d70c2c41481747b")
@@ -131,6 +134,8 @@ class Phist(CMakePackage):
description="generate Fortran 2003 bindings (requires Python3 and " "a Fortran compiler)",
)
+ # Trilinos 14 had some tpetra/kokkos API changes that are reflected in the phist 1.12 tag
+ conflicts("^trilinos@14:", when="@:1.11.2")
# Build error with cray-libsci because they define macro 'I', workaround in phist-1.11.2
conflicts("^cray-libsci", when="@:1.11.1")
# phist@1.11.2 got rid of some deprecated python code
@@ -248,6 +253,7 @@ class Phist(CMakePackage):
lapacke_include_dir = spec["lapack:c"].headers.directories[0]
args = [
+ "-DCMAKE_FIND_DEBUG_MODE=On",
"-DPHIST_USE_CCACHE=OFF",
"-DPHIST_KERNEL_LIB=%s" % kernel_lib,
"-DPHIST_OUTLEV=%s" % outlev,