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-voip/telepathy-gabble: telepathy-gabble-0.8.14.ebuild ChangeLog
Date: Sat, 31 Jul 2010 12:03:12
Message-Id: 20100731115258.59CAF2CC0B@corvid.gentoo.org
1 pacho 10/07/31 11:52:57
2
3 Modified: ChangeLog
4 Added: telepathy-gabble-0.8.14.ebuild
5 Log:
6 Version bump with important fixes, restrict tests since most of them are broken (upstream is aware of the problem)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.58 net-voip/telepathy-gabble/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.57&r2=1.58
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- ChangeLog 25 Jul 2010 15:23:33 -0000 1.57
23 +++ ChangeLog 31 Jul 2010 11:52:57 -0000 1.58
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-voip/telepathy-gabble
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.57 2010/07/25 15:23:33 klausman Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.58 2010/07/31 11:52:57 pacho Exp $
29 +
30 +*telepathy-gabble-0.8.14 (31 Jul 2010)
31 +
32 + 31 Jul 2010; Pacho Ramos <pacho@g.o>
33 + +telepathy-gabble-0.8.14.ebuild:
34 + Version bump with important fixes, restrict tests since really a lot of
35 + them are broken (upstream bugs #23168 and #20635).
36
37 25 Jul 2010; Tobias Klausmann <klausman@g.o>
38 telepathy-gabble-0.8.8.ebuild:
39
40
41
42 1.1 net-voip/telepathy-gabble/telepathy-gabble-0.8.14.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.8.14.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.8.14.ebuild?rev=1.1&content-type=text/plain
46
47 Index: telepathy-gabble-0.8.14.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.8.14.ebuild,v 1.1 2010/07/31 11:52:57 pacho Exp $
52
53 EAPI="2"
54
55 inherit eutils
56
57 DESCRIPTION="A Jabber/XMPP connection manager, this handles single and multi user chats and voice calls."
58 HOMEPAGE="http://telepathy.freedesktop.org"
59 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="debug test"
65
66 RDEPEND=">=dev-libs/glib-2.16
67 >=sys-apps/dbus-1.1.0
68 >=dev-libs/dbus-glib-0.78
69 >=net-libs/telepathy-glib-0.7.37
70 >=net-libs/loudmouth-1.3.2[ssl]
71 net-libs/libsoup:2.4[ssl]"
72
73 DEPEND="${RDEPEND}
74 dev-libs/libxslt
75 >=dev-lang/python-2.5
76 test? ( >=dev-python/twisted-0.8.2
77 >=dev-python/twisted-words-0.8.2
78 >=dev-python/dbus-python-0.83 )"
79
80 # See upstream fdo bug #23168 and #20635
81 RESTRICT="test"
82
83 src_configure() {
84 econf \
85 --docdir=/usr/share/doc/${PF} \
86 $(use_enable debug) \
87 $(use_enable debug handle-leak-debug)
88 }
89
90 #src_test() {
91 # unset DBUS_SESSION_BUS_ADDRESS
92 # emake -j1 check || die "Make check failed. See above for details."
93 #}
94
95 src_install() {
96 emake install DESTDIR="${D}" || die "emake install failed"
97 dodoc AUTHORS NEWS ChangeLog README || die "dodoc failed"
98 }