diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:43:22 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:43:22 +0000 |
commit | ba45315984fe36808a4f6269f0e65e99f2501d12 (patch) | |
tree | 18c0f814a2ed2e6befb376ea7d05fa0fccdaaad4 /p5-json-xs | |
parent | c142efd4aba3732d545b7331487df8ad3a93f76b (diff) | |
download | contrib-ba45315984fe36808a4f6269f0e65e99f2501d12.tar.gz contrib-ba45315984fe36808a4f6269f0e65e99f2501d12.tar.xz |
p5-json-xs: initial commit, version 4.02
Diffstat (limited to 'p5-json-xs')
-rw-r--r-- | p5-json-xs/.footprint | 25 | ||||
-rw-r--r-- | p5-json-xs/.signature | 5 | ||||
-rw-r--r-- | p5-json-xs/Pkgfile | 18 |
3 files changed, 48 insertions, 0 deletions
diff --git a/p5-json-xs/.footprint b/p5-json-xs/.footprint new file mode 100644 index 000000000..67962aba1 --- /dev/null +++ b/p5-json-xs/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-r-xr-xr-x root/root usr/bin/json_xs +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/linux-thread-multi/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/JSON/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/JSON/XS.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/JSON/XS/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/JSON/XS/Boolean.pm +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/JSON/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/JSON/XS/ +-r-xr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/JSON/XS/XS.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-r--r--r-- root/root usr/share/man/man1/json_xs.1pm.gz +drwxr-xr-x root/root usr/share/man/man3/ +-r--r--r-- root/root usr/share/man/man3/JSON::XS.3pm.gz +-r--r--r-- root/root usr/share/man/man3/JSON::XS::Boolean.3pm.gz diff --git a/p5-json-xs/.signature b/p5-json-xs/.signature new file mode 100644 index 000000000..67184bdd2 --- /dev/null +++ b/p5-json-xs/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF30pHaJo36Jbzm2yFxf3io4V1NJ/c2Fin+JlgzozalRovzPrkTi+JyWuabGZHEgiREfb3fX5NMRjoZaeONkpS8QY= +SHA256 (Pkgfile) = 4d98694a230c85168575c8bcee854342b9320b24f7ede8dfb0ad393f10d02789 +SHA256 (.footprint) = 9c9094a9d1dbdfd7c3c3aa50a1a8f46ac5db2344b57c7351452c4eeb6d0025da +SHA256 (JSON-XS-4.02.tar.gz) = a5ad172138071a14729da8a01921ca233da4fe2bed290ffdfb8e560dd8adcf16 diff --git a/p5-json-xs/Pkgfile b/p5-json-xs/Pkgfile new file mode 100644 index 000000000..be432f6d6 --- /dev/null +++ b/p5-json-xs/Pkgfile @@ -0,0 +1,18 @@ +# Description: JSON::XS - JSON serialising/deserialising, done correctly and fast +# URL: https://metacpan.org/changes/distribution/JSON-XS +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: p5-common-sense p5-types-serialiser p5-canary-stability + +name=p5-json-xs +version=4.02 +release=1 +source=(https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-$version.tar.gz) + +build() { + cd JSON-XS-$version + PERL_CANARY_STABILITY_NOPROMPT=1 \ + perl Makefile.PL INSTALLDIRS=vendor + make + make DESTDIR="$PKG" install + find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete +} |