mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
74 lines
1.8 KiB
Bash
74 lines
1.8 KiB
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
inherit distutils-r1
|
|
|
|
TAG=v.${PV/_beta/b}
|
|
MY_P=python-betterproto-${TAG}
|
|
DESCRIPTION="A better Protobuf / gRPC generator & library"
|
|
HOMEPAGE="
|
|
https://github.com/danielgtaylor/python-betterproto/
|
|
https://pypi.org/project/betterproto/
|
|
"
|
|
# no tests in sdist, as of 2.0.0b7
|
|
SRC_URI="
|
|
https://github.com/danielgtaylor/python-betterproto/archive/${TAG}.tar.gz
|
|
-> ${MY_P}.gh.tar.gz
|
|
"
|
|
if [[ ${PKGBUMPING} != ${PVR} ]]; then
|
|
# poetry install -E compiler
|
|
# poetry run python -m tests.generate -v
|
|
# pack tests/output*
|
|
SRC_URI+="
|
|
test? (
|
|
https://dev.gentoo.org/~mgorny/dist/${MY_P}.tests.tar.xz
|
|
)
|
|
"
|
|
fi
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
|
|
|
|
RDEPEND="
|
|
>=dev-python/black-23.1.0[${PYTHON_USEDEP}]
|
|
>=dev-python/grpclib-0.4.1[${PYTHON_USEDEP}]
|
|
>=dev-python/isort-5.11.5[${PYTHON_USEDEP}]
|
|
>=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}]
|
|
>=dev-python/python-dateutil-2.8[${PYTHON_USEDEP}]
|
|
>=dev-python/typing-extensions-4.7.1[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/cachelib[${PYTHON_USEDEP}]
|
|
dev-python/pydantic[${PYTHON_USEDEP}]
|
|
dev-python/tomlkit[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
EPYTEST_PLUGINS=( pytest-{asyncio,forked,mock} )
|
|
distutils_enable_tests pytest
|
|
|
|
PATCHES=(
|
|
# https://github.com/danielgtaylor/python-betterproto/pull/622
|
|
"${FILESDIR}/${P}-pytest-8.patch"
|
|
)
|
|
|
|
python_test() {
|
|
local EPYTEST_DESELECT=(
|
|
# TODO: new protobuf?
|
|
"tests/test_inputs.py::test_binary_compatibility[map]"
|
|
"tests/test_inputs.py::test_binary_compatibility[mapmessage]"
|
|
)
|
|
|
|
# --forked to workaround protobuf segfaults
|
|
# https://github.com/protocolbuffers/protobuf/issues/22067
|
|
epytest --forked
|
|
}
|