mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-qt/qt5compat: add 6.10.0_rc
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST qt5compat-everywhere-src-6.10.0-rc.tar.xz 14619776 BLAKE2B 6c86d0ad6311c0aa1288136ae30f97145a424156d9df0593351d163da6918fc7cd71d497bc5a8d58c03667ce9f962a56b94a494e3a257c6d91298584fa93cd80 SHA512 6599746d4bfa8493ec71100f2a06b128b79f767172de5a4e3fb6bf02cdeda3baf97f40f1129757e1c80490a368775e37e4519c150bfdd88f6cb8fe9781831c62
|
||||
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
|
||||
|
||||
38
dev-qt/qt5compat/qt5compat-6.10.0_rc.ebuild
Normal file
38
dev-qt/qt5compat/qt5compat-6.10.0_rc.ebuild
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user