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-net-dns/LICENSE Normal file
View File

@@ -0,0 +1,34 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Contact: net-dns-users@nlnetlabs.nl
Source: https://metacpan.org/release/Net-DNS
Upstream-Name: Net-DNS
Files: *
Copyright: Willem Toorop <willem@nlnetlabs.nl>
Olaf Kolkman <olaf@net-dns.org>
Michael Fuhr <mike@fuhr.org>
Chris Reinhardt <ctriv@net-dns.org>
Dick Franks <rwfranks@acm.org>
License: Artistic or GPL-1+
Files: debian/*
Copyright: 1998-2000, 2002-2010, Florian Hinzmann <fh@debian.org>
2012, Florian Roscher <fh@debian.org>
2014, Ondřej Surý <ondrej@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'.

30
perl-net-dns/PKGBUILD Normal file
View File

@@ -0,0 +1,30 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-net-dns
pkgver=1.29
pkgrel=1
pkgdesc="Perl Module: Interface to the DNS resolver"
arch=('any')
license=('GPL-1')
url="https://search.cpan.org/dist/Net-DNS/"
depends=('perl-digest-hmac' 'perl-net-ip')
optdepends=('perl-io-socket-inet6: IPv6 support'
'perl-socket6: IPv6 support'
'perl-net-libidn2: non-ASCII domain support')
options=('!emptydirs')
source=("https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-$pkgver.tar.gz"
"LICENSE")
sha512sums=('6568ee2ff0cb931a648c36fe7812cde623fa8dadcd7c9401b397188c197a5c0e567ca56ae021147bedbe4a57d45055f36af043c771ee8a08476298855447775f'
'0697f920d60e5c708ad534f513c3b90a317641e17dc51a982e45303316fdbc99f82a386643deca5c3843744021b536a4a879f28b28b8373f9324ee0c832ef7fb')
build() {
cd Net-DNS-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd Net-DNS-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/$pkgname"
}