commit: 8efe7139ba52f3bfe6b5a1a2755f8cf7e337baf0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 28 06:23:34 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 28 06:23:34 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8efe7139
dev-python/google-api-core: Bump to 2.28.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/google-api-core/Manifest | 1 +
.../google-api-core/google-api-core-2.28.0.ebuild | 60 ++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/dev-python/google-api-core/Manifest
b/dev-python/google-api-core/Manifest
index 9b34272e191f..9de1fa4ca5ab 100644
--- a/dev-python/google-api-core/Manifest
+++ b/dev-python/google-api-core/Manifest
@@ -2,3 +2,4 @@ DIST python-api-core-2.25.1.gh.tar.gz 210551 BLAKE2B
32f631ba3ecc01d9c903add3725
DIST python-api-core-2.25.2.gh.tar.gz 211677 BLAKE2B
7c3b6a0429b20e2baca8f1c3ebab77c5956807be9deb8676b5af3ca8880b7275693bda07d81aeb8a6388ec03299e853311079e6ef5b6f8125a6855772d60e9cf
SHA512
24f2715f8ef52318619d076416975644c888d1d7ee4967de885ba975a3ff5519c0b2a69ee9995054f19e301340bbaacf1784f7d2364d04c42c1992acb1f9b8f7
DIST python-api-core-2.26.0.gh.tar.gz 211768 BLAKE2B
3627be291d578661823703595eb94b705c594ec50b4212470e529f5a953778734f4e8765578ef09bba8fde5c08687b4e4e92509cba539e74e289c7cc62279dda
SHA512
afa2e82f88f833be1d17011333eb92f4fe94dd69e118e1a2c4312181a4a4db560245990ec90886db5e9059a3db9b3f5d067c152162d9d17c8f8a6424d392e8eb
DIST python-api-core-2.27.0.gh.tar.gz 214453 BLAKE2B
feadaee8419d810ccc26278385649b5b57f57668389542a6910ab2a32baa65577720c2de357ac4f5a70dc7191da268f0c7fd369d1d5a324f60ea0d7f4de44df1
SHA512
f73959098e1ea5e1e3e0fc341fe486334516aa04e1be1249f9c01d164cca27004a95b1b81f819fd5201e41bb2cfd93f57568e8d28fed427476751faf6dc2e4d2
+DIST python-api-core-2.28.0.gh.tar.gz 222177 BLAKE2B
90fae77cef9b12d8c789d4703ca47746e2f33e9c98d0eb4456f5f0017fc33a2821e5fc1642ae8c07982c07faf73a4015332e7eb3e2fa5b72d2b5a08cb70f6488
SHA512
8901f12264beaa6b2087af3055bc99900f90efecce4e407e1b5a7ede8718fb9fe5cf2cb5246ddce84693f21537a96c767a0e16ab6ebc2933d6867795fcbb6ee7
diff --git a/dev-python/google-api-core/google-api-core-2.28.0.ebuild
b/dev-python/google-api-core/google-api-core-2.28.0.ebuild
new file mode 100644
index 000000000000..6eddece1a440
--- /dev/null
+++ b/dev-python/google-api-core/google-api-core-2.28.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2020-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1
+
+MY_P=python-api-core-${PV}
+DESCRIPTION="Core Library for Google Client Libraries"
+HOMEPAGE="
+ https://github.com/googleapis/python-api-core/
+ https://pypi.org/project/google-api-core/
+ https://googleapis.dev/python/google-api-core/latest/index.html
+"
+SRC_URI="
+ https://github.com/googleapis/python-api-core/archive/v${PV}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="grpc"
+
+RDEPEND="
+ >=dev-python/googleapis-common-protos-1.56.2[${PYTHON_USEDEP}]
+ >=dev-python/google-auth-1.25.0[${PYTHON_USEDEP}]
+ >=dev-python/proto-plus-1.25.0[${PYTHON_USEDEP}]
+ >=dev-python/protobuf-3.19.5[${PYTHON_USEDEP}]
+ >=dev-python/requests-2.18.0[${PYTHON_USEDEP}]
+ <dev-python/requests-3[${PYTHON_USEDEP}]
+ grpc? (
+ >=dev-python/grpcio-1.75.1[${PYTHON_USEDEP}]
+ >=dev-python/grpcio-status-1.75.1[${PYTHON_USEDEP}]
+ )
+"
+BDEPEND="
+ test? (
+ >=dev-python/grpcio-1.75.1[${PYTHON_USEDEP}]
+ >=dev-python/grpcio-status-1.75.1[${PYTHON_USEDEP}]
+ dev-python/rsa[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-asyncio )
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+ # The grpc_gcp module is missing to perform a stress test
+ tests/unit/test_grpc_helpers.py
+)
+
+python_test() {
+ rm -rf google || die
+ epytest tests
+}