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 1DF0915ACFB for ; Sun, 23 Apr 2023 17:58:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F12AE0C4C; Sun, 23 Apr 2023 17:58:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 4C2C7E0C4C for ; Sun, 23 Apr 2023 17:58:11 +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 8BB993412DB for ; Sun, 23 Apr 2023 17:58:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25D2CA40 for ; Sun, 23 Apr 2023 17:58:09 +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: <1682272674.4499abf3c424dec9e336be43743685651de0a20c.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/qcoro5/ X-VCS-Repository: proj/kde X-VCS-Files: 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: 4499abf3c424dec9e336be43743685651de0a20c X-VCS-Branch: master Date: Sun, 23 Apr 2023 17:58:09 +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: 7b29ce64-6d0d-41fa-aaa0-34b85149bf41 X-Archives-Hash: 885057f03f881a69b0ca0e24004667a7 commit: 4499abf3c424dec9e336be43743685651de0a20c Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 26 11:02:48 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 23 17:57:54 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=4499abf3 dev-libs/qcoro5: Add IUSE websockets, sync KEYWORDS, fix examples Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/qcoro5/qcoro5-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-libs/qcoro5/qcoro5-9999.ebuild b/dev-libs/qcoro5/qcoro5-9999.ebuild index 036d3ee41f..b7f45410f8 100644 --- a/dev-libs/qcoro5/qcoro5-9999.ebuild +++ b/dev-libs/qcoro5/qcoro5-9999.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]]; then else SRC_URI="https://github.com/danvratil/${PN/5/}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${P/5/}" - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~arm64 ~ppc64" fi DESCRIPTION="C++ Coroutine Library for Qt5" @@ -28,6 +28,7 @@ RDEPEND=" dbus? ( dev-qt/qtdbus:5 ) network? ( dev-qt/qtnetwork:5 ) qml? ( dev-qt/qtdeclarative:5= ) + websockets? ( dev-qt/qtwebsockets:5 ) " DEPEND="${RDEPEND} examples? ( @@ -57,7 +58,7 @@ src_configure() { src_install() { if use examples; then docinto examples - dodoc examples/* + dodoc -r examples/* fi cmake_src_install }