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 C3F22158041 for ; Mon, 25 Mar 2024 09:22:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D229E29F9; Mon, 25 Mar 2024 09:22:01 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ECF36E2A05 for ; Mon, 25 Mar 2024 09:22:00 +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 102E63430B2 for ; Mon, 25 Mar 2024 09:22:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1655815E6 for ; Mon, 25 Mar 2024 09:21:57 +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: <1711358445.36a9108dbab3a5ca53d03a214f8a9d3568a9c272.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/ngspice/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/ngspice/ngspice-40.ebuild X-VCS-Directories: sci-electronics/ngspice/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 36a9108dbab3a5ca53d03a214f8a9d3568a9c272 X-VCS-Branch: master Date: Mon, 25 Mar 2024 09:21:57 +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: cf5a0d7d-c506-40f7-bfb3-3816c5dfa2e4 X-Archives-Hash: 2c5c75ff1fa20c2298b10494487e33ad commit: 36a9108dbab3a5ca53d03a214f8a9d3568a9c272 Author: Eli Schwartz gmail com> AuthorDate: Mon Mar 25 02:51:46 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 25 09:20:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a9108d sci-electronics/ngspice: mark as LTO-unsafe Closes: https://bugs.gentoo.org/862513 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-electronics/ngspice/ngspice-40.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sci-electronics/ngspice/ngspice-40.ebuild b/sci-electronics/ngspice/ngspice-40.ebuild index f29cb217b6fe..edc0fffedaa4 100644 --- a/sci-electronics/ngspice/ngspice-40.ebuild +++ b/sci-electronics/ngspice/ngspice-40.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools multibuild toolchain-funcs virtualx +inherit autotools flag-o-matic multibuild toolchain-funcs virtualx DESCRIPTION="The Next Generation Spice (Electronic Circuit Simulator)" HOMEPAGE="http://ngspice.sourceforge.net" @@ -80,6 +80,11 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/862513 + # https://sourceforge.net/p/ngspice/bugs/665/ + filter-lto + multibuild_foreach_variant ngspice_configure }