
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
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
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 PerlTestCleannamespaces(PerlPackage):
|
|
"""This module lets you check your module's namespaces for imported
|
|
functions you might have forgotten to remove"""
|
|
|
|
homepage = "http://search.cpan.org/~ether/Test-CleanNamespaces-0.22/lib/Test/CleanNamespaces.pm"
|
|
url = "http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-CleanNamespaces-0.22.tar.gz"
|
|
|
|
version('0.22', sha256='862a221994dd413b2f350450f22c96f57cac78784b1aca1a8fc763fc5449aaca')
|
|
|
|
depends_on('perl-sub-exporter', type=('build', 'run'))
|
|
depends_on('perl-module-runtime', type=('build', 'run'))
|
|
depends_on('perl-test-needs', type=('build', 'run'))
|
|
depends_on('perl-test-deep', type=('build', 'run'))
|
|
depends_on('perl-test-warnings', type=('build', 'run'))
|
|
depends_on('perl-file-pushd', type=('build', 'run'))
|
|
depends_on('perl-package-stash', type=('build', 'run'))
|
|
depends_on('perl-sub-identify', type=('build', 'run'))
|
|
depends_on('perl-namespace-clean', type=('build', 'run'))
|