diff options
author | Alex Richert <82525672+AlexanderRichert-NOAA@users.noreply.github.com> | 2023-09-13 18:38:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 15:38:13 -0700 |
commit | 4a79857b5eade125361dff134aa041d157856ee7 (patch) | |
tree | a06b9f0c53d5b98b980590fed985c4df507e042d | |
parent | 61df3b90809209653533fb90f572472678639d30 (diff) | |
download | spack-4a79857b5eade125361dff134aa041d157856ee7.tar.gz spack-4a79857b5eade125361dff134aa041d157856ee7.tar.bz2 spack-4a79857b5eade125361dff134aa041d157856ee7.tar.xz spack-4a79857b5eade125361dff134aa041d157856ee7.zip |
Add develop version for gfsio (#39995)
* Add develop version for gfsio
* Update package.py
-rw-r--r-- | var/spack/repos/builtin/packages/gfsio/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gfsio/package.py b/var/spack/repos/builtin/packages/gfsio/package.py index 5d284e07e3..2c03bb0fdb 100644 --- a/var/spack/repos/builtin/packages/gfsio/package.py +++ b/var/spack/repos/builtin/packages/gfsio/package.py @@ -14,9 +14,11 @@ class Gfsio(CMakePackage): homepage = "https://github.com/NOAA-EMC/NCEPLIBS-gfsio" url = "https://github.com/NOAA-EMC/NCEPLIBS-gfsio/archive/refs/tags/v1.4.1.tar.gz" + git = "https://github.com/NOAA-EMC/NCEPLIBS-gfsio" - maintainers("t-brown", "AlexanderRichert-NOAA", "Hang-Lei-NOAA", "edwardhartnett") + maintainers("AlexanderRichert-NOAA", "Hang-Lei-NOAA", "edwardhartnett") + version("develop", branch="develop") version("1.4.1", sha256="eab106302f520600decc4f9665d7c6a55e7b4901fab6d9ef40f29702b89b69b1") def setup_run_environment(self, env): |