diff --git a/dev-qt/qt5compat/Manifest b/dev-qt/qt5compat/Manifest index 9a63369b24406..7803dbcac27d1 100644 --- a/dev-qt/qt5compat/Manifest +++ b/dev-qt/qt5compat/Manifest @@ -1,3 +1,4 @@ DIST qt5compat-everywhere-src-6.10.0-rc.tar.xz 14619776 BLAKE2B 6c86d0ad6311c0aa1288136ae30f97145a424156d9df0593351d163da6918fc7cd71d497bc5a8d58c03667ce9f962a56b94a494e3a257c6d91298584fa93cd80 SHA512 6599746d4bfa8493ec71100f2a06b128b79f767172de5a4e3fb6bf02cdeda3baf97f40f1129757e1c80490a368775e37e4519c150bfdd88f6cb8fe9781831c62 +DIST qt5compat-everywhere-src-6.10.0.tar.xz 14621320 BLAKE2B 32598d95f07fd67cef33132b6265cd9ac33bf7c0228aebd0c1f97daa82e6146b0109f27ad05cd0b9877b722b490b72faf11e9bdc994ef98f8f1fc3cde2e4637e SHA512 688483f91a838c976e9af79a5f19c3fa80127756a627ab0e8a9ef9d37c4c4f9d1d2aa461e8afb1dd61d7759c55f9761119d27e8bf626bf81d33e300e8d97ffcc DIST qt5compat-everywhere-src-6.9.2.tar.xz 14618016 BLAKE2B 4e0dbee452c99ab412711cc154b1a1f8b2195ef9c9a34a3484de92b3070c2a30160b6b1cd8b2ace30b7fe9891c04e3bf2205c5f48f8f6f7c12be0bda527d8a74 SHA512 281e60fdc9559279fb249d80fd04ea52282db9db402cc81365acafea1d87e96923bfb5a9607163182736a9ca30618da5578cce7271083c08692e95396bbf307c DIST qt5compat-everywhere-src-6.9.3.tar.xz 14619024 BLAKE2B ae9e129f67040c5f7283f94aa5b4966cac03074c54512bbc46c9bd1114bef6f260747791fc0ae7f8eb3fd5c0c2dd2228458d4e6a161533773f010844e7c52445 SHA512 03714f8f378d7663e9e3d6e888e1924842f50fff501abb976937cd9ef322292edcfd1b63dfe72f28dfc9b4117293f7b88ba5f950886a94a60b39e88c1570ed26 diff --git a/dev-qt/qt5compat/qt5compat-6.10.0.ebuild b/dev-qt/qt5compat/qt5compat-6.10.0.ebuild new file mode 100644 index 0000000000000..a41bcdce4696b --- /dev/null +++ b/dev-qt/qt5compat/qt5compat-6.10.0.ebuild @@ -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 +}