From 84af6fa75fe1fae04dc4ea85db49ea50ad64de1d Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Thu, 27 Oct 2022 12:08:46 +0200 Subject: [PATCH] dev-python/simpervisor: enable py3.11, pep517 Signed-off-by: Andrew Ammerlaan --- dev-python/simpervisor/Manifest | 1 + .../simpervisor/simpervisor-0.4-r1.ebuild | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 dev-python/simpervisor/simpervisor-0.4-r1.ebuild diff --git a/dev-python/simpervisor/Manifest b/dev-python/simpervisor/Manifest index 1bd64a777a9d1..9de0628427879 100644 --- a/dev-python/simpervisor/Manifest +++ b/dev-python/simpervisor/Manifest @@ -1 +1,2 @@ +DIST simpervisor-0.4.gh.tar.gz 8542 BLAKE2B bd96284b65468110f445e96a9978b67bc73b0a0f188dcaf592f42291937130e72247195b8ce142726ba430716b87283d844003bb0980de952531639417a23f50 SHA512 4aea0071d6a486c7b27fc39fa02d7b610d680c90ba07f3c27c3d98b132b79b97bcb5c7847ce9d3ca7bb46663f91494e0012c8c9e14017ca1c591fb6312419692 DIST simpervisor-0.4.tar.gz 8542 BLAKE2B bd96284b65468110f445e96a9978b67bc73b0a0f188dcaf592f42291937130e72247195b8ce142726ba430716b87283d844003bb0980de952531639417a23f50 SHA512 4aea0071d6a486c7b27fc39fa02d7b610d680c90ba07f3c27c3d98b132b79b97bcb5c7847ce9d3ca7bb46663f91494e0012c8c9e14017ca1c591fb6312419692 diff --git a/dev-python/simpervisor/simpervisor-0.4-r1.ebuild b/dev-python/simpervisor/simpervisor-0.4-r1.ebuild new file mode 100644 index 0000000000000..086ec03866e8e --- /dev/null +++ b/dev-python/simpervisor/simpervisor-0.4-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Simple Python3 Supervisor library" +HOMEPAGE="https://github.com/jupyterhub/simpervisor" +SRC_URI="https://github.com/jupyterhub/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest