p5-dist-checkconflicts: initial commit, version 0.11

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

View File

@ -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

View File

@ -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

View File

@ -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
}