Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-glib: telepathy-glib-0.24.1.ebuild ChangeLog telepathy-glib-0.20.1-r1.ebuild telepathy-glib-0.22.1.ebuild
Date: Mon, 01 Sep 2014 15:24:42
Message-Id: 20140901152436.CEEA04715@oystercatcher.gentoo.org
1 pacho 14/09/01 15:24:36
2
3 Modified: ChangeLog
4 Added: telepathy-glib-0.24.1.ebuild
5 Removed: telepathy-glib-0.20.1-r1.ebuild
6 telepathy-glib-0.22.1.ebuild
7 Log:
8 Version bump, drop old
9
10 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
11
12 Revision Changes Path
13 1.160 net-libs/telepathy-glib/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.160&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.160&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?r1=1.159&r2=1.160
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v
22 retrieving revision 1.159
23 retrieving revision 1.160
24 diff -u -r1.159 -r1.160
25 --- ChangeLog 10 Aug 2014 20:50:26 -0000 1.159
26 +++ ChangeLog 1 Sep 2014 15:24:36 -0000 1.160
27 @@ -1,6 +1,12 @@
28 # ChangeLog for net-libs/telepathy-glib
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.159 2014/08/10 20:50:26 slyfox Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.160 2014/09/01 15:24:36 pacho Exp $
32 +
33 +*telepathy-glib-0.24.1 (01 Sep 2014)
34 +
35 + 01 Sep 2014; Pacho Ramos <pacho@g.o> +telepathy-glib-0.24.1.ebuild,
36 + -telepathy-glib-0.20.1-r1.ebuild, -telepathy-glib-0.22.1.ebuild:
37 + Version bump, drop old
38
39 10 Aug 2014; Sergei Trofimovich <slyfox@g.o>
40 telepathy-glib-0.20.1-r1.ebuild, telepathy-glib-0.22.1.ebuild,
41
42
43
44 1.1 net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: telepathy-glib-0.24.1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild,v 1.1 2014/09/01 15:24:36 pacho Exp $
54
55 EAPI="5"
56 GCONF_DEBUG="no"
57 PYTHON_COMPAT=( python2_{6,7} )
58 VALA_MIN_API_VERSION="0.18"
59 VALA_USE_DEPEND="vapigen"
60
61 inherit eutils gnome2 python-r1 vala virtualx
62
63 DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol"
64 HOMEPAGE="http://telepathy.freedesktop.org"
65 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
66
67 LICENSE="LGPL-2.1+"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
70
71 IUSE="debug +introspection +vala"
72 REQUIRED_USE="
73 ${PYTHON_REQUIRED_USE}
74 vala? ( introspection )
75 "
76
77 # Broken for a long time and upstream doesn't care
78 # https://bugs.freedesktop.org/show_bug.cgi?id=63212
79 RESTRICT="test"
80
81 RDEPEND="
82 >=dev-libs/glib-2.36:2
83 >=dev-libs/dbus-glib-0.90
84 introspection? ( >=dev-libs/gobject-introspection-1.30 )
85 "
86 DEPEND="${RDEPEND}
87 dev-libs/libxslt
88 dev-util/gtk-doc-am
89 virtual/pkgconfig
90 vala? ( $(vala_depend) )
91 ${PYTHON_DEPS}
92 "
93 # See bug 504744 for reference
94 PDEPEND="
95 net-im/telepathy-mission-control
96 "
97
98 src_configure() {
99 python_export_best
100
101 gnome2_src_configure \
102 --disable-static \
103 --disable-installed-tests \
104 $(use_enable debug backtrace) \
105 $(use_enable debug debug-cache) \
106 $(use_enable introspection) \
107 $(use_enable vala vala-bindings)
108 }
109
110 src_test() {
111 unset DBUS_SESSION_BUS_ADDRESS
112 # Needs dbus for tests (auto-launched)
113 Xemake -j1 check
114 }