forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add MET v12.0.0 and METplus v6.0.0 #509
Merged
climbfuji
merged 7 commits into
JCSDA:spack-stack-dev
from
climbfuji:feature/met12_metplus6
Feb 20, 2025
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
77ce1d6
add MET v12.0.0 and METplus v6.0.0
rickgrubin-noaa c7c61cd
Set correct dependencies for metplus@6 in var/spack/repos/builtin/pac…
climbfuji a0a212d
Add missing dependency on proj for met@12
climbfuji 8153c91
Merge branch 'spack-stack-dev' of https://github.com/jcsda/spack into…
climbfuji af17726
Add [email protected]
climbfuji 77d32dc
Merge branch 'spack-stack-dev' of https://github.com/jcsda/spack into…
climbfuji 53c41fb
Change @6.0.0 to @6: for requirements in var/spack/repos/builtin/pack…
climbfuji File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ class Metplus(Package): | |
maintainers("AlexanderRichert-NOAA", "climbfuji") | ||
|
||
version("develop", branch="develop") | ||
version("6.0.0", sha256="e9358aede2fd2abecd81806227de7b165d68fdf2fc9defcbba24df229461b155") | ||
version("5.1.0", sha256="e80df2d1059176a453b7991a9f123cb5a187cc7ba7f48a75313b92c7a0e68474") | ||
version("5.0.1", sha256="0e22b4f6791496551d99f68247d382b2af02c90b34c172a64c6f060e774bdced") | ||
version("5.0.0", sha256="59d519bd062559b4cece9f8672e2e282b200057bc77e2e0937414003d8f2dd50") | ||
|
@@ -34,10 +35,18 @@ class Metplus(Package): | |
variant("makeplots", default=False, description="Enable MakePlots Wrapper.") | ||
variant("plotdataplane", default=False, description="Generate images from Postscript output.") | ||
|
||
depends_on("[email protected]:", when="@6.0.0", type=("run")) | ||
depends_on("met@12:+python", when="@6.0.0", type=("run")) | ||
depends_on("met+python", type=("run")) | ||
# https://metplus.readthedocs.io/en/main_v6.0/Users_Guide/installation.html | ||
depends_on("[email protected]:", when="@6.0.0") | ||
depends_on("netcdf-c") | ||
depends_on("[email protected]:", when="@6.0.0", type=("run")) | ||
depends_on("py-python-dateutil", type=("run")) | ||
|
||
depends_on("[email protected]:", when="@6.0.0 +makeplots", type=("run")) | ||
depends_on("py-cartopy", when="+makeplots", type=("run")) | ||
depends_on("[email protected]", when="@6.0.0 +cycloneplotter", type=("run")) | ||
depends_on("py-matplotlib", when="+cycloneplotter", type=("run")) | ||
depends_on("py-cartopy", when="+cycloneplotter", type=("run")) | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not '@6:' for all of these, since I'm assuming it won't just be for the one release?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True, let me change that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done