diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-06 06:39:13 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-06 06:59:17 +0100 |
commit | 429cdc74f50991dc604c6d2a6f6876b4126e9339 (patch) | |
tree | 19022177dea6b017fd54224e878e569e92e4e77b /dev-python/rope | |
parent | dev-python/roman: Remove py2 (diff) | |
download | gentoo-429cdc74f50991dc604c6d2a6f6876b4126e9339.tar.gz gentoo-429cdc74f50991dc604c6d2a6f6876b4126e9339.tar.bz2 gentoo-429cdc74f50991dc604c6d2a6f6876b4126e9339.zip |
dev-python/rope: Remove old (drop to ~arch)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/rope')
-rw-r--r-- | dev-python/rope/Manifest | 1 | ||||
-rw-r--r-- | dev-python/rope/rope-0.10.3.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-python/rope/Manifest b/dev-python/rope/Manifest index 98615b62cc95..42042b0e90ba 100644 --- a/dev-python/rope/Manifest +++ b/dev-python/rope/Manifest @@ -1,2 +1 @@ -DIST rope-0.10.3.tar.gz 226123 BLAKE2B e7f29545280a8615486547a8c29f44894d3c84659af9cb87ac596238a829f3a21a778e92ffe7e260cf27b52639983be1b3d62b38a727ce31a9c7ec225abc76ad SHA512 1d868aeebd086c3fc199316a71e61a8c46c76d85176557842051bb8f51d090f316df6bb84f766db5a46dc164d3e471eb90465805a102e46acb34e39b2b0ce8b4 DIST rope-0.10.7.tar.gz 244089 BLAKE2B aebc1eaa3715aa4f2423490790f53040ad256fca35b3ad7b516e6b1f0af051b79f812f7b701ff5ac2414dbf2d1cba319da0f4cf241041329c0c750ae63e0ec33 SHA512 80343b8b7af883afbd04734b0fe4dbdab114301234654cbd95b3ae8be8dff40878105b7647209f5e899b981ab6a7ecb987d9bdf942b32ed083c745128c22ef95 diff --git a/dev-python/rope/rope-0.10.3.ebuild b/dev-python/rope/rope-0.10.3.ebuild deleted file mode 100644 index 520fe2fecc00..000000000000 --- a/dev-python/rope/rope-0.10.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 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}/${P}-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 -} |