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 A3483158041 for ; Thu, 14 Mar 2024 00:11:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A34E3E29C0; Thu, 14 Mar 2024 00:11:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8695DE29C0 for ; Thu, 14 Mar 2024 00:11:11 +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 B4928335DC8 for ; Thu, 14 Mar 2024 00:11:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A3469B6 for ; Thu, 14 Mar 2024 00:11:09 +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: <1710375042.26684e21a2a9dc4c7226d456f12293a33e964d13.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/wcalc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-calculators/wcalc/wcalc-2.5.ebuild X-VCS-Directories: sci-calculators/wcalc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 26684e21a2a9dc4c7226d456f12293a33e964d13 X-VCS-Branch: master Date: Thu, 14 Mar 2024 00:11:09 +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: 131360ab-02a6-4e78-982c-85b96b193c39 X-Archives-Hash: ff9fb85c50f2c286e644cad242ec22ee commit: 26684e21a2a9dc4c7226d456f12293a33e964d13 Author: Eli Schwartz gmail com> AuthorDate: Wed Mar 13 22:18:01 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 00:10:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26684e21 sci-calculators/wcalc: mark as LTO-unsafe Closes: https://bugs.gentoo.org/862384 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-calculators/wcalc/wcalc-2.5.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/sci-calculators/wcalc/wcalc-2.5.ebuild b/sci-calculators/wcalc/wcalc-2.5.ebuild index e21f19c9610f..edb093739358 100644 --- a/sci-calculators/wcalc/wcalc-2.5.ebuild +++ b/sci-calculators/wcalc/wcalc-2.5.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=7 -inherit autotools desktop +inherit autotools desktop flag-o-matic DESCRIPTION="A flexible command-line scientific calculator" HOMEPAGE="http://w-calc.sourceforge.net/" @@ -28,6 +28,13 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/862384 + # + # Upstream is sourceforge. Last release in 2015, last activity 2021. Not + # submitting a bug report for now. -- Eli + filter-lto + econf $(use_with readline) }