repo/gentoo:master commit in: dev-qt/qtscxml/
"Ionen Wolkens" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1787053234.0e9ce3ca9c919167c1770e544e9acbe3c5dd13a6.ionen@gentoo> |
commit: 0e9ce3ca9c919167c1770e544e9acbe3c5dd13a6
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 11:15:39 2026 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 11:40:34 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9ce3ca
dev-qt/qtscxml: add 6.11.2
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
dev-qt/qtscxml/Manifest | 1 +
dev-qt/qtscxml/qtscxml-6.11.2.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest
index ac8fcfa53956..ba577b153d6e 100644
--- a/dev-qt/qtscxml/Manifest
+++ b/dev-qt/qtscxml/Manifest
@@ -1 +1,2 @@
DIST qtscxml-everywhere-src-6.11.1.tar.xz 550144 BLAKE2B acd246fd4312737be50c6f1a3814f56b6f59bae74f93109c90d9477f9abe91dbdd5d62d1dcd0d232aeb3988f79869cb2dd22429274639044e176a6fba577b7f9 SHA512 be532577a6bd928c0072c0a1fa74f3f4edef32f20b9b728b43ad0dc6a0ecffb7127af621af9328af211439637df0dc7617a60ebd98e812711eac4f81b4645998
+DIST qtscxml-everywhere-src-6.11.2.tar.xz 550868 BLAKE2B a4806c4c7234a5e145c577a14bb635b3219a506d79d76fec0a59e7a27158f212b3b9483bca5fbca1d2ce198f8266e1c7f20a517144ff6d0975092b954e1adfd6 SHA512 ded4dbc4f4ffc93008611e2abc546bf1aaf082572aab2ae65fe93f2ec41750e273bfb824672a1e4ca4bba863c99ddc0de69270467188964d010afca7551d2854
diff --git a/dev-qt/qtscxml/qtscxml-6.11.2.ebuild b/dev-qt/qtscxml/qtscxml-6.11.2.ebuild
new file mode 100644
index 000000000000..1fddc362dc3f
--- /dev/null
+++ b/dev-qt/qtscxml/qtscxml-6.11.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021-2026 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
+}