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

34
perl-io-multiplex/LICENSE Normal file
View File

@@ -0,0 +1,34 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: IO-Multiplex
Upstream-Contact: Rob Brown <bbb@cpan.org>
Source: https://metacpan.org/release/IO-Multiplex
Files: *
Copyright: 1999, Bruce J Keeler <bruce@gridpoint.com>
2011-2008, Rob Brown <bbb@cpan.org>
License: Artistic or GPL-1+
Files: debian/*
Copyright: 2003, Luca Filipozzi <lfilipoz@debian.org>
2004, Gunnar Wolf <gwolf@debian.org>
2006, 2007, 2008, gregor herrmann <gregoa@debian.org>
2006, Russ Allbery <rra@debian.org>
2008, Ansgar Burchardt <ansgar@debian.org>
2011-2015, Salvatore Bonaccorso <carnil@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,27 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-io-multiplex
pkgver=1.16
pkgrel=1
pkgdesc="Perl/CPAN Module IO::Multiplex : Manage Input Output on many file handles"
arch=('any')
url="https://search.cpan.org/dist/IO-Multiplex/"
license=('GPL-1')
source=("https://search.cpan.org/CPAN/authors/id/B/BB/BBB/IO-Multiplex-$pkgver.tar.gz"
"LICENSE")
sha512sums=('695462be217a107f734e214d2f0a00800962abac24cf4e30272376f5effa25584bc458377feed16b5cc7bab5858c00e547dc97d02962e57b2b8fa6e55df20fa6'
'9bb81a136f803ba39a64fce9c7a2393575460d32a80db86a7b2085fbba6a9f0df41b1a2c180a2c32f9081b903cf0c7f2c1d4b5e0f3bde2a372d9eebc6a2dd9a8')
build() {
cd "$srcdir"/IO-Multiplex-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir"/IO-Multiplex-$pkgver
make install DESTDIR="$pkgdir"
find "$pkgdir" -name '.packlist' -delete
find "$pkgdir" -name '*.pod' -delete
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}