p5-sub-exporter: initial commit, version 0.987

This commit is contained in:
Tim Biermann 2019-08-31 10:40:32 +00:00
parent d0e3f1f90f
commit fdf73b3190
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,24 @@
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/Sub/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Sub/Exporter.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/Sub/Exporter/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Sub/Exporter/Cookbook.pod
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Sub/Exporter/Tutorial.pod
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Sub/Exporter/Util.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/Sub/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Sub/Exporter/
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/Sub::Exporter.3pm.gz
-r--r--r-- root/root usr/share/man/man3/Sub::Exporter::Cookbook.3pm.gz
-r--r--r-- root/root usr/share/man/man3/Sub::Exporter::Tutorial.3pm.gz
-r--r--r-- root/root usr/share/man/man3/Sub::Exporter::Util.3pm.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF36E4NwFZEeqYYrPCtQE8mtmGbb1JdPdvWwUFPXcKbTt/yAAu1uSlF3q/o28cB3C98RBIPMS1N7+Md/IfFjZdHw0=
SHA256 (Pkgfile) = 0c0e5042de2786bd40c1878b1f003b22b5185fa495eccdaf4e6caa67784451de
SHA256 (.footprint) = e46cb43d15ff852dc1980c6b2d26bdd25a8278d36bf3649782989d392e8646d4
SHA256 (Sub-Exporter-0.987.tar.gz) = 543cb2e803ab913d44272c7da6a70bb62c19e467f3b12aaac4c9523259b083d6

25
p5-sub-exporter/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: A sophisticated exporter for custom-built routines
# URL: https://metacpan.org/release/Sub-Exporter
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: p5-data-optlist p5-params-util p5-sub-install
name=p5-sub-exporter
version=0.987
release=1
source=(https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-$version.tar.gz)
build() {
cd Sub-Exporter-$version
export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL="--skipdeps" \
PERL_MM_OPT="INSTALLDIRS=vendor" \
PERL_MB_OPT="--installdirs vendor" \
MODULEBUILDRC=/dev/null
/usr/bin/perl Makefile.PL
make
make DESTDIR=$PKG install
find $PKG -name .packlist -o \
-name perllocal.pod -o \
-name README -o \
-name '*.bs' | xargs rm
}