p5-cgi: initial commit, version 4.44

This commit is contained in:
Tim Biermann 2019-08-31 10:42:43 +00:00
parent 5a2d6191f4
commit fda7c1a2fe
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 56 additions and 0 deletions

32
p5-cgi/.footprint Normal file
View File

@ -0,0 +1,32 @@
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/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/CGI/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/Carp.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/Cookie.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/CGI/File/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/File/Temp.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/CGI/HTML/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/HTML/Functions.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/Pretty.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/Push.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/CGI/Util.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Fh.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/CGI/
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/CGI.3pm.gz
-r--r--r-- root/root usr/share/man/man3/CGI::Carp.3pm.gz
-r--r--r-- root/root usr/share/man/man3/CGI::Cookie.3pm.gz
-r--r--r-- root/root usr/share/man/man3/CGI::HTML::Functions.3pm.gz
-r--r--r-- root/root usr/share/man/man3/CGI::Pretty.3pm.gz
-r--r--r-- root/root usr/share/man/man3/CGI::Push.3pm.gz
-r--r--r-- root/root usr/share/man/man3/CGI::Util.3pm.gz

5
p5-cgi/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37C3k6rpRGomC44fPdzU3LnRrFNKc6BLmZZ0mXnVYdpSBjO/uIbST8jweMDE+UiKlNFYCdRtRRbBCQCKQIkeTAg=
SHA256 (Pkgfile) = 1636c2841832b74967c878b92d7dae12d73b68011e253be141d0da2405b929fd
SHA256 (.footprint) = 8fb190ab76900233ad6e2491834f269cda80854cde5b954851f62fd00834a88b
SHA256 (CGI-4.44.tar.gz) = 12435fb7ebd3585c47b6d60ee4f5c7d6a7c114a2827d2b5acf3d62aa9fcf1208

19
p5-cgi/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Handle Common Gateway Interface requests and responses
# URL: https://metacpan.org/release/CGI
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: p5-html-parser
name=p5-cgi
version=4.44
release=1
source=(https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-$version.tar.gz)
build() {
cd CGI-$version
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
unset PERL5LIB PERL_MM_OPT
/usr/bin/perl Makefile.PL
make
make install INSTALLDIRS=vendor DESTDIR=$PKG
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
}