summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-12-24 14:36:24 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-12-24 14:36:24 +0100
commit3b656cf84c30dcb95a50a85ae957955ad98aa9ae (patch)
tree103b279b57770b2fb97006e692cf6036a8733e31
parentnet-analyzer/testssl: drop 3.0.8 (diff)
downloadgentoo-3b656cf84c30dcb95a50a85ae957955ad98aa9ae.tar.gz
gentoo-3b656cf84c30dcb95a50a85ae957955ad98aa9ae.tar.bz2
gentoo-3b656cf84c30dcb95a50a85ae957955ad98aa9ae.zip
net-dns/fpdns: drop 0.10.0_pre20130404-r1
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
-rw-r--r--net-dns/fpdns/Manifest1
-rw-r--r--net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch33
-rw-r--r--net-dns/fpdns/fpdns-0.10.0_pre20130404-r1.ebuild28
3 files changed, 0 insertions, 62 deletions
diff --git a/net-dns/fpdns/Manifest b/net-dns/fpdns/Manifest
index 2ff396154d77..36fa2c72f9e4 100644
--- a/net-dns/fpdns/Manifest
+++ b/net-dns/fpdns/Manifest
@@ -1,2 +1 @@
-DIST fpdns-0.10.0_pre20130404.tar.gz 931723 BLAKE2B cab459afee74ef5d8163a25b98c123b799270e6d3293f155a340ebdbfbc86266fbffa999d31928c9b1a732898b0adf4a49e97469f9ae992a0e38f9478431e84c SHA512 1a4d9c1cb666efa3f48dcca2b5cd04793e92727359652095572b17479f5343479c57d2937f1fff8070c071a2698eda5c4dff981caf86436f184f0b076b0fa0b3
DIST fpdns-20190131.tar.gz 933415 BLAKE2B 58208f9b1c1204a9cddcc390a8814158b0cbd5ed958c1b4d30588d2bc422c20047732b47a0358484dc21b255e67f2b312dd3af82e8ec52253345651d8c38fa67 SHA512 cde6e3ae9661b82456b65e1b309c1190b63b83406fcc75971b2903d7b38a16cf46b2e2c3d9b3f577c20a8f7ffc077243414fc5e53bed962c85512e2ea6aec15b
diff --git a/net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch b/net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch
deleted file mode 100644
index 17eadbe4a139..000000000000
--- a/net-dns/fpdns/files/fpdns-0.10.0_pre20130404.ro-header.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From ca0391377ad7150e61ff300cb5195c97a154233b Mon Sep 17 00:00:00 2001
-From: Jakob Schlyter <jakob@kirei.se>
-Date: Wed, 28 Aug 2013 10:24:11 +0200
-Subject: [PATCH] do not set header counters unless changed
-
----
- lib/Net/DNS/Fingerprint.pm | 10 ++++++----
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/lib/Net/DNS/Fingerprint.pm b/lib/Net/DNS/Fingerprint.pm
-index d4a2e5a..e096d42 100644
---- a/lib/Net/DNS/Fingerprint.pm
-+++ b/lib/Net/DNS/Fingerprint.pm
-@@ -2171,10 +2171,12 @@ sub fp2header {
- $header->ad(shift @list);
- $header->cd(shift @list);
- $header->rcode(shift @list);
-- $header->qdcount(shift @list);
-- $header->ancount(shift @list);
-- $header->nscount(shift @list);
-- $header->arcount(shift @list);
-+
-+ my ($qdcount, $ancount, $nscount, $arcount) = @list;
-+ $header->qdcount($qdcount) unless $qdcount == $header->qdcount;
-+ $header->qdcount($ancount) unless $ancount == $header->ancount;
-+ $header->qdcount($nscount) unless $nscount == $header->nscount;
-+ $header->qdcount($arcount) unless $arcount == $header->arcount;
- }
-
- sub probe {
---
-1.9.1
-
diff --git a/net-dns/fpdns/fpdns-0.10.0_pre20130404-r1.ebuild b/net-dns/fpdns/fpdns-0.10.0_pre20130404-r1.ebuild
deleted file mode 100644
index 69910304830a..000000000000
--- a/net-dns/fpdns/fpdns-0.10.0_pre20130404-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit perl-module
-
-DESCRIPTION="Fingerprinting DNS servers"
-HOMEPAGE="https://github.com/kirei/fpdns/"
-MY_P="${PN}-${PV##*_pre}"
-SRC_URI="https://github.com/kirei/fpdns/archive/20130404.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}"/"${MY_P}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-perl/Net-DNS-0.74"
-
-PATCHES=(
- "${FILESDIR}"/${P}.ro-header.patch
-)
-
-src_install() {
- dobin apps/fpdns
- insinto "${VENDOR_LIB}"/Net/DNS/
- doins lib/Net/DNS/Fingerprint.pm
-}