From: Michał Górny Date: Sat, 6 Jan 2018 09:23:46 +0000 (+0100) Subject: dev-python/rope: Clean old up X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cf87a280b145920d6da2e7726877238a573917c7;p=gentoo.git dev-python/rope: Clean old up --- diff --git a/dev-python/rope/Manifest b/dev-python/rope/Manifest index 2ca37d4ffcfb..98615b62cc95 100644 --- a/dev-python/rope/Manifest +++ b/dev-python/rope/Manifest @@ -1,3 +1,2 @@ DIST rope-0.10.3.tar.gz 226123 BLAKE2B e7f29545280a8615486547a8c29f44894d3c84659af9cb87ac596238a829f3a21a778e92ffe7e260cf27b52639983be1b3d62b38a727ce31a9c7ec225abc76ad SHA512 1d868aeebd086c3fc199316a71e61a8c46c76d85176557842051bb8f51d090f316df6bb84f766db5a46dc164d3e471eb90465805a102e46acb34e39b2b0ce8b4 -DIST rope-0.10.5.tar.gz 243931 BLAKE2B 00ec862f98cd2dd0a68adf9e88e7fae43683c5a08e817d491ce154e0fe38a5421f0131849c419653fb093404366a316d899dacdb4a238f6459f18b0008c778f5 SHA512 90a055be51834cc642f06b2bbcad4419d15605393a784a414c069a43816243badcbe5fa131bac48a5899268fcbdc11292c8469d30747614b7c85eebb8f2b6fae DIST rope-0.10.7.tar.gz 244089 BLAKE2B aebc1eaa3715aa4f2423490790f53040ad256fca35b3ad7b516e6b1f0af051b79f812f7b701ff5ac2414dbf2d1cba319da0f4cf241041329c0c750ae63e0ec33 SHA512 80343b8b7af883afbd04734b0fe4dbdab114301234654cbd95b3ae8be8dff40878105b7647209f5e899b981ab6a7ecb987d9bdf942b32ed083c745128c22ef95 diff --git a/dev-python/rope/rope-0.10.5.ebuild b/dev-python/rope/rope-0.10.5.ebuild deleted file mode 100644 index cc5138dba16d..000000000000 --- a/dev-python/rope/rope-0.10.5.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="Python refactoring library" -HOMEPAGE="https://github.com/python-rope/rope" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -# Dependency for docbuild documentation which is not noted in -# setup.py, using standard docutils builds docs successfully. -DEPEND="doc? ( dev-python/docutils[${PYTHON_USEDEP}] )" - -PATCHES=( "${FILESDIR}/${PN}-0.10.3-doc-syntax-errors.patch" ) - -python_test() { - PYTHONPATH="${BUILD_DIR}/lib:." ${EPYTHON} ropetest/__init__.py -} - -python_compile_all() { - if use doc; then - pushd docs > /dev/null || die - mkdir build || die - local i - for i in ./*.rst; do - rst2html.py $i > ./build/${i/rst/html} || die - done - popd > /dev/null || die - fi -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/build/. ) - distutils-r1_python_install_all -}