Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libhtp/
Date: Fri, 09 Sep 2022 07:59:47
Message-Id: 1662710362.0efd015374d6c9cbbbad4e89c9970cf2660f8fd4.soap@gentoo
1 commit: 0efd015374d6c9cbbbad4e89c9970cf2660f8fd4
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 9 07:59:22 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 9 07:59:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0efd0153
7
8 net-libs/libhtp: drop multilib
9
10 No multilib reverse dependencies.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 .../libhtp/{libhtp-0.5.40.ebuild => libhtp-0.5.40-r1.ebuild} | 12 +++++-------
16 1 file changed, 5 insertions(+), 7 deletions(-)
17
18 diff --git a/net-libs/libhtp/libhtp-0.5.40.ebuild b/net-libs/libhtp/libhtp-0.5.40-r1.ebuild
19 similarity index 77%
20 rename from net-libs/libhtp/libhtp-0.5.40.ebuild
21 rename to net-libs/libhtp/libhtp-0.5.40-r1.ebuild
22 index c105c3aaa523..5bbe9e699afb 100644
23 --- a/net-libs/libhtp/libhtp-0.5.40.ebuild
24 +++ b/net-libs/libhtp/libhtp-0.5.40-r1.ebuild
25 @@ -3,7 +3,7 @@
26
27 EAPI=8
28
29 -inherit autotools multilib-minimal
30 +inherit autotools
31
32 DESCRIPTION="security-aware parser for the HTTP protocol and the related bits and pieces"
33 HOMEPAGE="https://github.com/OISF/libhtp"
34 @@ -22,14 +22,12 @@ src_prepare() {
35 eautoreconf
36 }
37
38 -multilib_src_configure() {
39 +src_configure() {
40 # The debug configure logic is broken.
41 - ECONF_SOURCE=${S} \
42 - econf \
43 - $(usex debug '--enable-debug' '') \
44 - --disable-static
45 + econf $(usev debug '--enable-debug')
46 }
47
48 -multilib_src_install_all() {
49 +src_install() {
50 + default
51 find "${ED}" -name '*.la' -delete || die "Failed to remove .la files"
52 }