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 DB9AA1382C5 for ; Sat, 10 Apr 2021 08:04:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A310DE091D; Sat, 10 Apr 2021 08:04:29 +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 88473E091D for ; Sat, 10 Apr 2021 08:04:29 +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 7643A340D3A for ; Sat, 10 Apr 2021 08:04:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6873B6BD for ; Sat, 10 Apr 2021 08:04:25 +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: <1618041715.95ebddfe343cd914f6b4059ebaffa2877e1ea8c6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nbsphinx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nbsphinx/Manifest dev-python/nbsphinx/nbsphinx-0.8.3.ebuild X-VCS-Directories: dev-python/nbsphinx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 95ebddfe343cd914f6b4059ebaffa2877e1ea8c6 X-VCS-Branch: master Date: Sat, 10 Apr 2021 08:04:25 +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: c23674fa-c079-462a-83c9-1b7d5a547fdb X-Archives-Hash: 4cface1c57e4516e8a5d885d449d85c0 commit: 95ebddfe343cd914f6b4059ebaffa2877e1ea8c6 Author: Michał Górny gentoo org> AuthorDate: Sat Apr 10 07:56:36 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 10 08:01:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ebddfe dev-python/nbsphinx: Bump to 0.8.3 Signed-off-by: Michał Górny gentoo.org> dev-python/nbsphinx/Manifest | 1 + dev-python/nbsphinx/nbsphinx-0.8.3.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/nbsphinx/Manifest b/dev-python/nbsphinx/Manifest index 755f34fd8e1..b9db38fa940 100644 --- a/dev-python/nbsphinx/Manifest +++ b/dev-python/nbsphinx/Manifest @@ -1 +1,2 @@ DIST nbsphinx-0.8.2.tar.gz 135256 BLAKE2B 9e2f733df713f5285bdcd876d595e5268a193e07c9d3d85e84f315cc1f11250be4e36854c307b96c0e03ab1f64e573896ef387eeea874553f7ca60c51bcba746 SHA512 b474bdbe291c498f8c392c9c5877eac12d9242e4784f2c8621825ed74dc264be60c1bc1b8ae4ff40809c4eb2a65b04ac54e5369eba3c3c79c1ad6b0a4c711bc5 +DIST nbsphinx-0.8.3.tar.gz 135336 BLAKE2B e015c51ccc6ce8ff6a5233f32ca90be696e9c837e7a66b3581b34712afd439679bb301146cd0b8fab083a1f2e48c31930c790b759c8fcc4e2a07a4cd56c732bb SHA512 27b649243970d7a4daadf9283a6cdecfb2b6e9a05ced23c8a487a960af580bb1a6e45d812efaca75b7c09b1e76e3f8a9fc845dee409a84f7767c624765173119 diff --git a/dev-python/nbsphinx/nbsphinx-0.8.3.ebuild b/dev-python/nbsphinx/nbsphinx-0.8.3.ebuild new file mode 100644 index 00000000000..94b3df79908 --- /dev/null +++ b/dev-python/nbsphinx/nbsphinx-0.8.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Jupyter Notebook Tools for Sphinx" +HOMEPAGE="https://github.com/spatialaudio/nbsphinx/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/nbconvert[${PYTHON_USEDEP}] + dev-python/nbformat[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.8[${PYTHON_USEDEP}] + dev-python/traitlets[${PYTHON_USEDEP}]"