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: Sat, 09 Dec 2017 08:09:37
Message-Id: 1512806963.e7d8b5b0f09ca29483ce2156add22762b7f94d44.asturm@gentoo
1 commit: e7d8b5b0f09ca29483ce2156add22762b7f94d44
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 9 08:05:19 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 9 08:09:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7d8b5b0
7
8 net-libs/telepathy-qt: Drop old
9
10 Package-Manager: Portage-2.3.17, Repoman-2.3.6
11
12 net-libs/telepathy-qt/telepathy-qt-0.9.7.ebuild | 106 ------------------------
13 1 file changed, 106 deletions(-)
14
15 diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.7.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.7.ebuild
16 deleted file mode 100644
17 index 859d1d25168..00000000000
18 --- a/net-libs/telepathy-qt/telepathy-qt-0.9.7.ebuild
19 +++ /dev/null
20 @@ -1,106 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python2_7 )
27 -inherit python-any-r1 cmake-utils virtualx multibuild
28 -
29 -DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
30 -HOMEPAGE="https://telepathy.freedesktop.org/"
31 -SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm x86"
36 -IUSE="debug farstream +qt4 qt5 test"
37 -
38 -REQUIRED_USE="|| ( qt4 qt5 )"
39 -
40 -RDEPEND="
41 - farstream? (
42 - >=net-libs/telepathy-farstream-0.2.2
43 - >=net-libs/telepathy-glib-0.18.0
44 - )
45 - qt4? (
46 - dev-qt/qtcore:4
47 - dev-qt/qtdbus:4
48 - )
49 - qt5? (
50 - dev-qt/qtcore:5
51 - dev-qt/qtdbus:5
52 - dev-qt/qtgui:5
53 - dev-qt/qtnetwork:5
54 - dev-qt/qtxml:5
55 - )
56 - !net-libs/telepathy-qt4
57 -"
58 -DEPEND="${RDEPEND}
59 - ${PYTHON_DEPS}
60 - virtual/pkgconfig
61 - test? (
62 - dev-libs/dbus-glib
63 - dev-libs/glib:2
64 - dev-python/dbus-python
65 - qt4? ( dev-qt/qttest:4 )
66 - qt5? ( dev-qt/qttest:5 )
67 - )
68 -"
69 -
70 -DOCS=( AUTHORS ChangeLog HACKING NEWS README )
71 -
72 -PATCHES=(
73 - "${FILESDIR}/${PN}-0.9.6.1-yes-release.patch"
74 - "${FILESDIR}/${PN}-0.9.6.1-qtpath.patch"
75 -)
76 -
77 -# bug 549448 - last checked with 0.9.7
78 -RESTRICT="test"
79 -
80 -pkg_setup() {
81 - python-any-r1_pkg_setup
82 -
83 - MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
84 -}
85 -
86 -src_configure() {
87 - myconfigure() {
88 - local mycmakeargs=(
89 - -DENABLE_DEBUG_OUTPUT=$(usex debug)
90 - -DENABLE_FARSTREAM=$(usex farstream)
91 - -DENABLE_TESTS=$(usex test)
92 - -DENABLE_EXAMPLES=OFF
93 - )
94 - if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
95 - mycmakeargs+=( -DDESIRED_QT_VERSION=4 )
96 - fi
97 - if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
98 - mycmakeargs+=( -DDESIRED_QT_VERSION=5 )
99 - fi
100 - cmake-utils_src_configure
101 - }
102 -
103 - multibuild_foreach_variant myconfigure
104 -}
105 -
106 -src_compile() {
107 - multibuild_foreach_variant cmake-utils_src_compile
108 -}
109 -
110 -src_test() {
111 - _test_runner() {
112 - ctest -E '(CallChannel)'
113 - }
114 -
115 - mytest() {
116 - pushd "${BUILD_DIR}" > /dev/null || die
117 - virtx _test_runner
118 - popd > /dev/null || die
119 - }
120 -
121 - multibuild_foreach_variant mytest
122 -}
123 -
124 -src_install() {
125 - multibuild_foreach_variant cmake-utils_src_install
126 -}