From a764f0fe6e125953513d29b72b57af10414efdb0 Mon Sep 17 00:00:00 2001 From: Anton Bolshakov Date: Wed, 19 May 2021 08:49:19 +0800 Subject: [PATCH] pluginbase: remove, gentoo fixed it --- dev-python/pluginbase/Manifest | 1 - dev-python/pluginbase/metadata.xml | 12 ------ dev-python/pluginbase/pluginbase-1.0.0.ebuild | 43 ------------------- 3 files changed, 56 deletions(-) delete mode 100644 dev-python/pluginbase/Manifest delete mode 100644 dev-python/pluginbase/metadata.xml delete mode 100644 dev-python/pluginbase/pluginbase-1.0.0.ebuild diff --git a/dev-python/pluginbase/Manifest b/dev-python/pluginbase/Manifest deleted file mode 100644 index 9684ae35d..000000000 --- a/dev-python/pluginbase/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pluginbase-1.0.0.tar.gz 41795 BLAKE2B 68d7704b52db39af4f0c2e1f790802eb5f2fd15d91726752605901b3e8a3c736204fad93d96b5dd1a4199586b4d9b42895cbe8290acaed1b4051e8103efb43f9 SHA512 95c3b770980fa5ec745b8d788df29c6219ed6e5af7666f9830d56c6acae01f90831655127bcef69b2dfc423d09429373ae7d4c8b45c76c62a41f909d0747c0a0 diff --git a/dev-python/pluginbase/metadata.xml b/dev-python/pluginbase/metadata.xml deleted file mode 100644 index 30a59affa..000000000 --- a/dev-python/pluginbase/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - python@gentoo.org - Python - - - pluginbase - mitsuhiko/pluginbase - - diff --git a/dev-python/pluginbase/pluginbase-1.0.0.ebuild b/dev-python/pluginbase/pluginbase-1.0.0.ebuild deleted file mode 100644 index b5c0f8eca..000000000 --- a/dev-python/pluginbase/pluginbase-1.0.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -#https://bugs.gentoo.org/789264 -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="Support library for building plugins sytems in Python" -HOMEPAGE="https://github.com/mitsuhiko/pluginbase" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" - -python_prepare_all() { - sed -e "s/, 'sphinx.ext.intersphinx'//" \ - -i docs/conf.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/_build/html/. ) - fi -} - -python_test() { - cd tests && PYTHONPATH=.. py.test --tb=native || die "Tests fail with ${EPYTHON}" -}