dev-qt/qtremoteobjects: add 6.10.0

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens
2025-10-07 01:25:13 -04:00
parent 0027fdb426
commit 3af882f883
2 changed files with 55 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST qtremoteobjects-everywhere-src-6.10.0-rc.tar.xz 529092 BLAKE2B 582b0a02c20ee557f86106e255f6973fd593dc97f444dbba1ebad5f88b1d098b7519f9813462616fc687eebf2d915b34ff374249ef25eace44af2c664eb030b1 SHA512 0eea7c88e693433fb23082be20279f552dc68588129111774aa23a985a4da6e17276af798cc77cba8986d1643288dee634b3a898b7379fea1d2cf26da46e6c06
DIST qtremoteobjects-everywhere-src-6.10.0.tar.xz 528912 BLAKE2B f653745a2b6f68694ac11df9894fafd63aa7d3208f3a1138e6a75a7e6455f5d8466d84f45b7104718e7991f4d1fa806d07199a57d7d913fa7587a212b91c7225 SHA512 9ba660583f13693da2e13fda1b1b8612845d6084c1ee7ac56ec244b8263b659f8b1d892ed227d46737eacfc645ae9553d2f59426e55f2d323382bbd9319dab59
DIST qtremoteobjects-everywhere-src-6.9.2.tar.xz 528608 BLAKE2B 26ea9f2a496cd4278db56d570ef4e2c8272051e838f3bdcf191274b091d3ff8b637d41975789eda3152b9bf14cc0fee434fdbc21497ec339dca5cd74be4ba66d SHA512 bdc79b2ab7dc8971c856f0b0332a3d4c0a4ecf047b25516377150a4b237eec32e22c3a21a07d2ce453ec2f8c6ee9a5f6ce075d3d506c834998e6f72d8a625c74
DIST qtremoteobjects-everywhere-src-6.9.3.tar.xz 528744 BLAKE2B 97a8b6e00c536dac77e14cba850d5dc9f8c5ba647b9e6be418608e3a0d63e9f6f78aa50c6ee214c2fa2e5b5e972e744236c67e5bd1e80cc9d9217469944347ce SHA512 12ad76a95f5bdcb15fec9f6ae1eef082d5f8ee78823da5c5763f8e81ccdd507e8cbcc7f2729ebcaee0524e528bf8b96d1c387bb08faf3d7a8fc2fea696ae94bc

View File

@@ -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
}