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 2BFA4158041 for ; Thu, 21 Mar 2024 05:58:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B60C0E29B6; Thu, 21 Mar 2024 05:58:49 +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 9D4A4E29B6 for ; Thu, 21 Mar 2024 05:58:49 +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 E29F3343029 for ; Thu, 21 Mar 2024 05:58:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2139B15B0 for ; Thu, 21 Mar 2024 05:58: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: <1711000661.12bd3b6d3f2239776739e854f01b4dbc02f3c91b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/geda/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/geda/geda-1.10.2-r2.ebuild X-VCS-Directories: sci-electronics/geda/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 12bd3b6d3f2239776739e854f01b4dbc02f3c91b X-VCS-Branch: master Date: Thu, 21 Mar 2024 05:58: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: a80a104d-fdde-4248-b23c-8fb75ea0f6e8 X-Archives-Hash: fcfb1897d97ecfc13dadaac433d94993 commit: 12bd3b6d3f2239776739e854f01b4dbc02f3c91b Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 21 05:28:39 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 21 05:57:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12bd3b6d sci-electronics/geda: avoid fatal warning for maybe-uninitialized LTO makes the compiler better able to spot this. But it isn't something the entire build should fail due to, not for stable release tags of existing software. Closes: https://bugs.gentoo.org/862453 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-electronics/geda/geda-1.10.2-r2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sci-electronics/geda/geda-1.10.2-r2.ebuild b/sci-electronics/geda/geda-1.10.2-r2.ebuild index 4d2d3cab6699..7983738c270b 100644 --- a/sci-electronics/geda/geda-1.10.2-r2.ebuild +++ b/sci-electronics/geda/geda-1.10.2-r2.ebuild @@ -62,6 +62,10 @@ src_prepare() { rm docs/wiki/media/geda/pcb_plugin_template.tar.gz || die rm docs/wiki/media/pcb/plugin_debug_window.tar.gz || die + # -Wmaybe-uninitialized is made fatal, which is not ideal for building + # releases. Upstream is working on fixing these anyway. + sed -i '/Werror_maybe_uninitialized_IF_SUPPORTED/d' configure.ac + eautoreconf }