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