diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-08-21 19:25:53 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-08-21 23:02:48 +0100 |
commit | 5f59ec5023cf2819c18f8a08c7c1fc4cccfa8d34 (patch) | |
tree | a9290d3d3b9134bcffb28c1ce9cb8a3d5b95ad14 /net-libs/libhtp | |
parent | dev-util/yamllint: drop 1.31.0 (diff) | |
download | gentoo-5f59ec5023cf2819c18f8a08c7c1fc4cccfa8d34.tar.gz gentoo-5f59ec5023cf2819c18f8a08c7c1fc4cccfa8d34.tar.bz2 gentoo-5f59ec5023cf2819c18f8a08c7c1fc4cccfa8d34.zip |
net-libs/libhtp: drop 0.5.44
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.44.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/net-libs/libhtp/Manifest b/net-libs/libhtp/Manifest index f681a505cded..f72d301dc853 100644 --- a/net-libs/libhtp/Manifest +++ b/net-libs/libhtp/Manifest @@ -1,2 +1 @@ -DIST libhtp-0.5.44.tar.gz 500798 BLAKE2B 6b4c8d617e6a649997e9375677baed99315be83e598317ce4951883482e6099cb5fd28e27ae25ab68ecc765931b0955289d144a710ce2e1b11edf92848b1b613 SHA512 e538d022110eef808a7ab040ca58004f1a8759d315ad954455d6da9a088cf80d53489529234fbfdd9fd20b8424d49b4a9635673cd25612c63ef9cc90220a4e82 DIST libhtp-0.5.45.tar.gz 501108 BLAKE2B faa5a05844a959b00b1f53c26d8c9167d91998c2b4d71b9ce85f1822f431d40d46513a596d804dee3290bdfad5a27d93755bb6e39fb5c36fc90472637cc3caad SHA512 b4bc6cc209d8d8833082ade7d4257da3a449344ed29a3fd20b5100f3c983163cd3e537d154748a116ff22b9a79b245ba2e6d0f5960c37b4ca9867506b8ed13ed diff --git a/net-libs/libhtp/libhtp-0.5.44.ebuild b/net-libs/libhtp/libhtp-0.5.44.ebuild deleted file mode 100644 index 7f787459dab5..000000000000 --- a/net-libs/libhtp/libhtp-0.5.44.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -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" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-0.5.43-configure_fortify_source.patch -) - -# false positive -- function specific to dev-libs/libiconv, which is only used -# in Windows-based Prefix installations -QA_CONFIG_IMPL_DECL_SKIP=( iconvctl ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # The debug configure logic is broken. - econf $(usev debug '--enable-debug') -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die "Failed to remove .la files" -} |