Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-rencode for openSUSE:Factory checked in at 2025-07-24 18:46:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-rencode (Old) and /work/SRC/openSUSE:Factory/.python-rencode.new.13279 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-rencode" Thu Jul 24 18:46:40 2025 rev:5 rq:1295406 version:1.0.8 Changes: -------- --- /work/SRC/openSUSE:Factory/python-rencode/python-rencode.changes 2025-07-22 12:21:24.330889132 +0200 +++ /work/SRC/openSUSE:Factory/.python-rencode.new.13279/python-rencode.changes 2025-07-24 18:48:03.987984009 +0200 @@ -1,0 +2,6 @@ +Thu Jul 24 00:34:03 UTC 2025 - Steve Kowalik <steven.kowa...@suse.com> + +- Add patch drop-march-native.patch: + * Do not use CPU-specific build flags. (bsc#1246916) + +------------------------------------------------------------------- New: ---- drop-march-native.patch ----------(New B)---------- New: - Add patch drop-march-native.patch: * Do not use CPU-specific build flags. (bsc#1246916) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-rencode.spec ++++++ --- /var/tmp/diff_new_pack.oY1JiN/_old 2025-07-24 18:48:04.592009862 +0200 +++ /var/tmp/diff_new_pack.oY1JiN/_new 2025-07-24 18:48:04.592009862 +0200 @@ -24,6 +24,8 @@ URL: https://github.com/aresch/rencode Source0: https://github.com/aresch/rencode/archive/v%{version}.tar.gz Source1: %{name}.changes +# PATCH-FIX-UPSTREAM Based on gh#aresch/rencode#e7ec8ea718e73a8fee7dbc007c262e1584f7f94b +Patch0: drop-march-native.patch BuildRequires: %{python_module Cython} BuildRequires: %{python_module devel} BuildRequires: %{python_module pip} @@ -40,7 +42,7 @@ b-encodings. Python2 version of package %prep -%setup -q -n rencode-%{version} +%autosetup -p1 -n rencode-%{version} %build export CFLAGS="%{optflags} -fno-strict-aliasing" ++++++ drop-march-native.patch ++++++ >From e7ec8ea718e73a8fee7dbc007c262e1584f7f94b Mon Sep 17 00:00:00 2001 From: Andrew Resch <andrewre...@gmail.com> Date: Sun, 22 Jun 2025 09:50:26 -0700 Subject: [PATCH] Change default COMPILE_ARGS to just '-O3' --- build.py | 3 --- 1 file changed, 3 deletions(-) Index: rencode-1.0.8/build.py =================================================================== --- rencode-1.0.8.orig/build.py +++ rencode-1.0.8/build.py @@ -11,7 +11,8 @@ from setuptools import Extension from setuptools.command.build_ext import build_ext -COMPILE_ARGS = ["-march=native", "-O3", "-msse", "-msse2", "-mfma", "-mfpmath=sse"] +COMPILE_ARGS = ["-O3"] + LINK_ARGS: list[str] = [] INCLUDE_DIRS: list[str] = [] LIBRARIES: list[str] = []