Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/telepathy-mission-control: ChangeLog telepathy-mission-control-5.16.1.ebuild
Date: Sun, 27 Apr 2014 17:44:38
Message-Id: 20140427174435.5AACC2004B@flycatcher.gentoo.org
1 eva 14/04/27 17:44:35
2
3 Modified: ChangeLog
4 Added: telepathy-mission-control-5.16.1.ebuild
5 Log:
6 Version bump for Gnome>=3.10. Add uper limit to upower dependency since it will fail to build with 0.99 but this version is required in Gnome 3.12.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.97 net-im/telepathy-mission-control/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/telepathy-mission-control/ChangeLog?rev=1.97&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/telepathy-mission-control/ChangeLog?rev=1.97&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/telepathy-mission-control/ChangeLog?r1=1.96&r2=1.97
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v
20 retrieving revision 1.96
21 retrieving revision 1.97
22 diff -u -r1.96 -r1.97
23 --- ChangeLog 22 Feb 2014 22:23:01 -0000 1.96
24 +++ ChangeLog 27 Apr 2014 17:44:35 -0000 1.97
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-im/telepathy-mission-control
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.96 2014/02/22 22:23:01 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.97 2014/04/27 17:44:35 eva Exp $
30 +
31 +*telepathy-mission-control-5.16.1 (27 Apr 2014)
32 +
33 + 27 Apr 2014; Gilles Dartiguelongue <eva@g.o>
34 + +telepathy-mission-control-5.16.1.ebuild:
35 + Version bump for Gnome>=3.10. Add uper limit to upower dependency since it
36 + will fail to build with 0.99 but this version is required in Gnome 3.12.
37
38 22 Feb 2014; Pacho Ramos <pacho@g.o>
39 telepathy-mission-control-5.14.1.ebuild:
40
41
42
43 1.1 net-im/telepathy-mission-control/telepathy-mission-control-5.16.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.16.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.16.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: telepathy-mission-control-5.16.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.16.1.ebuild,v 1.1 2014/04/27 17:44:35 eva Exp $
53
54 EAPI="5"
55 GCONF_DEBUG="no"
56 GNOME2_LA_PUNT="yes"
57 # Needed for tests and build #489466
58 PYTHON_COMPAT=( python2_{6,7} )
59
60 inherit gnome2 python-any-r1
61
62 DESCRIPTION="An account manager and channel dispatcher for the Telepathy framework"
63 HOMEPAGE="http://cgit.freedesktop.org/telepathy/telepathy-mission-control/"
64 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
65
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
69 IUSE="debug networkmanager +upower" # test
70
71 RDEPEND="
72 >=dev-libs/dbus-glib-0.82
73 >=dev-libs/glib-2.32:2
74 >=sys-apps/dbus-0.95
75 >=net-libs/telepathy-glib-0.20
76 networkmanager? ( >=net-misc/networkmanager-0.7 )
77 upower? (
78 >=sys-power/upower-0.9.11
79 <sys-power/upower-0.99 )
80 "
81 DEPEND="${RDEPEND}
82 ${PYTHON_DEPS}
83 dev-libs/libxslt
84 >=dev-util/gtk-doc-am-1.17
85 virtual/pkgconfig
86 "
87 # test? ( dev-python/twisted-words )"
88
89 # Tests are broken, see upstream bug #29334 and #64212
90 # upstream doesn't want it enabled everywhere (#29334#c12)
91 RESTRICT="test"
92
93 src_configure() {
94 # creds is not available
95 gnome2_src_configure \
96 --disable-static \
97 $(use_enable debug) \
98 $(use_with networkmanager connectivity nm) \
99 $(use_enable upower)
100 }