initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

30
perl-test-most/LICENSE Normal file
View File

@@ -0,0 +1,30 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Test-Most
Upstream-Contact: Curtis Poe <ovid@cpan.org>
Source: https://metacpan.org/release/Test-Most
Files: *
Copyright: 2008, Curtis Poe <ovid@cpan.org>
License: Artistic or GPL-1+
Files: debian/*
Copyright: 2009, Damyan Ivanov <dmn@debian.org>
2010-2012, Salvatore Bonaccorso <carnil@debian.org>
2012-2014, Florian Schlichting <fsfs@debian.org>
License: Artistic or GPL-1+
License: Artistic
This program is free software; you can redistribute it and/or modify
it under the terms of the Artistic License, which comes with Perl.
.
On Debian systems, the complete text of the Artistic License can be
found in `/usr/share/common-licenses/Artistic'.
License: GPL-1+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
.
On Debian systems, the complete text of version 1 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-1'.

33
perl-test-most/PKGBUILD Normal file
View File

@@ -0,0 +1,33 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-test-most
_realpkgname=Test-Most
pkgver=0.37
pkgrel=1
pkgdesc="Most commonly needed test functions and features"
arch=('any')
url='https://metacpan.org/release/Test-Most'
license=('GPL-1')
depends=('perl' 'perl-exception-class' 'perl-test-deep' 'perl-test-differences'
'perl-test-exception' 'perl-test-warn')
options=(!emptydirs)
_archive="$_realpkgname-$pkgver"
source=("https://cpan.perl.org/modules/by-module/${_realpkgname%-*}/$_archive.tar.gz"
"LICENSE")
sha512sums=('133dbb9815884fbecd65520dd2f2d43a761439c33f7d32ffdfc80ed3d3e05fb563dca420cf5445e61382735a048c467b35b5c160b1013b5f5c7616be00aa328d'
'e8457ed83eec98751713ffe6b8edf64bd0fb0959065184f7de6230495a9e3c66b137ae3e3164d7c81d98e979c1d2bc63b8b8d1106d15816d26e9f0582688b6ae')
build() {
cd "$_archive"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
perl Makefile.PL
make
}
package() {
cd "$_archive"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}