diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest index f3a560ac856a3..fe4920c58da03 100644 --- a/dev-qt/qtscxml/Manifest +++ b/dev-qt/qtscxml/Manifest @@ -1,2 +1,3 @@ DIST qtscxml-everywhere-opensource-src-5.15.17.tar.xz 431216 BLAKE2B 7ea989dfcb5a971d90444f9d5362f41bd3faef8a4de6e2ed79a28ff7f2c68d5971019c6d2a6a4cd787c27dc57b7ba49cd33bf03270e1dfcf121aa425bfaad331 SHA512 85c17f9a9e6b5ee38bf39e79e1510e1e69a14871d06917ecdd145e9517f632d962c6afc89b5644e48b1251a12ed3bdc7d519d36ed3154cd59ce2a0a438645093 DIST qtscxml-everywhere-src-6.9.1.tar.xz 560588 BLAKE2B fc5dad5c00040a57a679e91b71f10fc7e39ab4177ef07d3e73219a8544c889dba21c0723ea37a5c1f78fd323260412c47efe09f2263d7f19ca7bb3ed021e7eee SHA512 f32fc3322eabec7135dc0820f8e39d24b84e8e14e9a9021d1c15021355c5a491bb8c4bbf0d25a2e4e44d8df0d9c7f270a0191f34fffad56f92e2ab0c742691b4 +DIST qtscxml-everywhere-src-6.9.2.tar.xz 545560 BLAKE2B 1dc8083dc3199fd9949fe59493d7ee3dbbf14b23a4e9507a85e9e7692284f940214e0474ac6a875ee72023b2bd83dafbd63ee35c421d06cd630fc3022de09e59 SHA512 3c21424f1941ea5e9e0a217149cb9bdd7b3ba729f40e506f2debde4aeaa314e214979436d38ac5c4b423e2a9fee5261a75df5fdc66731c911ae653a4d784e4ff diff --git a/dev-qt/qtscxml/qtscxml-6.9.2.ebuild b/dev-qt/qtscxml/qtscxml-6.9.2.ebuild new file mode 100644 index 0000000000000..496636867ceb7 --- /dev/null +++ b/dev-qt/qtscxml/qtscxml-6.9.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 2021-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="State Chart XML (SCXML) support library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +fi + +IUSE="qml" + +RDEPEND=" + ~dev-qt/qtbase-${PV}:6[gui] + qml? ( ~dev-qt/qtdeclarative-${PV}:6 ) +" +DEPEND="${RDEPEND}" + +CMAKE_SKIP_TESTS=( + # may fail with pid-sandbox, or at least musl/hardened+gcc (exact + # conditions unknown but passes without pid, considering this flaky) + tst_qstatemachine +) + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package qml Qt6Qml) + ) + + qt6-build_src_configure +}