diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2019-10-10 22:44:41 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2019-10-12 07:19:43 -0700 |
commit | 62927654dd26db7a6a45c8bb307bf1cf6ba3470d (patch) | |
tree | 2fe91c507233477e0eef7ca9743ed7bd43520339 /var/spack/repos/builtin/packages/nek5000 | |
parent | 87fa7c15fc1f529debf7b010a5e3cd8ee4fb3f04 (diff) | |
download | spack-62927654dd26db7a6a45c8bb307bf1cf6ba3470d.tar.gz spack-62927654dd26db7a6a45c8bb307bf1cf6ba3470d.tar.bz2 spack-62927654dd26db7a6a45c8bb307bf1cf6ba3470d.tar.xz spack-62927654dd26db7a6a45c8bb307bf1cf6ba3470d.zip |
checksums: use sha256 checksums everywhere
We'd like to use a consistent checksum scheme everywhere so that we can:
a) incorporate archive checksums into our specs and have a
consistent hashing algorithm across all specs.
b) index mirrors with a consistent type of checksum, and not one that
is dependent on how spack packages are written.
- [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
Diffstat (limited to 'var/spack/repos/builtin/packages/nek5000')
-rw-r--r-- | var/spack/repos/builtin/packages/nek5000/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/nek5000/package.py b/var/spack/repos/builtin/packages/nek5000/package.py index 99d533b606..e2dfa2333b 100644 --- a/var/spack/repos/builtin/packages/nek5000/package.py +++ b/var/spack/repos/builtin/packages/nek5000/package.py @@ -20,7 +20,7 @@ class Nek5000(Package): 'spectral-elements', 'fluid', 'ecp', 'ecp-apps'] version('develop', branch='master') - version('17.0', '6a13bfad2ce023897010dd88f54a0a87') + version('17.0', sha256='298d83ffd9f695ee7cf565cb445be33b02775eb9c2e9f0f74d91d89fe722e114') # MPI, Profiling and Visit variants variant('mpi', default=True, description='Build with MPI.') |