Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/gdata: ChangeLog gdata-2.0.17.ebuild
Date: Sat, 26 May 2012 03:44:54
Message-Id: 20120526034444.51AB42004B@flycatcher.gentoo.org
1 radhermit 12/05/26 03:44:44
2
3 Modified: ChangeLog
4 Added: gdata-2.0.17.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.104 dev-python/gdata/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.104&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.104&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?r1=1.103&r2=1.104
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v
20 retrieving revision 1.103
21 retrieving revision 1.104
22 diff -u -r1.103 -r1.104
23 --- ChangeLog 26 Feb 2012 04:00:30 -0000 1.103
24 +++ ChangeLog 26 May 2012 03:44:44 -0000 1.104
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/gdata
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.103 2012/02/26 04:00:30 floppym Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.104 2012/05/26 03:44:44 radhermit Exp $
30 +
31 +*gdata-2.0.17 (26 May 2012)
32 +
33 + 26 May 2012; Tim Harder <radhermit@g.o> +gdata-2.0.17.ebuild:
34 + Version bump.
35
36 26 Feb 2012; Mike Gilbert <floppym@g.o> gdata-2.0.16.ebuild:
37 Set EAPI=4.
38
39
40
41 1.1 dev-python/gdata/gdata-2.0.17.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/gdata-2.0.17.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/gdata-2.0.17.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gdata-2.0.17.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.17.ebuild,v 1.1 2012/05/26 03:44:44 radhermit Exp $
51
52 EAPI="4"
53 PYTHON_DEPEND="2"
54 PYTHON_USE_WITH="ssl xml"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.*"
57
58 inherit distutils
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
66 LICENSE="Apache-2.0"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
69 IUSE="examples"
70
71 S="${WORKDIR}/${MY_P}"
72
73 PYTHON_MODNAME="atom gdata"
74
75 src_test() {
76 testing() {
77 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/run_data_tests.py -v || return 1
78
79 # run_service_tests.py requires interaction (and a valid Google account), so skip it.
80 # PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/run_service_tests.py -v || return 1
81 }
82 python_execute_function testing
83 }
84
85 src_install() {
86 distutils_src_install
87
88 if use examples; then
89 insinto /usr/share/doc/${PF}/examples
90 doins -r samples/*
91 fi
92 }