
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
18 lines
675 B
Python
18 lines
675 B
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Npth(AutotoolsPackage):
|
|
"""nPth is a library to provide the GNU Pth API and thus a
|
|
non-preemptive threads implementation."""
|
|
|
|
homepage = "https://gnupg.org/software/npth/index.html"
|
|
url = "https://gnupg.org/ftp/gcrypt/npth/npth-1.5.tar.bz2"
|
|
|
|
version('1.5', sha256='294a690c1f537b92ed829d867bee537e46be93fbd60b16c04630fbbfcd9db3c2')
|
|
version('1.4', sha256='8915141836a3169a502d65c1ebd785fcc6d406cae5ee84474272ebf2fa96f1f2')
|