summaryrefslogtreecommitdiff
path: root/dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-09-30 06:02:34 -0400
committerIonen Wolkens <ionen@gentoo.org>2025-09-30 07:55:21 -0400
commita3d036a29a4def19eb16d3fb14aaac301f79e73b (patch)
tree4d9f0632680af1e990ba0c5c556ebfa4762f2785 /dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild
parent451c2e1ef90883f59cc08c0b059c9f18879dc924 (diff)
downloadgentoo-a3d036a29a4def19eb16d3fb14aaac301f79e73b.tar.gz
gentoo-a3d036a29a4def19eb16d3fb14aaac301f79e73b.tar.bz2
gentoo-a3d036a29a4def19eb16d3fb14aaac301f79e73b.zip
dev-qt/qtremoteobjects: add 6.9.3
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild')
-rw-r--r--dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild54
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild b/dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild
new file mode 100644
index 000000000000..5a992a36755d
--- /dev/null
+++ b/dev-qt/qtremoteobjects/qtremoteobjects-6.9.3.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Inter-Process Communication (IPC) library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+ KEYWORDS="~amd64 ~loong"
+fi
+
+IUSE="qml"
+
+RDEPEND="
+ ~dev-qt/qtbase-${PV}:6[network]
+ qml? (
+ ~dev-qt/qtbase-${PV}:6[gui]
+ ~dev-qt/qtdeclarative-${PV}:6
+ )
+"
+DEPEND="
+ ${RDEPEND}
+ test? ( ~dev-qt/qtbase-${PV}:6[gui] )
+"
+
+src_configure() {
+ # same issue as bug #913692 when tests are enabled
+ has_version "=dev-qt/qtdeclarative-$(ver_cut 1-3)*:6" &&
+ local mycmakeargs=( $(cmake_use_find_package qml Qt6Qml) )
+
+ qt6-build_src_configure
+}
+
+src_test() {
+ local CMAKE_SKIP_TESTS=(
+ # rarely fails randomly even with -j1, not looked further into
+ tst_modelview
+ )
+
+ # tests re-use 127.0.0.1:65213 and randomly fail if ran at same time
+ qt6-build_src_test -j1
+}
+
+src_install() {
+ qt6-build_src_install
+
+ if use test; then
+ # installs 30+ test binaries like "qt6/bin/state" and, given
+ # otherwise empty, "can" delete the directory rather than list
+ rm -r -- "${D}${QT6_BINDIR}" || die
+ fi
+}