-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added bufr-query as a variant (bufrquery) of jedi-base-env.
- Loading branch information
1 parent
35c84dc
commit 3568a3f
Showing
4 changed files
with
5 additions
and
8 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
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 |
---|---|---|
|
@@ -37,9 +37,6 @@ spack: | |
# MADIS for WCOSS2 decoders. | ||
- [email protected] | ||
|
||
# bufr_query for BUFR readers | ||
#- [email protected] | ||
|
||
specs: | ||
- matrix: | ||
- [$packages] | ||
|
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 |
---|---|---|
|
@@ -20,12 +20,14 @@ class JediBaseEnv(BundlePackage): | |
# Need to find a free fftw provider for fftw-api ... | ||
variant("fftw", default=True, description="Build fftw") | ||
variant("hdf4", default=True, description="Build hdf4 library and python hdf module") | ||
variant("bufrquery", default=True, description="Build bufr-query library") | ||
|
||
depends_on("base-env", type="run") | ||
depends_on("bison", type="run") | ||
depends_on("blas", type="run") | ||
depends_on("boost", type="run") | ||
depends_on("bufr", type="run") | ||
depends_on("bufr-query", when="+bufrquery", type="run") | ||
# Force users to load manually | ||
# depends_on("[email protected]", type="run") | ||
depends_on("ecbuild", type="run") | ||
|