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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F06FD158094 for ; Tue, 23 Aug 2022 15:19:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 018A7E0825; Tue, 23 Aug 2022 15:19:39 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D3F11E0825 for ; Tue, 23 Aug 2022 15:19:38 +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 DE6E6340E9D for ; Tue, 23 Aug 2022 15:19:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E9E2571 for ; Tue, 23 Aug 2022 15:19:36 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1661267963.8b215f0743a4266e48ff3377811a7ce73f287d1f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/wxGTK/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/wxGTK/wxGTK-3.0.4-r3.ebuild x11-libs/wxGTK/wxGTK-3.0.5.1.ebuild X-VCS-Directories: x11-libs/wxGTK/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 8b215f0743a4266e48ff3377811a7ce73f287d1f X-VCS-Branch: master Date: Tue, 23 Aug 2022 15:19:36 +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: 8a341e95-6ae4-4ea8-aa6a-b3b5cb5cca11 X-Archives-Hash: 0e477ffbe675164912520bca9105177b commit: 8b215f0743a4266e48ff3377811a7ce73f287d1f Author: Emily Rowlands erowl net> AuthorDate: Tue Aug 23 15:19:23 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Aug 23 15:19:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b215f07 x11-libs/wxGTK: Disable precompiled headers This commit adds USE=pch to disable precompiled headers. PCHes are unstable and as such, USE=pch is masked globally. This bug can alternatively be fixed by filtering various FLAGs (-Wl,-O1 -Wl,-z,relro, and similar). Closes: https://bugs.gentoo.org/504204 Signed-off-by: Emily Rowlands erowl.net> Signed-off-by: David Seifert gentoo.org> x11-libs/wxGTK/wxGTK-3.0.4-r3.ebuild | 7 ++++++- x11-libs/wxGTK/wxGTK-3.0.5.1.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/x11-libs/wxGTK/wxGTK-3.0.4-r3.ebuild b/x11-libs/wxGTK/wxGTK-3.0.4-r3.ebuild index 990923e26230..07a2baecb5c3 100644 --- a/x11-libs/wxGTK/wxGTK-3.0.4-r3.ebuild +++ b/x11-libs/wxGTK/wxGTK-3.0.4-r3.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/wxWidgets-${PV}" LICENSE="wxWinLL-3 GPL-2 doc? ( wxWinFDL-3 )" SLOT="3.0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" -IUSE="+X doc debug gstreamer libnotify opengl sdl tiff" +IUSE="+X doc debug gstreamer libnotify opengl pch sdl tiff" RDEPEND=" dev-libs/expat[${MULTILIB_USEDEP}] @@ -59,6 +59,11 @@ multilib_src_configure() { --with-expat=sys --enable-compat28 $(use_with sdl) + + # PCHes are unstable and are disabled in-tree where possible + # See bug #504204 + # Commits 8c4774042b7fdfb08e525d8af4b7912f26a2fdce, fb809aeadee57ffa24591e60cfb41aecd4823090 + $(use_enable pch precomp-headers) ) # debug in >=2.9 diff --git a/x11-libs/wxGTK/wxGTK-3.0.5.1.ebuild b/x11-libs/wxGTK/wxGTK-3.0.5.1.ebuild index df33c05344cb..4b37bab0b317 100644 --- a/x11-libs/wxGTK/wxGTK-3.0.5.1.ebuild +++ b/x11-libs/wxGTK/wxGTK-3.0.5.1.ebuild @@ -21,7 +21,7 @@ S="${WORKDIR}/wxWidgets-${PV}" LICENSE="wxWinLL-3 GPL-2 doc? ( wxWinFDL-3 )" SLOT="${WXRELEASE}" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" -IUSE="+X doc debug gstreamer libnotify opengl sdl tiff webkit" +IUSE="+X doc debug gstreamer libnotify opengl pch sdl tiff webkit" RDEPEND=" >=app-eselect/eselect-wxwidgets-20131230 @@ -94,6 +94,11 @@ multilib_src_configure() { --enable-compat28 $(use_with sdl) + # PCHes are unstable and are disabled in-tree where possible + # See bug #504204 + # Commits 8c4774042b7fdfb08e525d8af4b7912f26a2fdce, fb809aeadee57ffa24591e60cfb41aecd4823090 + $(use_enable pch precomp-headers) + # Don't hard-code libdir's prefix for wx-config --libdir='${prefix}'/$(get_libdir) )