diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-01-07 22:16:52 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-01-07 22:16:52 +0200 |
commit | 72d451be36db5dadc6701312ca8ca6d7fc7e6072 (patch) | |
tree | 6d6aa3883456273ddd261d45f8d26c63c762be33 /dev-python/cheroot | |
parent | dev-libs/uriparser: Stabilize 0.9.6 ppc, #830711 (diff) | |
download | gentoo-72d451be36db5dadc6701312ca8ca6d7fc7e6072.tar.gz gentoo-72d451be36db5dadc6701312ca8ca6d7fc7e6072.tar.bz2 gentoo-72d451be36db5dadc6701312ca8ca6d7fc7e6072.zip |
dev-python/cheroot: add 8.6.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/cheroot')
-rw-r--r-- | dev-python/cheroot/Manifest | 1 | ||||
-rw-r--r-- | dev-python/cheroot/cheroot-8.6.0.ebuild | 76 | ||||
-rw-r--r-- | dev-python/cheroot/files/cheroot-8.6.0-remove-pypytools-dep.patch | 74 |
3 files changed, 151 insertions, 0 deletions
diff --git a/dev-python/cheroot/Manifest b/dev-python/cheroot/Manifest index 438df70f0b68..362aa364dfd0 100644 --- a/dev-python/cheroot/Manifest +++ b/dev-python/cheroot/Manifest @@ -1 +1,2 @@ DIST cheroot-8.5.2.tar.gz 113183 BLAKE2B a3b60a9df3f34913cfb8c99fbdc8580ea436710c7979e296c18a6981f54bb959d6a300f4cf9d4e608fe2987f58d5fc6d2b8f57bca800e461d31c77ac61fd6b01 SHA512 245c4157f5e11741d94375099878ef5b31945412a2b02961502e762b9770fd968f4f977fe2d74744aa6596c668079d7f07b6f129fa11438783a95d3a5ee088fa +DIST cheroot-8.6.0.tar.gz 134779 BLAKE2B 97d1a9bf0a8d72d3204972934aa3ac4c97246b413edebd9f38caa802a5343acc426f137addfdc0faec58f6af2d62bc22023e93b14e1b0b07f6be9ffb12e78306 SHA512 26e48c935fe32d4ce3cf6ae20b5b272416ca53bd8496527c2958ec2ebe87529c831f283ae900e13271b610e39531b682df0376935ecc3bcfcca11c299cd2a893 diff --git a/dev-python/cheroot/cheroot-8.6.0.ebuild b/dev-python/cheroot/cheroot-8.6.0.ebuild new file mode 100644 index 000000000000..7cf72b10dda7 --- /dev/null +++ b/dev-python/cheroot/cheroot-8.6.0.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="High-performance, pure-Python HTTP server used by CherryPy" +HOMEPAGE="https://cherrypy.org/ + https://pypi.org/project/cheroot/ + https://github.com/cherrypy/cheroot/" +SRC_URI="mirror://pypi/C/${PN/c/C}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/six-1.11.0[${PYTHON_USEDEP}] + >=dev-python/more-itertools-2.6[${PYTHON_USEDEP}] + dev-python/jaraco-functools[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + ${RDEPEND} + dev-python/jaraco-context[${PYTHON_USEDEP}] + dev-python/jaraco-text[${PYTHON_USEDEP}] + dev-python/portend[${PYTHON_USEDEP}] + dev-python/pytest-forked[${PYTHON_USEDEP}] + >=dev-python/pytest-mock-1.11.0[${PYTHON_USEDEP}] + dev-python/requests-toolbelt[${PYTHON_USEDEP}] + dev-python/requests-unixsocket[${PYTHON_USEDEP}] + dev-python/urllib3[${PYTHON_USEDEP}] + !ia64? ( + dev-python/pyopenssl[${PYTHON_USEDEP}] + dev-python/trustme[${PYTHON_USEDEP}] + ) + ) +" + +PATCHES=( + # Bad dep (upstream gone, only PyPi package, has py2 code, etc) + "${FILESDIR}/${PN}-8.6.0-remove-pypytools-dep.patch" +) + +distutils_enable_tests pytest + +python_prepare_all() { + sed -e "s/use_scm_version=True/version='${PV}'/" -i setup.py || die + sed -e '/setuptools_scm/d' -i setup.cfg || die + sed -e '/--cov/d' \ + -e '/--testmon/d' \ + -e '/--numproc/d' \ + -i pytest.ini || die + + # broken + sed -e '/False.*localhost/d' \ + -i cheroot/test/test_ssl.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + local EPYTEST_IGNORE=() + if ! has_version "dev-python/pyopenssl[${PYTHON_USEDEP}]" || + ! has_version "dev-python/trustme[${PYTHON_USEDEP}]" + then + EPYTEST_IGNORE+=( + lib/cheroot/test/test_ssl.py + ) + fi + + cd "${BUILD_DIR}" || die + epytest +} diff --git a/dev-python/cheroot/files/cheroot-8.6.0-remove-pypytools-dep.patch b/dev-python/cheroot/files/cheroot-8.6.0-remove-pypytools-dep.patch new file mode 100644 index 000000000000..f1f4fac26557 --- /dev/null +++ b/dev-python/cheroot/files/cheroot-8.6.0-remove-pypytools-dep.patch @@ -0,0 +1,74 @@ +diff --git a/cheroot/test/test_server.py b/cheroot/test/test_server.py +index 8305c78c..39e4e066 100644 +--- a/cheroot/test/test_server.py ++++ b/cheroot/test/test_server.py +@@ -16,7 +16,6 @@ import requests + import requests_unixsocket + import six + +-from pypytools.gc.custom import DefaultGc + from six.moves import queue, urllib + + from .._compat import bton, ntob +@@ -330,8 +329,7 @@ def test_peercreds_unix_sock_with_lookup(peercreds_enabled_server): + ), + indirect=('resource_limit',), + ) +-@pytest.mark.usefixtures('many_open_sockets') +-def test_high_number_of_file_descriptors(native_server_client, resource_limit): ++def _test_high_number_of_file_descriptors(native_server_client, resource_limit): + """Test the server does not crash with a high file-descriptor value. + + This test shouldn't cause a server crash when trying to access +@@ -363,18 +361,6 @@ def test_high_number_of_file_descriptors(native_server_client, resource_limit): + assert any(fn >= resource_limit for fn in native_process_conn.filenos) + + +-if not IS_WINDOWS: +- test_high_number_of_file_descriptors = pytest.mark.forked( +- test_high_number_of_file_descriptors, +- ) +- +- +-@pytest.fixture +-def _garbage_bin(): +- """Disable garbage collection when this fixture is in use.""" +- with DefaultGc().nogc(): +- yield +- + + @pytest.fixture + def resource_limit(request): +@@ -400,32 +386,3 @@ def resource_limit(request): + finally: + # Reset the resource limit back to the original soft limit + resource.setrlimit(resource.RLIMIT_NOFILE, (soft_limit, hard_limit)) +- +- +-@pytest.fixture +-def many_open_sockets(request, resource_limit): +- """Allocate a lot of file descriptors by opening dummy sockets.""" +- # NOTE: `@pytest.mark.usefixtures` doesn't work on fixtures which +- # NOTE: forces us to invoke this one dynamically to avoid having an +- # NOTE: unused argument. +- request.getfixturevalue('_garbage_bin') +- +- # Hoard a lot of file descriptors by opening and storing a lot of sockets +- test_sockets = [] +- # Open a lot of file descriptors, so the next one the server +- # opens is a high number +- try: +- for _ in range(resource_limit): +- sock = socket.socket() +- test_sockets.append(sock) +- # If we reach a high enough number, we don't need to open more +- if sock.fileno() >= resource_limit: +- break +- # Check we opened enough descriptors to reach a high number +- the_highest_fileno = test_sockets[-1].fileno() +- assert the_highest_fileno >= resource_limit +- yield the_highest_fileno +- finally: +- # Close our open resources +- for test_socket in test_sockets: +- test_socket.close() |