diff options
author | mirror@stealer.net <mirror@stealer.net> | 2025-01-31 23:30:19 +0000 |
---|---|---|
committer | mirror@stealer.net <mirror@stealer.net> | 2025-01-31 23:30:19 +0000 |
commit | 5c2c98b0a579c7434b70e2ee8f3c8a7499298dbb (patch) | |
tree | aa0268f668eb35627871a28d13ea8bf04d29d03d /dev-python/jupyter-server-proxy |
2025-01-31 23:11:16+00:00grafted
Diffstat (limited to 'dev-python/jupyter-server-proxy')
4 files changed, 118 insertions, 0 deletions
diff --git a/dev-python/jupyter-server-proxy/Manifest b/dev-python/jupyter-server-proxy/Manifest new file mode 100644 index 0000000000000..9a34a59fce662 --- /dev/null +++ b/dev-python/jupyter-server-proxy/Manifest @@ -0,0 +1,5 @@ +DIST jupyter_server_proxy-4.1.2.tar.gz 133085 BLAKE2B a859938f7ab5570e978b3afa71a924b882bcc1e788181bbdee1b2dd22d9b2e7bf706d130b04dc9a0871c3a3046041b939d8da82af5abe093ba2a2d0f9451cb20 SHA512 9dc8c84b28f79dd2f89ceb6012f0bf69d43c8c59ffe73d1559aee9d7f6d90cce93fc8b277fe3ad83197fd3d5f7aaad60c3353b0618967e51ed3749e12db4bd3c +DIST jupyter_server_proxy-4.4.0.tar.gz 136830 BLAKE2B 2c97e2acc6794fd058b1a2c8bc1fa923a590ed7366a2b0ba25ddd550142ba42c49ecc461b18201f9b57647813a92b9d62884b71208f67fa934cae290f46393fc SHA512 df7d1a39eefae1e1540fd350551a5d5e21bcfee01c1dee6fb4cc620261c6d19db4ba9e1de0d38edf5b4cde165f39fe9255834c443223d524744b3ce368518f03 +EBUILD jupyter-server-proxy-4.1.2.ebuild 1150 BLAKE2B 5166791e9b0b4be64e24d08a1ed3f5223e00c8cf7f23c2f1285810489ef3fb016a9a185a8588bb0ca17bd6588ee8f0c769c4dc9dab2b82f67d57152bd964d0a4 SHA512 3e5a1d20ae89c7b1d5cb451316a88cee47bf26130c8d5c21f763487d07d89fc5d0363911df68356daf67282e7a95c5271f910b04fe1b62777e527086fe337e70 +EBUILD jupyter-server-proxy-4.4.0.ebuild 1155 BLAKE2B 49452094ec1add9cfa62b97e895df373f134b0aef546f77b937f7d3318def159b22beba15c0cce52412465df2fc4b96f1125b3b150c84f13c45b8d1a30225c06 SHA512 4ab1a9115b754ddba036629f5ca7e03b72db7a2adade6081280c9e43d0c3e9fad5aa047706ea6832b79fd1387c994a3e59be5f63ef167592bd23114b72ae0f15 +MISC metadata.xml 432 BLAKE2B 971dba91e8277c9ac0d7a9ca3c42d8c550bb072442021c9e0a9d8ff7cdb8f5f61cecf995a249451a9c95ccc5ee53108c2093de1fb6f5021a79238b35caf4b15d SHA512 3989d322d8b9165a6e2463c970176b71eb6c924b9baa489019ee84ba4826f5d522ba715947da72d3dfa7cf19b3124c550acb26f53d5e00f9473aacd8d8b4fdc8 diff --git a/dev-python/jupyter-server-proxy/jupyter-server-proxy-4.1.2.ebuild b/dev-python/jupyter-server-proxy/jupyter-server-proxy-4.1.2.ebuild new file mode 100644 index 0000000000000..bab5f5dbb961f --- /dev/null +++ b/dev-python/jupyter-server-proxy/jupyter-server-proxy-4.1.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 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 + +DESCRIPTION="Jupyter notebook server extension to proxy web services" +HOMEPAGE="https://github.com/jupyterhub/jupyter-server-proxy" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# Connection refused, even without network-sandbox +RESTRICT="test" + +RDEPEND=" + dev-python/aiohttp[${PYTHON_USEDEP}] + >=dev-python/jupyter-server-1.0[${PYTHON_USEDEP}] + >=dev-python/simpervisor-1.0[${PYTHON_USEDEP}] + >=dev-python/tornado-5.1[${PYTHON_USEDEP}] + >=dev-python/traitlets-4.2.1[${PYTHON_USEDEP}] +" + +BDEPEND=" + >=dev-python/hatch-jupyter-builder-0.8.3[${PYTHON_USEDEP}] + >=dev-python/jupyterlab-4.0.6[${PYTHON_USEDEP}] + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_prepare_all() { + sed \ + -e "/--cov.*,/d" \ + -e "/--no-cov.*,/d" \ + -e "/--html.*,/d" \ + -i pyproject.toml || die + distutils-r1_python_prepare_all +} + +src_install() { + distutils-r1_src_install + mv "${ED}/usr/etc" "${ED}/etc" || die +} diff --git a/dev-python/jupyter-server-proxy/jupyter-server-proxy-4.4.0.ebuild b/dev-python/jupyter-server-proxy/jupyter-server-proxy-4.4.0.ebuild new file mode 100644 index 0000000000000..ac20f6cb775a9 --- /dev/null +++ b/dev-python/jupyter-server-proxy/jupyter-server-proxy-4.4.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..13} ) +inherit distutils-r1 pypi + +DESCRIPTION="Jupyter notebook server extension to proxy web services" +HOMEPAGE="https://github.com/jupyterhub/jupyter-server-proxy" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# Connection refused, even without network-sandbox +RESTRICT="test" + +RDEPEND=" + dev-python/aiohttp[${PYTHON_USEDEP}] + >=dev-python/jupyter-server-1.24.0[${PYTHON_USEDEP}] + >=dev-python/simpervisor-1.0[${PYTHON_USEDEP}] + >=dev-python/tornado-6.1.0[${PYTHON_USEDEP}] + >=dev-python/traitlets-5.1.0[${PYTHON_USEDEP}] +" + +BDEPEND=" + >=dev-python/hatch-jupyter-builder-0.8.3[${PYTHON_USEDEP}] + >=dev-python/jupyterlab-4.0.6[${PYTHON_USEDEP}] + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_prepare_all() { + sed \ + -e "/--cov.*,/d" \ + -e "/--no-cov.*,/d" \ + -e "/--html.*,/d" \ + -i pyproject.toml || die + distutils-r1_python_prepare_all +} + +src_install() { + distutils-r1_src_install + mv "${ED}/usr/etc" "${ED}/etc" || die +} diff --git a/dev-python/jupyter-server-proxy/metadata.xml b/dev-python/jupyter-server-proxy/metadata.xml new file mode 100644 index 0000000000000..d9ae493114867 --- /dev/null +++ b/dev-python/jupyter-server-proxy/metadata.xml @@ -0,0 +1,13 @@ +<?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> + <upstream> + <remote-id type="pypi">jupyter-server-proxy</remote-id> + <remote-id type="github">jupyterhub/jupyter-server-proxy</remote-id> + </upstream> + <stabilize-allarches/> +</pkgmetadata> |