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 26FC81581CA for ; Tue, 17 Jun 2025 08:47:49 +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 157A9342015 for ; Tue, 17 Jun 2025 08:47:49 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EFC051104DC; Tue, 17 Jun 2025 08:47:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E21831104DC for ; Tue, 17 Jun 2025 08:47:47 +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 9DFA9342004 for ; Tue, 17 Jun 2025 08:47:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 395B329E2 for ; Tue, 17 Jun 2025 08:47:46 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1750150002.c49a4f8976fc8a8d4d81b52c906e25043b5d698f.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/fltk/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/fltk/fltk-1.4.3-r1.ebuild x11-libs/fltk/fltk-1.4.3.ebuild X-VCS-Directories: x11-libs/fltk/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: c49a4f8976fc8a8d4d81b52c906e25043b5d698f X-VCS-Branch: master Date: Tue, 17 Jun 2025 08:47:46 +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: ff971b21-ce29-4a74-96fe-9ad17076ecb3 X-Archives-Hash: 5fe6775b22c7ec09168d80cd87853e81 commit: c49a4f8976fc8a8d4d81b52c906e25043b5d698f Author: Ionen Wolkens gentoo org> AuthorDate: Tue Jun 17 08:42:54 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Jun 17 08:46:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49a4f89 x11-libs/fltk: use dot-a.eclass (old 1.3.x has a unconditional filter-lto, so won't bother touching) Closes: https://bugs.gentoo.org/958298 Signed-off-by: Ionen Wolkens gentoo.org> x11-libs/fltk/{fltk-1.4.3.ebuild => fltk-1.4.3-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x11-libs/fltk/fltk-1.4.3.ebuild b/x11-libs/fltk/fltk-1.4.3-r1.ebuild similarity index 97% rename from x11-libs/fltk/fltk-1.4.3.ebuild rename to x11-libs/fltk/fltk-1.4.3-r1.ebuild index 4bb7cd29d552..77b791d2a545 100644 --- a/x11-libs/fltk/fltk-1.4.3.ebuild +++ b/x11-libs/fltk/fltk-1.4.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake edo xdg +inherit cmake dot-a edo xdg DESCRIPTION="Fast Light GUI Toolkit" HOMEPAGE="https://www.fltk.org/" @@ -74,6 +74,8 @@ src_prepare() { } src_configure() { + lto-guarantee-fat + local mycmakeargs=( -DFLTK_BACKEND_WAYLAND=$(usex wayland) -DFLTK_BACKEND_X11=$(usex X) @@ -111,4 +113,6 @@ src_install() { # currently no option to disable building static libs use static-libs || rm -- "${ED}"/usr/$(get_libdir)/*.a || die + + strip-lto-bytecode }