Package: python-eventlet / 0.36.1-12
Metadata
Package | Version | Patches format |
---|---|---|
python-eventlet | 0.36.1-12 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
0001 Removes line that is doing FTBFS in doc.patch | (download) |
doc/source/modules/zmq.rst |
1 0 + 1 - 0 ! |
removes line that is doing ftbfs in doc |
0002 Fixed privacy breach in examples.patch | (download) |
examples/websocket.html |
4 2 + 2 - 0 ! |
fixed privacy breach in examples Upstream is referencing external websites, we don't allow this. |
0003 Allow more busy CPU.patch | (download) |
tests/zmq_test.py |
6 3 + 3 - 0 ! |
allow more busy cpu The tests assume a fast CPU, but under my VMs, the tests are just failing with the CPU being more than 10% busy. |
0004 Remove networking tests.patch | (download) |
tests/greenio_test.py |
20 0 + 20 - 0 ! |
remove networking tests Upstream is attempting connection to 192.0.2.1 on port 80, and expects it to always timeout. However, some Debian users may well have a web server running on that IP address, meaning the test would fail in such setup (even if this is reserved IANA IPs). Therefore, removing such bad tests. . Also, these tests have been failing for a reason on my arm64 builder, probably because it's a slow machine. |
0005 Removed failing test.patch | (download) |
tests/patcher_test.py |
3 0 + 3 - 0 ! |
removed failing test This test fails in Sid. |
0006 Patch out intersphinx.patch | (download) |
doc/source/conf.py |
1 0 + 1 - 0 ! |
patch out intersphinx Avoids internet access during build |
0008 Disable test_server_connection_timeout_exception.patch | (download) |
tests/wsgi_test.py |
12 6 + 6 - 0 ! |
disable test_server_connection_timeout_exception() As per the bug report, the test is non-deterministic. Therefore, remove it it. Bug-Debian: https://bugs.debian.org/857893 |
remove non deterministic test_communicate_with_poll.patch | (download) |
tests/subprocess_test.py |
20 0 + 20 - 0 ! |
remove non-deterministic test_communicate_with_poll() This patch fails sometimes, which isn't acceptable in Debian, so I'm removing it to avoid issues. |
py310_fix1.patch | (download) |
tests/wsgi_test.py |
3 2 + 1 - 0 ! |
<short summary of the patch> TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . python-eventlet (0.33.1-1) unstable; urgency=medium . * New upstream release. * Uploading to unstable. * Run unit tests at build time. * Add py310-Fix-_fix_py3_rlock.patch (Closes: #1009112). |
remove_test_patcher_existing_locks_locked.patch | (download) |
tests/patcher_test.py |
4 0 + 4 - 0 ! |
remove test_patcher_existing_locks_locked() This is a temporary solution until a better patch can be written, which is currently too much for my skills. |
neutralize test_017_ssl_zeroreturnerror.patch | (download) |
tests/wsgi_test.py |
3 0 + 3 - 0 ! |
neutralize test_017_ssl_zeroreturnerror() This fails. |
install all files.patch | (download) |
MANIFEST.in |
1 1 + 0 - 0 ! |
install all files |
fix detecting version.patch | (download) |
pyproject.toml |
7 2 + 5 - 0 ! |
fix detecting version |
python3.13 support.patch | (download) |
.github/workflows/test.yaml |
31 17 + 14 - 0 ! |
[patch 1/9] reorder python jobs by python versions From a79863aaa5b63b3d1e3fd4bfcb2f7c6f41770dfe Mon Sep 17 00:00:00 2001 |
Spew_Correct_line_lookup_from_inspect.getsourcelines.patch | (download) |
eventlet/debug.py |
8 6 + 2 - 0 ! |
spew: correct line lookup from inspect.getsourcelines() I can't write a test for this, as I don't know how to trigger is part of Spew, without also falling into the OSError branch (which test_line_nofile tests). . However, it has been observed to hit this code when running the tests under pytest-xdist (execnext), and the code is obviously wrong. This corrects it. |
Use_greenthread_s_dead_state_where_possible.patch | (download) |
eventlet/green/thread.py |
2 2 + 0 - 0 ! |
python 3.13: use greenthread's dead state where possible Fixes: #998 |