dev-qt/qt5compat: add 6.9.2

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens
2025-08-26 06:09:18 -04:00
parent 94fc385071
commit 76f4ec0440
2 changed files with 39 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST qt5compat-everywhere-src-6.9.1.tar.xz 14633560 BLAKE2B f36b0da9250c970f2b422d81c1ec509a46f3faac187d7c1fe7e401e9741ef8dd8d9027d8a594c3e7fa8dafdf881d67364937067754e33db87ebd24b6cde77bc9 SHA512 3350a9734e923401a43990dffcdd3f4d6bdfe4a3ff01c6f75e2f0be1410f8794242e2fc712b8dc112102f8cd0d7859e7e010935c42cebe85912fb99300440153
DIST qt5compat-everywhere-src-6.9.2.tar.xz 14618016 BLAKE2B 4e0dbee452c99ab412711cc154b1a1f8b2195ef9c9a34a3484de92b3070c2a30160b6b1cd8b2ace30b7fe9891c04e3bf2205c5f48f8f6f7c12be0bda527d8a74 SHA512 281e60fdc9559279fb249d80fd04ea52282db9db402cc81365acafea1d87e96923bfb5a9607163182736a9ca30618da5578cce7271083c08692e95396bbf307c

View File

@@ -0,0 +1,38 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qt6-build
DESCRIPTION="Qt module containing the unsupported Qt 5 APIs"
if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86"
fi
IUSE="+gui icu qml"
RDEPEND="
~dev-qt/qtbase-${PV}:6[gui=,icu=,network,xml]
icu? ( dev-libs/icu:= )
!icu? ( virtual/libiconv )
qml? (
~dev-qt/qtdeclarative-${PV}:6
~dev-qt/qtshadertools-${PV}:6
)
"
DEPEND="${RDEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake_use_find_package qml Qt6Quick)
)
qt6-build_src_configure
}
src_test() {
# tst_qxmlinputsource sometimes hang without -j1
qt6-build_src_test -j1
}