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 36F951581CA for ; Sat, 14 Jun 2025 08:12: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 202FB34246C for ; Sat, 14 Jun 2025 08:12:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 591691104DC; Sat, 14 Jun 2025 08:12:21 +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 522321104DC for ; Sat, 14 Jun 2025 08:12:21 +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 D237B3423A4 for ; Sat, 14 Jun 2025 08:12:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F7F02942 for ; Sat, 14 Jun 2025 08:12:19 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1749888733.151fd671f0af2e38da0855079e9e97577c79048e.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boxfort/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boxfort/boxfort-0.1.4-r2.ebuild X-VCS-Directories: dev-libs/boxfort/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 151fd671f0af2e38da0855079e9e97577c79048e X-VCS-Branch: master Date: Sat, 14 Jun 2025 08:12:19 +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: 421ec0cf-6277-421c-8188-eb160cc0e5a0 X-Archives-Hash: 8bea250697aaecd0815bcf4a41fc1b20 commit: 151fd671f0af2e38da0855079e9e97577c79048e Author: Arthur Zamarin gentoo org> AuthorDate: Sat Jun 14 08:11:35 2025 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Jun 14 08:12:13 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=151fd671 dev-libs/boxfort: use dot-a.eclass ... to avoid installing broken static libraries w/ LTO. Closes: https://bugs.gentoo.org/958037 Signed-off-by: Arthur Zamarin gentoo.org> dev-libs/boxfort/boxfort-0.1.4-r2.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-libs/boxfort/boxfort-0.1.4-r2.ebuild b/dev-libs/boxfort/boxfort-0.1.4-r2.ebuild index a09228a2f054..b9758543f2c0 100644 --- a/dev-libs/boxfort/boxfort-0.1.4-r2.ebuild +++ b/dev-libs/boxfort/boxfort-0.1.4-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit meson +inherit dot-a meson DESCRIPTION="Convenient & cross-platform sandboxing C library" HOMEPAGE="https://github.com/Snaipe/BoxFort" @@ -24,6 +24,8 @@ BDEPEND=" " src_configure() { + lto-guarantee-fat + local emesonargs=( $(meson_use test samples) $(meson_use test tests) @@ -31,3 +33,8 @@ src_configure() { meson_src_configure } + +src_install() { + meson_src_install + strip-lto-bytecode +}