diff options
author | Sam James <sam@gentoo.org> | 2023-05-01 13:43:12 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-01 13:48:52 +0100 |
commit | a991d2e43a539519b666cc623aa5d4cbf2d4e3cd (patch) | |
tree | c3dbea6d27915f257fe562e901d5ca6263ecc230 /net-analyzer | |
parent | net-analyzer/snmpclitools: drop 0.6.4 (diff) | |
download | gentoo-a991d2e43a539519b666cc623aa5d4cbf2d4e3cd.tar.gz gentoo-a991d2e43a539519b666cc623aa5d4cbf2d4e3cd.tar.bz2 gentoo-a991d2e43a539519b666cc623aa5d4cbf2d4e3cd.zip |
net-analyzer/tcpflow: drop 1.6.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/tcpflow/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/tcpflow/tcpflow-1.6.1.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/net-analyzer/tcpflow/Manifest b/net-analyzer/tcpflow/Manifest index 1ade1d691c3b..849f6a69a642 100644 --- a/net-analyzer/tcpflow/Manifest +++ b/net-analyzer/tcpflow/Manifest @@ -1,4 +1,3 @@ DIST be13_api-20170924.tar.gz 75724 BLAKE2B a5257346b9c0740d9758543fe7772c960e1941735abefe4d24d347631b35d1511fde8eb5a58dbb2824c54e78ee0d686a2549ceea2c1dc91e05ef92899c8b3c2d SHA512 5bf0d28f23df9436304245ccbdbf4af5b0f65e62b92e3039cfb9a70fe2056aa90dcce906db02f3df83fcf2a415c8a46f0f75468d48e13b15673d11c447a4c9c4 DIST dfxml-20170921.tar.gz 163616 BLAKE2B 17214d15596a136efb2afc7246ee0f5696620b5aac7c2d78e37764f51487ff816de5a7c0f59e7484d358a8cd8eab34841716970cd859f0ce868ac29c8532754c SHA512 0885947aaf8efe639c13324413ef0cca49750027b48b434f226fb9fbfba494e84e245da879dc0d77b46bddc27798f7f5df12590fce47b096683034bbc61280e1 DIST tcpflow-1.6.1-tag.tar.gz 915245 BLAKE2B 22a1540415d6321d4ba43035f386aaea177e9d3244ff1dcdedcb0c8a72f487a969372b76b85f6acec4f0f1430b51230ceb665466af388d2bfe123a57dcd4224b SHA512 9c0357ca816bf4316ce7a461e5d18c5043a6938828ce83a613a952d5804cc6b701028a666b352da922d69447ab7f5d4c9f66585872e7b116c0f1aebebc38682b -DIST tcpflow-1.6.1.tar.gz 915502 BLAKE2B 6560d11fe6a2b6bd77ddcffb47338e9af358a0f5ec07402ec81dae4cf87dd5cc26bf300df014927df8b8b6143e14553dd2a70cb63769dc4f2525cf9dd1967582 SHA512 ec5b9d5e5f0bc1d6582b9f2537c9ba6c8ae3d9c8f88fb0c67ef031146a515d19caa5ecd365492fb5daf8ddde77b58ea5190290b8e43b40abcdea5aaaef5e2e1c diff --git a/net-analyzer/tcpflow/tcpflow-1.6.1.ebuild b/net-analyzer/tcpflow/tcpflow-1.6.1.ebuild deleted file mode 100644 index 78935ae93148..000000000000 --- a/net-analyzer/tcpflow/tcpflow-1.6.1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit autotools flag-o-matic python-single-r1 - -# 1.6.1 wasn't tagged -COMMIT="a5965b11a332fe908ab1ed136b14803920e8ecdb" -DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows" -HOMEPAGE="https://github.com/simsong/tcpflow" -SRC_URI=" - https://api.github.com/repos/simsong/be13_api/tarball/c81521d768bb78499c069fcd7c47adc8eee0350c -> be13_api-20170924.tar.gz - https://api.github.com/repos/simsong/dfxml/tarball/7d11eaa7da8d31f588ce8aecb4b4f5e7e8169ba6 -> dfxml-20170921.tar.gz - https://github.com/simsong/tcpflow/archive/${COMMIT}.tar.gz -> ${P}.tar.gz - https://github.com/simsong/${PN}/archive/${P/_/}.tar.gz -" -S="${WORKDIR}/${PN}-${COMMIT}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="cairo test" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -RDEPEND=" - ${PYTHON_DEPS} - dev-db/sqlite - dev-libs/boost:= - dev-libs/openssl:= - net-libs/http-parser:= - net-libs/libpcap - sys-libs/libcap-ng - sys-libs/zlib:= - cairo? ( - x11-libs/cairo - ) -" -DEPEND=" - ${RDEPEND} - test? ( sys-apps/coreutils ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.5.0_alpha-libcapng.patch - "${FILESDIR}"/${PN}-1.5.2-gentoo.patch -) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - append-cxxflags -fpermissive - - econf \ - $(usex cairo --enable-cairo=true --enable-cairo=false) -} |