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 1C761138359 for ; Wed, 2 Sep 2020 09:12:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF0C7E09D7; Wed, 2 Sep 2020 09:12:10 +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 C6F9CE09D7 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 D1EA6340E6D for ; Wed, 2 Sep 2020 09:12:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F70D342 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: <1599037908.e622261cd695b4ddbcb5f61f35c7e5aa68686eb7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipykernel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipykernel/ipykernel-5.3.4-r1.ebuild X-VCS-Directories: dev-python/ipykernel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e622261cd695b4ddbcb5f61f35c7e5aa68686eb7 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: b06da95e-7ecd-4919-bd9c-58ce4e6877e5 X-Archives-Hash: 3a5b7db837ad871b6691ce759c9e5b69 commit: e622261cd695b4ddbcb5f61f35c7e5aa68686eb7 Author: Michał Górny gentoo org> AuthorDate: Wed Sep 2 08:37:25 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 2 09:11:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e622261c dev-python/ipykernel: Remove py36 in new rev due to ipython Signed-off-by: Michał Górny gentoo.org> dev-python/ipykernel/ipykernel-5.3.4-r1.ebuild | 33 ++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/ipykernel/ipykernel-5.3.4-r1.ebuild b/dev-python/ipykernel/ipykernel-5.3.4-r1.ebuild new file mode 100644 index 00000000000..d8754af6f7c --- /dev/null +++ b/dev-python/ipykernel/ipykernel-5.3.4-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="IPython Kernel for Jupyter" +HOMEPAGE="https://github.com/ipython/ipykernel" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/ipython-6[${PYTHON_USEDEP}] + dev-python/jupyter_client[${PYTHON_USEDEP}] + >=dev-python/jupyter_core-4.6[${PYTHON_USEDEP}] + >=dev-python/traitlets-4.1.0[${PYTHON_USEDEP}] + >=www-servers/tornado-4.0[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/nose_warnings_filters[${PYTHON_USEDEP}] + dev-python/flaky[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest