Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.3-r1.ebuild ChangeLog
Date: Wed, 05 Jun 2013 21:35:44
Message-Id: 20130605213540.404332171E@flycatcher.gentoo.org
1 johu 13/06/05 21:35:40
2
3 Modified: ChangeLog
4 Added: telepathy-qt-0.9.3-r1.ebuild
5 Log:
6 Revision bump. EAPI 5, migrate to non obsolete python eclass, adds upstream patch which fixes avatars stored several times when they exist spotted by Lamarque V. Souza <lamarque@×××××.com> wrt bug #472180.
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
9
10 Revision Changes Path
11 1.21 net-libs/telepathy-qt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 2 Mar 2013 22:58:30 -0000 1.20
24 +++ ChangeLog 5 Jun 2013 21:35:40 -0000 1.21
25 @@ -1,6 +1,15 @@
26 # ChangeLog for net-libs/telepathy-qt
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.20 2013/03/02 22:58:30 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.21 2013/06/05 21:35:40 johu Exp $
30 +
31 +*telepathy-qt-0.9.3-r1 (05 Jun 2013)
32 +
33 + 05 Jun 2013; Johannes Huber <johu@g.o>
34 + +files/telepathy-qt-0.9.3-avatar-duplication.patch,
35 + +telepathy-qt-0.9.3-r1.ebuild:
36 + Revision bump. EAPI 5, migrate to non obsolete python eclass, adds upstream
37 + patch which fixes avatars stored several times when they exist spotted by
38 + Lamarque V. Souza <lamarque@×××××.com> wrt bug #472180.
39
40 02 Mar 2013; Markos Chandras <hwoarang@g.o> telepathy-qt-0.8.0.ebuild,
41 telepathy-qt-0.9.2.ebuild, telepathy-qt-0.9.3.ebuild:
42
43
44
45 1.1 net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: telepathy-qt-0.9.3-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild,v 1.1 2013/06/05 21:35:40 johu Exp $
55
56 EAPI=5
57
58 PYTHON_COMPAT=( python{2_5,2_6,2_7} )
59 inherit base python-any-r1 cmake-utils virtualx
60
61 DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
62 HOMEPAGE="http://telepathy.freedesktop.org/"
63 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 KEYWORDS="~amd64 ~arm ~x86"
68 IUSE="debug farsight farstream test"
69
70 RDEPEND="
71 dev-qt/qtcore:4
72 dev-qt/qtdbus:4
73 farsight? (
74 net-libs/telepathy-farsight
75 )
76 farstream? (
77 >=net-libs/telepathy-farstream-0.2.2
78 >=net-libs/telepathy-glib-0.18.0
79 )
80 !net-libs/telepathy-qt4
81 "
82 DEPEND="${RDEPEND}
83 ${PYTHON_DEPS}
84 virtual/pkgconfig
85 test? (
86 dev-libs/dbus-glib
87 dev-libs/glib
88 dev-python/dbus-python
89 dev-qt/qttest:4
90 )
91 "
92
93 REQUIRED_USE="farsight? ( !farstream )"
94
95 DOCS=( AUTHORS ChangeLog HACKING NEWS README )
96
97 PATCHES=(
98 "${FILESDIR}/${P}-tp-glib-0.18-tests.patch"
99 "${FILESDIR}/${P}-avatar-duplication.patch"
100 )
101
102 pkg_setup() {
103 python-any-r1_pkg_setup
104 }
105
106 src_configure() {
107 local mycmakeargs=(
108 $(cmake-utils_use_enable farsight)
109 $(cmake-utils_use_enable farstream)
110 $(cmake-utils_use_enable debug DEBUG_OUTPUT)
111 $(cmake-utils_use_enable test TESTS)
112 -DENABLE_EXAMPLES=OFF
113 )
114 cmake-utils_src_configure
115 }
116
117 src_test() {
118 pushd "${CMAKE_BUILD_DIR}" > /dev/null
119 Xemake test || die "tests failed"
120 popd > /dev/null
121 }