-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
586747c
commit d9c9a9e
Showing
2 changed files
with
31 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 @@ | ||
from spack.package import * | ||
|
||
from spack.pkg.builtin.fdb import Fdb as SpackFdb | ||
|
||
|
||
class Fdb(SpackFdb): | ||
|
||
# This section can be removed when the following commit | ||
# https://github.com/spack/spack/commit/8871bd5ba5c58562b8c20baa00f125aeccba586f | ||
# is included in a release on spack and this is used by spack-c2sm. | ||
depends_on("[email protected]:", when="@5.11.22:") | ||
|
||
# This section can be removed when the following PR | ||
# https://github.com/spack/spack/pull/42874 | ||
# is included in a release on spack and this is used by spack-c2sm. | ||
@property | ||
def libs(self): | ||
return find_libraries("libfdb5", | ||
root=self.prefix, | ||
shared=True, | ||
recursive=True) |
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,10 @@ | ||
from spack.package import * | ||
|
||
from spack.pkg.builtin.metkit import Metkit as SpackMetkit | ||
|
||
|
||
class Metkit(SpackMetkit): | ||
|
||
# This file can be removed when this PR https://github.com/spack/spack/pull/42871 | ||
# is included in a release on spack and this is used by spack-c2sm. | ||
depends_on("eckit@:1.21", when="@:1.10") |