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 9121615815E for ; Tue, 6 Feb 2024 22:44:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A175E2A3F; Tue, 6 Feb 2024 22:44:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 3D9B8E2A3F for ; Tue, 6 Feb 2024 22:44:18 +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 3C9863430CC for ; Tue, 6 Feb 2024 22:44:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACD7E14C8 for ; Tue, 6 Feb 2024 22:44:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1707259443.ff636eaf95bdba9d2769397b2865f2f8c428f223.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libpcre/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libpcre/libpcre-8.45-r3.ebuild X-VCS-Directories: dev-libs/libpcre/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff636eaf95bdba9d2769397b2865f2f8c428f223 X-VCS-Branch: master Date: Tue, 6 Feb 2024 22:44:15 +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: d4d14c8c-c4a7-419f-9c23-a40348bfcbbc X-Archives-Hash: 8cfbebc50c6a49e5bfc68926b3ad6973 commit: ff636eaf95bdba9d2769397b2865f2f8c428f223 Author: Eli Schwartz gmail com> AuthorDate: Tue Feb 6 15:51:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Feb 6 22:44:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff636eaf dev-libs/libpcre: do a full autoreconf elibtoolize is not good enough for this software because it uses a random libtool version, so patches don't tend to apply. Fixes QA warnings for failing to respect -frecord-gcc-switches. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-libs/libpcre/libpcre-8.45-r3.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-libs/libpcre/libpcre-8.45-r3.ebuild b/dev-libs/libpcre/libpcre-8.45-r3.ebuild index b64c66f82555..006e23369ba2 100644 --- a/dev-libs/libpcre/libpcre-8.45-r3.ebuild +++ b/dev-libs/libpcre/libpcre-8.45-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit libtool multilib-minimal preserve-libs +inherit autotools multilib-minimal preserve-libs DESCRIPTION="Perl-compatible regular expression library" HOMEPAGE="http://www.pcre.org/" @@ -54,7 +54,12 @@ src_prepare() { default sed -i -e "s:-lpcre ::" libpcrecpp.pc.in || die - elibtoolize + + # We do a full autoreconf because: + # - the software is end of life and never getting new dist tarballs + # - it uses a frankensteined "2.4.6.42-b88ce-dirty" libtool, which + # means elibtoolize can't find patches to apply + eautoreconf } multilib_src_configure() {