diff options
author | Keita Iwabuchi <kiwabuchi@llnl.gov> | 2020-08-28 12:42:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 14:42:02 -0500 |
commit | 9525c530d54abb44fa6eaab38579ab47e4c9936e (patch) | |
tree | dbe8f2bd30309a5d5a94b3b561e7e564adac0db7 | |
parent | 0bf696a29deb948d2f09dd3d9b52317aabbb8754 (diff) | |
download | spack-9525c530d54abb44fa6eaab38579ab47e4c9936e.tar.gz spack-9525c530d54abb44fa6eaab38579ab47e4c9936e.tar.bz2 spack-9525c530d54abb44fa6eaab38579ab47e4c9936e.tar.xz spack-9525c530d54abb44fa6eaab38579ab47e4c9936e.zip |
Add Metall v0.3 (#18340)
* Metall: add version 0.2
* Add Metall v0.3
-rw-r--r-- | var/spack/repos/builtin/packages/metall/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/metall/package.py b/var/spack/repos/builtin/packages/metall/package.py index ea1351fe50..b650b9fb9a 100644 --- a/var/spack/repos/builtin/packages/metall/package.py +++ b/var/spack/repos/builtin/packages/metall/package.py @@ -9,11 +9,12 @@ class Metall(CMakePackage): homepage = "https://github.com/LLNL/metall" git = "https://github.com/LLNL/metall.git" - url = "https://github.com/LLNL/metall/archive/v0.2.tar.gz" + url = "https://github.com/LLNL/metall/archive/v0.3.tar.gz" maintainers = ['KIwabuchi', 'rogerpearce', 'mayagokhale'] version('develop', branch='develop') + version('0.3', sha256='abecdd245eae69088e001cc0c641e8f560b554a726a515eebd7b7f7fb43361e5') version('0.2', sha256='35cdf3505d2f8d0282a0d5c60b69a0ec5ec6d77ac3facce7549eb874df27be1d') depends_on('boost@1.64:', type=('build', 'link')) |