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

32
perl-sub-override/LICENSE Normal file
View File

@@ -0,0 +1,32 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Sub-Override
Upstream-Contact: Curtis "Ovid" Poe
Source: https://metacpan.org/release/Sub-Override
Files: *
Copyright: © 2004-2005, Curtis "Ovid" Poe
License: Artistic or GPL-1+
Files: debian/*
Copyright:
© 2004-2005, Kenneth J. Pronovici <pronovic@debian.org>
© 2006, Víctor Pérez Pereira <vperez@debianvenezuela.org>
© 2010, Ansgar Burchardt <ansgar@debian.org>
© 2013, 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'.

View File

@@ -0,0 +1,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-sub-override
_cpanname=Sub-Override
pkgver=0.09
pkgrel=1
pkgdesc="Perl extension for easily overriding subroutines"
url='https://search.cpan.org/dist/Term-ExtendedColor'
arch=('any')
license=('GPL-1')
depends=('perl')
options=('!emptydirs')
source=(https://search.cpan.org/CPAN/authors/id/O/OV/OVID/${_cpanname}-${pkgver}.tar.gz
LICENSE)
sha512sums=('35000e8cabb6ca4cc0cac53af99fc9cb8ac14b1e71dbfa27dc58a339cb1b54e439064f2241798e351cc5ad297a2f9e4fde870ca97e2eb09a2430c11af589d412'
'b931d1b781ebffe7e69fd935051687607b20efd0311e41006dad114593cd8e4ac05f600acbe414a80ccaa1cb1301f419c2a887329e1e5afe796a0a0d55249b02')
build() {
cd ${_cpanname}-${pkgver}
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd ${_cpanname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm 644 README* -t "${pkgdir}/usr/share/doc/${pkgname}"
install -Dm 644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/$pkgname"
}