Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/
Date: Thu, 22 Feb 2018 19:59:25
Message-Id: 1519329545.e5c719370dc5ec2e904eb363f6cbcef6488f645a.prometheanfire@gentoo
1 commit: e5c719370dc5ec2e904eb363f6cbcef6488f645a
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 19:50:28 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 19:59:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5c71937
7
8 dev-python/google-api-python-client: 1.6.5 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/google-api-python-client/Manifest | 1 +
13 .../google-api-python-client-1.6.5.ebuild | 44 ++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest
17 index 2486dc95f16..d46cbcf264b 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.5.3.tar.gz 3622355 BLAKE2B 1187729581c9e852a4512fdfd557785791c8102d6796f6d02d212820f9fe89393574ffbedc1445416ff2fa876269f18adb162a33241f6331e989a31ccafec60d SHA512 3f58af0d1f165fa7e045d08a0bfc282855b40dbea16d310bbc4cbce76f631b6303738a396048efc8ea114fdff1164d1ad303148999d0ab0ba0d2cc91df9408b3
22 DIST google-api-python-client-1.6.2.tar.gz 4262337 BLAKE2B 0ae3e5b1c6bbb80999cfaadaef7812bb53d03eb1160f79a29bf73a180dae40bd2c5e7dceff0badaf5eda44718a06c4ec65fe993896a82c5fd12348f810ec2812 SHA512 ee906c2efb47469dc18dcfcb1edfad4346f61e88c1e7f73b60924b393c704e7033a5ff4f9a1965d0c29aa3a6bf25b60888e1d39366cbc1372861b49e79c9e886
23 +DIST google-api-python-client-1.6.5.tar.gz 4255929 BLAKE2B 4e2197fe56f25cd202f7a0b3f64b3796158d798bfedb9c0690a59c24bd5ce10fbe0300093ebb76cd343dae5eea2a0a360903cd0890834241926fd55a7dc07ea9 SHA512 b2f2be81e6f54ee3065e75ea064ea3ae49cb983d401ac46dca8459409dbd6df7c3ba07798285b5177bfa632a20d43aaaef3a7c73d5d565796567b8b305737565
24
25 diff --git a/dev-python/google-api-python-client/google-api-python-client-1.6.5.ebuild b/dev-python/google-api-python-client/google-api-python-client-1.6.5.ebuild
26 new file mode 100644
27 index 00000000000..6b96fa2281f
28 --- /dev/null
29 +++ b/dev-python/google-api-python-client/google-api-python-client-1.6.5.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Google API Client for Python"
41 +HOMEPAGE="https://github.com/google/google-api-python-client"
42 +SRC_URI="https://github.com/google/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + >=dev-python/httplib2-0.9.2[${PYTHON_USEDEP}]
51 + <dev-python/httplib2-1[${PYTHON_USEDEP}]
52 + >=dev-python/oauth2client-2[${PYTHON_USEDEP}]
53 + <dev-python/oauth2client-5[${PYTHON_USEDEP}]
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + >=dev-python/uritemplate-3.0[${PYTHON_USEDEP}]
56 + <dev-python/uritemplate-4[${PYTHON_USEDEP}]
57 + >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
58 + <dev-python/six-2[${PYTHON_USEDEP}]
59 + "
60 +DEPEND="${RDEPEND}
61 + test? (
62 + dev-python/google-auth-httplib2[${PYTHON_USEDEP}]
63 + dev-python/nose[${PYTHON_USEDEP}]
64 + dev-python/unittest2[${PYTHON_USEDEP}]
65 + )"
66 +
67 +python_prepare_all() {
68 + export SKIP_GOOGLEAPICLIENT_COMPAT_CHECK=true
69 + distutils-r1_python_prepare_all
70 +}
71 +
72 +python_test() {
73 + nosetests --verbosity=3 || die
74 +}