Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libhtp/
Date: Fri, 09 Oct 2020 11:41:07
Message-Id: 1602243655.ced5cf24a5b9cde5d4b19283370840e529f2cf66.marecki@gentoo
1 commit: ced5cf24a5b9cde5d4b19283370840e529f2cf66
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 11:35:59 2020 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 11:40:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ced5cf24
7
8 net-libs/libhtp: remove old
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 net-libs/libhtp/Manifest | 1 -
13 net-libs/libhtp/libhtp-0.5.33.ebuild | 37 ------------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/net-libs/libhtp/Manifest b/net-libs/libhtp/Manifest
17 index 60a6d999856..012f450e37d 100644
18 --- a/net-libs/libhtp/Manifest
19 +++ b/net-libs/libhtp/Manifest
20 @@ -1,2 +1 @@
21 -DIST libhtp-0.5.33.tar.gz 496010 BLAKE2B 9648632e9f37c20a3efa5edf9b5ee5ed97b5ba767faf6b276c4d38760422b601f9443cfaf30e60c6e6dd555d259a3b5613f0370040753d7336f6ef5e94b32d55 SHA512 52bbb72710fd0f5fc917d62f5a2b659092669eda0553586e75c17c558e3f6559dcf8eb7707db931045af532592cbad691461af2dd5362f95e2a4884e7475bf94
22 DIST libhtp-0.5.35.tar.gz 496852 BLAKE2B 21ee020f94ea351f408eb3d0d2f99b01f054341a390c9cc42c44a1f2237a1fe965e12797ecc04cf9a519e34fcf495fae4b4119bca6c38ef1d1fa0a9d35c243fe SHA512 d88a8b5f93759a348d0cb039dd95c5504b09b6ff577138cebbaaccf06a6e7ab682e8b61d904e005af67ea4887492d949cdb466d1cbbd9b970a94a30e8b26564e
23
24 diff --git a/net-libs/libhtp/libhtp-0.5.33.ebuild b/net-libs/libhtp/libhtp-0.5.33.ebuild
25 deleted file mode 100644
26 index 4c0e8229142..00000000000
27 --- a/net-libs/libhtp/libhtp-0.5.33.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit autotools multilib-minimal
36 -
37 -DESCRIPTION="security-aware parser for the HTTP protocol and the related bits and pieces"
38 -HOMEPAGE="https://github.com/OISF/libhtp"
39 -SRC_URI="https://github.com/OISF/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
44 -IUSE="debug static-libs"
45 -
46 -RDEPEND="sys-libs/zlib[static-libs?]"
47 -DEPEND="${RDEPEND}"
48 -
49 -src_prepare() {
50 - default
51 - eautoreconf
52 -}
53 -
54 -multilib_src_configure() {
55 - # The debug configure logic is broken.
56 - ECONF_SOURCE=${S} \
57 - econf \
58 - $(usex debug '--enable-debug' '') \
59 - $(use_enable static-libs static)
60 -}
61 -
62 -multilib_src_install_all() {
63 - if ! use static-libs; then
64 - find "${ED}" -name '*.la' -delete || die "Failed to remove .la files"
65 - fi
66 -}