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 8B1E5138359 for ; Wed, 2 Sep 2020 09:12:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03ED5E09DD; Wed, 2 Sep 2020 09:12:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DA402E09DC for ; Wed, 2 Sep 2020 09:12:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0FF92340E5C for ; Wed, 2 Sep 2020 09:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C3C1349 for ; Wed, 2 Sep 2020 09:12:07 +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: <1599037913.1f88538f7d911e1f90d3695ba17f6bc7c938f76b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/widgetsnbextension/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/widgetsnbextension/widgetsnbextension-3.5.1-r1.ebuild X-VCS-Directories: dev-python/widgetsnbextension/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1f88538f7d911e1f90d3695ba17f6bc7c938f76b X-VCS-Branch: master Date: Wed, 2 Sep 2020 09:12:07 +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: dea1ae03-50ac-4851-8243-6ff99590c737 X-Archives-Hash: fe4100f06106379b2b32bc00bdbc0bc8 commit: 1f88538f7d911e1f90d3695ba17f6bc7c938f76b Author: Michał Górny gentoo org> AuthorDate: Wed Sep 2 08:40:04 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 2 09:11:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f88538f dev-python/widgetsnbextension: Remove py3.6 in new rev due to ipython Signed-off-by: Michał Górny gentoo.org> .../widgetsnbextension-3.5.1-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-python/widgetsnbextension/widgetsnbextension-3.5.1-r1.ebuild b/dev-python/widgetsnbextension/widgetsnbextension-3.5.1-r1.ebuild new file mode 100644 index 00000000000..28147f8a530 --- /dev/null +++ b/dev-python/widgetsnbextension/widgetsnbextension-3.5.1-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="IPython HTML widgets for Jupyter" +HOMEPAGE="https://ipython.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="dev-python/notebook[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}"