Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rope/
Date: Thu, 31 Mar 2022 14:08:29
Message-Id: 1648735485.6038d426ef9978cabdfbf619e13484f9c1e820dd.mgorny@gentoo
1 commit: 6038d426ef9978cabdfbf619e13484f9c1e820dd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 14:04:45 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 14:04:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6038d426
7
8 dev-python/rope: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rope/Manifest | 1 -
13 dev-python/rope/rope-0.22.0-r1.ebuild | 42 -----------------------------------
14 dev-python/rope/rope-0.22.0.ebuild | 41 ----------------------------------
15 3 files changed, 84 deletions(-)
16
17 diff --git a/dev-python/rope/Manifest b/dev-python/rope/Manifest
18 index 74237cb3fdeb..37502321faab 100644
19 --- a/dev-python/rope/Manifest
20 +++ b/dev-python/rope/Manifest
21 @@ -1,2 +1 @@
22 -DIST rope-0.22.0.tar.gz 260138 BLAKE2B 11aff47af50225d66ade44a63a2c747bc11f0adcec1abed2dff71466f088f1460b3eec541db326af545f89907eb9d4f518c24ec8a445ca07b3116573883123ec SHA512 ead82eba834890d90a6972cc432d153b977a123588621712b50decf1f1bfff03cd411e3615dff63a5272cf4a46b32791ea625f30e3dfdf9d1969081a99544396
23 DIST rope-0.23.0.tar.gz 260990 BLAKE2B 34064f45f72d6c9c5613eb5d9480dde25aeb5426ab3ea9b56e7ba5e4da1d9930735bd87757e3e885d4504ddcb24b23aa96b0d5be7c23ca4969201aedbaa3aa24 SHA512 1ab0a36c792fdc4d0fd1e554deec0fb6d1e877d91164fb8ee2e5f99240087f8a8d4608d1975be100bca87be0321d672b91579cf36795acffc742aa021cdf5e1b
24
25 diff --git a/dev-python/rope/rope-0.22.0-r1.ebuild b/dev-python/rope/rope-0.22.0-r1.ebuild
26 deleted file mode 100644
27 index f461efcc5f5f..000000000000
28 --- a/dev-python/rope/rope-0.22.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{8..10} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Python refactoring library"
42 -HOMEPAGE="https://github.com/python-rope/rope"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="LGPL-3+"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="doc"
49 -
50 -BDEPEND="
51 - doc? ( dev-python/docutils[${PYTHON_USEDEP}] )
52 - test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )
53 -"
54 -
55 -distutils_enable_tests pytest
56 -
57 -python_compile_all() {
58 - if use doc; then
59 - pushd docs > /dev/null || die
60 - mkdir build || die
61 - local i
62 - for i in ./*.rst; do
63 - rst2html.py $i > ./build/${i/rst/html} || die
64 - done
65 - popd > /dev/null || die
66 - fi
67 -}
68 -
69 -python_install_all() {
70 - use doc && local HTML_DOCS=( docs/build/. )
71 - distutils-r1_python_install_all
72 -}
73
74 diff --git a/dev-python/rope/rope-0.22.0.ebuild b/dev-python/rope/rope-0.22.0.ebuild
75 deleted file mode 100644
76 index 942d69b834a9..000000000000
77 --- a/dev-python/rope/rope-0.22.0.ebuild
78 +++ /dev/null
79 @@ -1,41 +0,0 @@
80 -# Copyright 1999-2021 Gentoo Authors
81 -# Distributed under the terms of the GNU General Public License v2
82 -
83 -EAPI=8
84 -
85 -PYTHON_COMPAT=( python3_{8..10} )
86 -inherit distutils-r1
87 -
88 -DESCRIPTION="Python refactoring library"
89 -HOMEPAGE="https://github.com/python-rope/rope"
90 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
91 -
92 -LICENSE="LGPL-3+"
93 -SLOT="0"
94 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
95 -IUSE="doc"
96 -
97 -# Dependency for docbuild documentation which is not noted in
98 -# setup.py, using standard docutils builds docs successfully.
99 -BDEPEND="
100 - doc? ( dev-python/docutils[${PYTHON_USEDEP}] )
101 - test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
102 -
103 -distutils_enable_tests pytest
104 -
105 -python_compile_all() {
106 - if use doc; then
107 - pushd docs > /dev/null || die
108 - mkdir build || die
109 - local i
110 - for i in ./*.rst; do
111 - rst2html.py $i > ./build/${i/rst/html} || die
112 - done
113 - popd > /dev/null || die
114 - fi
115 -}
116 -
117 -python_install_all() {
118 - use doc && local HTML_DOCS=( docs/build/. )
119 - distutils-r1_python_install_all
120 -}