Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-tornado6 for openSUSE:Factory
checked in at 2024-01-12 23:44:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-tornado6 (Old)
and /work/SRC/openSUSE:Factory/.python-tornado6.new.21961 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-tornado6"
Fri Jan 12 23:44:36 2024 rev:16 rq:1138133 version:6.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-tornado6/python-tornado6.changes
2024-01-05 22:59:43.154561907 +0100
+++
/work/SRC/openSUSE:Factory/.python-tornado6.new.21961/python-tornado6.changes
2024-01-12 23:44:55.469494849 +0100
@@ -1,0 +2,5 @@
+Thu Jan 11 13:28:34 UTC 2024 - Daniel Garcia <[email protected]>
+
+- Add patch openssl-3.2.patch gh#tornadoweb/tornado#3355
+
+-------------------------------------------------------------------
New:
----
openssl-3.2.patch
BETA DEBUG BEGIN:
New:
- Add patch openssl-3.2.patch gh#tornadoweb/tornado#3355
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-tornado6.spec ++++++
--- /var/tmp/diff_new_pack.GBGh4B/_old 2024-01-12 23:44:56.117518567 +0100
+++ /var/tmp/diff_new_pack.GBGh4B/_new 2024-01-12 23:44:56.117518567 +0100
@@ -28,6 +28,8 @@
Source99: python-tornado6-rpmlintrc
# PATCH-FIX-OPENSUSE ignore-resourcewarning-doctests.patch -- ignore resource
warnings on OBS
Patch0: ignore-resourcewarning-doctests.patch
+# PATCH-FIX-OPENSUSE openssl-3.2.patch gh#tornadoweb/tornado#3355
+Patch1: openssl-3.2.patch
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pip}
++++++ openssl-3.2.patch ++++++
Index: tornado-6.4/tornado/iostream.py
===================================================================
--- tornado-6.4.orig/tornado/iostream.py
+++ tornado-6.4/tornado/iostream.py
@@ -1374,7 +1374,7 @@ class SSLIOStream(IOStream):
return
elif err.args[0] in (ssl.SSL_ERROR_EOF, ssl.SSL_ERROR_ZERO_RETURN):
return self.close(exc_info=err)
- elif err.args[0] == ssl.SSL_ERROR_SSL:
+ elif err.args[0] in (ssl.SSL_ERROR_SSL, ssl.SSL_ERROR_SYSCALL):
try:
peer = self.socket.getpeername()
except Exception: