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