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, 19 Jan 2022 09:06:55
Message-Id: 1642583208.723ea685745758ebe4f7c9dd769ad8a0db9904da.mgorny@gentoo
1 commit: 723ea685745758ebe4f7c9dd769ad8a0db9904da
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 19 09:04:58 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 19 09:06:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=723ea685
7
8 dev-python/google-api-python-client: Bump to 2.36.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.36.0.ebuild | 45 ++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest
17 index b7a968d1f3a4..6925c3156afb 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.34.0.tar.gz 28469433 BLAKE2B aa2c8849b629fe489cf39cddd410a40a0af0bddfa5f370a4a41c1446aeadf69cd4592eeb1d76e6c63da9737906801aea9c8a4d706328b63a7bf5b34a43b83e00 SHA512 321dfdd3ba821beabc6c3a96575afd06c75a0c8e3db61b1ff5fa9db472e62de81b037c435a1051d6294c2a37e471bcaa068cd27ad7434a3416231d31931dd74e
22 DIST google-api-python-client-2.35.0.tar.gz 28553015 BLAKE2B 8ff92145f280e090b8f43c10e425dd4a8fe65b4cf565c5b5a0df2813cdb8ba1bcea50e37556efb9dd0b270a21fe11b7d6d1b445c8fdaa83326c7dc6230ee1fdb SHA512 4d0325b79250a26ae252568759e8345d31d692aa1d8f1d7aae623bb9a1a950efae654cd689d39f30450789c6d4fa9ca264111f8a9e798820cf6d0c3acba904f6
23 +DIST google-api-python-client-2.36.0.tar.gz 28624616 BLAKE2B 738d89e740ded848683a4bc5c1d4b27f57acb817c54397ed563de376fa395d1202c47fd4b42046f313b31c826fb3d0fc2e3761c0779bf9c9718b3b2923fc63a3 SHA512 bdca303fa84f5cb510102265ebb7629b48b939c8d7a01420e61635ef4c461f62b6dfa6f29e96060a80d86baf0ea6587d88b0ec64a7b4c6b32563921c3a1a53ca
24
25 diff --git a/dev-python/google-api-python-client/google-api-python-client-2.36.0.ebuild b/dev-python/google-api-python-client/google-api-python-client-2.36.0.ebuild
26 new file mode 100644
27 index 000000000000..13b520b44abe
28 --- /dev/null
29 +++ b/dev-python/google-api-python-client/google-api-python-client-2.36.0.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..9} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Google API Client for Python"
41 +HOMEPAGE="https://github.com/googleapis/google-api-python-client"
42 +SRC_URI="https://github.com/googleapis/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 +
48 +RDEPEND="
49 + >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
50 + <dev-python/httplib2-1[${PYTHON_USEDEP}]
51 + dev-python/google-api-core[${PYTHON_USEDEP}]
52 + >=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
53 + >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
54 + >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
55 + <dev-python/uritemplate-5[${PYTHON_USEDEP}]
56 + "
57 +BDEPEND="
58 + test? (
59 + dev-python/mock[${PYTHON_USEDEP}]
60 + dev-python/oauth2client[${PYTHON_USEDEP}]
61 + dev-python/pandas[${PYTHON_USEDEP}]
62 + dev-python/parameterized[${PYTHON_USEDEP}]
63 + )"
64 +
65 +distutils_enable_tests pytest
66 +
67 +python_test() {
68 + local EPYTEST_DESELECT=(
69 + # require Internet access (and credentials)
70 + tests/test_discovery.py::DiscoveryErrors::test_credentials_and_credentials_file_mutually_exclusive
71 + tests/test_discovery.py::DiscoveryFromDocument::test_api_endpoint_override_from_client_options_mapping_object
72 + )
73 +
74 + epytest tests
75 +}