Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/
Date: Wed, 07 Jul 2021 22:29:55
Message-Id: 1625696986.a83db4ff5b863961a8498601a58db571fde5cfee.mgorny@gentoo
1 commit: a83db4ff5b863961a8498601a58db571fde5cfee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 7 22:26:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 7 22:29:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a83db4ff
7
8 dev-python/google-api-python-client: Bump to 2.12.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/google-api-python-client/Manifest | 1 +
13 .../google-api-python-client-2.12.0.ebuild | 53 ++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest
17 index 0c8cd4b8236..d18396dea68 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-2.11.0.tar.gz 25408815 BLAKE2B 9bc7d0163961f5b6341fcb43f41a91dfe12702254047ac2b418ce89dad4f8f40400a7df1fff5ce9d73a05c5249b7242a4d642b866b97a34140826901f74f9d6e SHA512 6d31e0ed926f87f12400b1ec244f8e193d6559c58d6775c34ef5747af3ba633e76e8a883983438e84c6d31fe81ea57ac522f924270b80993cc6396cb6f3ae60e
22 +DIST google-api-python-client-2.12.0.tar.gz 25476570 BLAKE2B 7d5f53c19f00878ef717515f406a56d22ce520a0de4f8c5b4142de56263a5bdef76aaa64b3b87301f8c704ad279554f66425c746c8bb869ef735c061fc5d1b6a SHA512 47bfebe8649a4dbf2f8570f71ec4a0c4ececccf6734138e3c84e0501328f949485b5476227c123493b5874e43cc0ab72622ce9fb44484502e21e364f6c8cea54
23 DIST google-api-python-client-2.8.0.tar.gz 25286774 BLAKE2B b21aebda062984b9eb8f2f5c563016f0f8f663883dc8ddb913053ff3df32c652c6a83f924f3e19136e5edec085e12c43cc584bc9898630122c77a219810033bc SHA512 cc3c55438b2f5835b52d17d04a749919c4865991ff78cf95920d0941a55e1493eae502a13f6565cfe1db799ce9950659e8baaa690bada058d711309861c8d07e
24
25 diff --git a/dev-python/google-api-python-client/google-api-python-client-2.12.0.ebuild b/dev-python/google-api-python-client/google-api-python-client-2.12.0.ebuild
26 new file mode 100644
27 index 00000000000..68ec1c0b8c1
28 --- /dev/null
29 +++ b/dev-python/google-api-python-client/google-api-python-client-2.12.0.ebuild
30 @@ -0,0 +1,53 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Google API Client for Python"
40 +HOMEPAGE="https://github.com/googleapis/google-api-python-client"
41 +SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +
47 +RDEPEND="
48 + >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
49 + <dev-python/httplib2-1[${PYTHON_USEDEP}]
50 + dev-python/google-api-core[${PYTHON_USEDEP}]
51 + >=dev-python/google-auth-1.16.0[${PYTHON_USEDEP}]
52 + >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
53 + >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
54 + <dev-python/uritemplate-4[${PYTHON_USEDEP}]
55 + >=dev-python/six-1.13.0[${PYTHON_USEDEP}]
56 + <dev-python/six-2[${PYTHON_USEDEP}]
57 + "
58 +BDEPEND="
59 + test? (
60 + dev-python/mock[${PYTHON_USEDEP}]
61 + dev-python/oauth2client[${PYTHON_USEDEP}]
62 + dev-python/pandas[${PYTHON_USEDEP}]
63 + dev-python/parameterized[${PYTHON_USEDEP}]
64 + )"
65 +
66 +distutils_enable_tests --install pytest
67 +
68 +src_prepare() {
69 + find tests -name '*.py' -exec \
70 + sed -i -e 's:unittest2 as ::' {} + || die
71 + distutils-r1_src_prepare
72 +}
73 +
74 +python_test() {
75 + local deselect=(
76 + # require Internet access (and credentials)
77 + tests/test_discovery.py::DiscoveryErrors::test_credentials_and_credentials_file_mutually_exclusive
78 + tests/test_discovery.py::DiscoveryFromDocument::test_api_endpoint_override_from_client_options_mapping_object
79 + )
80 +
81 + distutils_install_for_testing
82 + epytest ${deselect[@]/#/--deselect }
83 +}