Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-eventlet for openSUSE:Factory
checked in at 2025-04-22 17:26:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-eventlet (Old)
and /work/SRC/openSUSE:Factory/.python-eventlet.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-eventlet"
Tue Apr 22 17:26:00 2025 rev:62 rq:1271296 version:0.39.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-eventlet/python-eventlet.changes
2025-04-08 17:51:42.459694013 +0200
+++
/work/SRC/openSUSE:Factory/.python-eventlet.new.30101/python-eventlet.changes
2025-04-22 17:26:22.954295753 +0200
@@ -1,0 +2,6 @@
+Thu Apr 17 13:33:34 UTC 2025 - Lucas Mulling <[email protected]>
+
+- Fix broken test with openssl 3.5.0:
+ * Add patch fix-test-with-openssl-3.5.0.patch
+
+-------------------------------------------------------------------
New:
----
fix-test-with-openssl-3.5.0.patch
BETA DEBUG BEGIN:
New:- Fix broken test with openssl 3.5.0:
* Add patch fix-test-with-openssl-3.5.0.patch
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-eventlet.spec ++++++
--- /var/tmp/diff_new_pack.80LCNi/_old 2025-04-22 17:26:23.486318080 +0200
+++ /var/tmp/diff_new_pack.80LCNi/_new 2025-04-22 17:26:23.486318080 +0200
@@ -25,6 +25,8 @@
Group: Development/Languages/Python
URL: https://eventlet.net
Source:
https://files.pythonhosted.org/packages/source/e/eventlet/eventlet-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE: fix-test-with-openssl-3.5.0.patch bsc#1241037 -- based
on PR 1034
+Patch1: fix-test-with-openssl-3.5.0.patch
BuildRequires: %{python_module hatch-vcs}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module wheel}
++++++ fix-test-with-openssl-3.5.0.patch ++++++
Index: eventlet-0.39.1/tests/ssl_test.py
===================================================================
--- eventlet-0.39.1.orig/tests/ssl_test.py
+++ eventlet-0.39.1/tests/ssl_test.py
@@ -80,7 +80,8 @@ class SSLTest(tests.LimitedTestCase):
sock.recv(8192)
try:
self.assertEqual(b'', sock.recv(8192))
- except greenio.SSL.ZeroReturnError:
+ except (greenio.SSL.ZeroReturnError,
+ BrokenPipeError):
pass
sock = listen_ssl_socket()