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 CB3F5158041 for ; Thu, 29 Feb 2024 01:52:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3194BE2A41; Thu, 29 Feb 2024 01:52:06 +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 1436FE2A41 for ; Thu, 29 Feb 2024 01:52:06 +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 23B70343051 for ; Thu, 29 Feb 2024 01:52:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C31314E7 for ; Thu, 29 Feb 2024 01:52:03 +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: <1709171412.659b603bdae9200495a7a8e704e407ee53433552.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/jfsutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/jfsutils/jfsutils-1.1.15-r2.ebuild X-VCS-Directories: sys-fs/jfsutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 659b603bdae9200495a7a8e704e407ee53433552 X-VCS-Branch: master Date: Thu, 29 Feb 2024 01:52:03 +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: 6cdfe4d6-859c-401e-b18b-531ded55f38e X-Archives-Hash: 0b7170ca8a09a0b02f3b117257a808fe commit: 659b603bdae9200495a7a8e704e407ee53433552 Author: Eli Schwartz gmail com> AuthorDate: Thu Feb 29 01:31:15 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 29 01:50:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=659b603b sys-fs/jfsutils: mark as LTO-unsafe Note: the filesystem is not a huge hit, and the utils package was last released in 2011. It uses CVS as its version control, on sourceforge! which means that it's been decommissioned in 2017 and there was no one left to migrate or something. Discussion lists are inactive except the one hooked into kernel.org, which is only used for discussing the kernel driver not the utils. It's not clear how to effectively report a utils issue, or what would happen if we did. Closes: https://bugs.gentoo.org/863905 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sys-fs/jfsutils/jfsutils-1.1.15-r2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-fs/jfsutils/jfsutils-1.1.15-r2.ebuild b/sys-fs/jfsutils/jfsutils-1.1.15-r2.ebuild index 8975c0684ac2..4ec1f3ba3c98 100644 --- a/sys-fs/jfsutils/jfsutils-1.1.15-r2.ebuild +++ b/sys-fs/jfsutils/jfsutils-1.1.15-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -39,6 +39,10 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/863905 + filter-lto + # It doesn't compile on alpha without this LDFLAGS use alpha && append-ldflags "-Wl,--no-relax"