summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-package-stash/package.py
blob: 551fef5af934de7cacea24eb6d918cf933a18c87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2023 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 PerlPackageStash(PerlPackage):
    """Routines for manipulating stashes"""

    homepage = "https://metacpan.org/pod/Package::Stash"
    url = "http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Package-Stash-0.37.tar.gz"

    license("GPL-1.0-or-later OR Artistic-1.0-Perl")

    version("0.37", sha256="06ab05388f9130cd377c0e1d3e3bafeed6ef6a1e22104571a9e1d7bfac787b2c")

    depends_on("perl-test-requires", type=("build", "run"))
    depends_on("perl-test-fatal", type=("build", "run"))
    depends_on("perl-module-implementation", type=("build", "run"))
    depends_on("perl-dist-checkconflicts", type=("build", "run"))