diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-11-19 13:00:03 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-11-19 15:58:51 +0100 |
commit | ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4 (patch) | |
tree | 6490aac2835ac7d63b3ade19e4da6877915a103f /net-libs/libhtp | |
parent | net-analyzer/suricata: add 6.0.4, drop 6.0.3-r2 (diff) | |
download | gentoo-ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4.tar.gz gentoo-ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4.tar.bz2 gentoo-ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4.zip |
net-libs/libhtp: drop 0.5.38
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-libs/libhtp')
-rw-r--r-- | net-libs/libhtp/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libhtp/libhtp-0.5.38.ebuild | 37 |
2 files changed, 0 insertions, 38 deletions
diff --git a/net-libs/libhtp/Manifest b/net-libs/libhtp/Manifest index 86b9659e76f8..2748b0f23833 100644 --- a/net-libs/libhtp/Manifest +++ b/net-libs/libhtp/Manifest @@ -1,2 +1 @@ -DIST libhtp-0.5.38.tar.gz 497753 BLAKE2B 84c4a89914dfadb9e3ab076e6f2354034cd384e7e76c9cbf00a7bf344cfcd7c24de200bd1af7f37356b00fbe13196fd3e49896f301b75fa05ce5b4e4ed297115 SHA512 6f2aa3b564948bde738ff60b917d64ffdcb71bbd5b25f11270ce16400fab6b8aab5c0e2372aff7f6be8818efab4b90843df527604835547691a4585fec9a19fe DIST libhtp-0.5.39.tar.gz 499233 BLAKE2B fec9e2b0dd867becde972e9e2bf572a21d90acc747a8ee8338e2fe68240d690706db01b12c3cf8c6bf1b5d4415da4e4a5bf92a056e1dff96f54a9ac569906712 SHA512 2c62b0a9a2f69f999a58acade362e5fcd9d85da5c720a403b0b6e7352981a206781f123aaa2f730803f2ea6088b4491d58b3c2783f8b32e4cfe1517d812e66ff diff --git a/net-libs/libhtp/libhtp-0.5.38.ebuild b/net-libs/libhtp/libhtp-0.5.38.ebuild deleted file mode 100644 index fb42824c9846..000000000000 --- a/net-libs/libhtp/libhtp-0.5.38.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools multilib-minimal - -DESCRIPTION="security-aware parser for the HTTP protocol and the related bits and pieces" -HOMEPAGE="https://github.com/OISF/libhtp" -SRC_URI="https://github.com/OISF/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv ~x86" -IUSE="debug static-libs" - -RDEPEND="sys-libs/zlib[static-libs?]" -DEPEND="${RDEPEND}" - -src_prepare() { - default - eautoreconf -} - -multilib_src_configure() { - # The debug configure logic is broken. - ECONF_SOURCE=${S} \ - econf \ - $(usex debug '--enable-debug' '') \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die "Failed to remove .la files" - fi -} |