dev-python/google-api-python-client: Bump to 2.193.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-03-18 04:00:48 +01:00
parent 12656704c3
commit fad4cf4dcb
2 changed files with 54 additions and 0 deletions

View File

@@ -11,3 +11,5 @@ DIST google_api_python_client-2.191.0.tar.gz 14195310 BLAKE2B d531dbc113850f53ab
DIST google_api_python_client-2.191.0.tar.gz.provenance 5627 BLAKE2B 600bba0d44751ed269cb3403096c6e90bf22f5604df885fe79fab396017c31742bdf5c832ee32ba0c1adae6abcc59a8cf65d2c29ffa562bc75b694d34540e559 SHA512 c41c4d17a6a42e9f55bf9778642315277380e31e28443935f0f8ccf4d23ab29b28af9024fe8a86e631fe4f9700b9f043af9bd38f645d984a08dc7c2adc2b597c
DIST google_api_python_client-2.192.0.tar.gz 14209505 BLAKE2B 2f13be8ab8dd22e71b974c35cb53c685629124f70e7a4ed348294d027ca7f13d4919ee10cf973689d1711ec83a2c1ff6de86959843487143525c2b94cbf256d7 SHA512 28a04675166caab9b6e76c4652b2d21026ad87363d2a473daee6eebe6b37bc2823c040a5ea9d9cf63be3945635187089bd824cd48c351b0e6cb576644d227630
DIST google_api_python_client-2.192.0.tar.gz.provenance 5878 BLAKE2B 5d277fe920e58691bc000504cff84057b256a3be0af4906d85a040fe194566b2cc580ed1b435867592d51919e5a3eaafde673fba97396e4d2eeea5e32b350e00 SHA512 416065f0d3ca73ce7bb5033e16a744ac4e6bea8bda4e8835813db7f7d1df5be034e2de90c45fdd545ff16cf49f1a58b24081d331dfa138044ac7e055a8ae243d
DIST google_api_python_client-2.193.0.tar.gz 14281006 BLAKE2B ee046d799e275c37cc827e7fc81def465932fa96f15036b33e60c26aeebf4a07255eb1a23777edf4ffb0d97c2f692e9673d3e7366dd3c0a779cac12cfb674505 SHA512 1afc4f3dc5f58f537201311ae371df8c0900ae7a5127b06ebda66f52baedbf145991b4e8e578216e0d63e81413259ad71defbe6c9eb68caddd9a746e559240e9
DIST google_api_python_client-2.193.0.tar.gz.provenance 5831 BLAKE2B 82a3bf62f7a7462408c666de22095dd3a4b5275890351cdd6ebcf7ae9973c78667876d39f4f487f42ef52fa0f3f81b134ca0a87b4c02080710aef8c718254e34 SHA512 831be52ab8fd52b93ce66f0cf9b6a7c517b043c3d0ecc29ce8d85cb05df24c0b1b2d534c72ac4f143a3f28ddd80c74555cb9629a463f7700e1ffb871afe65774

View File

@@ -0,0 +1,52 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_VERIFY_REPO=gcp:google-cloud-sdk-py@oss-exit-gate-prod.iam.gserviceaccount.com
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Google API Client for Python"
HOMEPAGE="
https://github.com/googleapis/google-api-python-client/
https://pypi.org/project/google-api-python-client/
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
>=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
<dev-python/httplib2-1[${PYTHON_USEDEP}]
>=dev-python/google-api-core-2.3.1[${PYTHON_USEDEP}]
>=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
>=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
>=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
<dev-python/uritemplate-5[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/parameterized[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=(
# require Internet access (and credentials)
tests/test_discovery.py::DiscoveryErrors::test_credentials_and_credentials_file_mutually_exclusive
tests/test_discovery.py::DiscoveryFromDocument::test_api_endpoint_override_from_client_options_mapping_object
tests/test_discovery.py::Universe::test_client_options_universe_configured_with_mtls
tests/test_discovery.py::Universe::test_universe_env_var_configured_with_mtls
)
epytest tests
}