From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 664C2138351 for ; Mon, 4 May 2020 11:13:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E931E0A43; Mon, 4 May 2020 11:13:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63743E09F0 for ; Mon, 4 May 2020 11:13:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D01234F552 for ; Mon, 4 May 2020 11:13:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F86321E for ; Mon, 4 May 2020 11:13:01 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1588590765.ab8edf4d7690c65956b7e40047adcdbb3974588f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipywidgets/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipywidgets/ipywidgets-7.4.2.ebuild X-VCS-Directories: dev-python/ipywidgets/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ab8edf4d7690c65956b7e40047adcdbb3974588f X-VCS-Branch: master Date: Mon, 4 May 2020 11:13:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3f74ee07-31a8-4d8b-a87d-4cfc91312c58 X-Archives-Hash: b439d9e6f66182178c92afdbaf24d21d commit: ab8edf4d7690c65956b7e40047adcdbb3974588f Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:12:45 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:12:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8edf4d dev-python/ipywidgets: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/ipywidgets/ipywidgets-7.4.2.ebuild | 36 --------------------------- 1 file changed, 36 deletions(-) diff --git a/dev-python/ipywidgets/ipywidgets-7.4.2.ebuild b/dev-python/ipywidgets/ipywidgets-7.4.2.ebuild deleted file mode 100644 index 36d3ed75561..00000000000 --- a/dev-python/ipywidgets/ipywidgets-7.4.2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="IPython HTML widgets for Jupyter" -HOMEPAGE="https://ipywidgets.readthedocs.io/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/ipykernel-4.5.1[${PYTHON_USEDEP}] - >=dev-python/nbformat-4.2.0[${PYTHON_USEDEP}] - >=dev-python/traitlets-4.3.1[${PYTHON_USEDEP}] - >=dev-python/widgetsnbextension-3.0.0[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] - ) -" - -python_test() { - nosetests --with-coverage --cover-package=ipywidgets ipywidgets || die -}