Drop some perl packages that are provided by perl itself

This commit is contained in:
Christoph Reiter 2023-03-03 09:50:48 +01:00
parent 0560048e0c
commit 4b6c971d4d
2 changed files with 0 additions and 65 deletions

View File

@ -1,31 +0,0 @@
# Maintainer: Andrea Dalle Vacche
_realname=Test-Harness
pkgname=perl-${_realname}
pkgver=3.42
pkgrel=1
pkgdesc="Test::Harness - Run Perl standard test scripts with statistics"
arch=('any')
license=('GPL' 'PerlArtistic')
url="https://metacpan.org/release/Test-Harness"
depends=('perl')
groups=('perl-modules')
options=('!emptydirs')
source=(https://www.cpan.org/authors/id/L/LE/LEONT/${_realname}-${pkgver}.tar.gz)
sha256sums=('0fd90d4efea82d6e262e6933759e85d27cbcfa4091b14bf4042ae20bab528e53')
build() {
cd ${_realname}-${pkgver}
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd ${_realname}-${pkgver}
make test
}
package() {
cd ${_realname}-${pkgver}
make DESTDIR="${pkgdir}" install
}

View File

@ -1,34 +0,0 @@
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
_realname=Test-Simple
pkgname=perl-${_realname}
pkgver=1.302190
pkgrel=1
pkgdesc="Basic utilities for writing tests"
arch=('any')
url="https://metacpan.org/dist/Test-Simple"
groups=('perl-modules')
depends=('perl')
license=('spdx:Artistic-1.0-Perl' 'spdx:GPL-1.0-or-later')
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/${_realname}-${pkgver}.tar.gz")
sha256sums=('fbb15226f1c605c4466a8c6ba02030083d54333d34fa76c02549cae7014c3a0e')
prepare() {
cd "${srcdir}/${_realname}-${pkgver}"
}
check() {
cd "${srcdir}/${_realname}-${pkgver}"
make test
}
build() {
cd "${srcdir}/${_realname}-${pkgver}"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "${srcdir}/${_realname}-${pkgver}"
make install DESTDIR="${pkgdir}"
}