commit: 31f0ad720721b20ba91e6d0400b8ddbb01cb59b9 Author: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org> AuthorDate: Fri Jul 25 20:26:24 2025 +0000 Commit: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org> CommitDate: Sat Jul 26 20:40:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31f0ad72
games-emulation/mgba: set CMAKE_QA_COMPAT_SKIP=1 Builds fine with cmake-4. Our build only requires CMakeLists.txt from the root directory which already sets cmake_minimum_required to 3.10 Unfortunately there are lots of third_party sources which add many additional CMakeLists.txt - none of them are used when building. Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org> Bug: https://bugs.gentoo.org/958356 Part-of: https://github.com/gentoo/gentoo/pull/43160 Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org> games-emulation/mgba/mgba-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-emulation/mgba/mgba-9999.ebuild b/games-emulation/mgba/mgba-9999.ebuild index a599c0cec301..a190e89e3d7e 100644 --- a/games-emulation/mgba/mgba-9999.ebuild +++ b/games-emulation/mgba/mgba-9999.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 @@ -62,6 +62,8 @@ PATCHES=( "${FILESDIR}"/${PN}-0.10.0-optional-updater.patch ) +CMAKE_QA_COMPAT_SKIP=1 #958356 + pkg_setup() { use lua && lua-single_pkg_setup }
