Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/gdata: gdata-2.0.16.ebuild ChangeLog
Date: Sun, 26 Feb 2012 03:10:34
Message-Id: 20120226031023.65F2A2004C@flycatcher.gentoo.org
1 floppym 12/02/26 03:10:23
2
3 Modified: ChangeLog
4 Added: gdata-2.0.16.ebuild
5 Log:
6 Version bump. Resolves bug 398533.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.101 dev-python/gdata/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.101&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?rev=1.101&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/ChangeLog?r1=1.100&r2=1.101
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v
20 retrieving revision 1.100
21 retrieving revision 1.101
22 diff -u -r1.100 -r1.101
23 --- ChangeLog 23 Jun 2011 15:06:32 -0000 1.100
24 +++ ChangeLog 26 Feb 2012 03:10:23 -0000 1.101
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/gdata
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.100 2011/06/23 15:06:32 hwoarang Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.101 2012/02/26 03:10:23 floppym Exp $
31 +
32 +*gdata-2.0.16 (26 Feb 2012)
33 +
34 + 26 Feb 2012; Mike Gilbert <floppym@g.o> +gdata-2.0.16.ebuild:
35 + Version bump. Resolves bug 398533.
36
37 23 Jun 2011; Markos Chandras <hwoarang@g.o> -gdata-2.0.13.ebuild:
38 Remove old ebuilds. Requested by Arfrever
39
40
41
42 1.1 dev-python/gdata/gdata-2.0.16.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/gdata-2.0.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gdata/gdata-2.0.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gdata-2.0.16.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.16.ebuild,v 1.1 2012/02/26 03:10:23 floppym Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 PYTHON_USE_WITH="ssl"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.*"
58
59 inherit distutils
60
61 MY_P="gdata-${PV}"
62
63 DESCRIPTION="Python client library for Google data APIs"
64 HOMEPAGE="http://code.google.com/p/gdata-python-client/ http://pypi.python.org/pypi/gdata"
65 SRC_URI="http://gdata-python-client.googlecode.com/files/${MY_P}.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 || return 1
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 || return 1
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}/examples
94 doins -r samples/* || die "Installation of examples failed"
95 fi
96 }