summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-exception-class/package.py
blob: ee3f0248fbaf1d7cc55d163d70ee5cb5d67ed7cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2022 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 PerlExceptionClass(PerlPackage):
    """A module that allows you to declare real exception classes in Perl"""

    homepage = "https://metacpan.org/pod/Exception::Class"
    url = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Exception-Class-1.43.tar.gz"

    version("1.43", sha256="ff3b4b3f706e84aaa87ab0dee5cec6bd7a8fc9f72cf76d115212541fa0a13760")

    depends_on("perl-devel-stacktrace", type=("build", "run"))
    depends_on("perl-class-data-inheritable", type=("build", "run"))