From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0D55D158003 for ; Fri, 9 Sep 2022 07:59:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDB45E0930; Fri, 9 Sep 2022 07:59:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8421E092E for ; Fri, 9 Sep 2022 07:59:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C0FC340F3A for ; Fri, 9 Sep 2022 07:59:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCC8E5E7 for ; Fri, 9 Sep 2022 07:59:40 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1662710362.0efd015374d6c9cbbbad4e89c9970cf2660f8fd4.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libhtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libhtp/libhtp-0.5.40-r1.ebuild net-libs/libhtp/libhtp-0.5.40.ebuild X-VCS-Directories: net-libs/libhtp/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0efd015374d6c9cbbbad4e89c9970cf2660f8fd4 X-VCS-Branch: master Date: Fri, 9 Sep 2022 07:59:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2f32092d-db8b-4d84-bbac-6fe04cb77be2 X-Archives-Hash: 6159bfba44f514cb68355af56e943251 commit: 0efd015374d6c9cbbbad4e89c9970cf2660f8fd4 Author: Sam James gentoo org> AuthorDate: Fri Sep 9 07:59:22 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Sep 9 07:59:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0efd0153 net-libs/libhtp: drop multilib No multilib reverse dependencies. Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> .../libhtp/{libhtp-0.5.40.ebuild => libhtp-0.5.40-r1.ebuild} | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/net-libs/libhtp/libhtp-0.5.40.ebuild b/net-libs/libhtp/libhtp-0.5.40-r1.ebuild similarity index 77% rename from net-libs/libhtp/libhtp-0.5.40.ebuild rename to net-libs/libhtp/libhtp-0.5.40-r1.ebuild index c105c3aaa523..5bbe9e699afb 100644 --- a/net-libs/libhtp/libhtp-0.5.40.ebuild +++ b/net-libs/libhtp/libhtp-0.5.40-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools multilib-minimal +inherit autotools DESCRIPTION="security-aware parser for the HTTP protocol and the related bits and pieces" HOMEPAGE="https://github.com/OISF/libhtp" @@ -22,14 +22,12 @@ src_prepare() { eautoreconf } -multilib_src_configure() { +src_configure() { # The debug configure logic is broken. - ECONF_SOURCE=${S} \ - econf \ - $(usex debug '--enable-debug' '') \ - --disable-static + econf $(usev debug '--enable-debug') } -multilib_src_install_all() { +src_install() { + default find "${ED}" -name '*.la' -delete || die "Failed to remove .la files" }