summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-module-implementation/package.py
blob: 4d5144cacdcb7dc1cb94fc35f8c1480128627bbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2024 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.package 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"

    license("Artistic-2.0")

    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"))