commit:     596e0aa0bce5c5e8aba68201d202a744170aadb1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  7 14:44:41 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov  7 15:19:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596e0aa0

dev-python/nbconvert: Bump to 7.11.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/nbconvert/Manifest                |  1 +
 dev-python/nbconvert/nbconvert-7.11.0.ebuild | 82 ++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

diff --git a/dev-python/nbconvert/Manifest b/dev-python/nbconvert/Manifest
index a31e44668702..1f8129624bb3 100644
--- a/dev-python/nbconvert/Manifest
+++ b/dev-python/nbconvert/Manifest
@@ -1,2 +1,3 @@
 DIST nbconvert-7.10.0.tar.gz 850541 BLAKE2B 
ab0fbe4ab21c123dacfca5780c108b158c09db1046c999ccf07e0f3621e9d50ebf900df5df9b531aae76b53f283179fcb659a37d5a72c7713e37af48b10ed300
 SHA512 
b04bd5a20b9284fbab66e6bd8aa165d07e2a2dba51c478e421eae67ec9ac139e2bbc5bc1eec15b7ad23757125747016abc8de0de905794af142523f1ee0683c4
+DIST nbconvert-7.11.0.tar.gz 851158 BLAKE2B 
0506acda6a645ffba6771f600c63f0c37705481021b716a2b5ec61b49f2b9da490beac7a1fec67718d091d7bfcf82d7f07b68e207573ca5c08271fc502214eb1
 SHA512 
097e740413520b943afea11e2b797fbb163e1c34b79932597ec1c5a2c64bbb9342e4b3e1f0ab7e4d6dbdaa736d747650d8e0e50da0e4db5398151da8c3b57c59
 DIST nbconvert-7.9.2.tar.gz 850333 BLAKE2B 
d2d2b6f04e879a78151e606c24b03dd4655b37cc13a1302d7d7a8fd880d9728f0a144f25aefbfaa4b63d4a510811ee6af6d92cf9506d2c1718d7b319cb7ef745
 SHA512 
43ed36aae813f77bfd50aebfed4c650e552fc5a438e607b924aa2907f23c53c61ec3ddff1051d77e8b0ad968fcef17e6b010b1e7876b17b380d2e12cfeecf631

diff --git a/dev-python/nbconvert/nbconvert-7.11.0.ebuild 
b/dev-python/nbconvert/nbconvert-7.11.0.ebuild
new file mode 100644
index 000000000000..03f935b8be1a
--- /dev/null
+++ b/dev-python/nbconvert/nbconvert-7.11.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi virtualx
+
+DESCRIPTION="Converting Jupyter Notebooks"
+HOMEPAGE="
+       https://nbconvert.readthedocs.io/
+       https://github.com/jupyter/nbconvert/
+       https://pypi.org/project/nbconvert/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+       dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+       dev-python/bleach[${PYTHON_USEDEP}]
+       dev-python/defusedxml[${PYTHON_USEDEP}]
+       >=dev-python/jinja-3.0[${PYTHON_USEDEP}]
+       >=dev-python/jupyter-core-4.7[${PYTHON_USEDEP}]
+       dev-python/jupyterlab-pygments[${PYTHON_USEDEP}]
+       >=dev-python/markupsafe-2.0[${PYTHON_USEDEP}]
+       <dev-python/mistune-4[${PYTHON_USEDEP}]
+       >=dev-python/nbclient-0.5.0[${PYTHON_USEDEP}]
+       >=dev-python/nbformat-5.7[${PYTHON_USEDEP}]
+       dev-python/packaging[${PYTHON_USEDEP}]
+       >=dev-python/pandocfilters-1.4.1[${PYTHON_USEDEP}]
+       >=dev-python/pygments-2.4.1[${PYTHON_USEDEP}]
+       dev-python/tinycss2[${PYTHON_USEDEP}]
+       >=dev-python/traitlets-5.1.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       test? (
+               dev-python/ipykernel[${PYTHON_USEDEP}]
+               >=dev-python/ipywidgets-7[${PYTHON_USEDEP}]
+               dev-python/flaky[${PYTHON_USEDEP}]
+       )
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+       mkdir -p share/templates/classic/static || die
+       # tries to refetch stuff even if it's already present
+       sed -e 's:css = .*:raise PermissionError("You shall not fetch!"):' \
+               -i hatch_build.py || die
+       distutils-r1_src_prepare
+}
+
+src_test() {
+       virtx distutils-r1_src_test
+}
+
+python_test() {
+       local EPYTEST_DESELECT=(
+               # TODO
+               
tests/test_nbconvertapp.py::TestNbConvertApp::test_convert_full_qualified_name
+               
tests/test_nbconvertapp.py::TestNbConvertApp::test_post_processor
+               # crazy qtweb* stuff, perhaps permissions
+               tests/exporters/test_qtpdf.py::TestQtPDFExporter::test_export
+               tests/exporters/test_qtpng.py::TestQtPNGExporter::test_export
+       )
+
+       # virtx implies nonfatal, make it explicit to avoid confusion
+       nonfatal epytest || die
+}
+
+pkg_postinst() {
+       if ! has_version virtual/pandoc; then
+               einfo "Pandoc is required for converting to formats other than 
Python,"
+               einfo "HTML, and Markdown. If you need this functionality, 
install"
+               einfo "app-text/pandoc or app-text/pandoc-bin."
+       fi
+}

Reply via email to