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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D913D15808B for ; Sat, 26 Feb 2022 12:17:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F77DE0894; Sat, 26 Feb 2022 12:17:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9C96E0894 for ; Sat, 26 Feb 2022 12:17:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A642F343090 for ; Sat, 26 Feb 2022 12:17:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDE592F5 for ; Sat, 26 Feb 2022 12:17:44 +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: <1645877861.16c0ec578be4810a2aae44ae8f81d3a56a3d6c72.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nbsphinx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nbsphinx/nbsphinx-0.8.8-r1.ebuild X-VCS-Directories: dev-python/nbsphinx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 16c0ec578be4810a2aae44ae8f81d3a56a3d6c72 X-VCS-Branch: master Date: Sat, 26 Feb 2022 12:17:44 +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: 63ee32b8-2621-480f-9ada-b69d2aa80edf X-Archives-Hash: 7b17e03ba6c83c06faf552e0fc32ede5 commit: 16c0ec578be4810a2aae44ae8f81d3a56a3d6c72 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 26 12:13:24 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 26 12:17:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16c0ec57 dev-python/nbsphinx: Migrate to PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/nbsphinx/nbsphinx-0.8.8-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-python/nbsphinx/nbsphinx-0.8.8-r1.ebuild b/dev-python/nbsphinx/nbsphinx-0.8.8-r1.ebuild new file mode 100644 index 000000000000..841a5816068f --- /dev/null +++ b/dev-python/nbsphinx/nbsphinx-0.8.8-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +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}] +"