diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:08 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:08 +0000 |
commit | 8dec934983e014a36ea32164f2394d7db89fb8ae (patch) | |
tree | 73e52d6b5f01f1ac44e922a4afcb74de747b906d /p5-dist-checkconflicts | |
parent | 27b560136fdd0b6d09ac8d4a7d3066abfb1c34b5 (diff) | |
download | contrib-8dec934983e014a36ea32164f2394d7db89fb8ae.tar.gz contrib-8dec934983e014a36ea32164f2394d7db89fb8ae.tar.xz |
p5-dist-checkconflicts: initial commit, version 0.11
Diffstat (limited to 'p5-dist-checkconflicts')
-rw-r--r-- | p5-dist-checkconflicts/.footprint | 17 | ||||
-rw-r--r-- | p5-dist-checkconflicts/.signature | 5 | ||||
-rw-r--r-- | p5-dist-checkconflicts/Pkgfile | 25 |
3 files changed, 47 insertions, 0 deletions
diff --git a/p5-dist-checkconflicts/.footprint b/p5-dist-checkconflicts/.footprint new file mode 100644 index 000000000..04e3ed657 --- /dev/null +++ b/p5-dist-checkconflicts/.footprint @@ -0,0 +1,17 @@ +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/Dist/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Dist/CheckConflicts.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/Dist/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Dist/CheckConflicts/ +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/Dist::CheckConflicts.3pm.gz diff --git a/p5-dist-checkconflicts/.signature b/p5-dist-checkconflicts/.signature new file mode 100644 index 000000000..2a2fe9310 --- /dev/null +++ b/p5-dist-checkconflicts/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF34KEnPIuQKeTY4B1pyleKwYvGQQQ1ac5zR2AsyJUs2sKVjlLkK0VFz9cxNPPJY5gv81NaA6dyngFCBFBcXwWJQI= +SHA256 (Pkgfile) = bcaa6eca507eeeac7e1af9bbaaae051f1c5e548e63da70ea4f008a127122ef6c +SHA256 (.footprint) = 01a556e85d2ac77b5eb74da0ce84bfe76de48ee97872c729dd08e518bd2e4e76 +SHA256 (Dist-CheckConflicts-0.11.tar.gz) = ea844b9686c94d666d9d444321d764490b2cde2f985c4165b4c2c77665caedc4 diff --git a/p5-dist-checkconflicts/Pkgfile b/p5-dist-checkconflicts/Pkgfile new file mode 100644 index 000000000..f7785c4ad --- /dev/null +++ b/p5-dist-checkconflicts/Pkgfile @@ -0,0 +1,25 @@ +# Description: Declare version conflicts for your dist +# URL: https://metacpan.org/release/Dist-CheckConflicts +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: p5-list-moreutils + +name=p5-dist-checkconflicts +version=0.11 +release=1 +source=(https://cpan.metacpan.org/authors/id/D/DO/DOY/Dist-CheckConflicts-$version.tar.gz) + +build() { + cd Dist-CheckConflicts-$version + export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor" \ + PERL_MB_OPT="--installdirs vendor" \ + MODULEBUILDRC=/dev/null + /usr/bin/perl Makefile.PL + make + make DESTDIR=$PKG install + find $PKG -name .packlist -o \ + -name perllocal.pod -o \ + -name README -o \ + -name '*.bs' | xargs rm +} |