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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6FEF215808A for ; Tue, 05 Aug 2025 20:01:25 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 4B4B7340E5B for ; Tue, 05 Aug 2025 20:01:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4BE55110567; Tue, 05 Aug 2025 20:01:10 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 42AC9110565 for ; Tue, 05 Aug 2025 20:01:10 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01801340D5F for ; Tue, 05 Aug 2025 20:01:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 922CF32CB for ; Tue, 05 Aug 2025 20:01:07 +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: <1754423611.a65dfe1ffdf0ad332643a27f993356b33ea868de.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/flake/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/flake/flake-0.11-r1.ebuild X-VCS-Directories: media-sound/flake/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: a65dfe1ffdf0ad332643a27f993356b33ea868de X-VCS-Branch: master Date: Tue, 05 Aug 2025 20:01:07 +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: 9194f460-67f8-44ce-9758-0fedd94def01 X-Archives-Hash: add025338e4342ff082acf5ca69664e7 commit: a65dfe1ffdf0ad332643a27f993356b33ea868de Author: Eli Schwartz gentoo org> AuthorDate: Tue Aug 5 05:13:49 2025 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Tue Aug 5 19:53:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a65dfe1f media-sound/flake: use dot-a.eclass ... to avoid installing broken static libraries w/ LTO. Closes: https://bugs.gentoo.org/958350 Signed-off-by: Eli Schwartz gentoo.org> media-sound/flake/flake-0.11-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-sound/flake/flake-0.11-r1.ebuild b/media-sound/flake/flake-0.11-r1.ebuild index 25a2b34a6e6f..f8e610806391 100644 --- a/media-sound/flake/flake-0.11-r1.ebuild +++ b/media-sound/flake/flake-0.11-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit toolchain-funcs +inherit dot-a toolchain-funcs DESCRIPTION="An alternative to the FLAC reference encoder" HOMEPAGE="https://flake-enc.sourceforge.net" @@ -21,6 +21,8 @@ src_configure() { sed -i -e "s:cc=\"gcc\":cc=\"$(tc-getCC)\":" configure \ || die failed to patch CC + lto-guarantee-fat + ./configure \ --ar="$(tc-getAR)" \ --cc="$(tc-getCC)" \ @@ -35,5 +37,7 @@ src_install() { dobin flake/flake doheader libflake/flake.h dolib.a libflake/libflake.a + strip-lto-bytecode + dodoc Changelog README }