commit: 67fa223b67e0282707bb968a840b62c627afab34
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 5 04:27:43 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 5 05:05:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67fa223b
dev-python/grpclib: Bump to 0.4.8
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/grpclib/Manifest | 1 +
dev-python/grpclib/grpclib-0.4.8.ebuild | 42 +++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-python/grpclib/Manifest b/dev-python/grpclib/Manifest
index 4bb797d64a08..57966375e523 100644
--- a/dev-python/grpclib/Manifest
+++ b/dev-python/grpclib/Manifest
@@ -1 +1,2 @@
DIST grpclib-0.4.7.gh.tar.gz 106012 BLAKE2B
9eb351511c4bf5e0be3135734a1d2ce66187a1fef1b35c46cd518199c07cede6f88351b3b56fc211775666c333cafd0a67da2d281b314bc2a8fdb51f9def33bf
SHA512
8148edcadb1140973ea54473939744810f156ff719c72e8485534097d7c0efc324f9b5df1c71e1477e624859d068d5ec0a44b22f80717fd7ca8f697d3dfc592a
+DIST grpclib-0.4.8.gh.tar.gz 106522 BLAKE2B
df4a4eadfdaece1bc65e27a2ef82562fd095e184c7118da078383afe8a8a03a2e389bdb2466c88079dfae6254c55bb9134eab35cb3c82b1c02e3da6c6a7e02e3
SHA512
f00e93e9371f68a86ce818b3c45e5c7319074163c404b36af3a183f0676fbe58722fa0cb3f119073f13f6d8b763a673e2ab292678868257f88cb834aa5bc2f71
diff --git a/dev-python/grpclib/grpclib-0.4.8.ebuild
b/dev-python/grpclib/grpclib-0.4.8.ebuild
new file mode 100644
index 000000000000..97d78c0eb919
--- /dev/null
+++ b/dev-python/grpclib/grpclib-0.4.8.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure-Python gRPC implementation for asyncio"
+HOMEPAGE="
+ https://github.com/vmagamedov/grpclib/
+ https://pypi.org/project/grpclib/
+"
+# no tests in sdist, as of 0.4.7
+SRC_URI="
+ https://github.com/vmagamedov/grpclib/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# setup.txt + requirements/runtime.in
+RDEPEND="
+ dev-python/certifi[${PYTHON_USEDEP}]
+ dev-python/googleapis-common-protos[${PYTHON_USEDEP}]
+ dev-python/h2[${PYTHON_USEDEP}]
+ dev-python/multidict[${PYTHON_USEDEP}]
+ dev-python/protobuf[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/async-timeout[${PYTHON_USEDEP}]
+ dev-python/faker[${PYTHON_USEDEP}]
+ dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest