commit: 97bef0d650f55f19bbae3861d18d3800818c1068 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Sat Feb 7 09:19:54 2026 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sat Feb 7 09:19:54 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97bef0d6
net-analyzer/tcpreplay: drop 4.5.1 Closes: https://bugs.gentoo.org/944119 Signed-off-by: David Seifert <soap <AT> gentoo.org> net-analyzer/tcpreplay/Manifest | 1 - net-analyzer/tcpreplay/tcpreplay-4.5.1.ebuild | 91 --------------------------- 2 files changed, 92 deletions(-) diff --git a/net-analyzer/tcpreplay/Manifest b/net-analyzer/tcpreplay/Manifest index 6faa47df427a..ab021b8dfbab 100644 --- a/net-analyzer/tcpreplay/Manifest +++ b/net-analyzer/tcpreplay/Manifest @@ -1,2 +1 @@ -DIST tcpreplay-4.5.1.tar.xz 809628 BLAKE2B 38c61646b86ff9ed740372fe9e40d85beab4b8feda5c5281fb00e45ceca441192389611885f209931accf079aca43d3dee214e66fefc188e539836cff5097a10 SHA512 8cc5fda16077051d7f4cd078567eb35b8f4ad7d0e04542ae12ec10b86899c804d3d929c37f9f0325f19f3ed651e767d5a6fe140d42e04151591cee6c1337b8df DIST tcpreplay-4.5.2.tar.xz 818824 BLAKE2B ccb5580e38700824cb2eab1121c27e2383388d72483fe41ed67d94756415fcf4269a1ae6d32b758f388cb7511033f805e906023161719015bbd376a2c529771d SHA512 77d822ff9c0f723765451f207e2f9d2c94e6cef8c21984882674ddcac782d877b91695d92be75f23745cb89961cc3f5db17500865822044239df353356d25a3e diff --git a/net-analyzer/tcpreplay/tcpreplay-4.5.1.ebuild b/net-analyzer/tcpreplay/tcpreplay-4.5.1.ebuild deleted file mode 100644 index 04a08af9f376..000000000000 --- a/net-analyzer/tcpreplay/tcpreplay-4.5.1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools flag-o-matic - -DESCRIPTION="Utilities for editing and replaying previously captured network traffic" -HOMEPAGE="http://tcpreplay.appneta.com/ https://github.com/appneta/tcpreplay" -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://github.com/appneta/tcpreplay" - inherit git-r3 -else - SRC_URI="https://github.com/appneta/${PN}/releases/download/v${PV}/${P}.tar.xz" - KEYWORDS="amd64 ~arm ~sparc x86" -fi - -LICENSE="BSD GPL-3" -SLOT="0" -IUSE="debug pcapnav +tcpdump" - -# libpcapnav for pcapnav-config -BDEPEND=" - net-libs/libpcapnav - >=sys-devel/autogen-5.18.4[libopts] -" -DEPEND=" - dev-libs/libdnet - >=net-libs/libpcap-0.9 - elibc_musl? ( sys-libs/fts-standalone ) - pcapnav? ( net-libs/libpcapnav ) - tcpdump? ( net-analyzer/tcpdump ) -" -RDEPEND="${DEPEND}" - -QA_CONFIG_IMPL_DECL_SKIP=( - pathfind # sun/solaris only command, bug 900040 -) - -DOCS=( docs/{CHANGELOG,CREDIT,HACKING,TODO} ) - -PATCHES=( - "${FILESDIR}"/${PN}-4.3.0-enable-pcap_findalldevs.patch -) - -src_prepare() { - default - - sed -i \ - -e 's|#include <dnet.h>|#include <dnet/eth.h>|g' \ - src/common/sendpacket.c || die - sed -i \ - -e 's|@\([A-Z_]*\)@|$(\1)|g' \ - -e '/tcpliveplay_CFLAGS/s|$| $(LDNETINC)|g' \ - -e '/tcpliveplay_LDADD/s|$| $(LDNETLIB)|g' \ - src/Makefile.am || die - - eautoreconf -} - -src_configure() { - use elibc_musl && append-flags "-lfts" - # By default it uses static linking. Avoid that, bug #252940 - local myeconfargs=( - $(use_enable debug) - $(use_with pcapnav pcapnav-config "${BROOT}"/usr/bin/pcapnav-config) - $(use_with tcpdump tcpdump "${ESYSROOT}"/usr/sbin/tcpdump) - --enable-dynamic-link - --enable-local-libopts - --enable-shared - --with-libdnet - --with-testnic2=lo - --with-testnic=lo - ) - - econf "${myeconfargs[@]}" -} - -src_test() { - if [[ ! ${EUID} -eq 0 ]] ; then - ewarn "Some tests were disabled due to FEATURES=userpriv" - ewarn "To run all tests issue the following command as root:" - ewarn " # make -C ${S}/test" - emake -j1 -C test tcpprep - else - emake -j1 test || { - ewarn "Note that some tests require eth0 iface to be up." - die "self test failed - see ${S}/test/test.log" - } - fi -}
