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

    homepage = "http://search.cpan.org/~drolsky/Exception-Class-1.43/lib/Exception/Class.pm"
    url      = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Exception-Class-1.43.tar.gz"

    version('1.43', 'ff3fa5c26fa417b68d1f2d0a14cce7f1')

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