From 342d4d4a755c3fc0d09bf832325f3d596ba4b090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sat, 2 May 2020 15:03:02 +0200 Subject: [PATCH] dev-python/redbaron: new package; add version 0.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Maciej Barć --- dev-python/redbaron/Manifest | 1 + dev-python/redbaron/metadata.xml | 12 ++++++++++ dev-python/redbaron/redbaron-0.9.ebuild | 32 +++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 dev-python/redbaron/Manifest create mode 100644 dev-python/redbaron/metadata.xml create mode 100644 dev-python/redbaron/redbaron-0.9.ebuild diff --git a/dev-python/redbaron/Manifest b/dev-python/redbaron/Manifest new file mode 100644 index 0000000000..4ceb8d5560 --- /dev/null +++ b/dev-python/redbaron/Manifest @@ -0,0 +1 @@ +DIST redbaron-0.9.tar.gz 708544 BLAKE2B e3314a29e66fe2e91ef28183f5e9f6c91117963bfffa0bcc1fb62602bc87b1c5fcf058ff545c3515e0de8077f70298aa788960e7409cbde6a0199701947786f6 SHA512 db99be12a1a0a3caab80f8b319d2966ffe5f80b15e5f838212bdb327c75c411ee273b4ff44dae76010165bd563275eb50c8c5b8d87284a493114224603e9cb25 diff --git a/dev-python/redbaron/metadata.xml b/dev-python/redbaron/metadata.xml new file mode 100644 index 0000000000..4345ad7100 --- /dev/null +++ b/dev-python/redbaron/metadata.xml @@ -0,0 +1,12 @@ + + + + + xgqt@protonmail.com + Maciej Barć + + + PyCQA/redbaron + redbaron + + diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild new file mode 100644 index 0000000000..e57d74129a --- /dev/null +++ b/dev-python/redbaron/redbaron-0.9.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A FST for python to make writing refactoring code a realistic task" +HOMEPAGE="https://redbaron.readthedocs.io/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/baron-0.7[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] +" + +python_test() { + # Remove "__pycache__". Reason: unique basename + rm -rfd "${S}"/tests/__pycache__ || die + + # Skip tests. Reason: calls fixture "red" directly + rm "${S}"/tests/test_bounding_box.py || die + + pytest -v || die "Tests fail with ${EPYTHON}" +}