-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/grpcio-reflection: add 1.66.2
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/4102 Signed-off-by: Andreas Billmeier <b@edevau.net>
- Loading branch information
Showing
3 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST grpcio-reflection-1.59.0.tar.gz 18349 BLAKE2B 2192d87fed7c7f8d6546e66c4190622cc2752bb3626c514db01827a7496f67f54a0bc30dcf5a871d8699b010d744861f46ce8f5a51714e965e5a2b1f3446742c SHA512 829e985458e09f25c04717c950456cedb94d9b57483726b526181b382c4ff2068b6a6225cd40ae0d94cdef85d39f95a5a43a1ef3a9339179d52c0d7221404006 | ||
EBUILD grpcio-reflection-1.59.0.ebuild 744 BLAKE2B 5fe6d51ab963d018fb858d3d2c15877e72fd2258b84ac4a7ca7a5dffe2f3587f383ea0b7f7fc765456fe9696a17036ca4704eca26f811456fe16bf7183b8e040 SHA512 64b32a9836599e676b14de67ba2051cb1352f79de222af66bf874435b5fccd07cd8bebb7883b78d70e479d13e4ef0b33cc510a79c0bd4425ef5579e82f7991bc | ||
DIST grpcio_reflection-1.66.2.tar.gz 18781 BLAKE2B 9da70b0c220d498fdfdd05ba6d4593f4771a0a5e783a8c864fb190bc4e6c3a012bb6000a18f438017de537b406551470f3a87ad6cf08f73dde16567cefade99d SHA512 c54b7e8532204534c3c41cef403128ef976e05bc5743c297e4aefd745e651e6fc36a9c021a6e017508ced4e42b3edaafab809cfcf327b40735bd0de31b18ad9b | ||
EBUILD grpcio-reflection-1.59.0.ebuild 744 BLAKE2B 912c3a31c0e0d5322e2925d1f4918fd9e6b6578e7de347cfc574c137a5872c9c1e5402ece3479a8c72b23d6b5b7a26e173f23ecdaaaf5e677c4464fd40528c7f SHA512 103e83fce163c799cb5539f0a793de5c834ab4e50a13da76e6827463504f7e239c3883a07d98c958197fad0a5fd7b3bd00de99553fa3814a0ac878ec412e75a9 | ||
EBUILD grpcio-reflection-1.66.2.ebuild 742 BLAKE2B ae5c17bb173c22f6c945a69c09ac046d740a809e5ccd1628dd8c26ec3e5eae01efa5cff5a3b07937c4ce2e38db76b6d43a1d51a0638855450fe558109f57027f SHA512 7ce1d1c7245b4c9531b4140e0499468102ee4b9cf11ef410acb3f943da6697997c7b574c653a60833deef66306807a24d5c37b6e68738ced3d33858fdd414666 | ||
MISC metadata.xml 470 BLAKE2B c57c9c16cf1aa425f456171979590c6d62f926ef49d7b24de7372462322a6d1931835864dfc7e5461a1a6f52923bb9a6d37feee8f15bc6b4b10bc93da603773e SHA512 fb2f1191cbed33beddfdf8e0d6fd6980e6d1475e32f5ada6fb3d8e69a0c93726d60bff8dc3e9eca525d9e597ad018e84f2a6f2927fdde2d5c145d0841fcca550 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
dev-python/grpcio-reflection/grpcio-reflection-1.66.2.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Standard Protobuf Reflection Service for gRPC" | ||
HOMEPAGE="https://grpc.io https://pypi.org/project/grpcio-reflection/" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND=">=dev-python/grpcio-${PV}[${PYTHON_USEDEP}] | ||
>=dev-python/protobuf-python-5.26.1[${PYTHON_USEDEP}]" | ||
BDEPEND=" | ||
>=dev-python/cython-3[${PYTHON_USEDEP}] | ||
test? ( | ||
dev-python/pytest[${PYTHON_USEDEP}] | ||
)" | ||
|
||
python_test() { | ||
py.test -v -v || die | ||
} | ||
|
||
distutils_enable_tests pytest |