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 004FF158094 for ; Sun, 10 Jul 2022 12:47:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1976E0C03; Sun, 10 Jul 2022 12:47:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4A5B3E0C01 for ; Sun, 10 Jul 2022 12:47:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7DA7E340E0A for ; Sun, 10 Jul 2022 12:47:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F20CC4FB for ; Sun, 10 Jul 2022 12:47:14 +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: <1657457224.a1f336b44bb46fa6433a06cb41529cac070958a6.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-0.6.0.ebuild X-VCS-Directories: dev-libs/qcoro5/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a1f336b44bb46fa6433a06cb41529cac070958a6 X-VCS-Branch: master Date: Sun, 10 Jul 2022 12:47:14 +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: 54e7ea10-929a-4e58-a2f3-7bbd085d501b X-Archives-Hash: 27e2c82aca65263877073f71fd54e5cc commit: a1f336b44bb46fa6433a06cb41529cac070958a6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jul 10 12:47:04 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 10 12:47:04 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a1f336b4 dev-libs/qcoro5: 0.6.0 moved to Gentoo ebuild repo Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/qcoro5/qcoro5-0.6.0.ebuild | 55 ------------------------------------- 1 file changed, 55 deletions(-) diff --git a/dev-libs/qcoro5/qcoro5-0.6.0.ebuild b/dev-libs/qcoro5/qcoro5-0.6.0.ebuild deleted file mode 100644 index be9f3ee25f..0000000000 --- a/dev-libs/qcoro5/qcoro5-0.6.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/danvratil/${PN/5/}" -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" -fi - -DESCRIPTION="C++ Coroutine Library for Qt5" -HOMEPAGE="https://qcoro.dvratil.cz/ https://github.com/danvratil/qcoro" - -LICENSE="MIT" -SLOT="0" -IUSE="dbus examples +network test websockets" - -RDEPEND=" - dev-qt/qtcore:5 - dbus? ( dev-qt/qtdbus:5 ) - network? ( dev-qt/qtnetwork:5 ) -" -DEPEND="${RDEPEND} - examples? ( - dev-qt/qtconcurrent:5 - dev-qt/qtwidgets:5 - ) - test? ( dev-qt/qtconcurrent:5 ) -" - -src_configure() { - local mycmakeargs=( - -DUSE_QT_VERSION=5 - -DQCORO_BUILD_EXAMPLES=$(usex examples) - -DQCORO_WITH_QTDBUS=$(usex dbus) - -DQCORO_WITH_QTNETWORK=$(usex network) - -DBUILD_TESTING=$(usex test) - -DQCORO_WITH_QTWEBSOCKETS=$(usex websockets) - ) - cmake_src_configure -} - -src_install() { - if use examples; then - docinto examples - dodoc -r examples/* - fi - cmake_src_install -}