From f4d376b3e6aae83fdd7e67aa11f2144c8ad0e5a4 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Mon, 23 Mar 2026 03:03:38 -0400 Subject: [PATCH] dev-qt/qtscxml: add 6.11.0 Signed-off-by: Ionen Wolkens --- dev-qt/qtscxml/Manifest | 1 + dev-qt/qtscxml/qtscxml-6.11.0.ebuild | 34 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 dev-qt/qtscxml/qtscxml-6.11.0.ebuild diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest index a7df2814d559d..57c859a06a7cb 100644 --- a/dev-qt/qtscxml/Manifest +++ b/dev-qt/qtscxml/Manifest @@ -1,3 +1,4 @@ DIST qtscxml-everywhere-src-6.10.1.tar.xz 546444 BLAKE2B fc6760bf45534af4fb26a56d1f60629448af20207e254fcac47eb79d8bbb5a53a91a116f526a4cbdc06b12f64860cc58451626f6e96ee6763c6e40e7b25489ae SHA512 4bfa9b6846bb2382069253ca85bbea91b9bdf6ef563c926ac0d9e2e34055d266ce00ff2aaad6a2ba65b51918b08ad083a9d8947545b91bd9ce79fbddd2cad47e DIST qtscxml-everywhere-src-6.10.2.tar.xz 546512 BLAKE2B a430e1dabbd70cc044bfc4168b9b96e91df43e28bd6699078b0fb8aab528b31e768d612da3fa281c9aa53322ea023537349039bcac0c30f3991512563f5b5bff SHA512 e29120433eb5848b115fe6715e05b090202fa62f943447697bb9f520bd72f68e73e01461be6a81dfde792ea8a13b95655c1ff1f781c3b76039bbfb535fea436b DIST qtscxml-everywhere-src-6.11.0-rc.tar.xz 548504 BLAKE2B fc05f353efc9b3769cde13142bb45f9c1843bfde8572b30d48bd69a0238646ae184866b48692f134b79916e96162833b34de9ae4f92817c93fd358a0640cfeea SHA512 12e8f94e07eb8a38265002ae38c5bffc8d11c16a91534a3f55b86dd5c52e2c01fb2ec8f5270997507f78734b5b97d06ac942e14155bea8ae662fa55dee5bcf8f +DIST qtscxml-everywhere-src-6.11.0.tar.xz 549348 BLAKE2B 200f0b6abfa97cd039f8f462140c672ced1cd6c783d711090d951da15ab8cc1ae20bd7bb58441b7fb24a971ca622efd9e12e0b0d7494bec60beccfb015a4815b SHA512 5f8fdb9d710f2c0b811a9a409b6043f7e1e22291fb0192ddde997d8589c7d179d65d223300015486ae8c5e40e93bc46f15953f08f03a2d1e7606935c45576b9d diff --git a/dev-qt/qtscxml/qtscxml-6.11.0.ebuild b/dev-qt/qtscxml/qtscxml-6.11.0.ebuild new file mode 100644 index 0000000000000..1fddc362dc3f8 --- /dev/null +++ b/dev-qt/qtscxml/qtscxml-6.11.0.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 +}