forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fmt dependency to support fmt@11: Use an adios2 release instead of master New release of seacas
- Loading branch information
1 parent
10b6d72
commit 904d43f
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,9 @@ class Seacas(CMakePackage): | |
|
||
# ###################### Versions ########################## | ||
version("master", branch="master") | ||
# note: if next release supports fmt@11, update dependencies below | ||
version( | ||
"2024-08-15", sha256="c85130b0dac5ab9a08dcb53c8ccff478122d72b08bd41d99c0adfddc5eb18a52" | ||
) | ||
version( | ||
"2024-07-10", sha256="b2ba6ca80359fed8ed2a8a210052582c7a3b7b837253bd1e9be941047dcab3ff" | ||
) | ||
|
@@ -237,7 +239,8 @@ class Seacas(CMakePackage): | |
depends_on("hdf5+hl~mpi", when="~mpi") | ||
depends_on("hdf5+hl+mpi", when="+mpi") | ||
|
||
depends_on("[email protected]:10", when="@2024-03-11:") | ||
depends_on("fmt@10:", when="@2024-08-15:") | ||
depends_on("[email protected]:10", when="@2024-03-11:2024-07-10") | ||
depends_on("[email protected]:10", when="@2023-10-24:2023-11-27") | ||
depends_on("[email protected]", when="@2022-10-14:2023-05-30") | ||
depends_on("[email protected]:9", when="@2022-03-04:2022-05-16") | ||
|
@@ -263,7 +266,7 @@ class Seacas(CMakePackage): | |
depends_on("[email protected]:~mpi+scoping", when="~mpi") | ||
|
||
with when("+adios2"): | ||
depends_on("adios2@master") | ||
depends_on("adios2@2.10.1") | ||
depends_on("adios2~mpi", when="~mpi") | ||
depends_on("adios2+mpi", when="+mpi") | ||
|
||
|