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 06ABD158094 for ; Sun, 17 Jul 2022 15:39:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1560E09EA; Sun, 17 Jul 2022 15:39:44 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7E010E09EA for ; Sun, 17 Jul 2022 15:39:44 +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 72C52341013 for ; Sun, 17 Jul 2022 15:39:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7A834FB for ; Sun, 17 Jul 2022 15:39:41 +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: <1658071823.48a5756b827ea777e5ee15c6c3cc2bc09bdd7ebb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/moon-buggy/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/moon-buggy/moon-buggy-1.0.51-r2.ebuild X-VCS-Directories: games-action/moon-buggy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 48a5756b827ea777e5ee15c6c3cc2bc09bdd7ebb X-VCS-Branch: master Date: Sun, 17 Jul 2022 15:39:41 +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: 3b4c616c-86c2-48db-a099-56ffe3beee87 X-Archives-Hash: 10e9df440cc9d1950c02d58a8471d060 commit: 48a5756b827ea777e5ee15c6c3cc2bc09bdd7ebb Author: Sam James gentoo org> AuthorDate: Sun Jul 17 15:30:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 17 15:30:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48a5756b games-action/moon-buggy: filter LTO (type mismatch) Closes: https://bugs.gentoo.org/858518 Signed-off-by: Sam James gentoo.org> games-action/moon-buggy/moon-buggy-1.0.51-r2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/games-action/moon-buggy/moon-buggy-1.0.51-r2.ebuild b/games-action/moon-buggy/moon-buggy-1.0.51-r2.ebuild index 9430a6baa4a0..f6dbd7d4292c 100644 --- a/games-action/moon-buggy/moon-buggy-1.0.51-r2.ebuild +++ b/games-action/moon-buggy/moon-buggy-1.0.51-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools toolchain-funcs +inherit autotools flag-o-matic toolchain-funcs DESCRIPTION="Simple console game, where you drive a car across the moon's surface" HOMEPAGE="https://www.seehuhn.de/pages/moon-buggy.html" @@ -28,6 +28,9 @@ src_prepare() { } src_configure() { + # LTO warnings, bug #858518 + filter-lto + econf \ --sharedstatedir="${EPREFIX}/var/games" \ --with-curses-libs="$($(tc-getPKG_CONFIG) ncurses --libs)"