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 61727158043 for ; Sun, 17 Mar 2024 08:42:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AABCEE29B8; Sun, 17 Mar 2024 08:42:38 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F82CE29B8 for ; Sun, 17 Mar 2024 08:42:38 +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 9146D33F9FD for ; Sun, 17 Mar 2024 08:42:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DC7B1523 for ; Sun, 17 Mar 2024 08:42:36 +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: <1710664923.58ee96dd205f1a9a8aae45153a4f8e355a68a99e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/gradm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/gradm/gradm-3.1.201903191516.ebuild X-VCS-Directories: sys-apps/gradm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 58ee96dd205f1a9a8aae45153a4f8e355a68a99e X-VCS-Branch: master Date: Sun, 17 Mar 2024 08:42:36 +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: b9486eda-cd8e-454d-b5f1-538c7e242063 X-Archives-Hash: 06ae26b33272ceec019db0f1a84ef168 commit: 58ee96dd205f1a9a8aae45153a4f8e355a68a99e Author: Sam James gentoo org> AuthorDate: Sun Mar 17 08:32:33 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 17 08:42:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58ee96dd sys-apps/gradm: filter LTO Complicated upstream situation so cannot test a newer version. LTO type mismatch. Closes: https://bugs.gentoo.org/863569 Signed-off-by: Sam James gentoo.org> sys-apps/gradm/gradm-3.1.201903191516.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-apps/gradm/gradm-3.1.201903191516.ebuild b/sys-apps/gradm/gradm-3.1.201903191516.ebuild index 018c2faa2dfe..85bccb3730eb 100644 --- a/sys-apps/gradm/gradm-3.1.201903191516.ebuild +++ b/sys-apps/gradm/gradm-3.1.201903191516.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit toolchain-funcs udev +inherit flag-o-matic toolchain-funcs udev MY_PV="$(ver_rs 2 -)" @@ -37,6 +37,9 @@ src_compile() { local target use pam || target="nopam" + # bug #863569 + filter-lto + emake ${target} CC="$(tc-getCC)" OPT_FLAGS="${CFLAGS}" }