Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-qt/
Date: Wed, 22 Sep 2021 23:06:00
Message-Id: 1632351906.d7c55660950b6c152b72a33386615155b9cd3e3d.asturm@gentoo
1 commit: d7c55660950b6c152b72a33386615155b9cd3e3d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 22 22:54:13 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 23:05:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c55660
7
8 net-libs/telepathy-qt: Drop 0.9.8 (r0)
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild | 76 -------------------------
14 1 file changed, 76 deletions(-)
15
16 diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild
17 deleted file mode 100644
18 index 2f37afe24d0..00000000000
19 --- a/net-libs/telepathy-qt/telepathy-qt-0.9.8.ebuild
20 +++ /dev/null
21 @@ -1,76 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7,8,9} )
28 -inherit python-any-r1 cmake virtualx
29 -
30 -DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
31 -HOMEPAGE="https://telepathy.freedesktop.org/"
32 -SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm arm64 ~riscv x86"
37 -IUSE="debug farstream test"
38 -
39 -REQUIRED_USE="test? ( farstream )"
40 -
41 -RESTRICT="!test? ( test )"
42 -
43 -RDEPEND="
44 - dev-qt/qtcore:5
45 - dev-qt/qtdbus:5
46 - dev-qt/qtgui:5
47 - dev-qt/qtnetwork:5
48 - dev-qt/qtxml:5
49 - farstream? (
50 - >=net-libs/telepathy-farstream-0.2.2
51 - >=net-libs/telepathy-glib-0.18.0
52 - )
53 -"
54 -DEPEND="${RDEPEND}
55 - test? (
56 - dev-libs/dbus-glib
57 - dev-qt/qttest:5
58 - )
59 -"
60 -BDEPEND="${PYTHON_DEPS}
61 - virtual/pkgconfig
62 - test? (
63 - dev-libs/glib:2
64 - $(python_gen_any_dep '
65 - dev-python/dbus-python[${PYTHON_USEDEP}]
66 - ')
67 - )
68 -"
69 -
70 -python_check_deps() {
71 - use test || return 0
72 - has_version "dev-python/dbus-python[${PYTHON_USEDEP}]"
73 -}
74 -
75 -pkg_setup() {
76 - python-any-r1_pkg_setup
77 -}
78 -
79 -src_configure() {
80 - local mycmakeargs=(
81 - -DENABLE_DEBUG_OUTPUT=$(usex debug)
82 - -DENABLE_FARSTREAM=$(usex farstream)
83 - -DENABLE_TESTS=$(usex test)
84 - -DENABLE_EXAMPLES=OFF
85 - )
86 - cmake_src_configure
87 -}
88 -
89 -src_test() {
90 - # some tests require D-Bus, bug #732110
91 - local myctestargs=(
92 - -E "(BaseConnectionManager|BaseProtocol|StreamTubeHandlers)"
93 - )
94 - pushd "${BUILD_DIR}" > /dev/null || die
95 - virtx cmake_src_test
96 - popd > /dev/null || die
97 -}