diff options
author | psakievich <psakiev@sandia.gov> | 2024-06-11 19:44:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 18:44:37 -0700 |
commit | e11f83f34b218721f8dc8b043c8e7d965e114df1 (patch) | |
tree | e6f1020e6ac38523225ee4ff8fa9caf7ee901462 | |
parent | 6e7fb9a308cb922e876f636439d96d793652aa24 (diff) | |
download | spack-e11f83f34b218721f8dc8b043c8e7d965e114df1.tar.gz spack-e11f83f34b218721f8dc8b043c8e7d965e114df1.tar.bz2 spack-e11f83f34b218721f8dc8b043c8e7d965e114df1.tar.xz spack-e11f83f34b218721f8dc8b043c8e7d965e114df1.zip |
Nalu-Wind Tioga Dependency (#44675)
* Nalu-Wind Tioga Dependency
We created the tioga@1.0.0 tag for reproducing the exawind 1.0 release
* Update tioga tags
-rw-r--r-- | var/spack/repos/builtin/packages/nalu-wind/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/tioga/package.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/nalu-wind/package.py b/var/spack/repos/builtin/packages/nalu-wind/package.py index db0e5003a8..6cb2103ee0 100644 --- a/var/spack/repos/builtin/packages/nalu-wind/package.py +++ b/var/spack/repos/builtin/packages/nalu-wind/package.py @@ -63,7 +63,7 @@ class NaluWind(CMakePackage, CudaPackage, ROCmPackage): ) depends_on("trilinos~cuda~wrapper", when="~cuda") depends_on("openfast@2.6.0: +cxx", when="+openfast") - depends_on("tioga@master:", when="+tioga") + depends_on("tioga@1.0.0:", when="+tioga") depends_on("hypre@2.18.2: ~int64+mpi~superlu-dist", when="+hypre") depends_on("trilinos+muelu+belos+amesos2+ifpack2", when="+trilinos-solvers") conflicts( diff --git a/var/spack/repos/builtin/packages/tioga/package.py b/var/spack/repos/builtin/packages/tioga/package.py index 6fdf41d141..ffdd7fb064 100644 --- a/var/spack/repos/builtin/packages/tioga/package.py +++ b/var/spack/repos/builtin/packages/tioga/package.py @@ -20,6 +20,7 @@ class Tioga(CMakePackage): # The original TIOGA repo has possibly been abandoned, # so work on TIOGA has continued in the Exawind project version("develop", git="https://github.com/Exawind/tioga.git", branch="exawind") + version("1.1.0", git="https://github.com/Exawind/tioga.git", tag="v1.1.0") version("1.0.0", git="https://github.com/Exawind/tioga.git", tag="v1.0.0") version("master", branch="master") |