Skip to content

Commit 86acbb8

Browse files
dougiesquireharshula
authored andcommitted
SBR: Remove variant type and generic-tracers from mom5 specs
1 parent 8617192 commit 86acbb8

3 files changed

Lines changed: 4 additions & 28 deletions

File tree

packages/access-esm1p5/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class AccessEsm1p5(BundlePackage):
3030
version("latest")
3131

3232
depends_on("[email protected]", type="run")
33-
depends_on("[email protected] type=ACCESS-CM", type="run")
33+
depends_on("[email protected]", type="run")
3434
# um7 is in a private repository
3535
depends_on("[email protected]", type="run")
3636

packages/access-esm1p6/package.py

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ class AccessEsm1p6(BundlePackage):
3737
values=("4", "5"),
3838
multi=False,
3939
)
40-
variant(
41-
"generic-tracers",
42-
default=True,
43-
description="Enable generic tracers.",
44-
)
4540
variant(
4641
"um",
4742
default="access-esm1.6",
@@ -52,18 +47,7 @@ class AccessEsm1p6(BundlePackage):
5247

5348
depends_on("[email protected]", type="run", when="cice=4")
5449
depends_on("[email protected]", type="run", when="cice=5")
55-
# TODO: Use the access-esm1.6 branch when it has been confirmed that
56-
# MOM5 master supports building with generic tracers disabled.
57-
depends_on(
58-
"[email protected] type=ACCESS-CM",
59-
type="run",
60-
when="~generic-tracers",
61-
)
62-
depends_on(
63-
"[email protected] type=ACCESS-ESM",
64-
type="run",
65-
when="+generic-tracers",
66-
)
50+
depends_on("[email protected]", type="run")
6751
# um7 is in a private repository
6852
depends_on("[email protected]", type="run", when="um=access-esm1.5")
6953
depends_on("[email protected]", type="run", when="um=access-esm1.6")

packages/access-om2-bgc/package.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,7 @@ class AccessOm2Bgc(BundlePackage):
2424
depends_on("libaccessom2~deterministic", when="~deterministic", type="run")
2525
depends_on("cice5+deterministic", when="+deterministic", type="run")
2626
depends_on("cice5~deterministic", when="~deterministic", type="run")
27-
depends_on(
28-
"mom5+deterministic type=ACCESS-OM-BGC",
29-
when="+deterministic",
30-
type="run"
31-
)
32-
depends_on(
33-
"mom5~deterministic type=ACCESS-OM-BGC",
34-
when="~deterministic",
35-
type="run"
36-
)
27+
depends_on("mom5+deterministic", when="+deterministic", type="run")
28+
depends_on("mom5~deterministic", when="~deterministic", type="run")
3729

3830
# There is no need for install() since there is no code.

0 commit comments

Comments
 (0)