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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EC84158012 for ; Wed, 22 Sep 2021 23:06:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34849E092F; Wed, 22 Sep 2021 23:05:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 180E3E092F for ; Wed, 22 Sep 2021 23:05:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DFD52342AF6 for ; Wed, 22 Sep 2021 23:05:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4345EEA for ; Wed, 22 Sep 2021 23:05:56 +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: <1632351906.d7c55660950b6c152b72a33386615155b9cd3e3d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild X-VCS-Directories: net-libs/telepathy-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d7c55660950b6c152b72a33386615155b9cd3e3d X-VCS-Branch: master Date: Wed, 22 Sep 2021 23:05:56 +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: 6b3cca70-4433-4c89-87c7-a9bc89626a50 X-Archives-Hash: ff04a4acc2212f2f436e446e786ffa5f commit: d7c55660950b6c152b72a33386615155b9cd3e3d Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Sep 22 22:54:13 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Sep 22 23:05:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c55660 net-libs/telepathy-qt: Drop 0.9.8 (r0) Package-Manager: Portage-3.0.23, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild | 76 ------------------------- 1 file changed, 76 deletions(-) diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild deleted file mode 100644 index 2f37afe24d0..00000000000 --- a/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -inherit python-any-r1 cmake virtualx - -DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol" -HOMEPAGE="https://telepathy.freedesktop.org/" -SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~riscv x86" -IUSE="debug farstream test" - -REQUIRED_USE="test? ( farstream )" - -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtxml:5 - farstream? ( - >=net-libs/telepathy-farstream-0.2.2 - >=net-libs/telepathy-glib-0.18.0 - ) -" -DEPEND="${RDEPEND} - test? ( - dev-libs/dbus-glib - dev-qt/qttest:5 - ) -" -BDEPEND="${PYTHON_DEPS} - virtual/pkgconfig - test? ( - dev-libs/glib:2 - $(python_gen_any_dep ' - dev-python/dbus-python[${PYTHON_USEDEP}] - ') - ) -" - -python_check_deps() { - use test || return 0 - has_version "dev-python/dbus-python[${PYTHON_USEDEP}]" -} - -pkg_setup() { - python-any-r1_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DENABLE_DEBUG_OUTPUT=$(usex debug) - -DENABLE_FARSTREAM=$(usex farstream) - -DENABLE_TESTS=$(usex test) - -DENABLE_EXAMPLES=OFF - ) - cmake_src_configure -} - -src_test() { - # some tests require D-Bus, bug #732110 - local myctestargs=( - -E "(BaseConnectionManager|BaseProtocol|StreamTubeHandlers)" - ) - pushd "${BUILD_DIR}" > /dev/null || die - virtx cmake_src_test - popd > /dev/null || die -}