Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-glib/
Date: Sat, 11 Jan 2020 20:32:09
Message-Id: 1578774570.ca462abb0f050bf957e9b415b6493e76356ee048.leio@gentoo
1 commit: ca462abb0f050bf957e9b415b6493e76356ee048
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 11 20:29:30 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 11 20:29:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca462abb
7
8 net-libs/telepathy-glib: remove old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 .../telepathy-glib/telepathy-glib-0.24.1.ebuild | 67 ----------------------
14 1 file changed, 67 deletions(-)
15
16 diff --git a/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild
17 deleted file mode 100644
18 index 3469dd10c54..00000000000
19 --- a/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild
20 +++ /dev/null
21 @@ -1,67 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -GCONF_DEBUG="no"
27 -PYTHON_COMPAT=( python2_7 )
28 -VALA_MIN_API_VERSION="0.18"
29 -VALA_USE_DEPEND="vapigen"
30 -
31 -inherit eutils gnome2 python-single-r1 vala virtualx
32 -
33 -DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol"
34 -HOMEPAGE="https://telepathy.freedesktop.org/"
35 -SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
36 -
37 -LICENSE="LGPL-2.1+"
38 -SLOT="0"
39 -KEYWORDS="alpha amd64 arm arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
40 -
41 -IUSE="debug +introspection +vala"
42 -REQUIRED_USE="
43 - ${PYTHON_REQUIRED_USE}
44 - vala? ( introspection )
45 -"
46 -
47 -# Broken for a long time and upstream doesn't care
48 -# https://bugs.freedesktop.org/show_bug.cgi?id=63212
49 -RESTRICT="test"
50 -
51 -RDEPEND="
52 - ${PYTHON_DEPS}
53 - >=dev-libs/glib-2.36:2
54 - >=dev-libs/dbus-glib-0.90
55 - introspection? ( >=dev-libs/gobject-introspection-1.30 )
56 -"
57 -DEPEND="${RDEPEND}
58 - dev-libs/libxslt
59 - dev-util/glib-utils
60 - dev-util/gtk-doc-am
61 - virtual/pkgconfig
62 - vala? ( $(vala_depend) )
63 -"
64 -# See bug 504744 for reference
65 -PDEPEND="
66 - net-im/telepathy-mission-control
67 -"
68 -
69 -src_prepare() {
70 - use vala && vala_src_prepare
71 - gnome2_src_prepare
72 -}
73 -
74 -src_configure() {
75 - gnome2_src_configure \
76 - --disable-static \
77 - --disable-installed-tests \
78 - $(use_enable debug backtrace) \
79 - $(use_enable debug debug-cache) \
80 - $(use_enable introspection) \
81 - $(use_enable vala vala-bindings)
82 -}
83 -
84 -src_test() {
85 - unset DBUS_SESSION_BUS_ADDRESS
86 - # Needs dbus for tests (auto-launched)
87 - Xemake -j1 check
88 -}