dev-python/rope: Clean old up
authorMichał Górny <mgorny@gentoo.org>
Sat, 6 Jan 2018 09:23:46 +0000 (10:23 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sat, 6 Jan 2018 13:38:55 +0000 (14:38 +0100)
dev-python/rope/Manifest
dev-python/rope/rope-0.10.5.ebuild [deleted file]

index 2ca37d4ffcfbc1f28693d46e6b8b13d704ea2e91..98615b62cc958514f75953f4a6cc87fd137f5afd 100644 (file)
@@ -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 (file)
index cc5138d..0000000
+++ /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
-}