diff options
author | Satish Balay <balay@mcs.anl.gov> | 2019-08-05 17:34:01 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-08-05 17:34:01 -0500 |
commit | 0db3d6ca37eefa4a992080e5c893cae3ade748a5 (patch) | |
tree | 1d73d5c9a54826d19d5afecc880c5650bd68b88f | |
parent | 3457dffdcad54a2f7d95aa7bf3215fd6e94d910d (diff) | |
download | spack-0db3d6ca37eefa4a992080e5c893cae3ade748a5.tar.gz spack-0db3d6ca37eefa4a992080e5c893cae3ade748a5.tar.bz2 spack-0db3d6ca37eefa4a992080e5c893cae3ade748a5.tar.xz spack-0db3d6ca37eefa4a992080e5c893cae3ade748a5.zip |
Balay/amrex 19.08 (#12287)
* amrex: add version 19.08
* amrex: update sundials dependency for @19.08
-rw-r--r-- | var/spack/repos/builtin/packages/amrex/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/amrex/package.py b/var/spack/repos/builtin/packages/amrex/package.py index 9e5a6eff07..cea0d5fd61 100644 --- a/var/spack/repos/builtin/packages/amrex/package.py +++ b/var/spack/repos/builtin/packages/amrex/package.py @@ -17,6 +17,7 @@ class Amrex(CMakePackage): maintainers = ['mic84', 'asalmgren'] version('develop', branch='development') + version('19.08', commit='bdd1146139e8727a513d451075f900c172eb81fd') # tag:19.08 version('18.10.1', commit='260b53169badaa760b91dfc60ea6b2ea3d9ccf06') # tag:18.10.1 version('18.10', commit='d37a266c38092e1174096e245326e9eead1f4e03') # tag:18.10 version('18.09.1', commit='88120db4736c325a2d3d2c291adacaffd3bf224b') # tag:18.09.1 @@ -51,7 +52,7 @@ class Amrex(CMakePackage): # Build dependencies depends_on('mpi', when='+mpi') - depends_on('sundials@4.0.0:4.1.0 +ARKODE +CVODE', when='@develop +sundials') + depends_on('sundials@4.0.0:4.1.0 +ARKODE +CVODE', when='@19.08: +sundials') depends_on('python@2.7:', type='build') depends_on('cmake@3.5:', type='build', when='@:18.10.99') depends_on('cmake@3.13:', type='build', when='@18.11:') |