commit:     1ffa78e22e80a7c71c379cf5cbcc2987e4ac2f98
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 07:41:21 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 07:47:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffa78e2

dev-python/notebook: Bump to 6.4.11

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

 dev-python/notebook/Manifest                       |  1 +
 .../files/notebook-6.4.11-no-mathjax.patch         | 42 ++++++++++
 dev-python/notebook/notebook-6.4.11.ebuild         | 97 ++++++++++++++++++++++
 3 files changed, 140 insertions(+)

diff --git a/dev-python/notebook/Manifest b/dev-python/notebook/Manifest
index 0030ef2ebd60..99a3ce24e3ef 100644
--- a/dev-python/notebook/Manifest
+++ b/dev-python/notebook/Manifest
@@ -1 +1,2 @@
 DIST notebook-6.4.10.tar.gz 14357395 BLAKE2B 
32415b7d303b18c380ea6bab398246307a2b218ad52cdeb9a08db6f2f5f100515f36407358de094144f8da558762f7acf62505edbd9cf9e757fad1ac299f2431
 SHA512 
78a186c9907006d1fec1cea99e4c0f4181f673bf4dd383ed934cd2eb491cfd247db240fcec6a35a2967fe12b121863bbfaad0c4a8270618d03cd746f4688743b
+DIST notebook-6.4.11.tar.gz 14373938 BLAKE2B 
3f6aa2f86c205dec6b66a8eb3a6d3509f8ba0f80d17f7123bfbede41b7ff6d986271a8eeb32916fdf71c56105b0571192c71740836d34baf88b52a35ea0c4a59
 SHA512 
beabc84e3d528b0786363c705062717378e73aa824ffe6ce8706f6ed765744f40f651bd4e0910d6a0302990f9efcabea1af51c6894106c49869761bcf217084a

diff --git a/dev-python/notebook/files/notebook-6.4.11-no-mathjax.patch 
b/dev-python/notebook/files/notebook-6.4.11-no-mathjax.patch
new file mode 100644
index 000000000000..85d326b9dfde
--- /dev/null
+++ b/dev-python/notebook/files/notebook-6.4.11-no-mathjax.patch
@@ -0,0 +1,42 @@
+diff -dupr notebook-6.4.11.orig/setupbase.py notebook-6.4.11/setupbase.py
+--- notebook-6.4.11.orig/setupbase.py  2022-04-20 09:37:45.964925905 +0200
++++ notebook-6.4.11/setupbase.py       2022-04-20 09:40:32.624674341 +0200
+@@ -167,38 +167,6 @@ def find_package_data():
+             if f.endswith(('.js', '.css')):
+                 static_data.append(pjoin(parent, f))
+ 
+-    # Trim mathjax
+-    mj = lambda *path: pjoin(components, 'MathJax', *path)
+-    static_data.extend([
+-        mj('MathJax.js'),
+-        mj('config', 'TeX-AMS-MML_HTMLorMML-full.js'),
+-        mj('config', 'Safe.js'),
+-    ])
+-
+-    trees = []
+-    mj_out = mj('jax', 'output')
+-
+-    if os.path.exists(mj_out):
+-        for output in os.listdir(mj_out):
+-            path = pjoin(mj_out, output)
+-            static_data.append(pjoin(path, '*.js'))
+-            autoload = pjoin(path, 'autoload')
+-            if os.path.isdir(autoload):
+-                trees.append(autoload)
+-
+-    for tree in trees + [
+-        mj('localization'), # limit to en?
+-        mj('fonts', 'HTML-CSS', 'STIX-Web', 'woff'),
+-        mj('extensions'),
+-        mj('jax', 'input', 'TeX'),
+-        mj('jax', 'output', 'HTML-CSS', 'fonts', 'STIX-Web'),
+-        mj('jax', 'output', 'SVG', 'fonts', 'STIX-Web'),
+-        mj('jax', 'element', 'mml'),
+-    ]:
+-        for parent, dirs, files in os.walk(tree):
+-            for f in files:
+-                static_data.append(pjoin(parent, f))
+-
+     os.chdir(os.path.join('tests',))
+     js_tests = glob('*.js') + glob('*/*.js')
+ 

