commit:     e9925658f0ade000d6529fcf03f7876c36320bb4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 20 05:43:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 20 05:43:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9925658

net-analyzer/tcpdump: drop 4.9.3-r4, 4.99.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/tcpdump/Manifest                      |   3 -
 .../files/tcpdump-4.9.3-CVE-2020-8037.patch        |  63 ------------
 net-analyzer/tcpdump/tcpdump-4.9.3-r4.ebuild       |  85 -----------------
 net-analyzer/tcpdump/tcpdump-4.99.0.ebuild         | 106 ---------------------
 4 files changed, 257 deletions(-)

diff --git a/net-analyzer/tcpdump/Manifest b/net-analyzer/tcpdump/Manifest
index a8460aafccec..713c659ac15d 100644
--- a/net-analyzer/tcpdump/Manifest
+++ b/net-analyzer/tcpdump/Manifest
@@ -1,5 +1,2 @@
-DIST tcpdump-4.9.3.tar.gz 2333119 BLAKE2B 
21e13fc40d98cfac0bbd5513580cf98313df1f8fea24c48f045f70d494aea3e75230b8481049660c109f9179015c3164f3e3b31acc76c0bfb1f2da5039f1834e
 SHA512 
3aec673f78b996a4df884b1240e5d0a26a2ca81ee7aca8a2e6d50255bb53476e008a5ced4409e278a956710d8a4d31d85bbb800c9f1aab92b0b1046b59292a22
-DIST tcpdump-4.99.0-upstream.tar.gz 2008080 BLAKE2B 
389939ea501edf66b7bb809c835feffebf15f30fbba559ce40963733a79ca271982336884acd7ff3d078decb1aaea0616d98091199918b520ef3d1fe0f194431
 SHA512 
03a434ec41c0026f237bc1e7a928b7ce67dbc342a8d982caded93d987bd356faf706a9d884231bd94f5e2a8580499fe95a28728e37a6672e371a1501ec5d6f79
-DIST tcpdump-4.99.0-upstream.tar.gz.sig 442 BLAKE2B 
a6cafbccdc1ecfb236a643b72114411e173cc898cda41edeac0c9755e48980f2d44f54c1f52b23dd992890b5aaa57e19430a600662e623832ccc62bfb7ac6fb4
 SHA512 
545770f09bec2f4ab3e723ab8582f1256eb0cb774ac2f329de17a45ee8256faea49469b796e17250d10c0455b305d39283c9b1d8b3c5a06c47a0d8088c874803
 DIST tcpdump-4.99.1-upstream.tar.gz 2014324 BLAKE2B 
0a10fe68afdfe80d3e7e661352fcaf1c47702df27fbed959f52fb0ec81543a1d4ce6b0de16a8b081de48dd43e09a13f5e1f0fb11d7590f92cbff29dc511bea12
 SHA512 
53d31355e1a6ef5a65bb3bf72454169fc80adf973a327a5768840e6ccf0550fbeb3c8a41f959635076d871df0619680321910a3a97879607f481cdaa8b7ceda7
 DIST tcpdump-4.99.1-upstream.tar.gz.sig 442 BLAKE2B 
9a80b1796ef777bd06d0b8953fe1ff446431d0ff1dffcd58e29a0b771f6734f70f3f0da7c36a1eaa1b6e57719d79c601872a84b7734208a7e8951cad9aca86ee
 SHA512 
b438643701efbbb5579d9d51ed48756a47dd644e0acb10b0edff6d04f3ae4cea6528b40820a656407b73f983b2a634e0165a6c8c0fca3b557394a14e2f2384ab

