
Most of these are perl packages that need to point to the meta docs site, and then a fair amount of http addresses that need to be https, and then the rest are usually documentation sites that no longer exist or were otherwise changes Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
20 lines
709 B
Python
20 lines
709 B
Python
# Copyright 2013-2021 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 PerlIoCompress(PerlPackage):
|
|
"""A perl library for uncompressing gzip, zip, bzip2
|
|
or lzop file/buffer."""
|
|
|
|
homepage = "https://metacpan.org/pod/IO::Uncompress::AnyUncompress"
|
|
url = "http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-2.081.tar.gz"
|
|
|
|
version('2.081', sha256='5211c775544dc8c511af08edfb1c0c22734daa2789149c2a88d68e17b43546d9')
|
|
|
|
depends_on('perl-compress-raw-zlib', type='run')
|
|
depends_on('perl-compress-raw-bzip2', type='run')
|