main/perl-test2-suite: upgrade to 0.000083 and modernize

This commit is contained in:
Roberto Oliveira 2017-11-11 12:27:28 +00:00 committed by Carlo Landmeter
parent 1bc72d05b6
commit 01ad9eb7bb

View File

@ -3,37 +3,44 @@
# Maintainer: Francesco Colista <fcolista@alpinelinux.org> # Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=perl-test2-suite pkgname=perl-test2-suite
_pkgreal=Test2-Suite _pkgreal=Test2-Suite
pkgver=0.000070 pkgver=0.000083
pkgrel=0 pkgrel=0
pkgdesc="Distribution with a rich set of tools built upon the Test2 framework." pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
url="http://search.cpan.org/dist/Test2-Suite/" url="http://search.cpan.org/dist/Test2-Suite/"
arch="noarch" arch="noarch"
license="GPL PerlArtistic" license="GPL PerlArtistic"
cpandepends="perl-test-simple perl-importer perl-term-table perl-sub-info" cpandepends="perl-test-simple perl-importer perl-term-table perl-sub-info"
cpanmakedepends=" " cpanmakedepends=""
depends="$cpandepends" depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends" makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc" subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_pkgreal-$pkgver.tar.gz" source="http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_pkgreal-$pkgver.tar.gz"
_builddir="$srcdir/$_pkgreal-$pkgver" builddir="$srcdir/$_pkgreal-$pkgver"
prepare() { prepare() {
cd "$_builddir" default_prepare
cd "$builddir"
#export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` #export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
} }
build() { build() {
cd "$_builddir" cd "$builddir"
#export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` #export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
make && make test make
}
check() {
cd "$builddir"
make test
} }
package() { package() {
cd "$_builddir" cd "$builddir"
make DESTDIR="$pkgdir" install || return 1 make DESTDIR="$pkgdir" install
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
} }
sha512sums="9048023cda23a7c07b48b6a83e06782dbc060e22dfe8d770076649c9aa506714c80f3f70c6e7fb6d6929eeda818d85f14eb1d56a27313366b3e367a0e6493221 Test2-Suite-0.000070.tar.gz" sha512sums="2638cc7c6e7ad9443086114707ea792059a962c1ea24bfc1f331e8254a638052f4927949c9311b6fc83de48d556aae0763e31333122f3d0904831dd595c68cab Test2-Suite-0.000083.tar.gz"