diff --git a/net-analyzer/tcpdump/files/tcpdump-4.9.3-CVE-2020-8037.patch 
b/net-analyzer/tcpdump/files/tcpdump-4.9.3-CVE-2020-8037.patch
deleted file mode 100644
index 2852845eb748..000000000000
--- a/net-analyzer/tcpdump/files/tcpdump-4.9.3-CVE-2020-8037.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-From 32027e199368dad9508965aae8cd8de5b6ab5231 Mon Sep 17 00:00:00 2001
-From: Guy Harris <[email protected]>
-Date: Sat, 18 Apr 2020 14:04:59 -0700
-Subject: [PATCH] PPP: When un-escaping, don't allocate a too-large buffer.
-
-The buffer should be big enough to hold the captured data, but it
-doesn't need to be big enough to hold the entire on-the-network packet,
-if we haven't captured all of it.
-
-(backported from commit e4add0b010ed6f2180dcb05a13026242ed935334)
----
- print-ppp.c | 18 ++++++++++++++----
- 1 file changed, 14 insertions(+), 4 deletions(-)
-
-diff --git a/print-ppp.c b/print-ppp.c
-index 891761728..33fb03412 100644
---- a/print-ppp.c
-+++ b/print-ppp.c
-@@ -1367,19 +1367,29 @@ print_bacp_config_options(netdissect_options *ndo,
-       return 0;
- }
- 
-+/*
-+ * Un-escape RFC 1662 PPP in HDLC-like framing, with octet escapes.
-+ * The length argument is the on-the-wire length, not the captured
-+ * length; we can only un-escape the captured part.
-+ */
- static void
- ppp_hdlc(netdissect_options *ndo,
-          const u_char *p, int length)
- {
-+      u_int caplen = ndo->ndo_snapend - p;
-       u_char *b, *t, c;
-       const u_char *s;
--      int i, proto;
-+      u_int i;
-+      int proto;
-       const void *se;
- 
-+      if (caplen == 0)
-+              return;
-+
-         if (length <= 0)
-                 return;
- 
--      b = (u_char *)malloc(length);
-+      b = (u_char *)malloc(caplen);
-       if (b == NULL)
-               return;
- 
-@@ -1388,10 +1398,10 @@ ppp_hdlc(netdissect_options *ndo,
-        * Do this so that we dont overwrite the original packet
-        * contents.
-        */
--      for (s = p, t = b, i = length; i > 0 && ND_TTEST(*s); i--) {
-+      for (s = p, t = b, i = caplen; i != 0; i--) {
-               c = *s++;
-               if (c == 0x7d) {
--                      if (i <= 1 || !ND_TTEST(*s))
-+                      if (i <= 1)
-                               break;
-                       i--;
-                       c = *s++ ^ 0x20;

diff --git a/net-analyzer/tcpdump/tcpdump-4.9.3-r4.ebuild 
b/net-analyzer/tcpdump/tcpdump-4.9.3-r4.ebuild
deleted file mode 100644
index 2a3d3a399dae..000000000000
--- a/net-analyzer/tcpdump/tcpdump-4.9.3-r4.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A tool for network monitoring and data acquisition"
-HOMEPAGE="https://www.tcpdump.org/ 
https://github.com/the-tcpdump-group/tcpdump";
-SRC_URI="https://www.tcpdump.org/release/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE="+drop-root smi ssl samba suid test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       net-libs/libpcap
-       drop-root? (
-               acct-group/pcap
-               acct-user/pcap
-               sys-libs/libcap-ng
-       )
-       smi? ( net-libs/libsmi )
-       ssl? (
-               >=dev-libs/openssl-0.9.6m:0=
-       )
-       suid? (
-               acct-group/pcap
-               acct-user/pcap
-       )
-"
-DEPEND="
-       ${RDEPEND}
-       test? (
-               >=net-libs/libpcap-1.9.1
-               dev-lang/perl
-       )
-"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-9999-libdir.patch
-       "${FILESDIR}"/${PN}-4.9.3-CVE-2020-8037.patch
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               $(use_enable samba smb) \
-               $(use_with drop-root cap-ng) \
-               $(use_with drop-root chroot '') \
-               $(use_with smi) \
-               $(use_with ssl crypto "${ESYSROOT}/usr") \
-               $(usex drop-root "--with-user=pcap" "")
-}
-
-src_test() {
-       if [[ ${EUID} -ne 0 ]] || ! use drop-root; then
-               emake check
-       else
-               ewarn "If you want to run the test suite, make sure you either"
-               ewarn "set FEATURES=userpriv or set USE=-drop-root"
-       fi
-}
-
-src_install() {
-       dosbin tcpdump
-       doman tcpdump.1
-       dodoc *.awk
-       dodoc CHANGES CREDITS README.md
-
-       if use suid; then
-               fowners root:pcap /usr/sbin/tcpdump
-               fperms 4110 /usr/sbin/tcpdump
-       fi
-}
-
-pkg_postinst() {
-       use suid && elog "To let normal users run tcpdump, add them to the pcap 
group."
-}

diff --git a/net-analyzer/tcpdump/tcpdump-4.99.0.ebuild 
b/net-analyzer/tcpdump/tcpdump-4.99.0.ebuild
deleted file mode 100644
index e58bf2bc9cf6..000000000000
--- a/net-analyzer/tcpdump/tcpdump-4.99.0.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A tool for network monitoring and data acquisition"
-HOMEPAGE="https://www.tcpdump.org/ 
https://github.com/the-tcpdump-group/tcpdump";
-
-if [[ ${PV} == *9999* ]] ; then
-       inherit git-r3
-
-       EGIT_REPO_URI="https://github.com/the-tcpdump-group/tcpdump";
-else
-       VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/tcpdump.asc
-       inherit verify-sig
-
-       # Note: drop -upstream on bump, this is just because we switched to the 
official
-       # distfiles for verify-sig
-       SRC_URI="https://www.tcpdump.org/release/${P}.tar.gz -> 
${P}-upstream.tar.gz"
-       SRC_URI+=" verify-sig? ( 
https://www.tcpdump.org/release/${P}.tar.gz.sig -> ${P}-upstream.tar.gz.sig )"
-
-       KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="+drop-root +smi +ssl +samba suid test"
-REQUIRED_USE="test? ( samba )"
-
-# Assorted failures: bug #768498
-RESTRICT="test"
-
-RDEPEND="
-       net-libs/libpcap
-       drop-root? (
-               acct-group/pcap
-               acct-user/pcap
-               sys-libs/libcap-ng
-       )
-       smi? ( net-libs/libsmi )
-       ssl? (
-               >=dev-libs/openssl-0.9.6m:0=
-       )
-       suid? (
-               acct-group/pcap
-               acct-user/pcap
-       )
-"
-DEPEND="
-       ${RDEPEND}
-       test? (
-               >=net-libs/libpcap-1.9.1
-               dev-lang/perl
-       )
-"
-BDEPEND="drop-root? ( virtual/pkgconfig )"
-
-if [[ ${PV} != *9999* ]] ; then
-       BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-tcpdump )"
-fi
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-9999-libdir.patch
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               $(use_enable samba smb) \
-               $(use_with drop-root cap-ng) \
-               $(use_with drop-root chroot '') \
-               $(use_with smi) \
-               $(use_with ssl crypto "${ESYSROOT}/usr") \
-               $(usex drop-root "--with-user=pcap" "")
-}
-
-src_test() {
-       if [[ ${EUID} -ne 0 ]] || ! use drop-root ; then
-               emake check
-       else
-               ewarn "If you want to run the test suite, make sure you either"
-               ewarn "set FEATURES=userpriv or set USE=-drop-root"
-       fi
-}
-
-src_install() {
-       dosbin tcpdump
-       doman tcpdump.1
-       dodoc *.awk
-       dodoc CHANGES CREDITS README.md
-
-       if use suid ; then
-               fowners root:pcap /usr/sbin/tcpdump
-               fperms 4110 /usr/sbin/tcpdump
-       fi
-}
-
-pkg_postinst() {
-       use suid && elog "To let normal users run tcpdump, add them to the pcap 
group."
-}

Reply via email to