diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:08 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:08 +0000 |
commit | 75b08f105dcf96c48d119a4f61069977cabe0861 (patch) | |
tree | 2d16cc104c364a5ecdd7778391b4443a2163a3ef /p5-exception-class | |
parent | b1018994c04a52ded13a275c5f52b91bcafd84a3 (diff) | |
download | contrib-75b08f105dcf96c48d119a4f61069977cabe0861.tar.gz contrib-75b08f105dcf96c48d119a4f61069977cabe0861.tar.xz |
p5-exception-class: initial commit, version 1.44
Diffstat (limited to 'p5-exception-class')
-rw-r--r-- | p5-exception-class/.footprint | 20 | ||||
-rw-r--r-- | p5-exception-class/.signature | 5 | ||||
-rw-r--r-- | p5-exception-class/Pkgfile | 19 |
3 files changed, 44 insertions, 0 deletions
diff --git a/p5-exception-class/.footprint b/p5-exception-class/.footprint new file mode 100644 index 000000000..ee7316b50 --- /dev/null +++ b/p5-exception-class/.footprint @@ -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 diff --git a/p5-exception-class/.signature b/p5-exception-class/.signature new file mode 100644 index 000000000..de9b86e62 --- /dev/null +++ b/p5-exception-class/.signature @@ -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 diff --git a/p5-exception-class/Pkgfile b/p5-exception-class/Pkgfile new file mode 100644 index 000000000..9b7a2332b --- /dev/null +++ b/p5-exception-class/Pkgfile @@ -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 +} |