From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 860101581EE for ; Wed, 26 Mar 2025 12:29:28 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 70743343377 for ; Wed, 26 Mar 2025 12:29:28 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E3C631104B2; Wed, 26 Mar 2025 12:29:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id DFA201104B2 for ; Wed, 26 Mar 2025 12:29:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93DBA343337 for ; Wed, 26 Mar 2025 12:29:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06769288A for ; Wed, 26 Mar 2025 12:29:15 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1742992144.6af746ae87db9530e5cd269e5b1afd330ab788c0.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtremoteobjects/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtremoteobjects/qtremoteobjects-6.8.9999.ebuild X-VCS-Directories: dev-qt/qtremoteobjects/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 6af746ae87db9530e5cd269e5b1afd330ab788c0 X-VCS-Branch: master Date: Wed, 26 Mar 2025 12:29:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cbfd9a75-0890-4c4e-95e1-d24a2351ed8d X-Archives-Hash: b26f4532480645263b0d1c778dbbe841 commit: 6af746ae87db9530e5cd269e5b1afd330ab788c0 Author: Ionen Wolkens gentoo org> AuthorDate: Wed Mar 26 12:10:45 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Mar 26 12:29:04 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af746ae dev-qt/qtremoteobjects: drop 6.8.9999 Signed-off-by: Ionen Wolkens gentoo.org> .../qtremoteobjects-6.8.9999.ebuild | 54 ---------------------- 1 file changed, 54 deletions(-) diff --git a/dev-qt/qtremoteobjects/qtremoteobjects-6.8.9999.ebuild b/dev-qt/qtremoteobjects/qtremoteobjects-6.8.9999.ebuild deleted file mode 100644 index 5a992a36755d..000000000000 --- a/dev-qt/qtremoteobjects/qtremoteobjects-6.8.9999.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# 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 -}