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 D2EBE158009 for ; Mon, 26 Jun 2023 17:42:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09497E085A; Mon, 26 Jun 2023 17:42:39 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6B39E085A for ; Mon, 26 Jun 2023 17: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 097A9340D5B for ; Mon, 26 Jun 2023 17:42:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 411B7990 for ; Mon, 26 Jun 2023 17:42:36 +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: <1687801353.0b7ffa25b17baba37ff0f627b306f0edac4b50e8.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/ppsspp/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch X-VCS-Directories: games-emulation/ppsspp/files/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 0b7ffa25b17baba37ff0f627b306f0edac4b50e8 X-VCS-Branch: master Date: Mon, 26 Jun 2023 17: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: 89ec8c0d-36d8-4a33-9b15-4096b301240f X-Archives-Hash: a80d6020d30b528e49a236e2de2cdd6e commit: 0b7ffa25b17baba37ff0f627b306f0edac4b50e8 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Jun 26 17:16:46 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Jun 26 17:42:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b7ffa25 games-emulation/ppsspp: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31626 Signed-off-by: Maciej Barć gentoo.org> .../ppsspp/files/ppsspp-1.14.4-gcc13.patch | 58 ---------------------- 1 file changed, 58 deletions(-) diff --git a/games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch b/games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch deleted file mode 100644 index c4888f0efb6f..000000000000 --- a/games-emulation/ppsspp/files/ppsspp-1.14.4-gcc13.patch +++ /dev/null @@ -1,58 +0,0 @@ -https://bugs.gentoo.org/898910 -https://github.com/hrydgard/ppsspp/commit/9874737087e8d24ea72b3f08b4975031b54a80a5 - -From 822592c6b1441f7110e1cb15dcc5cd2ea1de8099 Mon Sep 17 00:00:00 2001 -From: Andreas Stieger -Date: Wed, 5 Apr 2023 00:20:14 +0200 -Subject: [PATCH] Fix build with GCC13: various standard includes - ---- a/Common/Data/Format/IniFile.h -+++ b/Common/Data/Format/IniFile.h -@@ -8,6 +8,7 @@ - #include - #include - #include -+#include - - #include "Common/File/Path.h" - ---- a/Common/GPU/OpenGL/GLFeatures.h -+++ b/Common/GPU/OpenGL/GLFeatures.h -@@ -5,6 +5,7 @@ - #pragma once - - #include -+#include - - // TODO: Replace with thin3d's vendor enum. - enum { ---- a/Common/Net/NetBuffer.h -+++ b/Common/Net/NetBuffer.h -@@ -1,5 +1,7 @@ - #pragma once - -+#include -+ - #include "Common/Buffer.h" - - namespace net { ---- a/Core/Reporting.h -+++ b/Core/Reporting.h -@@ -19,6 +19,7 @@ - - #include - #include -+#include - - #include "Common/CommonTypes.h" - #include "Common/File/Path.h" ---- a/ext/vma/vk_mem_alloc.h -+++ b/ext/vma/vk_mem_alloc.h -@@ -2624,6 +2624,7 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString( - #include - #include - #include -+#include - - #ifdef _MSC_VER - #include // For functions like __popcnt, _BitScanForward etc.