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/ipywidgets/
Date: Mon, 04 May 2020 11:13:07
Message-Id: 1588590765.ab8edf4d7690c65956b7e40047adcdbb3974588f.mgorny@gentoo
1 commit: ab8edf4d7690c65956b7e40047adcdbb3974588f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:12:45 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:12:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8edf4d
7
8 dev-python/ipywidgets: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ipywidgets/ipywidgets-7.4.2.ebuild | 36 ---------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-python/ipywidgets/ipywidgets-7.4.2.ebuild b/dev-python/ipywidgets/ipywidgets-7.4.2.ebuild
16 deleted file mode 100644
17 index 36d3ed75561..00000000000
18 --- a/dev-python/ipywidgets/ipywidgets-7.4.2.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_{6,7} )
27 -PYTHON_REQ_USE="threads(+)"
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="IPython HTML widgets for Jupyter"
32 -HOMEPAGE="https://ipywidgets.readthedocs.io/"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
38 -IUSE="test"
39 -RESTRICT="!test? ( test )"
40 -
41 -RDEPEND="
42 - >=dev-python/ipykernel-4.5.1[${PYTHON_USEDEP}]
43 - >=dev-python/nbformat-4.2.0[${PYTHON_USEDEP}]
44 - >=dev-python/traitlets-4.3.1[${PYTHON_USEDEP}]
45 - >=dev-python/widgetsnbextension-3.0.0[${PYTHON_USEDEP}]
46 -"
47 -DEPEND="${RDEPEND}
48 - test? (
49 - dev-python/nose[${PYTHON_USEDEP}]
50 - dev-python/coverage[${PYTHON_USEDEP}]
51 - )
52 -"
53 -
54 -python_test() {
55 - nosetests --with-coverage --cover-package=ipywidgets ipywidgets || die
56 -}