Sync from SUSE:SLFO:Main python313 revision d0dfd4215089a37af0ae2e0812cb62c5

This commit is contained in:
2025-03-21 10:53:19 +01:00
parent d4d0782687
commit 1a9b96ab31
2 changed files with 31 additions and 15 deletions

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Mar 10 15:44:31 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
- Skip PGO with %want_reproducible_builds (bsc#1239210).
-------------------------------------------------------------------
Tue Mar 4 11:30:07 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
- Do not build with experimental_jit when primary_python
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 5 09:13:26 UTC 2025 - Matej Cepl <mcepl@cepl.eu> Wed Feb 5 09:13:26 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
@@ -2958,7 +2968,8 @@ Wed Mar 20 05:08:29 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- gh-100985: Update HTTPSConnection to consistently wrap IPv6 - gh-100985: Update HTTPSConnection to consistently wrap IPv6
Addresses when using a proxy. Addresses when using a proxy.
- gh-100884: email: fix misfolding of comma in address-lists - gh-100884: email: fix misfolding of comma in address-lists
over multiple lines in combination with unicode encoding. over multiple lines in combination with unicode encoding
(bsc#1238450 CVE-2025-1795)
- gh-95782: Fix io.BufferedReader.tell(), - gh-95782: Fix io.BufferedReader.tell(),
io.BufferedReader.seek(), _pyio.BufferedReader.tell(), io.BufferedReader.seek(), _pyio.BufferedReader.tell(),
io.BufferedRandom.tell(), io.BufferedRandom.seek() and io.BufferedRandom.tell(), io.BufferedRandom.seek() and

View File

@@ -54,25 +54,12 @@
%bcond_with GIL %bcond_with GIL
%endif %endif
%if 0%{?do_profiling} %if 0%{?do_profiling} && !0%{?want_reproducible_builds}
%bcond_without profileopt %bcond_without profileopt
%else %else
%bcond_with profileopt %bcond_with profileopt
%endif %endif
# No experimental_jit in SLES, there's no clang >=18
%if 0%{?suse_version} <= 1600
%bcond_with experimental_jit
%else
# Currently supported architectures
# https://peps.python.org/pep-0744/#support
%ifarch x86_64 %{x86_64} aarch64
%bcond_without experimental_jit
%else
%bcond_with experimental_jit
%endif
%endif
# Only for Tumbleweed # Only for Tumbleweed
# https://en.opensuse.org/openSUSE:Python:Externally_managed # https://en.opensuse.org/openSUSE:Python:Externally_managed
%if 0%{?suse_version} > 1600 %if 0%{?suse_version} > 1600
@@ -93,6 +80,24 @@
%define primary_interpreter 0 %define primary_interpreter 0
%endif %endif
# No experimental_jit in SLES, there's no clang >=18
%if 0%{?suse_version} <= 1600
%bcond_with experimental_jit
# Disable experimental_jit for primary python.
# llvm is not part of ring0 and experimental_jit requires clang >= 18
%elif !%{primary_interpreter}
# Currently supported architectures
# https://peps.python.org/pep-0744/#support
%ifarch x86_64 %{x86_64} aarch64
%bcond_without experimental_jit
%else
%bcond_with experimental_jit
%endif
%else
%bcond_with experimental_jit
%endif
# %%if 0%%{?sle_version} && 0%%{?suse_version} < 1550 # %%if 0%%{?sle_version} && 0%%{?suse_version} < 1550
# Obsoleting previous "latest" Python versions # Obsoleting previous "latest" Python versions
# Next versions will get more lines like for older versions # Next versions will get more lines like for older versions