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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F25BB1582EF for ; Mon, 10 Mar 2025 05:44:14 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id D60E134312A for ; Mon, 10 Mar 2025 05:44:14 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DC2D11102E0; Mon, 10 Mar 2025 05:44:13 +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 bobolink.gentoo.org (Postfix) with ESMTPS id D4AD41102E0 for ; Mon, 10 Mar 2025 05:44:13 +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 6A11D34312A for ; Mon, 10 Mar 2025 05:44:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D596122C for ; Mon, 10 Mar 2025 05:44:11 +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: <1741585421.3346ee91c8195114796e42e18c7e20a25bbb1717.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/EmptyEpsilon/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-simulation/EmptyEpsilon/EmptyEpsilon-2022.10.28.ebuild X-VCS-Directories: games-simulation/EmptyEpsilon/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3346ee91c8195114796e42e18c7e20a25bbb1717 X-VCS-Branch: master Date: Mon, 10 Mar 2025 05:44:11 +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: ce7ff327-4013-43c5-a97b-aad54a8a6327 X-Archives-Hash: caade84d1f61e2c317e229908f78eb69 commit: 3346ee91c8195114796e42e18c7e20a25bbb1717 Author: Sam James gentoo org> AuthorDate: Mon Mar 10 05:42:51 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 10 05:43:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3346ee91 games-simulation/EmptyEpsilon: drop bogus GCC check The ebuild doesn't depend on media-libs/libsfml but also, that error generally appears when something C++ was built against newer GCC and then you're trying to link against it using older GCC (=> older libstdc++). Besides, <11 is masked and has been for a while. Signed-off-by: Sam James gentoo.org> .../EmptyEpsilon/EmptyEpsilon-2022.10.28.ebuild | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/games-simulation/EmptyEpsilon/EmptyEpsilon-2022.10.28.ebuild b/games-simulation/EmptyEpsilon/EmptyEpsilon-2022.10.28.ebuild index 2e760b51db7f..1f1c5dd24e42 100644 --- a/games-simulation/EmptyEpsilon/EmptyEpsilon-2022.10.28.ebuild +++ b/games-simulation/EmptyEpsilon/EmptyEpsilon-2022.10.28.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cmake toolchain-funcs +inherit cmake # basis_universal version MY_BU_VER="1_15_update2" @@ -46,18 +46,6 @@ PATCHES=( "${FILESDIR}/${PN}-cmake-meshoptimizer.patch" ) -pkg_pretend() { - [[ ${MERGE_TYPE} == "binary" ]] && return - - if tc-is-gcc; then - if [[ $(gcc-major-version) -lt 11 ]]; then - # ld: /usr/lib64/libsfml-audio.so: undefined reference to `std::__throw_bad_array_new_length()@GLIBCXX_3.a4.29' - eerror "${PN} requires GCC >= 11. Run gcc-config to switch your default compiler." - die "Need at least GCC >= 11" - fi - fi -} - src_prepare() { cmake_src_prepare