diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/jupyter-server | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/jupyter-server')
6 files changed, 0 insertions, 343 deletions
diff --git a/dev-python/jupyter-server/Manifest b/dev-python/jupyter-server/Manifest deleted file mode 100644 index eb73806c8f5c..000000000000 --- a/dev-python/jupyter-server/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST jupyter_server-2.17.0.tar.gz 731949 BLAKE2B e15b8e385f620549ce965a553a49f4606180fc782cd1617b4cc723a5a6443c2a0a7e3c19c9f00577afd125ea9f8e8a68e60eb42d2e73c09b69e0181f6fc8b790 SHA512 9eb386bee25e2fa28ef30a2d00178fcbe3a6ab0b3033c461863cfabb78433701fe7c856af27084e57d312d092610c7d50890637114c90c126e39b9f78bc15355 -DIST jupyter_server-2.18.2.tar.gz 753177 BLAKE2B 6b93d51e21c0f0c34e7df7bd930d0c238699f6edc0ba8c2be4dbaa80e900c9b8069f315fa0077441d1678859405ba7dbb6281fc29cced88067e6f04347cd1de0 SHA512 66fe709003a497d4cd3cee890dffdd0c9109b3c9fbfdc3fc54036ccc700414e6a9755bfdc845180b1255d06a8cf37eb467f905c90ad1dc8969e6912a909ba6ee -DIST jupyter_server-2.19.0.tar.gz 754561 BLAKE2B 1d7c52340fd86152aaea2fc08de49502bd893d58067d5da8e64f2261fc8348f961295b65fa27d44cc45401ddc1dccc7af921758f088b6dded80b5b4816e0522d SHA512 021be211c40541b84f0adbd04c31a8cf5e1a99ed0480d75bd5bb28ef5102e9a08652d0712cbfd5ba4126974d961818f1d9eb8b3a206870e171ed8285a658ae99 diff --git a/dev-python/jupyter-server/files/jupyter-server-2.17.0-pytest-rerunfailures.patch b/dev-python/jupyter-server/files/jupyter-server-2.17.0-pytest-rerunfailures.patch deleted file mode 100644 index b88aacc515b2..000000000000 --- a/dev-python/jupyter-server/files/jupyter-server-2.17.0-pytest-rerunfailures.patch +++ /dev/null @@ -1,113 +0,0 @@ -From 336adff91dfc7e592fc60e49b15a31ee67014832 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> -Date: Thu, 24 Jul 2025 11:41:20 +0200 -Subject: [PATCH] Replace `@flaky.flaky` decorate with pytest marker -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Use the `@pytest.mark.flaky` marker in place of the `@flaky.flaky` -decorator, to modernize the code and improve compatibility with other -plugins providing the feature such as `pytest-rerunfailures`. - -Signed-off-by: Michał Górny <mgorny@gentoo.org> ---- - tests/services/kernels/test_api.py | 3 +-- - tests/services/kernels/test_execution_state.py | 3 +-- - tests/services/sessions/test_api.py | 3 +-- - tests/test_terminal.py | 5 ++--- - 4 files changed, 5 insertions(+), 9 deletions(-) - -diff --git a/tests/services/kernels/test_api.py b/tests/services/kernels/test_api.py -index 60009e8978..8bea6acae1 100644 ---- a/tests/services/kernels/test_api.py -+++ b/tests/services/kernels/test_api.py -@@ -7,7 +7,6 @@ - import jupyter_client - import pytest - import tornado --from flaky import flaky - from jupyter_client.kernelspec import NATIVE_KERNEL_NAME - from tornado.httpclient import HTTPClientError - -@@ -257,7 +256,7 @@ async def test_kernel_handler_startup_error_pending( - await jp_ws_fetch("api", "kernels", kid, "channels") - - --@flaky -+@pytest.mark.flaky - @pytest.mark.timeout(TEST_TIMEOUT) - async def test_connection(jp_fetch, jp_ws_fetch, jp_http_port, jp_auth_header): - # Create kernel -diff --git a/tests/services/kernels/test_execution_state.py b/tests/services/kernels/test_execution_state.py -index 50155ec76f..7625a16608 100644 ---- a/tests/services/kernels/test_execution_state.py -+++ b/tests/services/kernels/test_execution_state.py -@@ -9,7 +9,6 @@ - - import jupyter_client - import pytest --from flaky import flaky - from tornado.httpclient import HTTPClientError - from traitlets.config import Config - -@@ -18,7 +17,7 @@ - MINIMUM_CONSISTENT_COUNT = 4 - - --@flaky -+@pytest.mark.flaky - async def test_execution_state(jp_fetch, jp_ws_fetch): - r = await jp_fetch("api", "kernels", method="POST", allow_nonstandard_methods=True) - kernel = json.loads(r.body.decode()) -diff --git a/tests/services/sessions/test_api.py b/tests/services/sessions/test_api.py -index a0502b544e..3a8ad5437b 100644 ---- a/tests/services/sessions/test_api.py -+++ b/tests/services/sessions/test_api.py -@@ -9,7 +9,6 @@ - import jupyter_client - import pytest - import tornado --from flaky import flaky - from jupyter_client.ioloop import AsyncIOLoopKernelManager - from nbformat import writes - from nbformat.v4 import new_notebook -@@ -505,7 +504,7 @@ async def test_modify_kernel_id(session_client, jp_fetch, jp_serverapp, session_ - assert kernel_list == [kernel] - - --@flaky -+@pytest.mark.flaky - @pytest.mark.timeout(TEST_TIMEOUT) - async def test_restart_kernel(session_client, jp_base_url, jp_fetch, jp_ws_fetch, session_is_ready): - # Create a session. -diff --git a/tests/test_terminal.py b/tests/test_terminal.py -index 8f35c7df60..d4e9464dd6 100644 ---- a/tests/test_terminal.py -+++ b/tests/test_terminal.py -@@ -7,7 +7,6 @@ - import warnings - - import pytest --from flaky import flaky # type:ignore[import-untyped] - from tornado.httpclient import HTTPClientError - from traitlets.config import Config - -@@ -230,7 +229,7 @@ async def test_terminal_create_with_bad_cwd(jp_fetch, jp_ws_fetch): - assert non_existing_path not in message_stdout - - --@flaky -+@pytest.mark.flaky - def test_culling_config(jp_server_config, jp_configurable_serverapp): - app = jp_configurable_serverapp() - terminal_mgr_config = app.config.ServerApp.TerminalManager -@@ -242,7 +241,7 @@ def test_culling_config(jp_server_config, jp_configurable_serverapp): - assert terminal_mgr_settings.cull_interval == CULL_INTERVAL - - --@flaky -+@pytest.mark.flaky - async def test_culling(jp_server_config, jp_fetch): - # POST request - resp = await jp_fetch( diff --git a/dev-python/jupyter-server/jupyter-server-2.17.0-r1.ebuild b/dev-python/jupyter-server/jupyter-server-2.17.0-r1.ebuild deleted file mode 100644 index b58bd8f1a9e7..000000000000 --- a/dev-python/jupyter-server/jupyter-server-2.17.0-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Core services, APIs, and REST endpoints to Jupyter web applications" -HOMEPAGE=" - https://jupyter.org/ - https://github.com/jupyter-server/jupyter_server/ - https://pypi.org/project/jupyter-server/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~s390 ~sparc x86" - -RDEPEND=" - >=dev-python/anyio-3.1.0[${PYTHON_USEDEP}] - >=dev-python/argon2-cffi-21.1[${PYTHON_USEDEP}] - >=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}] - >=dev-python/jupyter-client-7.4.4[${PYTHON_USEDEP}] - >=dev-python/jupyter-core-5.1.0[${PYTHON_USEDEP}] - >=dev-python/jupyter-server-terminals-0.4.4[${PYTHON_USEDEP}] - >=dev-python/jupyter-events-0.11.0[${PYTHON_USEDEP}] - >=dev-python/nbconvert-6.4.4[${PYTHON_USEDEP}] - >=dev-python/nbformat-5.3.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/overrides-5.0[${PYTHON_USEDEP}] - ' 3.11) - >=dev-python/packaging-22.0[${PYTHON_USEDEP}] - >=dev-python/prometheus-client-0.9[${PYTHON_USEDEP}] - >=dev-python/pyzmq-24[${PYTHON_USEDEP}] - >=dev-python/send2trash-1.8.2[${PYTHON_USEDEP}] - >=dev-python/terminado-0.8.3[${PYTHON_USEDEP}] - >=dev-python/tornado-6.2[${PYTHON_USEDEP}] - >=dev-python/traitlets-5.6.0[${PYTHON_USEDEP}] - >=dev-python/websocket-client-1.7[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}] - test? ( - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" - -EPYTEST_PLUGINS=( pytest-{console-scripts,jupyter,timeout,tornasync} ) -EPYTEST_RERUNS=5 -distutils_enable_tests pytest - -PATCHES=( - # https://github.com/jupyter-server/jupyter_server/pull/1544 - "${FILESDIR}/${P}-pytest-rerunfailures.patch" -) - -python_test() { - local EPYTEST_DESELECT=( - # This fails if your terminal is zsh (and maybe other non-bash as well?) - tests/test_terminal.py - # Fails because above is ignored - tests/auth/test_authorizer.py - # Fails with additional extensions installed - tests/extension/test_app.py::test_stop_extension - ) - - # FIXME: tests seem to be affected by previously installed version - epytest \ - -o tmp_path_retention_policy=all -} diff --git a/dev-python/jupyter-server/jupyter-server-2.18.2.ebuild b/dev-python/jupyter-server/jupyter-server-2.18.2.ebuild deleted file mode 100644 index 7b485879e0d6..000000000000 --- a/dev-python/jupyter-server/jupyter-server-2.18.2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Core services, APIs, and REST endpoints to Jupyter web applications" -HOMEPAGE=" - https://jupyter.org/ - https://github.com/jupyter-server/jupyter_server/ - https://pypi.org/project/jupyter-server/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - >=dev-python/anyio-3.1.0[${PYTHON_USEDEP}] - >=dev-python/argon2-cffi-21.1[${PYTHON_USEDEP}] - >=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}] - >=dev-python/jupyter-client-7.4.4[${PYTHON_USEDEP}] - >=dev-python/jupyter-core-5.1.0[${PYTHON_USEDEP}] - >=dev-python/jupyter-server-terminals-0.4.4[${PYTHON_USEDEP}] - >=dev-python/jupyter-events-0.11.0[${PYTHON_USEDEP}] - >=dev-python/nbconvert-6.4.4[${PYTHON_USEDEP}] - >=dev-python/nbformat-5.3.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/overrides-5.0[${PYTHON_USEDEP}] - ' 3.11) - >=dev-python/packaging-22.0[${PYTHON_USEDEP}] - >=dev-python/prometheus-client-0.9[${PYTHON_USEDEP}] - >=dev-python/pyzmq-24[${PYTHON_USEDEP}] - >=dev-python/send2trash-1.8.2[${PYTHON_USEDEP}] - >=dev-python/terminado-0.8.3[${PYTHON_USEDEP}] - >=dev-python/tornado-6.2[${PYTHON_USEDEP}] - >=dev-python/traitlets-5.6.0[${PYTHON_USEDEP}] - >=dev-python/websocket-client-1.7[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}] - test? ( - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" - -EPYTEST_PLUGINS=( pytest-{console-scripts,jupyter,timeout,tornasync} ) -EPYTEST_RERUNS=5 -distutils_enable_tests pytest - -python_test() { - local EPYTEST_DESELECT=( - # This fails if your terminal is zsh (and maybe other non-bash as well?) - tests/test_terminal.py - # Fails because above is ignored - tests/auth/test_authorizer.py - # Fails with additional extensions installed - tests/extension/test_app.py::test_stop_extension - ) - - # FIXME: tests seem to be affected by previously installed version - epytest -o tmp_path_retention_policy=all -} diff --git a/dev-python/jupyter-server/jupyter-server-2.19.0.ebuild b/dev-python/jupyter-server/jupyter-server-2.19.0.ebuild deleted file mode 100644 index 7b485879e0d6..000000000000 --- a/dev-python/jupyter-server/jupyter-server-2.19.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Core services, APIs, and REST endpoints to Jupyter web applications" -HOMEPAGE=" - https://jupyter.org/ - https://github.com/jupyter-server/jupyter_server/ - https://pypi.org/project/jupyter-server/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - >=dev-python/anyio-3.1.0[${PYTHON_USEDEP}] - >=dev-python/argon2-cffi-21.1[${PYTHON_USEDEP}] - >=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}] - >=dev-python/jupyter-client-7.4.4[${PYTHON_USEDEP}] - >=dev-python/jupyter-core-5.1.0[${PYTHON_USEDEP}] - >=dev-python/jupyter-server-terminals-0.4.4[${PYTHON_USEDEP}] - >=dev-python/jupyter-events-0.11.0[${PYTHON_USEDEP}] - >=dev-python/nbconvert-6.4.4[${PYTHON_USEDEP}] - >=dev-python/nbformat-5.3.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/overrides-5.0[${PYTHON_USEDEP}] - ' 3.11) - >=dev-python/packaging-22.0[${PYTHON_USEDEP}] - >=dev-python/prometheus-client-0.9[${PYTHON_USEDEP}] - >=dev-python/pyzmq-24[${PYTHON_USEDEP}] - >=dev-python/send2trash-1.8.2[${PYTHON_USEDEP}] - >=dev-python/terminado-0.8.3[${PYTHON_USEDEP}] - >=dev-python/tornado-6.2[${PYTHON_USEDEP}] - >=dev-python/traitlets-5.6.0[${PYTHON_USEDEP}] - >=dev-python/websocket-client-1.7[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}] - test? ( - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" - -EPYTEST_PLUGINS=( pytest-{console-scripts,jupyter,timeout,tornasync} ) -EPYTEST_RERUNS=5 -distutils_enable_tests pytest - -python_test() { - local EPYTEST_DESELECT=( - # This fails if your terminal is zsh (and maybe other non-bash as well?) - tests/test_terminal.py - # Fails because above is ignored - tests/auth/test_authorizer.py - # Fails with additional extensions installed - tests/extension/test_app.py::test_stop_extension - ) - - # FIXME: tests seem to be affected by previously installed version - epytest -o tmp_path_retention_policy=all -} diff --git a/dev-python/jupyter-server/metadata.xml b/dev-python/jupyter-server/metadata.xml deleted file mode 100644 index 7e3ab0d6de84..000000000000 --- a/dev-python/jupyter-server/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> - <stabilize-allarches/> - <upstream> - <remote-id type="pypi">jupyter-server</remote-id> - <remote-id type="github">jupyter-server/jupyter_server</remote-id> - </upstream> -</pkgmetadata> |
