commit ffcd0fae5ec32bd6f7fb2e863fae13ff69d890a2 Author: Tim Biermann <tbier@posteo.de> Date: Sat Aug 31 10:40:05 2019 +0000 p5-data-dump: initial commit, version 1.23 diff --git a/p5-data-dump/.footprint b/p5-data-dump/.footprint new file mode 100644 index 00000000..b819389e --- /dev/null +++ b/p5-data-dump/.footprint @@ -0,0 +1,23 @@ +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/Data/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Data/Dump.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/Data/Dump/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Data/Dump/FilterContext.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Data/Dump/Filtered.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Data/Dump/Trace.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/Data/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Data/Dump/ +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/Data::Dump.3pm.gz +-r--r--r-- root/root usr/share/man/man3/Data::Dump::Filtered.3pm.gz +-r--r--r-- root/root usr/share/man/man3/Data::Dump::Trace.3pm.gz diff --git a/p5-data-dump/.signature b/p5-data-dump/.signature new file mode 100644 index 00000000..916c0b1b --- /dev/null +++ b/p5-data-dump/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3yqxyUwN+lPNjdoVs/mPICDRPxX1q9dH5wbnP8Gcdr/iAaudLP3Dd1g1PFizpddXEf0aN100U89fNmZhvIyh+ww= +SHA256 (Pkgfile) = 9aeda6394c190f3939f59bdc3d356ed82b02f26309d41ce6e3167d06b2b1392e +SHA256 (.footprint) = 8ad0fba38a76724437b310b9021a02c35d615a6ed49c6387fdcf8758c1810a96 +SHA256 (Data-Dump-1.23.tar.gz) = af53b05ef1387b4cab4427e6789179283e4f0da8cf036e8db516ddb344512b65 diff --git a/p5-data-dump/Pkgfile b/p5-data-dump/Pkgfile new file mode 100644 index 00000000..87ecbc57 --- /dev/null +++ b/p5-data-dump/Pkgfile @@ -0,0 +1,22 @@ +# Description: Pretty printing of data structures +# URL: https://metacpan.org/release/Data-Dump +# Maintainer: Tim Biermann, tbier at posteo dot det +# Depends on: + +name=p5-data-dump +version=1.23 +release=1 +source=(https://cpan.metacpan.org/authors/id/G/GA/GAAS/Data-Dump-$version.tar.gz) + +build() { + cd Data-Dump-$version + unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + perl Makefile.PL + make + make install INSTALLDIRS=vendor DESTDIR=$PKG + find $PKG -name .packlist -o \ + -name perllocal.pod -o \ + -name README -o \ + -name '*.bs' | xargs rm +}