diff options
author | Alex Richert <alexander.richert@noaa.gov> | 2024-08-31 07:11:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-31 09:11:13 -0500 |
commit | 8cac74699b484825afd337e59b831d48496592a4 (patch) | |
tree | 43e7c021afdb01c786e5eae6a65ad0cca1f0a02e /var | |
parent | db311eef463d60eb8bf0c5e1964f950b2b98bda1 (diff) | |
download | spack-8cac74699b484825afd337e59b831d48496592a4.tar.gz spack-8cac74699b484825afd337e59b831d48496592a4.tar.bz2 spack-8cac74699b484825afd337e59b831d48496592a4.tar.xz spack-8cac74699b484825afd337e59b831d48496592a4.zip |
sfcio: add v1.4.2 (#46146)
* sfcio: add v1.4.2
* [@spackbot] updating style on behalf of AlexanderRichert-NOAA
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/sfcio/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/sfcio/package.py b/var/spack/repos/builtin/packages/sfcio/package.py index bec48d809b..afe4ed84c7 100644 --- a/var/spack/repos/builtin/packages/sfcio/package.py +++ b/var/spack/repos/builtin/packages/sfcio/package.py @@ -19,12 +19,15 @@ class Sfcio(CMakePackage): maintainers("AlexanderRichert-NOAA", "Hang-Lei-NOAA", "edwardhartnett") version("develop", branch="develop") + version("1.4.2", sha256="bfde52320b836886a766ff8d0d6707b8a533c903b947f8b49250c544aaccaaac") version("1.4.1", sha256="d9f900cf18ec1a839b4128c069b1336317ffc682086283443354896746b89c59") depends_on("fortran", type="build") depends_on("pfunit", type="test") + conflicts("%oneapi", when="@:1.4.1", msg="Requires @1.4.2: for Intel oneAPI") + def cmake_args(self): args = [self.define("ENABLE_TESTS", self.run_tests)] return args |