From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4FC03158041 for ; Fri, 8 Mar 2024 11:09:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8CE8E29DA; Fri, 8 Mar 2024 11:09:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2D86E29DA for ; Fri, 8 Mar 2024 11:09:48 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA0ED33FD3F for ; Fri, 8 Mar 2024 11:09:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CD3E14F0 for ; Fri, 8 Mar 2024 11:09:46 +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: <1709896142.04619473f29d5c222d80d607574c222943ef96e5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/fox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/fox/fox-1.7.67-r1.ebuild x11-libs/fox/fox-1.7.67-r2.ebuild X-VCS-Directories: x11-libs/fox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 04619473f29d5c222d80d607574c222943ef96e5 X-VCS-Branch: master Date: Fri, 8 Mar 2024 11:09: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: 0c120ff9-9360-4000-9919-08cabe5214bb X-Archives-Hash: 4377426624f4a79b3f6d0f55250edf4b commit: 04619473f29d5c222d80d607574c222943ef96e5 Author: Eli Schwartz gmail com> AuthorDate: Fri Mar 8 09:21:50 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 8 11:09:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04619473 x11-libs/fox: mark as LTO-unsafe, strict-aliasing unsafe Fixed in newer (packaged) version, so only mark the older version, which as it happens is the one with a stable keyword. Closes: https://bugs.gentoo.org/864412 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> x11-libs/fox/fox-1.7.67-r1.ebuild | 10 +++++++++- x11-libs/fox/fox-1.7.67-r2.ebuild | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/x11-libs/fox/fox-1.7.67-r1.ebuild b/x11-libs/fox/fox-1.7.67-r1.ebuild index 9a93e67039bf..1a2513f96a04 100644 --- a/x11-libs/fox/fox-1.7.67-r1.ebuild +++ b/x11-libs/fox/fox-1.7.67-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="C++ Toolkit for developing Graphical User Interfaces easily and effectively" HOMEPAGE="http://www.fox-toolkit.org/" @@ -57,6 +57,14 @@ src_prepare() { } src_configure() { + # -Werror=strict-aliasing + # https://bugs.gentoo.org/864412 + # Fixed in 1.7.84 + # + # Do not trust it for LTO either. + append-flags -fno-strict-aliasing + filter-lto + econf \ --disable-static \ --enable-$(usex debug debug release) \ diff --git a/x11-libs/fox/fox-1.7.67-r2.ebuild b/x11-libs/fox/fox-1.7.67-r2.ebuild index e0e6f90f7c06..6f22d0fa1c2f 100644 --- a/x11-libs/fox/fox-1.7.67-r2.ebuild +++ b/x11-libs/fox/fox-1.7.67-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="C++ Toolkit for developing Graphical User Interfaces easily and effectively" HOMEPAGE="http://www.fox-toolkit.org/" @@ -65,6 +65,14 @@ src_prepare() { } src_configure() { + # -Werror=strict-aliasing + # https://bugs.gentoo.org/864412 + # Fixed in 1.7.84 + # + # Do not trust it for LTO either. + append-flags -fno-strict-aliasing + filter-lto + econf \ --disable-static \ --enable-$(usex debug debug release) \