p5-text-csv: initial commit, version 2.00

This commit is contained in:
Tim Biermann 2019-08-31 10:40:47 +00:00
parent c58b6b4bed
commit cd862764c8
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 42 additions and 0 deletions

19
p5-text-csv/.footprint Normal file
View File

@ -0,0 +1,19 @@
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/Text/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Text/CSV.pm
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Text/CSV_PP.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/Text/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Text/CSV/
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/Text::CSV.3pm.gz
-r--r--r-- root/root usr/share/man/man3/Text::CSV_PP.3pm.gz

5
p5-text-csv/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/CO2e7/BCGO6DKDFeg4wiQY/10iiRLYfcuudXh5fekYUVYIIBpWwlpAgVb3J38WcmhiHaxABa15HQPbE3EbAQ4=
SHA256 (Pkgfile) = 7bae8bfd623c62d5f9a9d868482c6f4f10761ab391fef930c7298057e385b567
SHA256 (.footprint) = 5f6ee19a60fae64efbe0908a2a5385af4b21e3d59c94fdc27e0fa29f68976d8e
SHA256 (Text-CSV-2.00.tar.gz) = 8ccbd9195805222d995844114d0e595bb24ce188f85284dbf256080311cbb2c2

18
p5-text-csv/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: comma-separated values manipulator
# URL: https://metacpan.org/release/Text-CSV
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=p5-text-csv
version=2.00
release=1
source=(https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/Text-CSV-$version.tar.gz)
build() {
cd Text-CSV-$version
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
perl Makefile.PL
make
make DESTDIR=$PKG install
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
}