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 D27BE138359 for ; Fri, 11 Sep 2020 07:17:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84D73E0974; Fri, 11 Sep 2020 07:17:28 +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 68609E0974 for ; Fri, 11 Sep 2020 07:17:28 +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 5E49D340D6F for ; Fri, 11 Sep 2020 07:17:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 926B1360 for ; Fri, 11 Sep 2020 07:17:24 +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: <1599808639.bd85d2461541f7e72c0d3ffa510ce9833b6f015d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nbclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nbclient/Manifest dev-python/nbclient/metadata.xml dev-python/nbclient/nbclient-0.5.0.ebuild X-VCS-Directories: dev-python/nbclient/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd85d2461541f7e72c0d3ffa510ce9833b6f015d X-VCS-Branch: master Date: Fri, 11 Sep 2020 07:17:24 +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: f48d9ff9-b195-48f9-83b1-c47b99e95bfd X-Archives-Hash: 01f9a9342bf12ba655912528d59db519 commit: bd85d2461541f7e72c0d3ffa510ce9833b6f015d Author: Sam James gentoo org> AuthorDate: Fri Sep 11 00:51:19 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 11 07:17:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd85d246 dev-python/nbclient: new package New dependency of dev-python/nbconvert. Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> Signed-off-by: Michał Górny gentoo.org> dev-python/nbclient/Manifest | 1 + dev-python/nbclient/metadata.xml | 13 +++++++++++ dev-python/nbclient/nbclient-0.5.0.ebuild | 39 +++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) diff --git a/dev-python/nbclient/Manifest b/dev-python/nbclient/Manifest new file mode 100644 index 00000000000..1862efb5175 --- /dev/null +++ b/dev-python/nbclient/Manifest @@ -0,0 +1 @@ +DIST nbclient-0.5.0.gh.tar.gz 68957 BLAKE2B bb041b98ffa38fbafc3e8dd1b21b56b3cdf4eec0ee435e118baa063d13a4a2c13d49e17591bb1365a31ed4dbf6b19732f225402de6fc15fcbbd73b73db2016df SHA512 0633b1237d545be422626758993309e252c34ca16370203476244e2c98c518deaa5cb99987a8282aecc18e6ef1fdb4a4b9b76bc4fd62affa5e3d2fd31175e95a diff --git a/dev-python/nbclient/metadata.xml b/dev-python/nbclient/metadata.xml new file mode 100644 index 00000000000..f4e41e36ad7 --- /dev/null +++ b/dev-python/nbclient/metadata.xml @@ -0,0 +1,13 @@ + + + + + python@gentoo.org + Python + + + + nbclient + jupyter/nbclient + + diff --git a/dev-python/nbclient/nbclient-0.5.0.ebuild b/dev-python/nbclient/nbclient-0.5.0.ebuild new file mode 100644 index 00000000000..0f4853ee4e0 --- /dev/null +++ b/dev-python/nbclient/nbclient-0.5.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="A client library for executing Jupyter notebooks" +HOMEPAGE=" + https://nbclient.readthedocs.io/en/latest/ + https://github.com/jupyter/nbclient/ + https://pypi.org/project/nbclient/" +SRC_URI=" + https://github.com/jupyter/nbclient/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/async_generator[${PYTHON_USEDEP}] + >=dev-python/jupyter_client-6.1.5[${PYTHON_USEDEP}] + >=dev-python/nbformat-5.0[${PYTHON_USEDEP}] + dev-python/nest_asyncio[${PYTHON_USEDEP}] + >=dev-python/traitlets-4.2[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/ipython[${PYTHON_USEDEP}] + dev-python/ipykernel[${PYTHON_USEDEP}] + dev-python/ipywidgets[${PYTHON_USEDEP}] + dev-python/xmltodict[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest