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 2ACA41581E7 for ; Fri, 26 Apr 2024 12:50:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EA48E29E0; Fri, 26 Apr 2024 12:50:05 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C958E29E0 for ; Fri, 26 Apr 2024 12:50:05 +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 4E08C34311D for ; Fri, 26 Apr 2024 12:50:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A83EC1657 for ; Fri, 26 Apr 2024 12:50:02 +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: <1714135730.52b121d6412451c52fac5cc2f3e9f2d0d61e0a81.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/yydecode/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/yydecode/yydecode-0.2.10-r2.ebuild X-VCS-Directories: net-news/yydecode/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 52b121d6412451c52fac5cc2f3e9f2d0d61e0a81 X-VCS-Branch: master Date: Fri, 26 Apr 2024 12:50:02 +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: c5c72b94-8168-4e07-a51a-5bdff52a550b X-Archives-Hash: 7b423b6b75b683d9f38e49c37f9b1429 commit: 52b121d6412451c52fac5cc2f3e9f2d0d61e0a81 Author: Eli Schwartz gmail com> AuthorDate: Mon Apr 15 23:42:19 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 26 12:48:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52b121d6 net-news/yydecode: mark as LTO-unsafe Closes: https://bugs.gentoo.org/898078 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-news/yydecode/yydecode-0.2.10-r2.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/net-news/yydecode/yydecode-0.2.10-r2.ebuild b/net-news/yydecode/yydecode-0.2.10-r2.ebuild index c43ca13d7e4e..eeaa0f00b76c 100644 --- a/net-news/yydecode/yydecode-0.2.10-r2.ebuild +++ b/net-news/yydecode/yydecode-0.2.10-r2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit flag-o-matic + DESCRIPTION="A decoder for yENC format, popular on Usenet" HOMEPAGE="http://yydecode.sourceforge.net/" SRC_URI="mirror://sourceforge/yydecode/${P}.tar.gz" @@ -19,3 +21,12 @@ src_prepare() { default sed -e "s/t3.sh//" -e "s/t7.sh//" -i checks/Makefile.in || die } + +src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/898078 + # + # Upstream has been dead since 2003. No bug reported. + filter-lto + default +}