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