mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 08:18:49 -04:00
58 lines
1.5 KiB
Bash
58 lines
1.5 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
|
|
|
inherit distutils-r1 optfeature
|
|
|
|
DESCRIPTION="Better Protobuf / gRPC Support for Python"
|
|
HOMEPAGE="https://github.com/danielgtaylor/python-betterproto"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/danielgtaylor/python-betterproto"
|
|
else
|
|
MY_PV="${PV/_beta/b}"
|
|
S="${WORKDIR}/${PN}-${MY_PV}"
|
|
SRC_URI="https://github.com/danielgtaylor/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
>=dev-python/grpclib-0.4.1[${PYTHON_USEDEP}]
|
|
>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
>=dev-python/black-19.3[${PYTHON_USEDEP}]
|
|
>=dev-python/isort-5.10.1[${PYTHON_USEDEP}]
|
|
>=dev-python/jinja-2.11.2[${PYTHON_USEDEP}]
|
|
>=dev-python/grpcio-tools-1.40.0[${PYTHON_USEDEP}]
|
|
>=dev-python/pytest-mock-3.1.1[${PYTHON_USEDEP}]
|
|
>=dev-python/pytest-asyncio-0.12.0[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
distutils_enable_sphinx docs \
|
|
'>=dev-python/sphinx_rtd_theme-0.5.0'
|
|
|
|
python_prepare() {
|
|
default
|
|
python_fix_shebang tests/generate.py src/betterproto/plugin/main.py
|
|
}
|
|
|
|
python_test() {
|
|
"${EPYTHON}" -m tests.generate -v
|
|
epytest
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "protoc compilation support" "dev-python/black dev-python/isort dev-python/grpcio-tools dev-python/jinja"
|
|
}
|