summaryrefslogtreecommitdiff
path: root/dev-python/python-betterproto/python-betterproto-9999.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-11 00:38:31 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-11 00:38:31 +0000
commitec4612dcb652cc398f12b283409c9c89517d006c (patch)
treec5918061b8f2a13f6c54dc93199d5d954b5bd0fa /dev-python/python-betterproto/python-betterproto-9999.ebuild
parentac8e94c3fe6b057ef11006a2c61306250487fdeb (diff)
downloadbaldeagleos-repo-ec4612dcb652cc398f12b283409c9c89517d006c.tar.gz
baldeagleos-repo-ec4612dcb652cc398f12b283409c9c89517d006c.tar.xz
baldeagleos-repo-ec4612dcb652cc398f12b283409c9c89517d006c.zip
Adding metadata
Diffstat (limited to 'dev-python/python-betterproto/python-betterproto-9999.ebuild')
-rw-r--r--dev-python/python-betterproto/python-betterproto-9999.ebuild53
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-python/python-betterproto/python-betterproto-9999.ebuild b/dev-python/python-betterproto/python-betterproto-9999.ebuild
new file mode 100644
index 000000000000..2c0aa6026633
--- /dev/null
+++ b/dev-python/python-betterproto/python-betterproto-9999.ebuild
@@ -0,0 +1,53 @@
+# 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_{7,8,9,10} pypy3 )
+
+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 ~arm64 ~loong ~mips ~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/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 -v
+ epytest
+}
+
+pkg_postinst() {
+ optfeature "protoc compilation support" dev-python/black
+ optfeature "protoc compilation support" dev-python/isort
+ optfeature "protoc compilation support" dev-python/grpcio-tools
+}