-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds fdb release 5.11.17 (backport of spack/spack#40571) Does not run system test on tsa as a result of error 'UCX WARN transports', which is unrelated to FDB. Co-authored-by: Dominic Hofer <[email protected]>
- Loading branch information
1 parent
39f9b28
commit 3d9ffbc
Showing
3 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other | ||
# Spack Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack.package import * | ||
from spack.pkg.builtin.fdb import Fdb as SpackFdb | ||
|
||
|
||
class Fdb(SpackFdb): | ||
"""FDB (Fields DataBase) is a domain-specific object store developed at | ||
ECMWF for storing, indexing and retrieving GRIB data.""" | ||
|
||
version("5.11.17", | ||
sha256= | ||
"375c6893c7c60f6fdd666d2abaccb2558667bd450100817c0e1072708ad5591e") | ||
|
||
depends_on("[email protected]:", type="build", when="@5.11.6:") | ||
|
||
def setup_build_environment(self, env): | ||
env.set('CTEST_OUTPUT_ON_FAILURE', 1) |
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