commit: c1a3e492a61fb21fcedf09dbc1b7d43d89d050c1
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 20 12:07:37 2025 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Nov 20 12:51:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a3e492
dev-qt/qtscxml: add 6.10.1
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
dev-qt/qtscxml/Manifest | 1 +
dev-qt/qtscxml/qtscxml-6.10.1.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest
index dcb8078bfac2..4511a2ad26b5 100644
--- a/dev-qt/qtscxml/Manifest
+++ b/dev-qt/qtscxml/Manifest
@@ -1,3 +1,4 @@
DIST qtscxml-everywhere-opensource-src-5.15.18.tar.xz 415812 BLAKE2B
aac237220793850e44e34f7e17138ff145e29faa1b8a8cf5f332e718f3d5480ca43b1db7ca44c7bcddac312b1352aaef11a9c032febcd04558b6ea7db11a845d
SHA512
9ad88607e25b6bf43ae460904a3ccfb3514c6a6b739dfce4799958d5897601370a83f818e706a0270ccab1a995976384553d1bfca74f53f08bda3f9d1b58cf4c
DIST qtscxml-everywhere-src-6.10.0.tar.xz 546460 BLAKE2B
4c7d1e8300e718f3d58b3cf61261cceb46e3d5c234693068ae0320f9f8ecc913d93e3276dd8c3d8e9991e562370508911008e570982be08637718948e5a2ec3c
SHA512
d3fbccd0f529dd008515d0a449a388fa5969f215a8583aa15e8a3115f3141888f3a3808da8131fe82301f71d7f6301f9d31297aacdc22c7659c9e606c9efbc2d
+DIST qtscxml-everywhere-src-6.10.1.tar.xz 546444 BLAKE2B
fc6760bf45534af4fb26a56d1f60629448af20207e254fcac47eb79d8bbb5a53a91a116f526a4cbdc06b12f64860cc58451626f6e96ee6763c6e40e7b25489ae
SHA512
4bfa9b6846bb2382069253ca85bbea91b9bdf6ef563c926ac0d9e2e34055d266ce00ff2aaad6a2ba65b51918b08ad083a9d8947545b91bd9ce79fbddd2cad47e
DIST qtscxml-everywhere-src-6.9.3.tar.xz 545436 BLAKE2B
308cd82b447a4183400648d6e4c2de2d5dcfda8a3673b31f63300bb093a17ec8db153fa59585213d5b3fb5b09c82fe0ac4f611505959842e6a19dad9929c4db5
SHA512
61c7109f39a6db05eb9e14ad559531f6798aa23365a3d57e4431aa271edc0f1b163d7441294bb2f7a3a8249151d9d03c3d1f7ef8847c158f36ee9691dd633314
diff --git a/dev-qt/qtscxml/qtscxml-6.10.1.ebuild
b/dev-qt/qtscxml/qtscxml-6.10.1.ebuild
new file mode 100644
index 000000000000..496636867ceb
--- /dev/null
+++ b/dev-qt/qtscxml/qtscxml-6.10.1.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
+}