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/bpython/
Date: Mon, 04 May 2020 10:23:56
Message-Id: 1588587827.5d7e67393c949fc1d50a29d91429d48b71030c93.mgorny@gentoo
1 commit: 5d7e67393c949fc1d50a29d91429d48b71030c93
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 10:22:09 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 10:23:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d7e6739
7
8 dev-python/bpython: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/bpython/bpython-0.18-r1.ebuild | 57 -------------------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/dev-python/bpython/bpython-0.18-r1.ebuild b/dev-python/bpython/bpython-0.18-r1.ebuild
16 deleted file mode 100644
17 index fa686ecb025..00000000000
18 --- a/dev-python/bpython/bpython-0.18-r1.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{6,7,8} )
27 -DISTUTILS_USE_SETUPTOOLS=rdepend
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
32 -HOMEPAGE="https://www.bpython-interpreter.org/ https://github.com/bpython/bpython https://pypi.org/project/bpython/"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~x86"
38 -IUSE="doc test"
39 -
40 -RDEPEND="
41 - >=dev-python/curtsies-0.2.11[${PYTHON_USEDEP}]
42 - dev-python/greenlet[${PYTHON_USEDEP}]
43 - dev-python/jedi[${PYTHON_USEDEP}]
44 - dev-python/pygments[${PYTHON_USEDEP}]
45 - dev-python/requests[${PYTHON_USEDEP}]
46 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
47 - dev-python/urwid[${PYTHON_USEDEP}]
48 - dev-python/watchdog[${PYTHON_USEDEP}]
49 - "
50 -DEPEND="${RDEPEND}
51 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
52 - test? ( dev-python/mock[${PYTHON_USEDEP}] )"
53 -
54 -DOCS=( AUTHORS CHANGELOG sample.theme light.theme )
55 -
56 -# Req'd for clean build by each impl
57 -DISTUTILS_IN_SOURCE_BUILD=1
58 -
59 -RESTRICT="test" #659110
60 -
61 -python_compile_all() {
62 - if use doc; then
63 - sphinx-build -b html -c doc/sphinx/source/ \
64 - doc/sphinx/source/ doc/sphinx/source/html || die "docs build failed"
65 - fi
66 -}
67 -
68 -python_test() {
69 - pushd build/lib > /dev/null
70 - "${PYTHON}" -m unittest discover || die
71 - popd > /dev/null
72 -}
73 -
74 -python_install_all() {
75 - use doc && local HTML_DOCS=( doc/sphinx/source/html/. )
76 - distutils-r1_python_install_all
77 -}