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 F2869158086 for ; Sun, 28 Nov 2021 15:09:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B7332BC002; Sun, 28 Nov 2021 15:09:35 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7E4DB2BC002 for ; Sun, 28 Nov 2021 15:09:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 38BE4342EC6 for ; Sun, 28 Nov 2021 15:09:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 645E11F4 for ; Sun, 28 Nov 2021 15:09:31 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1638112169.752771fb795ec9f2f1554e7fb5bfd29c32c8aeca.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter-server-proxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jupyter-server-proxy/Manifest dev-python/jupyter-server-proxy/jupyter-server-proxy-3.1.0.ebuild dev-python/jupyter-server-proxy/metadata.xml X-VCS-Directories: dev-python/jupyter-server-proxy/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 752771fb795ec9f2f1554e7fb5bfd29c32c8aeca X-VCS-Branch: master Date: Sun, 28 Nov 2021 15:09:31 +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: 765f420c-a229-497a-9786-0948051c3381 X-Archives-Hash: ae4f8d214d3bfae1ab92ced8de171fe7 commit: 752771fb795ec9f2f1554e7fb5bfd29c32c8aeca Author: Andrew Ammerlaan gentoo org> AuthorDate: Sun Nov 28 14:52:31 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sun Nov 28 15:09:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=752771fb dev-python/jupyter-server-proxy: new dep of vpython Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/jupyter-server-proxy/Manifest | 1 + .../jupyter-server-proxy-3.1.0.ebuild | 28 ++++++++++++++++++++++ dev-python/jupyter-server-proxy/metadata.xml | 13 ++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/jupyter-server-proxy/Manifest b/dev-python/jupyter-server-proxy/Manifest new file mode 100644 index 000000000000..356c8ee07181 --- /dev/null +++ b/dev-python/jupyter-server-proxy/Manifest @@ -0,0 +1 @@ +DIST jupyter-server-proxy-3.1.0.tar.gz 84326 BLAKE2B 8de532ba67ea3759e5997d93839b47cc962ddd1f58bb4b594e9949cd1d933147d01f3747b992aec192b84861cb64aeb214eae2ce649978a0faef66c54f9a96de SHA512 6914a322f37f383bc5276cc34607bdd53e2c754564e214cf5fd7295ba6e8e8c89f2f25b23e673e66f575f4cb5ffa757b64cbfd008bc69dffa0480b46be603e66 diff --git a/dev-python/jupyter-server-proxy/jupyter-server-proxy-3.1.0.ebuild b/dev-python/jupyter-server-proxy/jupyter-server-proxy-3.1.0.ebuild new file mode 100644 index 000000000000..c3146b91e3aa --- /dev/null +++ b/dev-python/jupyter-server-proxy/jupyter-server-proxy-3.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Jupyter notebook server extension to proxy web services" +HOMEPAGE="https://github.com/jupyterhub/jupyter-server-proxy" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" +# The GitHub tarball includes the tests, but does not have the js stuff we need + +RDEPEND=" + dev-python/aiohttp[${PYTHON_USEDEP}] + >=dev-python/jupyter_server-1.0[${PYTHON_USEDEP}] + >=dev-python/simpervisor-0.4[${PYTHON_USEDEP}] +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +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 000000000000..d9ae49311486 --- /dev/null +++ b/dev-python/jupyter-server-proxy/metadata.xml @@ -0,0 +1,13 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + jupyter-server-proxy + jupyterhub/jupyter-server-proxy + + +