diff options
author | Keita Iwabuchi <iwabuchi1@llnl.gov> | 2022-05-03 16:46:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 16:46:04 -0700 |
commit | 1eff83990b2e8e1e11040a2ce43150a9a6c133b6 (patch) | |
tree | d94d5359ac4c09e00f47733f262927c71fdec6ff | |
parent | 17e71a675aed0695a27f3127291bd6028f40d3f9 (diff) | |
download | spack-1eff83990b2e8e1e11040a2ce43150a9a6c133b6.tar.gz spack-1eff83990b2e8e1e11040a2ce43150a9a6c133b6.tar.bz2 spack-1eff83990b2e8e1e11040a2ce43150a9a6c133b6.tar.xz spack-1eff83990b2e8e1e11040a2ce43150a9a6c133b6.zip |
Metall Package: add v0.20 (#30446)
* Metall package: add dependency to GCC for build test
* Package Metall: add v.017
* Package Metall: update the package file
* Update var/spack/repos/builtin/packages/metall/package.py
Co-authored-by: Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com>
* Metall package: add v0.18 and v0.19
* Metall Package: add v0.20
Co-authored-by: Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com>
-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 3e9f3276bb..c6423f619d 100644 --- a/var/spack/repos/builtin/packages/metall/package.py +++ b/var/spack/repos/builtin/packages/metall/package.py @@ -11,7 +11,7 @@ class Metall(CMakePackage): homepage = "https://github.com/LLNL/metall" git = "https://github.com/LLNL/metall.git" - url = "https://github.com/LLNL/metall/archive/refs/tags/v0.19.tar.gz" + url = "https://github.com/LLNL/metall/archive/refs/tags/v0.20.tar.gz" maintainers = ['KIwabuchi', 'rogerpearce', 'mayagokhale'] @@ -20,6 +20,7 @@ class Metall(CMakePackage): version('master', branch='master') version('develop', branch='develop') + version('0.20', sha256='cafe54c682004a66a059f54e2d7128ea7622e9941ea492297d04c260675e9af4') version('0.19', sha256='541f428d4a7e629e1e60754f9d5f5e84fe973d421b2647f5ed2ec25b977ddd56') version('0.18', sha256='cd1fee376d0523d43e43b92c43731d45a2c4324278a071a5f626f400afecef24') version('0.17', sha256='8de6ec2a430a141a2ad465ccd40ba9d0eb0c57d9f2f2de657fe837a73c466e61') |