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-qt: telepathy-qt-0.9.3-r2.ebuild ChangeLog
Date: Fri, 04 Jul 2014 11:06:18
Message-Id: 20140704110612.AB13A2004E@flycatcher.gentoo.org
1 pacho 14/07/04 11:06:12
2
3 Modified: ChangeLog
4 Added: telepathy-qt-0.9.3-r2.ebuild
5 Log:
6 Drop farsight support (#514464)
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.27 net-libs/telepathy-qt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 13 Apr 2014 16:06:40 -0000 1.26
24 +++ ChangeLog 4 Jul 2014 11:06:12 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/telepathy-qt
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.26 2014/04/13 16:06:40 johu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.27 2014/07/04 11:06:12 pacho Exp $
30 +
31 +*telepathy-qt-0.9.3-r2 (04 Jul 2014)
32 +
33 + 04 Jul 2014; Pacho Ramos <pacho@g.o> +telepathy-qt-0.9.3-r2.ebuild:
34 + Drop farsight support (#514464)
35
36 13 Apr 2014; Johannes Huber <johu@g.o>
37 -files/telepathy-qt-0.8.0-automagicness.patch,
38
39
40
41 1.1 net-libs/telepathy-qt/telepathy-qt-0.9.3-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: telepathy-qt-0.9.3-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r2.ebuild,v 1.1 2014/07/04 11:06:12 pacho Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7} )
55 inherit base python-any-r1 cmake-utils virtualx
56
57 DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
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="~amd64 ~arm ~x86"
64 IUSE="debug farstream test"
65
66 RDEPEND="
67 dev-qt/qtcore:4
68 dev-qt/qtdbus:4
69 farstream? (
70 >=net-libs/telepathy-farstream-0.2.2
71 >=net-libs/telepathy-glib-0.18.0
72 )
73 !net-libs/telepathy-qt4
74 "
75 DEPEND="${RDEPEND}
76 ${PYTHON_DEPS}
77 virtual/pkgconfig
78 test? (
79 dev-libs/dbus-glib
80 dev-libs/glib
81 dev-python/dbus-python
82 dev-qt/qttest:4
83 )
84 "
85
86 DOCS=( AUTHORS ChangeLog HACKING NEWS README )
87
88 PATCHES=(
89 "${FILESDIR}/${P}-tp-glib-0.18-tests.patch"
90 "${FILESDIR}/${P}-avatar-duplication.patch"
91 "${FILESDIR}/${P}-cmake-2.8.12.patch"
92 )
93
94 # test hangs, needs further investigation
95 RESTRICT="test"
96
97 pkg_setup() {
98 python-any-r1_pkg_setup
99 }
100
101 src_configure() {
102 local mycmakeargs=(
103 $(cmake-utils_use_enable farstream)
104 $(cmake-utils_use_enable debug DEBUG_OUTPUT)
105 $(cmake-utils_use_enable test TESTS)
106 -DENABLE_EXAMPLES=OFF
107 )
108 cmake-utils_src_configure
109 }
110
111 src_test() {
112 pushd "${CMAKE_BUILD_DIR}" > /dev/null
113 Xemake test || die "tests failed"
114 popd > /dev/null
115 }