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.16.7.ebuild ChangeLog
Date: Sat, 28 Sep 2013 18:51:39
Message-Id: 20130928185131.E42862004C@flycatcher.gentoo.org
1 pacho 13/09/28 18:51:31
2
3 Modified: ChangeLog
4 Added: telepathy-gabble-0.16.7.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.127 net-voip/telepathy-gabble/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.127&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.127&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.126&r2=1.127
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
20 retrieving revision 1.126
21 retrieving revision 1.127
22 diff -u -r1.126 -r1.127
23 --- ChangeLog 13 Sep 2013 21:55:39 -0000 1.126
24 +++ ChangeLog 28 Sep 2013 18:51:31 -0000 1.127
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-voip/telepathy-gabble
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.126 2013/09/13 21:55:39 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.127 2013/09/28 18:51:31 pacho Exp $
30 +
31 +*telepathy-gabble-0.16.7 (28 Sep 2013)
32 +
33 + 28 Sep 2013; Pacho Ramos <pacho@g.o> +telepathy-gabble-0.16.7.ebuild:
34 + Version bump
35
36 13 Sep 2013; Gilles Dartiguelongue <eva@g.o>
37 -telepathy-gabble-0.16.4.ebuild:
38
39
40
41 1.1 net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: telepathy-gabble-0.16.7.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.7.ebuild,v 1.1 2013/09/28 18:51:31 pacho Exp $
51
52 EAPI="5"
53 PYTHON_COMPAT=( python2_{6,7} )
54
55 inherit eutils python-any-r1
56
57 DESCRIPTION="A Jabber/XMPP connection manager, with handling of 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 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
64 IUSE="gnutls +jingle test"
65
66 # Prevent false positives due nested configure
67 QA_CONFIGURE_OPTIONS=".*"
68
69 # FIXME: missing sasl-2 for tests ? (automagic)
70 # missing libiphb for wocky ?
71 RDEPEND="
72 >=dev-libs/glib-2.30:2
73 >=sys-apps/dbus-1.1.0
74 >=dev-libs/dbus-glib-0.82
75 >=net-libs/telepathy-glib-0.18
76
77 dev-db/sqlite:3
78 dev-libs/libxml2
79
80 gnutls? ( >=net-libs/gnutls-2.10.2 )
81 !gnutls? ( >=dev-libs/openssl-0.9.8g[-bindist] )
82 jingle? ( || ( net-libs/libsoup:2.4[ssl]
83 >=net-libs/libsoup-2.33.1 )
84 >=net-libs/libnice-0.0.11 )
85
86 !<net-im/telepathy-mission-control-5.5.0
87 "
88 DEPEND="${RDEPEND}
89 ${PYTHON_DEPS}
90 >=dev-util/gtk-doc-am-1.17
91 dev-libs/libxslt
92 test? ( >=dev-python/twisted-core-0.8.2
93 >=dev-python/twisted-words-0.8.2
94 >=dev-python/dbus-python-0.83 )
95 "
96
97 pkg_setup() {
98 python-any-r1_pkg_setup
99 }
100
101 src_configure() {
102 econf \
103 --disable-coding-style-checks \
104 --disable-static \
105 --disable-Werror \
106 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
107 --enable-file-transfer \
108 $(use_enable jingle voip) \
109 $(use_enable jingle google-relay) \
110 --with-tls=$(usex gnutls gnutls openssl)
111 }
112
113 src_test() {
114 # Twisted tests fail, upstream bug #30565
115 emake -C tests check-TESTS
116 }
117
118 src_install() {
119 default
120 prune_libtool_files
121 }