Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package salt for openSUSE:Factory checked in at 2026-05-16 19:24:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/salt (Old) and /work/SRC/openSUSE:Factory/.salt.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "salt" Sat May 16 19:24:49 2026 rev:195 rq:1353190 version:3006.0 Changes: -------- --- /work/SRC/openSUSE:Factory/salt/salt.changes 2026-04-28 11:54:16.920296388 +0200 +++ /work/SRC/openSUSE:Factory/.salt.new.1966/salt.changes 2026-05-16 19:25:55.049458434 +0200 @@ -1,0 +2,8 @@ +Thu May 14 12:45:32 UTC 2026 - Victor Zhestkov <[email protected]> + +- Use non vendored tornado with Python 3.11 (bsc#1257583, bsc#1259700) + +- Added: + * use-non-vendored-tornado-with-python-3.11.patch + +------------------------------------------------------------------- New: ---- use-non-vendored-tornado-with-python-3.11.patch ----------(New B)---------- New:- Added: * use-non-vendored-tornado-with-python-3.11.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ salt.spec ++++++ --- /var/tmp/diff_new_pack.iZ6ivX/_old 2026-05-16 19:25:58.669606869 +0200 +++ /var/tmp/diff_new_pack.iZ6ivX/_new 2026-05-16 19:25:58.673607033 +0200 @@ -638,6 +638,8 @@ # PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/68855 # PATCH-FIX_OPENSUSE: https://github.com/openSUSE/salt/pull/757 Patch203: bdsa-2025-60810-harden-against-invalid-http-reason-p.patch +# PATCH-FIX_OPENSUSE: https://github.com/openSUSE/salt/pull/755 +Patch204: use-non-vendored-tornado-with-python-3.11.patch ### IMPORTANT: The line below is used as a snippet marker. Do not touch it. ### SALT PATCHES LIST END @@ -900,9 +902,9 @@ Recommends: python-passlib %endif -%if 0%{?suse_version} >= 1600 +%if 0%{?python_version_nodots} >= 311 Requires: python-tornado -%if 0%{?python3_version_nodots} > 312 +%if 0%{?python_version_nodots} > 312 Requires: python-legacy-cgi %endif %else ++++++ _lastrevision ++++++ --- /var/tmp/diff_new_pack.iZ6ivX/_old 2026-05-16 19:25:58.805612446 +0200 +++ /var/tmp/diff_new_pack.iZ6ivX/_new 2026-05-16 19:25:58.809612610 +0200 @@ -1,3 +1,3 @@ -53c103db41a166997e1d5c5fff0a3d34327d4110 +1aee2a1d01f0fafea0bd0feddf9aa63b52a0c921 (No newline at EOF) ++++++ use-non-vendored-tornado-with-python-3.11.patch ++++++ >From e97342b66ac5957fcc283e815bfa6fd623be2add Mon Sep 17 00:00:00 2001 From: Victor Zhestkov <[email protected]> Date: Thu, 14 May 2026 13:24:10 +0200 Subject: [PATCH] Use non vendored tornado with Python 3.11 (bsc#1257583, bsc#1259700) --- salt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/__init__.py b/salt/__init__.py index 16d5063fa8..1946561b53 100644 --- a/salt/__init__.py +++ b/salt/__init__.py @@ -12,7 +12,7 @@ if sys.version_info < (3,): ) sys.stderr.flush() -USE_VENDORED_TORNADO = sys.version_info < (3,12) +USE_VENDORED_TORNADO = sys.version_info < (3,11) class TornadoImporter: -- 2.54.0
