p5-types-serialiser: initial commit, version 1.0

This commit is contained in:
Tim Biermann 2019-08-31 10:43:33 +00:00
parent ba45315984
commit 49dd759368
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 47 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/Types/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Types/Serialiser.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/Types/Serialiser/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Types/Serialiser/Error.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/Types/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Types/Serialiser/
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/Types::Serialiser.3pm.gz
-r--r--r-- root/root usr/share/man/man3/Types::Serialiser::Error.3pm.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF369l+s/9aigpWLhf8MdUKnXmUw4EBJL/I3QsX6jrukPzMjAfxcwoeCf+iE+LRxNh23biUDl3w16lo9NYmp64cgs=
SHA256 (Pkgfile) = 2cfc7c95bbb269ad452b1d2f5e49c015a9d9a2ce73bbf09ac1bc25e2762faa4d
SHA256 (.footprint) = 001e4ee0c88f4b77dda5fdce9f16ac5015fa7eb5e3091ba1267fa9d2bc9e6e46
SHA256 (Types-Serialiser-1.0.tar.gz) = 7ad3347849d8a3da6470135018d6af5fd8e58b4057cd568c3813695f2a04730d

View File

@ -0,0 +1,22 @@
# Description: simple data types for common serialisation formats
# URL: https://cpan.metacpan.org/dist/Types-Serialiser
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: p5-common-sense
name=p5-types-serialiser
version=1.0
release=1
source=(https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Types-Serialiser-$version.tar.gz)
build() {
cd Types-Serialiser-$version
export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$PKG"'" \
PERL_MB_OPT="--installdirs vendor --destdir '"$PKG"'" \
MODULEBUILDRC=/dev/null
perl Makefile.PL
make
make install
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
}