commit: f8db90183eb0f25eeac14a7a4788b532237690fe Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com> AuthorDate: Sat Oct 2 20:00:02 2021 +0000 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com> CommitDate: Sun Oct 3 18:32:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f8db9018
dev-python/opentracing: initial import Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com> dev-python/opentracing/Manifest | 1 + dev-python/opentracing/metadata.xml | 13 ++++++++++ dev-python/opentracing/opentracing-2.4.0.ebuild | 34 +++++++++++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-python/opentracing/Manifest b/dev-python/opentracing/Manifest new file mode 100644 index 000000000..6a60cba88 --- /dev/null +++ b/dev-python/opentracing/Manifest @@ -0,0 +1 @@ +DIST opentracing-2.4.0.tar.gz 46228 BLAKE2B 465026265a60935be1ed4b23c5b8692b89b90d1c973d496f0c1e87b633e1cc98fe42b83fbacac5921197b5779560e8e4bd515aaaebf09ff4707997a8ad4b8f9e SHA512 fd8fa47c8c05d8ee8c19df8ec14756e05ba9d27f20b3026ccf71f925288ccd2594ec53ff1a26503e19e94d77a8ff0024c37af4efab38a0bee53cb1fed30e9a53 diff --git a/dev-python/opentracing/metadata.xml b/dev-python/opentracing/metadata.xml new file mode 100644 index 000000000..acfd64bde --- /dev/null +++ b/dev-python/opentracing/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Alessandro Barbieri</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/opentracing/opentracing-python/issues</bugs-to> + <remote-id type="pypi">opentracing</remote-id> + <remote-id type="github">opentracing/opentracing-python</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/opentracing/opentracing-2.4.0.ebuild b/dev-python/opentracing/opentracing-2.4.0.ebuild new file mode 100644 index 000000000..408a4c917 --- /dev/null +++ b/dev-python/opentracing/opentracing-2.4.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="OpenTracing API for Python" +HOMEPAGE=" + http://opentracing.io + https://github.com/opentracing/opentracing-python +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64" + +RDEPEND="" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/doubles[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/gevent[${PYTHON_USEDEP}] + www-servers/tornado[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest
