From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CFB541584AD for ; Sun, 11 May 2025 06:41:08 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id BB7C8343006 for ; Sun, 11 May 2025 06:41:08 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B5B6F110277; Sun, 11 May 2025 06:41:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id AEDDD110277 for ; Sun, 11 May 2025 06:41:07 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67C72343024 for ; Sun, 11 May 2025 06:41:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D93622741 for ; Sun, 11 May 2025 06:41:05 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1746945633.e82cd942598f18e4a8df26c2b5b1d61c7880fc59.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libraw/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libraw/libraw-0.21.2.ebuild X-VCS-Directories: media-libs/libraw/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: e82cd942598f18e4a8df26c2b5b1d61c7880fc59 X-VCS-Branch: master Date: Sun, 11 May 2025 06:41:05 +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: 86a1213d-8757-4a82-901b-f9adf50e5b5e X-Archives-Hash: 015ff2d296144abfd85af83e897578a7 commit: e82cd942598f18e4a8df26c2b5b1d61c7880fc59 Author: Eli Schwartz gentoo org> AuthorDate: Sun May 11 06:39:43 2025 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Sun May 11 06:40:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e82cd942 media-libs/libraw: make sure elibtoolize is applied Needed to e.g. pass LTO warning flags through to the linker. Also needed to pass through --as-needed correctly to the linker, which has the practical effect of pruning a link to some unused lcms plugins. lcms provides its plugins in the main .pc file by design to "simplify usage", if configuring to build the plugin at all, and expects --as-needed to strip those out if you don't call `cmsPlugin`. But that relies on libtool doing its job... (We unconditionally package the plugins, so this is just an optimization.) Signed-off-by: Eli Schwartz gentoo.org> media-libs/libraw/libraw-0.21.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-libs/libraw/libraw-0.21.2.ebuild b/media-libs/libraw/libraw-0.21.2.ebuild index b45f1cb997a4..b0f49bc3ffe5 100644 --- a/media-libs/libraw/libraw-0.21.2.ebuild +++ b/media-libs/libraw/libraw-0.21.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit flag-o-matic multilib-minimal toolchain-funcs +inherit flag-o-matic libtool multilib-minimal toolchain-funcs MY_PN=LibRaw MY_PV="${PV/_b/-B}" @@ -41,6 +41,7 @@ pkg_setup() { src_prepare() { default + elibtoolize if tc-is-clang && use openmp ; then append-libs omp