1
0
forked from ports/contrib

p5-exception-class: initial commit, version 1.44

This commit is contained in:
Tim Biermann 2019-08-31 10:40:08 +00:00
parent b1018994c0
commit 75b08f105d
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,20 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/perl5/
drwxr-xr-x root/root usr/lib/perl5/5.28/
drwxr-xr-x root/root usr/lib/perl5/5.28/linux-thread-multi/
drwxr-xr-x root/root usr/lib/perl5/site_perl/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/Exception/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Exception/Class.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/Exception/Class/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Exception/Class/Base.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Exception/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Exception/Class/
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-r--r--r-- root/root usr/share/man/man3/Exception::Class.3pm.gz
-r--r--r-- root/root usr/share/man/man3/Exception::Class::Base.3pm.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF34G+A207ZuRhRbERGYF3WqRynJaM61r5PMqpp+OJ3NPR0RZZt00kTYESDUjzFwARyDvU66KarLl32c79KX2xyAY=
SHA256 (Pkgfile) = 20c2bb0a4f110089c0e2f7f6b5c032f6cd18f05f969e7ec31b6ffe59ff6c5e3e
SHA256 (.footprint) = 81533f07e64c613f4b45d941f84fe5b913277e261481f637253ba1d0f59853d8
SHA256 (Exception-Class-1.44.tar.gz) = 33f3fbf8b138d3b04ea4ec0ba83fb0df6ba898806bcf4ef393d4cafc1a23ee0d

View File

@ -0,0 +1,19 @@
# Description: A module that allows you to declare real exception classes in Perl
# URL: https://metacpan.org/release/Exception-Class
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: p5-class-data-inheritable p5-devel-stacktrace
name=p5-exception-class
version=1.44
release=1
source=(https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Exception-Class-$version.tar.gz)
build() {
cd Exception-Class-$version
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
unset PERL5LIB PERL_MM_OPT
perl Makefile.PL INSTALLDIRS=vendor
make
make install INSTALLDIRS=vendor DESTDIR=$PKG
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
}