summaryrefslogtreecommitdiff
path: root/dev-qt/qtremoteobjects
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-08-26 06:10:01 -0400
committerIonen Wolkens <ionen@gentoo.org>2025-08-26 06:57:25 -0400
commitb0f6962f5592443c9963690dd403aee9a9aff08b (patch)
tree84d3329485e334f2b7bff43cc63d3fd7fdbcb35f /dev-qt/qtremoteobjects
parentb30c0bf0795fdea45f16e2838ed42a9d24268c4f (diff)
downloadgentoo-b0f6962f5592443c9963690dd403aee9a9aff08b.tar.gz
gentoo-b0f6962f5592443c9963690dd403aee9a9aff08b.tar.bz2
gentoo-b0f6962f5592443c9963690dd403aee9a9aff08b.zip
dev-qt/qtremoteobjects: add 6.9.2
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-qt/qtremoteobjects')
-rw-r--r--dev-qt/qtremoteobjects/Manifest1
-rw-r--r--dev-qt/qtremoteobjects/qtremoteobjects-6.9.2.ebuild54
2 files changed, 55 insertions, 0 deletions
diff --git a/dev-qt/qtremoteobjects/Manifest b/dev-qt/qtremoteobjects/Manifest
index 703bc760ad49..b74df704701d 100644
--- a/dev-qt/qtremoteobjects/Manifest
+++ b/dev-qt/qtremoteobjects/Manifest
@@ -1 +1,2 @@
DIST qtremoteobjects-everywhere-src-6.9.1.tar.xz 543600 BLAKE2B 0ad818778c4b8a537a67bc3e5cc88918cc17636801287dfd515e8b8e46cb1b9d07d8d0918d950bcf9791d2e3c6a1abb2f828ab4cc52b0dbf7def8adc94d1d82f SHA512 252497afb67941ad16cac84af4e302ce859ab7f28550ee0991a3ddcfe3e9731468b33f4f64ffc61b7aa24f9980bdb8ea8c788c6523bdc6d03c6c37a0dd8362ab
+DIST qtremoteobjects-everywhere-src-6.9.2.tar.xz 528608 BLAKE2B 26ea9f2a496cd4278db56d570ef4e2c8272051e838f3bdcf191274b091d3ff8b637d41975789eda3152b9bf14cc0fee434fdbc21497ec339dca5cd74be4ba66d SHA512 bdc79b2ab7dc8971c856f0b0332a3d4c0a4ecf047b25516377150a4b237eec32e22c3a21a07d2ce453ec2f8c6ee9a5f6ce075d3d506c834998e6f72d8a625c74
diff --git a/dev-qt/qtremoteobjects/qtremoteobjects-6.9.2.ebuild b/dev-qt/qtremoteobjects/qtremoteobjects-6.9.2.ebuild
new file mode 100644
index 000000000000..5a992a36755d
--- /dev/null
+++ b/dev-qt/qtremoteobjects/qtremoteobjects-6.9.2.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
+}