Diff qtbase-6.10.1 with a qtbase-6.10.3

/usr/portage/dev-qt/qtbase/qtbase-6.10.3.ebuild 2026-04-04 11:46:07.594308581 +0300
1
# Copyright 2021-2025 Gentoo Authors
1
# Copyright 2021-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
9 9
DESCRIPTION="Cross-platform application development framework"
10 10

  
11 11
if [[ ${QT6_BUILD_TYPE} == release ]]; then
12
	KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86"
12
	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86"
13 13
fi
14 14

  
15 15
declare -A QT6_IUSE=(
......
331 331
	qt6-build_src_configure
332 332
}
333 333

  
334
src_compile() {
335
	# workaround missing qtest include race condition when building
336
	# the new test from qtbase@b412e424b (needs more looking into)
337
	cmake_build include/QtTest/QtTest
338
	cmake_src_compile
339
}
340

  
334 341
src_test() {
335 342
	local -x TZ=UTC
336 343
	local -x LC_TIME=C
Thank you!