spack/var/spack/repos/builtin/packages/perl-module-implementation/package.py
Vanessasaurus 6a26322eb3
fixing "problems in speck" as identified by repology (#25491)
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>
2021-08-26 15:05:24 -05:00

22 lines
849 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 PerlModuleImplementation(PerlPackage):
"""Loads one of several alternate underlying implementations for a
module"""
homepage = "https://metacpan.org/pod/Module::Implementation"
url = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Module-Implementation-0.09.tar.gz"
version('0.09', sha256='c15f1a12f0c2130c9efff3c2e1afe5887b08ccd033bd132186d1e7d5087fd66d')
depends_on('perl-module-runtime', type=('build', 'run'))
depends_on('perl-test-fatal', type=('build', 'run'))
depends_on('perl-test-requires', type=('build', 'run'))
depends_on('perl-try-tiny', type=('build', 'run'))