Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/gdata: ChangeLog gdata-2.0.11.ebuild
Date: Sat, 31 Jul 2010 19:02:40
Message-Id: 20100731181603.0962B2CE15@corvid.gentoo.org
1 arfrever 10/07/31 18:16:02
2
3 Modified: ChangeLog
4 Added: gdata-2.0.11.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: HEAD/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.70 dev-python/gdata/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.70&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.70&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?r1=1.69&r2=1.70
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v
20 retrieving revision 1.69
21 retrieving revision 1.70
22 diff -u -r1.69 -r1.70
23 --- ChangeLog 20 Jul 2010 03:05:13 -0000 1.69
24 +++ ChangeLog 31 Jul 2010 18:16:02 -0000 1.70
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/gdata
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.69 2010/07/20 03:05:13 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.70 2010/07/31 18:16:02 arfrever Exp $
30 +
31 +*gdata-2.0.11 (31 Jul 2010)
32 +
33 + 31 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +gdata-2.0.11.ebuild:
35 + Version bump.
36
37 20 Jul 2010; Jeroen Roovers <jer@g.o> gdata-2.0.10.ebuild:
38 Stable for HPPA (bug #324463).
39
40
41
42 1.1 dev-python/gdata/gdata-2.0.11.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/gdata-2.0.11.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/gdata-2.0.11.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gdata-2.0.11.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/dev-python/gdata/gdata-2.0.11.ebuild,v 1.1 2010/07/31 18:16:02 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.*"
57
58 inherit distutils eutils
59
60 MY_P="gdata-${PV}"
61
62 DESCRIPTION="Python client library for Google data APIs"
63 HOMEPAGE="http://code.google.com/p/gdata-python-client/ http://pypi.python.org/pypi/gdata"
64 # SRC_URI="http://gdata-python-client.googlecode.com/files/${MY_P}.tar.gz"
65 SRC_URI="http://gdata-python-client.googlecode.com/files/${MY_P}.final.tar.gz"
66
67 LICENSE="Apache-2.0"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
70 IUSE="examples"
71
72 DEPEND="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] dev-lang/python:2.5[xml] dev-python/elementtree )"
73 RDEPEND="${DEPEND}"
74
75 S="${WORKDIR}/${MY_P}"
76
77 PYTHON_MODNAME="atom gdata"
78
79 src_test() {
80 testing() {
81 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/run_data_tests.py -v || die "Data tests failed with Python ${PYTHON_ABI}"
82
83 # run_service_tests.py requires interaction (and a valid Google account), so skip it.
84 # PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/run_service_tests.py -v || die "Service tests failed with Python ${PYTHON_ABI}"
85 }
86 python_execute_function testing
87 }
88
89 src_install() {
90 distutils_src_install
91
92 if use examples; then
93 insinto /usr/share/doc/${PF}
94 doins -r samples
95 fi
96 }