dev-python/grpclib: Bump to 0.4.9

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-12-15 06:10:48 +01:00
parent 5f5fe92a57
commit 82faf7ec60
2 changed files with 47 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST grpclib-0.4.8.gh.tar.gz 106522 BLAKE2B df4a4eadfdaece1bc65e27a2ef82562fd095e184c7118da078383afe8a8a03a2e389bdb2466c88079dfae6254c55bb9134eab35cb3c82b1c02e3da6c6a7e02e3 SHA512 f00e93e9371f68a86ce818b3c45e5c7319074163c404b36af3a183f0676fbe58722fa0cb3f119073f13f6d8b763a673e2ab292678868257f88cb834aa5bc2f71
DIST grpclib-0.4.9.gh.tar.gz 107191 BLAKE2B d2cbd863968cde154351984ff6fe70dd1a4fec36a6689cdab8ab54d103ab435ad964960c83e09510877ef15df1a0d25d3ec7c45de53b0496aae34a4100ffc5af SHA512 7a57acca8173fa20c0ef08319415926e515daad169a4411431a97fc82ba668ddd7d013aef2144556aee6879f625abeeb67698c18b449e604284d50b445238087

View File

@@ -0,0 +1,46 @@
# 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..14} )
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 ~arm ~arm64 ~ppc ~ppc64 ~x86"
# 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}]
)
"
EPYTEST_PLUGINS=( faker pytest-asyncio )
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# flaky leak checks
tests/test_memory.py
)