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

View File

@@ -0,0 +1,29 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Perl4-CoreLibs
Upstream-Contact: Andrew Main (Zefram) <zefram@fysh.org>
Source: https://metacpan.org/release/Perl4-CoreLibs
Files: *
Copyright: 1987-2009 Larry Wall et al
2010, 2011, 2017 Andrew Main (Zefram) <zefram@fysh.org>
License: Artistic or GPL-1+
Files: debian/*
Copyright: 2011, Dominic Hargreaves <dom@earth.li>
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'.

View File

@@ -0,0 +1,36 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-perl4-corelibs
pkgver=0.004
pkgrel=1
pkgdesc='Libraries historically supplied with Perl 4'
arch=('any')
url='https://metacpan.org/release/Perl4-CoreLibs'
license=('GPL-1')
depends=('perl')
makedepends=('perl-module-build')
options=('!emptydirs')
source=("https://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Perl4-CoreLibs-$pkgver.tar.gz"
"LICENSE")
sha512sums=('71083f1640e95559ee4bc5a7f1bbe6beacec048a073e211ab7f6ee4de26463f6ae3d87e99e00a41ea8f2f93a5e96367bafe907ef3367e400de35123c22eb7b88'
'0ee4b8096f61df4a35d239d8140b4f795715cd3d4e3a2a250046a3677d83080ebeb09d6905091431b390d94a226328a23cbdc3180dfbec7890168a02b9408143')
prepare() {
cd Perl4-CoreLibs-$pkgver
# issue in testsuite - delay issue until 2040
# https://rt.cpan.org/Public/Bug/Display.html?id=131341
sed -i "s#< 70#< 90#" t/timelocal.t
}
build() {
cd Perl4-CoreLibs-$pkgver
perl Build.PL
./Build
}
package() {
cd Perl4-CoreLibs-$pkgver
./Build install installdirs=vendor destdir="$pkgdir"
install -Dm644 "$srcdir"/LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
}