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 F17AB158043 for ; Mon, 4 Mar 2024 01:03:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30302E2AFA; Mon, 4 Mar 2024 01:03:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1631CE2AFA for ; Mon, 4 Mar 2024 01:03: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 5D3EA34076D for ; Mon, 4 Mar 2024 01:03:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B663414EF for ; Mon, 4 Mar 2024 01:03:34 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1709514210.22fe17089f20027554c2fe530a9d71f193ea2e42.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/ppsspp/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/ppsspp/ppsspp-1.15.4.ebuild games-emulation/ppsspp/ppsspp-1.17.1-r1.ebuild X-VCS-Directories: games-emulation/ppsspp/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 22fe17089f20027554c2fe530a9d71f193ea2e42 X-VCS-Branch: master Date: Mon, 4 Mar 2024 01:03:34 +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: f24e9e43-d214-49eb-b498-7aaf947b92d6 X-Archives-Hash: 9d85b54f3403eaaedc22cc4f8915b030 commit: 22fe17089f20027554c2fe530a9d71f193ea2e42 Author: Maciej Barć gentoo org> AuthorDate: Mon Mar 4 00:38:54 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Mar 4 01:03:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22fe1708 games-emulation/ppsspp: filter lto Closes: https://bugs.gentoo.org/926079 Signed-off-by: Maciej Barć gentoo.org> games-emulation/ppsspp/ppsspp-1.15.4.ebuild | 5 ++++- games-emulation/ppsspp/ppsspp-1.17.1-r1.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/games-emulation/ppsspp/ppsspp-1.15.4.ebuild b/games-emulation/ppsspp/ppsspp-1.15.4.ebuild index 17b358731669..064e56772306 100644 --- a/games-emulation/ppsspp/ppsspp-1.15.4.ebuild +++ b/games-emulation/ppsspp/ppsspp-1.15.4.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) -inherit python-any-r1 xdg cmake +inherit flag-o-matic python-any-r1 xdg cmake DESCRIPTION="A PSP emulator written in C++" HOMEPAGE="https://www.ppsspp.org/ @@ -51,6 +51,9 @@ pkg_setup() { } src_configure() { + # bug https://bugs.gentoo.org/926079 + filter-lto + local -a mycmakeargs=( -DBUILD_SHARED_LIBS=OFF -DCMAKE_SKIP_RPATH=ON diff --git a/games-emulation/ppsspp/ppsspp-1.17.1-r1.ebuild b/games-emulation/ppsspp/ppsspp-1.17.1-r1.ebuild index ea035438b7b6..df6bd1ad60c2 100644 --- a/games-emulation/ppsspp/ppsspp-1.17.1-r1.ebuild +++ b/games-emulation/ppsspp/ppsspp-1.17.1-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit python-any-r1 xdg cmake +inherit flag-o-matic python-any-r1 xdg cmake DESCRIPTION="A PSP emulator written in C++" HOMEPAGE="https://www.ppsspp.org/ @@ -66,6 +66,9 @@ pkg_setup() { } src_configure() { + # bug https://bugs.gentoo.org/926079 + filter-lto + local -a mycmakeargs=( -DBUILD_SHARED_LIBS=OFF -DCMAKE_SKIP_RPATH=ON