diff options
author | Antonín Říha <antonin.riha@protonmail.com> | 2023-03-17 00:42:03 +0100 |
---|---|---|
committer | Antonín Říha <antonin.riha@protonmail.com> | 2023-03-17 00:42:03 +0100 |
commit | efaae6a36c8c8143abd04abac5b8ecb58cdc964e (patch) | |
tree | f043e7b396403a2228f0407e924eed0bf05e7e34 /dev-python/betterproto/betterproto-2.0.0_beta5.ebuild | |
parent | app-admin/chezmoi: add 2.32.0, drop 2.20.0 (diff) | |
download | guru-efaae6a36c8c8143abd04abac5b8ecb58cdc964e.tar.gz guru-efaae6a36c8c8143abd04abac5b8ecb58cdc964e.tar.bz2 guru-efaae6a36c8c8143abd04abac5b8ecb58cdc964e.zip |
dev-python/betterproto: renamed from python-betterproto, added 2.0.0b5
fixed tests for 2.0.0b4, fixed error with in source build
Closes: https://bugs.gentoo.org/859775
Signed-off-by: Antonín Říha <antonin.riha@protonmail.com>
Diffstat (limited to 'dev-python/betterproto/betterproto-2.0.0_beta5.ebuild')
-rw-r--r-- | dev-python/betterproto/betterproto-2.0.0_beta5.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild b/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild new file mode 100644 index 000000000..bbc0e306e --- /dev/null +++ b/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild @@ -0,0 +1,52 @@ +# 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_{9..11} ) + +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}/python-${PN}-${MY_PV}" + SRC_URI="https://github.com/danielgtaylor/python-${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.gh.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-3.0.3[${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_test() { + "${EPYTHON}" -m tests.generate + epytest +} + +pkg_postinst() { + optfeature "protoc compilation support" "dev-python/black dev-python/isort dev-python/grpcio-tools dev-python/jinja" +} |