From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 6A2BA1582EF for ; Sun, 09 Mar 2025 23:23:10 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 539DF343111 for ; Sun, 09 Mar 2025 23:23:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8EA7B110370; Sun, 09 Mar 2025 23:23:08 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 8590D110370 for ; Sun, 09 Mar 2025 23:23:08 +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 41A5134310C for ; Sun, 09 Mar 2025 23:23:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0D02129F for ; Sun, 09 Mar 2025 23:23:06 +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: <1741562547.c0957cd77e3c514156f1c54a9b8d0cd8d3b37e7b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/supertuxkart/, games-action/supertuxkart/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/supertuxkart/files/supertuxkart-1.4-gcc-15.patch games-action/supertuxkart/supertuxkart-1.4-r1.ebuild X-VCS-Directories: games-action/supertuxkart/files/ games-action/supertuxkart/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c0957cd77e3c514156f1c54a9b8d0cd8d3b37e7b X-VCS-Branch: master Date: Sun, 09 Mar 2025 23:23:06 +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: 58472088-67a0-4a78-b162-3d10765b539b X-Archives-Hash: d3c0033121ff875d31d650690199c881 commit: c0957cd77e3c514156f1c54a9b8d0cd8d3b37e7b Author: Kostadin Shishmanov protonmail com> AuthorDate: Sun Mar 9 22:58:48 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 9 23:22:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0957cd7 games-action/supertuxkart: add patch for gcc 15 Backport commit that adds an include that's been removed from the default ones in libstdc++. Closes: https://bugs.gentoo.org/937731 Signed-off-by: Kostadin Shishmanov protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/40986 Signed-off-by: Sam James gentoo.org> .../files/supertuxkart-1.4-gcc-15.patch | 24 ++++++++++++++++++++++ .../supertuxkart/supertuxkart-1.4-r1.ebuild | 3 ++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/games-action/supertuxkart/files/supertuxkart-1.4-gcc-15.patch b/games-action/supertuxkart/files/supertuxkart-1.4-gcc-15.patch new file mode 100644 index 000000000000..ef16a455117a --- /dev/null +++ b/games-action/supertuxkart/files/supertuxkart-1.4-gcc-15.patch @@ -0,0 +1,24 @@ +https://github.com/supertuxkart/stk-code/issues/5301 +https://bugs.gentoo.org/937731 + +From 83e029cc123176a77a239edf90ee461e46f9f8a2 Mon Sep 17 00:00:00 2001 +From: Gwyn Ciesla +Date: Wed, 19 Feb 2025 09:34:58 -0600 +Subject: [PATCH] Add include to work with gcc15. (#5310) + +--- + src/network/remote_kart_info.hpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/network/remote_kart_info.hpp b/src/network/remote_kart_info.hpp +index 80a6339187c..9865dcda8c3 100644 +--- a/src/network/remote_kart_info.hpp ++++ b/src/network/remote_kart_info.hpp +@@ -29,6 +29,7 @@ + #include + #include + #include ++#include + + enum KartTeam : int8_t + { diff --git a/games-action/supertuxkart/supertuxkart-1.4-r1.ebuild b/games-action/supertuxkart/supertuxkart-1.4-r1.ebuild index 85252331bd59..7ed6c6e34cec 100644 --- a/games-action/supertuxkart/supertuxkart-1.4-r1.ebuild +++ b/games-action/supertuxkart/supertuxkart-1.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -56,6 +56,7 @@ PATCHES=( "${FILESDIR}"/${PN}-1.1-irrlicht-arch-support.patch "${FILESDIR}"/${PN}-1.3-irrlicht-system-libs.patch "${FILESDIR}"/${P}-gcc-13.patch + "${FILESDIR}"/${P}-gcc-15.patch ) src_configure() {