From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 56A9515ACFD for ; Thu, 4 May 2023 13:11:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90401E0905; Thu, 4 May 2023 13:11:38 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74ABEE0905 for ; Thu, 4 May 2023 13:11:38 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 65C79341237 for ; Thu, 4 May 2023 13:11:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAEDFA55 for ; Thu, 4 May 2023 13:11:35 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1683205884.47e023ba59804bfe5ede044d7af0e741a7debf9d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/qcoro5/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/qcoro5/metadata.xml dev-libs/qcoro5/qcoro5-9999.ebuild X-VCS-Directories: dev-libs/qcoro5/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 47e023ba59804bfe5ede044d7af0e741a7debf9d X-VCS-Branch: master Date: Thu, 4 May 2023 13:11:35 +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: 66cae6cd-2be3-43e6-8716-d4a6e1e2fc53 X-Archives-Hash: eaaf15b0cc6da780e82db3f13656bce9 commit: 47e023ba59804bfe5ede044d7af0e741a7debf9d Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 3 09:51:51 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 4 13:11:24 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=47e023ba dev-libs/qcoro5: Expand IUSE test to enable new QCORO_WITH_QTTEST Upstream commit c74d9f22240f45823733ed75bb52dbbc0f5da93b Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/qcoro5/metadata.xml | 1 + dev-libs/qcoro5/qcoro5-9999.ebuild | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-libs/qcoro5/metadata.xml b/dev-libs/qcoro5/metadata.xml index 71b2a23080..57d397297f 100644 --- a/dev-libs/qcoro5/metadata.xml +++ b/dev-libs/qcoro5/metadata.xml @@ -12,6 +12,7 @@ Build dev-qt/qtnetwork support Enable QML/QtQuick support via dev-qt/qtdeclarative + Install coroutine-friendly versions of dev-qt/qttest macros Build dev-qt/qtwebsockets support diff --git a/dev-libs/qcoro5/qcoro5-9999.ebuild b/dev-libs/qcoro5/qcoro5-9999.ebuild index 0b49a9d651..58baa266fd 100644 --- a/dev-libs/qcoro5/qcoro5-9999.ebuild +++ b/dev-libs/qcoro5/qcoro5-9999.ebuild @@ -19,8 +19,9 @@ HOMEPAGE="https://qcoro.dvratil.cz/ https://github.com/danvratil/qcoro" LICENSE="MIT" SLOT="0" -IUSE="dbus examples +network qml test websockets" +IUSE="dbus examples +network qml test testlib websockets" +REQUIRED_USE="test? ( testlib )" RESTRICT="!test? ( test )" RDEPEND=" @@ -28,6 +29,7 @@ RDEPEND=" dbus? ( dev-qt/qtdbus:5 ) network? ( dev-qt/qtnetwork:5 ) qml? ( dev-qt/qtdeclarative:5= ) + testlib? ( dev-qt/qttest:5 ) websockets? ( dev-qt/qtwebsockets:5 ) " DEPEND="${RDEPEND} @@ -50,6 +52,7 @@ src_configure() { -DQCORO_WITH_QTNETWORK=$(usex network) -DQCORO_WITH_QML=$(usex qml) -DQCORO_WITH_QTQUICK=$(usex qml) + -DQCORO_WITH_QTTEST=$(usex testlib) -DBUILD_TESTING=$(usex test) -DQCORO_WITH_QTWEBSOCKETS=$(usex websockets) )