diff --git a/dev-python/notebook/notebook-6.4.11.ebuild 
b/dev-python/notebook/notebook-6.4.11.ebuild
new file mode 100644
index 000000000000..05106aece83b
--- /dev/null
+++ b/dev-python/notebook/notebook-6.4.11.ebuild
@@ -0,0 +1,97 @@
+# 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} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 xdg-utils
+
+DESCRIPTION="Jupyter Interactive Notebook"
+HOMEPAGE="https://jupyter.org";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+       >=dev-libs/mathjax-2.4
+       dev-python/argon2-cffi[${PYTHON_USEDEP}]
+       dev-python/jinja[${PYTHON_USEDEP}]
+       >=dev-python/terminado-0.8.3[${PYTHON_USEDEP}]
+       >=www-servers/tornado-6.0[${PYTHON_USEDEP}]
+       dev-python/ipython_genutils[${PYTHON_USEDEP}]
+       >=dev-python/traitlets-4.2.1[${PYTHON_USEDEP}]
+       >=dev-python/jupyter_core-4.6.1[${PYTHON_USEDEP}]
+       >=dev-python/pyzmq-17[${PYTHON_USEDEP}]
+       >=dev-python/jupyter_client-5.3.4[${PYTHON_USEDEP}]
+       dev-python/nbformat[${PYTHON_USEDEP}]
+       >=dev-python/nbconvert-4.2.0[${PYTHON_USEDEP}]
+       >=dev-python/nest_asyncio-1.5[${PYTHON_USEDEP}]
+       dev-python/ipykernel[${PYTHON_USEDEP}]
+       >=dev-python/send2trash-1.8.0[${PYTHON_USEDEP}]
+       dev-python/prometheus_client[${PYTHON_USEDEP}]"
+
+BDEPEND="
+       >=dev-python/jupyter_packaging-0.9[${PYTHON_USEDEP}]
+       test? (
+               dev-python/requests[${PYTHON_USEDEP}]
+               dev-python/requests-unixsocket[${PYTHON_USEDEP}]
+       )
+"
+
+PATCHES=(
+       "${FILESDIR}"/notebook-6.4.11-no-mathjax.patch
+)
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+       # disable bundled mathjax
+       sed -i 's/^.*MathJax.*$//' bower.json || die
+
+       distutils-r1_python_prepare_all
+}
+
+EPYTEST_DESELECT=(
+       # trash doesn't seem to work for us
+       
notebook/services/contents/tests/test_contents_api.py::APITest::test_checkpoints_follow_file
+       
notebook/services/contents/tests/test_contents_api.py::APITest::test_delete
+       
notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_checkpoints_follow_file
+       
notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_delete
+       
notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_delete_dirs
+       
notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_delete_non_empty_dir
+       
notebook/services/contents/tests/test_manager.py::TestContentsManager::test_delete
+       
notebook/services/contents/tests/test_manager.py::TestContentsManagerNoAtomic::test_delete
+       # TODO
+       
notebook/services/kernels/tests/test_kernels_api.py::KernelAPITest::test_connections
+       
notebook/services/kernels/tests/test_kernels_api.py::AsyncKernelAPITest::test_connections
+       
notebook/services/kernels/tests/test_kernels_api.py::KernelCullingTest::test_culling
+       
notebook/services/nbconvert/tests/test_nbconvert_api.py::APITest::test_list_formats
+)
+
+EPYTEST_IGNORE=(
+       # selenium tests require geckodriver
+       notebook/tests/selenium
+)
+
+python_install() {
+       distutils-r1_python_install
+
+       ln -sf \
+               "${EPREFIX}/usr/share/mathjax" \
+               "${D}$(python_get_sitedir)/notebook/static/components/MathJax" 
|| die
+}
+
+pkg_postinst() {
+       xdg_desktop_database_update
+       xdg_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_desktop_database_update
+       xdg_icon_cache_update
+}

Reply via email to