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: gdata-2.0.2.ebuild ChangeLog
Date: Mon, 31 Aug 2009 19:57:50
Message-Id: E1MiHpW-0004Y2-VC@stork.gentoo.org
1 arfrever 09/09/01 01:06:38
2
3 Modified: ChangeLog
4 Added: gdata-2.0.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 14174-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.32 dev-python/gdata/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gdata/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 31 Aug 2009 18:12:48 -0000 1.31
23 +++ ChangeLog 1 Sep 2009 01:06:38 -0000 1.32
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/gdata
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.31 2009/08/31 18:12:48 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.32 2009/09/01 01:06:38 arfrever Exp $
29 +
30 +*gdata-2.0.2 (01 Sep 2009)
31 +
32 + 01 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +gdata-2.0.2.ebuild:
34 + Version bump.
35
36 31 Aug 2009; Brent Baude <ranger@g.o> gdata-2.0.0.ebuild:
37 Marking gdata-2.0.0 ppc64 for bug 277347
38
39
40
41 1.1 dev-python/gdata/gdata-2.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gdata/gdata-2.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gdata/gdata-2.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gdata-2.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 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.2.ebuild,v 1.1 2009/09/01 01:06:38 arfrever Exp $
51
52 EAPI="2"
53 SUPPORT_PYTHON_ABIS="1"
54
55 inherit distutils
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/"
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=""
69 RDEPEND="|| ( >=dev-lang/python-2.5 dev-python/elementtree )"
70
71 RESTRICT_PYTHON_ABIS="3*"
72
73 PYTHON_MODNAME="atom gdata"
74 S="${WORKDIR}/${MY_P}"
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 }