dev-perl/Net-DNS: drop 1.530.0

Bug: https://bugs.gentoo.org/979439
Signed-off-by: Brett A C Sheffield <bacs@librecast.net>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1602
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Brett A C Sheffield
2026-08-01 15:07:17 +00:00
committed by Sam James
parent 0823cda80f
commit fba0db9418
2 changed files with 0 additions and 53 deletions

View File

@@ -1,3 +1,2 @@
DIST Net-DNS-1.53.tar.gz 264932 BLAKE2B 7d24674409961a42fd4cf7b030734da93684d044f4e1cd8b99b57735e8cac337858704e6c1eb1cd3ddf1f8c00e9dc28e67700940f11f60732579a940f569217b SHA512 226db1c8e1c170ee4ae331c1a77ab3993f02e423276697f4c4ad6ce54fd9a37db2e84eae7d0e04ab0410e4c730a673557b8aa77ccf4c50c004a6cf711149e001
DIST Net-DNS-1.56.tar.gz 266111 BLAKE2B 4b81b09e9c753b248a663f4ea1e1121ba62e00ab0f2abb5af4afe554d1eb3a137672cd4c3bceb85c6113d7c5eaad75994273a4db2fe6842c80541f4e72f8a060 SHA512 68d8f1c49df9d3d1e5826f758611888a9b3a2e9cb96064f6da4e31648d6cadd676ff67511531054d3a7c1a69605a4ac9fb285149b70ac8798a8f58150da5493b
DIST Net-DNS-1.56.tar.gz.asc 659 BLAKE2B 6ae2cbe0f901d0197d52bdc50d74ff9ecf00f53f6a36f2fd36688b7f9386ee5b6f53e45a09cdc79f042964d196c1bb540457ba04378ea6c469eff57024bd2742 SHA512 5e551e98d08f98c61a156979a03483c518d5b8192ac1427faad55af201df7294da3bf73405f4214eaa9acecc31f430c772ce52ce52dadf6bd6c5af72ef8953ca

View File

@@ -1,52 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=NLNETLABS
DIST_VERSION=1.53
DIST_EXAMPLES=( "contrib" "demo" )
inherit toolchain-funcs perl-module
DESCRIPTION="Perl Interface to the Domain Name System"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
IUSE="minimal"
PDEPEND="
!minimal? ( >=dev-perl/Net-DNS-SEC-1.30.0 )
"
RDEPEND="
>=dev-perl/Digest-HMAC-1.30.0
!minimal? (
>=dev-perl/Digest-BubbleBabble-0.20.0
>=dev-perl/Net-LibIDN2-1.0.0
)
"
BDEPEND="
${RDEPEND}
"
src_prepare() {
perl-module_src_prepare
mydoc="TODO"
# --IPv6-tests requires that you have external IPv6 connectivity
# as it connects to 2001:7b8:206:1:0:1234:be21:e31e
if ! use test || ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
myconf="${myconf} --no-online-tests --no-IPv6-tests"
fi
}
src_compile() {
emake FULL_AR="$(tc-getAR)" OTHERLDFLAGS="${LDFLAGS}"
}
src_test() {
perl_rm_files t/00-pod.t
if ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
elog "Network tests disabled without to DIST_TEST_OVERIDE=~network"
fi
perl-module_src_test
}