diff options
author | Edward Hartnett <38856240+edwardhartnett@users.noreply.github.com> | 2023-09-06 11:46:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 02:46:26 -0700 |
commit | f7d71ec792b7753ee74835fc2c0f99047f0bf3dc (patch) | |
tree | 67909bf01d95f9351a2d08e8887016a5bbddb0a7 /var | |
parent | d80bc7048159045df36da46da98fbe615efc5da5 (diff) | |
download | spack-f7d71ec792b7753ee74835fc2c0f99047f0bf3dc.tar.gz spack-f7d71ec792b7753ee74835fc2c0f99047f0bf3dc.tar.bz2 spack-f7d71ec792b7753ee74835fc2c0f99047f0bf3dc.tar.xz spack-f7d71ec792b7753ee74835fc2c0f99047f0bf3dc.zip |
g2: add dependencies, build options, and v3.4.6 release (#39717)
* adding bacio to g2 dependencies
* edited documentation
* added version 3.4.6
* starting with 3.4.6, can use any version of jasper
* adding w3emc dependency for versions up to 3.4.5
* removed t-brown as maintainer at his request
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/g2/package.py | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/g2/package.py b/var/spack/repos/builtin/packages/g2/package.py index 2ff605df20..4e51507d04 100644 --- a/var/spack/repos/builtin/packages/g2/package.py +++ b/var/spack/repos/builtin/packages/g2/package.py @@ -7,22 +7,40 @@ from spack.package import * class G2(CMakePackage): - """Utilities for coding/decoding GRIB2 messages. This library contains - Fortran 90 decoder/encoder routines for GRIB edition 2, as well as - indexing/searching utility routines. + """The NCEPLIBS-g2 library reads and writes GRIB2 files. GRIdded Binary or General + Regularly-distributed Information in Binary form (GRIB) is a data format for + meteorological and forecast data, standardized by the World Meteorological + Organization (WMO). This is part of the NCEPLIBS project.""" homepage = "https://noaa-emc.github.io/NCEPLIBS-g2" url = "https://github.com/NOAA-EMC/NCEPLIBS-g2/archive/refs/tags/v3.4.3.tar.gz" - maintainers("t-brown", "AlexanderRichert-NOAA", "Hang-Lei-NOAA", "edwardhartnett") + maintainers("AlexanderRichert-NOAA", "Hang-Lei-NOAA", "edwardhartnett") + version("3.4.6", sha256="c4b03946365ce0bacf1e10e8412a5debd72d8671d1696aa4fb3f3adb119175fe") version("3.4.5", sha256="c18e991c56964953d778632e2d74da13c4e78da35e8d04cb742a2ca4f52737b6") version("3.4.3", sha256="679ea99b225f08b168cbf10f4b29f529b5b011232f298a5442ce037ea84de17c") - depends_on("jasper@:2.0.32") + variant( + "build_with_w3emc", + description="Enable GRIB1 conversion routine", + default=True, + when="@3.4.5:", + ) + depends_on("libpng") + depends_on("bacio") + depends_on("jasper@:2.0.32", when="@:3.4.5") + depends_on("jasper", when="@3.4.6:") + depends_on("w3emc", when="@:3.4.5") + + def cmake_args(self): + args = [] + + if self.spec.satisfies("@3.4.5:"): + args.append(self.define_from_variant("BUILD_WITH_W3EMC", "build_with_w3emc")) def setup_run_environment(self, env): for suffix in ("4", "d"): |