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 ACE8B1581D3 for ; Wed, 22 May 2024 01:07:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A16CE2A38; Wed, 22 May 2024 01:06:59 +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 E0025E2A38 for ; Wed, 22 May 2024 01:06:58 +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 F0C1833FEF1 for ; Wed, 22 May 2024 01:06:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B9321B03 for ; Wed, 22 May 2024 01:06:56 +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: <1716339976.a38db59a37c80ee1a848538926607a6be79d2597.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/libidn2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/libidn2/libidn2-2.3.7.ebuild X-VCS-Directories: net-dns/libidn2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a38db59a37c80ee1a848538926607a6be79d2597 X-VCS-Branch: master Date: Wed, 22 May 2024 01:06:56 +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: 54f66e60-c7b7-42fd-bba3-b741f912058f X-Archives-Hash: 2437f1fb4b679817de677ffb9de9a564 commit: a38db59a37c80ee1a848538926607a6be79d2597 Author: Eli Schwartz gmail com> AuthorDate: Tue May 21 21:05:31 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 22 01:06:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a38db59a net-dns/libidn2: make sure elibtoolize is applied Needed to e.g. pass LTO warning flags through to the linker. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-dns/libidn2/libidn2-2.3.7.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/net-dns/libidn2/libidn2-2.3.7.ebuild b/net-dns/libidn2/libidn2-2.3.7.ebuild index 65de92ce8b66..cc41e677d26e 100644 --- a/net-dns/libidn2/libidn2-2.3.7.ebuild +++ b/net-dns/libidn2/libidn2-2.3.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit multilib-minimal toolchain-funcs verify-sig +inherit libtool multilib-minimal toolchain-funcs verify-sig DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5892, 5893)" HOMEPAGE=" @@ -35,6 +35,11 @@ BDEPEND=" VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/libidn.asc +src_prepare() { + default + elibtoolize +} + multilib_src_configure() { local myconf=( CC_FOR_BUILD="$(tc-getBUILD_CC)"