From 337ce667063fde6e4c8d56879de57721301cf080 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Fri, 7 May 2021 13:33:50 +0200 Subject: [PATCH] dev-python/pytest-celery: initial import Signed-off-by: Alessandro Barbieri --- dev-python/pytest-celery/Manifest | 1 + dev-python/pytest-celery/metadata.xml | 12 +++++++++ .../pytest-celery-0.0.0_alpha1.ebuild | 27 +++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 dev-python/pytest-celery/Manifest create mode 100644 dev-python/pytest-celery/metadata.xml create mode 100644 dev-python/pytest-celery/pytest-celery-0.0.0_alpha1.ebuild diff --git a/dev-python/pytest-celery/Manifest b/dev-python/pytest-celery/Manifest new file mode 100644 index 0000000000..a9af4a3bd0 --- /dev/null +++ b/dev-python/pytest-celery/Manifest @@ -0,0 +1 @@ +DIST pytest-celery-0.0.0a1.tar.gz 3005 BLAKE2B 31c2c825f8821eb56eff92d709cde20d306f673b0760326953de141321af7a040dce849728f8556059e438622d2b0969cbcf14f33e4d28bfa213a9babc92d997 SHA512 ea8ef26aaa5dd5c04608cb01bedb4946bb6712d08203e5f9b1b9b2b1a9e49e7a550466d7a9dd896fb5d813960cee35eed139099952589cdf21e03dadd7e2a20f diff --git a/dev-python/pytest-celery/metadata.xml b/dev-python/pytest-celery/metadata.xml new file mode 100644 index 0000000000..96e702a5be --- /dev/null +++ b/dev-python/pytest-celery/metadata.xml @@ -0,0 +1,12 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + celery/pytest-celery + celery + + \ No newline at end of file diff --git a/dev-python/pytest-celery/pytest-celery-0.0.0_alpha1.ebuild b/dev-python/pytest-celery/pytest-celery-0.0.0_alpha1.ebuild new file mode 100644 index 0000000000..9bb2a3b808 --- /dev/null +++ b/dev-python/pytest-celery/pytest-celery-0.0.0_alpha1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +MYPV="${PV/_alpha/a}" +MYP="${PN}-${MYPV}" + +PYTHON_COMPAT=( python3_{7,8} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 + +DESCRIPTION="a shim pytest plugin to enable celery.contrib.pytest" +HOMEPAGE=" + https://github.com/celery/pytest-celery + https://pypi.org/project/pytest-celery +" +SRC_URI="mirror://pypi/${MYP:0:1}/${PN}/${MYP}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=">=dev-python/celery-4.4.0[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MYP}"