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 24E791581CA for ; Thu, 12 Jun 2025 10:57:50 +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 125FC342462 for ; Thu, 12 Jun 2025 10:57:50 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 302FD1104DC; Thu, 12 Jun 2025 10:57:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 2007C1104D9 for ; Thu, 12 Jun 2025 10:57:45 +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 C5E00342426 for ; Thu, 12 Jun 2025 10:57:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E19B265C for ; Thu, 12 Jun 2025 10:57:43 +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: <1749725757.c76f0551146d1229036a626478ba17c01ee4c185.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/zint/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/zint/zint-2.15.0.ebuild X-VCS-Directories: media-libs/zint/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c76f0551146d1229036a626478ba17c01ee4c185 X-VCS-Branch: master Date: Thu, 12 Jun 2025 10:57:43 +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: 13c1dec8-d110-4ad2-9355-89b208a51891 X-Archives-Hash: 384254c52fc68aa1ddad72240fdb3bf0 commit: c76f0551146d1229036a626478ba17c01ee4c185 Author: Alfred Wingate protonmail com> AuthorDate: Thu Jun 12 10:21:37 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 12 10:55:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76f0551 media-libs/zint: use dot-a.eclass ... to avoid installing broken static libraries w/ LTO. There is build switch for static libraries, but it doesn't apply to all static libraries and it would require a revbump to add. Closes: https://bugs.gentoo.org/957922 Signed-off-by: Alfred Wingate protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42558 Closes: https://github.com/gentoo/gentoo/pull/42558 Signed-off-by: Sam James gentoo.org> media-libs/zint/zint-2.15.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-libs/zint/zint-2.15.0.ebuild b/media-libs/zint/zint-2.15.0.ebuild index f9e83c738ed1..58cf089d284f 100644 --- a/media-libs/zint/zint-2.15.0.ebuild +++ b/media-libs/zint/zint-2.15.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake desktop xdg +inherit cmake desktop dot-a xdg DESCRIPTION="Barcode encoding library supporting over 50 symbologies" HOMEPAGE="https://www.zint.org.uk/" @@ -32,6 +32,8 @@ DEPEND=" RDEPEND="${DEPEND}" src_configure() { + lto-guarantee-fat + local mycmakeargs=( -DZINT_FRONTEND=ON -DZINT_QT6=$(usex gui) @@ -55,4 +57,6 @@ src_install() { domenu zint-qt.desktop doicon zint-qt.png fi + + strip-lto-bytecode }