Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/
Date: Wed, 25 Nov 2015 22:17:31
Message-Id: 1448489827.91135bba0055e4260f98610985155b416609a94e.zmedico@gentoo
1 commit: 91135bba0055e4260f98610985155b416609a94e
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 25 22:17:07 2015 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 25 22:17:07 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91135bba
7
8 dev-python/google-api-python-client: version bump to 1.4.2
9
10 Package-Manager: portage-2.2.26
11
12 dev-python/google-api-python-client/Manifest | 1 +
13 .../google-api-python-client-1.4.2.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest
17 index 392f7b8..53ea9c5 100644
18 --- a/dev-python/google-api-python-client/Manifest
19 +++ b/dev-python/google-api-python-client/Manifest
20 @@ -1,2 +1,3 @@
21 DIST google-api-python-client-1.1.tar.gz 71178 SHA256 bc88cae1c40446f22d58923fc5a8dbac77da29d6efbe4ae2276cc2f30f724617 SHA512 750c482e90f83d0b2d53f7d655db9a476686158b5e380cab7a5e92af1b521b26871dcda08a2ee946cd09035f65ca50ad8dcffa8f766d3671fceae009fbdb831e WHIRLPOOL 62d2ebb7f51f58c76b45f748fe79b031cda5f11fd6088d8ea947e7ab9b9b754688e004773f99169cc65fdd2789002faa486bed7717fc07dea0b25994cbede0da
22 DIST google-api-python-client-1.3.1.tar.gz 1480269 SHA256 5137c4d6e853cda1a2e32b7f1b1ce28b66f5d62e464d91386be22492c276b1f8 SHA512 385377bd99f006154f90bed2b6f55cb25786032d28ac7f15b9859882670cc8bf94acbfbd8485c4cf89abd665908f1a7f46f74e84f05faba992a62fe4b9fd5bd1 WHIRLPOOL cda6825e502738f6d3035e524494aadc159ac8d41ae12d3f682236f8c344dc41e2ecf03aee6b247233c5b9aa8c756ac8d598c98c95333dc8a8929901c3a82327
23 +DIST google-api-python-client-1.4.2.tar.gz 2289731 SHA256 dfb7feab9733ae99952545927b5d87dda24cea308b2040fba2c505e7f0c57696 SHA512 ab5ce56142d96ed9b38d00294133e188dfeaf70aac78054f093f03fce7c4aee5b7b99f18ee27190aaef14b7fbe2bc8d0a4e2526ff6f166e41eb0b4b050e7c6b5 WHIRLPOOL 006e24d1a4e5d2bfabcbf2503fa163d6b0a3a28a839396014bf0a91a463454f02140f38dd179a141010a03e268711c2d22c9aa3158b594e5b465d9032997e7b9
24
25 diff --git a/dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild b/dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild
26 new file mode 100644
27 index 0000000..bd55bbb
28 --- /dev/null
29 +++ b/dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4} pypy )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Google API Client for Python"
42 +HOMEPAGE="https://code.google.com/p/google-api-python-client/ https://github.com/google/google-api-python-client"
43 +SRC_URI="https://github.com/google/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~x86"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + >=dev-python/httplib2-0.8[${PYTHON_USEDEP}]
52 + dev-python/oauth2client[${PYTHON_USEDEP}]
53 + dev-python/setuptools[${PYTHON_USEDEP}]
54 + dev-python/uritemplate[${PYTHON_USEDEP}]
55 + "
56 +DEPEND="${RDEPEND}
57 + test? (
58 + dev-python/nose[${PYTHON_USEDEP}]
59 + )"
60 +
61 +python_prepare_all(){
62 + export SKIP_GOOGLEAPICLIENT_COMPAT_CHECK=true
63 + distutils-r1_python_prepare_all
64 +}
65 +
66 +python_test() {
67 + nosetests --verbosity=3 || die
68 +}