diff options
author | Robert Pavel <rspavel@lanl.gov> | 2020-04-15 10:13:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 11:13:07 -0500 |
commit | 8935406756996b04376934e97ac3db8d7d90af05 (patch) | |
tree | 24eefacae4a45bd65bc650fd2da64597bb5fcbbf | |
parent | a157b479c8eadabe25924a7bafdd74856997c331 (diff) | |
download | spack-8935406756996b04376934e97ac3db8d7d90af05.tar.gz spack-8935406756996b04376934e97ac3db8d7d90af05.tar.bz2 spack-8935406756996b04376934e97ac3db8d7d90af05.tar.xz spack-8935406756996b04376934e97ac3db8d7d90af05.zip |
Added Laghos v3 to Proxy Apps v3 (#16070)
Also fixed upper bound for v2 apps
-rw-r--r-- | var/spack/repos/builtin/packages/ecp-proxy-apps/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/ecp-proxy-apps/package.py b/var/spack/repos/builtin/packages/ecp-proxy-apps/package.py index 501ad6440d..d11e8e2a83 100644 --- a/var/spack/repos/builtin/packages/ecp-proxy-apps/package.py +++ b/var/spack/repos/builtin/packages/ecp-proxy-apps/package.py @@ -30,10 +30,11 @@ class EcpProxyApps(BundlePackage): # Added with release 3.0 depends_on('miniamr@1.4.4', when='@3.0:') depends_on('xsbench@19', when='@3.0:') + depends_on('laghos@3.0', when='@3.0:') # Added with release 2.1 depends_on('amg@1.2', when='@2.1:') - depends_on('miniamr@1.4.3', when='@2.1:') + depends_on('miniamr@1.4.3', when='@2.1') # Added with release 2.0 depends_on('ember@1.0.0', when='@2.0:') @@ -43,7 +44,7 @@ class EcpProxyApps(BundlePackage): depends_on('thornado-mini@1.0', when='@2.0:') depends_on('candle-benchmarks@0.1', when='+candle @2.0:2.1') - depends_on('laghos@2.0', when='@2.0:') + depends_on('laghos@2.0', when='@2.0:2.1') depends_on('macsio@1.1', when='@2.0:') depends_on('sw4lite@1.1', when='@2.0:') depends_on('xsbench@18', when='@2.0:2.1') |