Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bpython/
Date: Thu, 04 Apr 2019 12:30:40
Message-Id: 1554381010.10c376829e9db8a9f6ea971dfb44e9573570b325.grozin@gentoo
1 commit: 10c376829e9db8a9f6ea971dfb44e9573570b325
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 4 12:29:41 2019 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 4 12:30:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c37682
7
8 dev-python/bpython: cleaning old
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 dev-python/bpython/Manifest | 2 --
14 dev-python/bpython/bpython-0.16-r1.ebuild | 55 -------------------------------
15 dev-python/bpython/bpython-0.16.ebuild | 55 -------------------------------
16 dev-python/bpython/bpython-0.17.ebuild | 55 -------------------------------
17 4 files changed, 167 deletions(-)
18
19 diff --git a/dev-python/bpython/Manifest b/dev-python/bpython/Manifest
20 index 55bb645faa6..7746ce02c60 100644
21 --- a/dev-python/bpython/Manifest
22 +++ b/dev-python/bpython/Manifest
23 @@ -1,3 +1 @@
24 -DIST bpython-0.16.tar.gz 201898 BLAKE2B 907f6a506d2b52db01e7b84c615574a7daad36f630646a345c963e432cc394330339390b6afc2585845b19d6c00d9c0b95e06b9d3b0fe85fe20daad3f5cf208a SHA512 1173d720aa679e4a6079c7febd36abbffa901604c99c6d1ce1e940a8fbcf8a4ba7bc526de0ef5290e3859a4384d1cd5cbef62fd9f056ddcb545b64d69d103a5b
25 DIST bpython-0.17.1.tar.gz 213638 BLAKE2B 42530a38f8cf714a0415957a46374b83ad14dfab89a76317507763c2f83b3dbc8f71c7cc967ec353fabd38b6631130d34df99c0d53f3728fa2390d4a6f64b25d SHA512 5b5e861646df90510db75520dff9533b71501d35b7af1d152adf2c929b171fa6a2b1c0a6b7eda0311f9315703db161c6a78698a6cd434e5321464d6d1c033e4e
26 -DIST bpython-0.17.tar.gz 214230 BLAKE2B dc26de037eb5698c04afb74472fe9483e1398f4f40b7da21520f2e7e2ba6e510bcbf200938d520d95b976a6fbeb31af7b1b1f828a022835edbe40d381c82797d SHA512 17c25f4ed69eb7cff27ba0a488434623a7105c60bbf1e6f608c91babf240741ab7a7097ad347f897cd5f39f2fedb944fd69d8dbfbc66da6b910e1a14ace6fd1f
27
28 diff --git a/dev-python/bpython/bpython-0.16-r1.ebuild b/dev-python/bpython/bpython-0.16-r1.ebuild
29 deleted file mode 100644
30 index 70407a76fcc..00000000000
31 --- a/dev-python/bpython/bpython-0.16-r1.ebuild
32 +++ /dev/null
33 @@ -1,55 +0,0 @@
34 -# Copyright 1999-2018 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=5
38 -
39 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
44 -HOMEPAGE="https://www.bpython-interpreter.org/ https://github.com/bpython/bpython https://pypi.org/project/bpython/"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="doc test"
51 -
52 -RDEPEND="
53 - >=dev-python/curtsies-0.2.11[${PYTHON_USEDEP}]
54 - dev-python/greenlet[${PYTHON_USEDEP}]
55 - dev-python/jedi[${PYTHON_USEDEP}]
56 - dev-python/pygments[${PYTHON_USEDEP}]
57 - dev-python/requests[${PYTHON_USEDEP}]
58 - dev-python/setuptools[${PYTHON_USEDEP}]
59 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
60 - dev-python/urwid[${PYTHON_USEDEP}]
61 - dev-python/watchdog[${PYTHON_USEDEP}]
62 - "
63 -DEPEND="${RDEPEND}
64 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
65 - test? ( dev-python/mock[${PYTHON_USEDEP}] )"
66 -
67 -DOCS=( AUTHORS CHANGELOG sample.theme light.theme )
68 -
69 -# Req'd for clean build by each impl
70 -DISTUTILS_IN_SOURCE_BUILD=1
71 -
72 -python_compile_all() {
73 - if use doc; then
74 - sphinx-build -b html -c doc/sphinx/source/ \
75 - doc/sphinx/source/ doc/sphinx/source/html || die "docs build failed"
76 - fi
77 -}
78 -
79 -python_test() {
80 - pushd build/lib > /dev/null
81 - "${PYTHON}" -m unittest discover || die
82 - popd > /dev/null
83 -}
84 -
85 -python_install_all() {
86 - use doc && local HTML_DOCS=( doc/sphinx/source/html/. )
87 - distutils-r1_python_install_all
88 -}
89
90 diff --git a/dev-python/bpython/bpython-0.16.ebuild b/dev-python/bpython/bpython-0.16.ebuild
91 deleted file mode 100644
92 index 35036333262..00000000000
93 --- a/dev-python/bpython/bpython-0.16.ebuild
94 +++ /dev/null
95 @@ -1,55 +0,0 @@
96 -# Copyright 1999-2018 Gentoo Foundation
97 -# Distributed under the terms of the GNU General Public License v2
98 -
99 -EAPI=5
100 -
101 -PYTHON_COMPAT=( python2_7 python3_{4,5} )
102 -
103 -inherit distutils-r1
104 -
105 -DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
106 -HOMEPAGE="https://www.bpython-interpreter.org/ https://github.com/bpython/bpython https://pypi.org/project/bpython/"
107 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
108 -
109 -LICENSE="MIT"
110 -SLOT="0"
111 -KEYWORDS="amd64 x86"
112 -IUSE="doc test"
113 -
114 -RDEPEND="
115 - >=dev-python/curtsies-0.2.10[${PYTHON_USEDEP}]
116 - dev-python/greenlet[${PYTHON_USEDEP}]
117 - dev-python/jedi[${PYTHON_USEDEP}]
118 - dev-python/pygments[${PYTHON_USEDEP}]
119 - dev-python/requests[${PYTHON_USEDEP}]
120 - dev-python/setuptools[${PYTHON_USEDEP}]
121 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
122 - dev-python/urwid[${PYTHON_USEDEP}]
123 - dev-python/watchdog[${PYTHON_USEDEP}]
124 - "
125 -DEPEND="${RDEPEND}
126 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
127 - test? ( dev-python/mock[${PYTHON_USEDEP}] )"
128 -
129 -DOCS=( AUTHORS CHANGELOG sample.theme light.theme )
130 -
131 -# Req'd for clean build by each impl
132 -DISTUTILS_IN_SOURCE_BUILD=1
133 -
134 -python_compile_all() {
135 - if use doc; then
136 - sphinx-build -b html -c doc/sphinx/source/ \
137 - doc/sphinx/source/ doc/sphinx/source/html || die "docs build failed"
138 - fi
139 -}
140 -
141 -python_test() {
142 - pushd build/lib > /dev/null
143 - "${PYTHON}" -m unittest discover || die
144 - popd > /dev/null
145 -}
146 -
147 -python_install_all() {
148 - use doc && local HTML_DOCS=( doc/sphinx/source/html/. )
149 - distutils-r1_python_install_all
150 -}
151
152 diff --git a/dev-python/bpython/bpython-0.17.ebuild b/dev-python/bpython/bpython-0.17.ebuild
153 deleted file mode 100644
154 index 5c37145681c..00000000000
155 --- a/dev-python/bpython/bpython-0.17.ebuild
156 +++ /dev/null
157 @@ -1,55 +0,0 @@
158 -# Copyright 1999-2018 Gentoo Foundation
159 -# Distributed under the terms of the GNU General Public License v2
160 -
161 -EAPI=6
162 -
163 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
164 -
165 -inherit distutils-r1
166 -
167 -DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
168 -HOMEPAGE="https://www.bpython-interpreter.org/ https://github.com/bpython/bpython https://pypi.org/project/bpython/"
169 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
170 -
171 -LICENSE="MIT"
172 -SLOT="0"
173 -KEYWORDS="~amd64 ~x86"
174 -IUSE="doc test"
175 -
176 -RDEPEND="
177 - >=dev-python/curtsies-0.2.11[${PYTHON_USEDEP}]
178 - dev-python/greenlet[${PYTHON_USEDEP}]
179 - dev-python/jedi[${PYTHON_USEDEP}]
180 - dev-python/pygments[${PYTHON_USEDEP}]
181 - dev-python/requests[${PYTHON_USEDEP}]
182 - dev-python/setuptools[${PYTHON_USEDEP}]
183 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
184 - dev-python/urwid[${PYTHON_USEDEP}]
185 - dev-python/watchdog[${PYTHON_USEDEP}]
186 - "
187 -DEPEND="${RDEPEND}
188 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
189 - test? ( dev-python/mock[${PYTHON_USEDEP}] )"
190 -
191 -DOCS=( AUTHORS CHANGELOG sample.theme light.theme )
192 -
193 -# Req'd for clean build by each impl
194 -DISTUTILS_IN_SOURCE_BUILD=1
195 -
196 -python_compile_all() {
197 - if use doc; then
198 - sphinx-build -b html -c doc/sphinx/source/ \
199 - doc/sphinx/source/ doc/sphinx/source/html || die "docs build failed"
200 - fi
201 -}
202 -
203 -python_test() {
204 - pushd build/lib > /dev/null
205 - "${PYTHON}" -m unittest discover || die
206 - popd > /dev/null
207 -}
208 -
209 -python_install_all() {
210 - use doc && local HTML_DOCS=( doc/sphinx/source/html/. )
211 - distutils-r1_python_install_all
212 -}