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/jupyter_console/
Date: Thu, 30 Jul 2020 20:41:15
Message-Id: 1596141648.85f3662c7ab309332e98518f52842594c75c532e.mgorny@gentoo
1 commit: 85f3662c7ab309332e98518f52842594c75c532e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:35:59 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:40:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f3662c
7
8 dev-python/jupyter_console: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jupyter_console/Manifest | 1 -
13 .../jupyter_console/jupyter_console-6.0.0.ebuild | 53 ----------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/jupyter_console/Manifest b/dev-python/jupyter_console/Manifest
17 index 2e173379d35..c8e174ee38f 100644
18 --- a/dev-python/jupyter_console/Manifest
19 +++ b/dev-python/jupyter_console/Manifest
20 @@ -1,2 +1 @@
21 -DIST jupyter_console-6.0.0.tar.gz 27780 BLAKE2B da2b58461caa987bea0b323cedbc79ff24f31cb928602b8ae6dce1ed615008a8227d7a1bab47364e6d182cfd3bd6f548e355430efc505e7183a391ef26c08375 SHA512 27b333f439733c33062d3baa8b49ff673b10e22cb8c28c688ba604799838e899f93372bd2eaf4a94c97260d6dec043d6aef4421388d77e625b1ec43a3dedfa3f
22 DIST jupyter_console-6.1.0.tar.gz 28468 BLAKE2B 08ef158de6a0eb8fe741dac00b74e11f7e577b5097f54aa16c47ae9e39607231e19a1fcd0a96cbae41d41fad891fefdb532d0f66bc03aa66ff99a8d3ff3cb28c SHA512 abb5457a90d109457e91071cd8b592a14bec7ead75fd667d656f9180a457e39bf470877b2e17c81ff512d1cc69b62a8f700996492f6164eb05a1581db82abbf7
23
24 diff --git a/dev-python/jupyter_console/jupyter_console-6.0.0.ebuild b/dev-python/jupyter_console/jupyter_console-6.0.0.ebuild
25 deleted file mode 100644
26 index 3ce4cef073a..00000000000
27 --- a/dev-python/jupyter_console/jupyter_console-6.0.0.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_{6,7} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="A terminal-based console frontend for Jupyter kernels"
40 -HOMEPAGE="https://jupyter.org"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - dev-python/ipython[${PYTHON_USEDEP}]
51 - dev-python/ipykernel[${PYTHON_USEDEP}]
52 - dev-python/jupyter_client[${PYTHON_USEDEP}]
53 - >=dev-python/prompt_toolkit-1.0.0[${PYTHON_USEDEP}]
54 - dev-python/pygments[${PYTHON_USEDEP}]
55 - "
56 -DEPEND="${RDEPEND}
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - test? (
59 - dev-python/pexpect[${PYTHON_USEDEP}]
60 - >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
61 - )
62 - "
63 -
64 -python_prepare_all() {
65 - # Prevent un-needed download during build
66 - if use doc; then
67 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die
68 - fi
69 -
70 - distutils-r1_python_prepare_all
71 -}
72 -
73 -python_compile_all() {
74 - if use doc; then
75 - emake -C docs html
76 - HTML_DOCS=( docs/_build/html/. )
77 - fi
78 -}
79 -
80 -python_test() {
81 - nosetests --with-coverage --cover-package=jupyter_console jupyter_console || die
82 -}