Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt-creator for openSUSE:Factory checked in at 2026-04-01 19:51:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt-creator (Old) and /work/SRC/openSUSE:Factory/.qt-creator.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt-creator" Wed Apr 1 19:51:19 2026 rev:56 rq:1343882 version:19.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qt-creator/qt-creator.changes 2026-03-13 21:21:25.532779642 +0100 +++ /work/SRC/openSUSE:Factory/.qt-creator.new.21863/qt-creator.changes 2026-04-01 19:52:00.068546513 +0200 @@ -1,0 +2,6 @@ +Tue Mar 31 08:04:47 UTC 2026 - Christophe Marin <[email protected]> + +- Add upstream change (QTCREATORBUG-34297): + * 0001-Utils-Static-assert-on-unknown-binaryArchitecture-on.patch + +------------------------------------------------------------------- New: ---- 0001-Utils-Static-assert-on-unknown-binaryArchitecture-on.patch ----------(New B)---------- New:- Add upstream change (QTCREATORBUG-34297): * 0001-Utils-Static-assert-on-unknown-binaryArchitecture-on.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt-creator.spec ++++++ --- /var/tmp/diff_new_pack.UqgB2r/_old 2026-04-01 19:52:01.104589681 +0200 +++ /var/tmp/diff_new_pack.UqgB2r/_new 2026-04-01 19:52:01.112590014 +0200 @@ -59,6 +59,8 @@ URL: https://www.qt.io/product/development-tools Source: https://download.qt.io/official_releases/qtcreator/%{short_version}/%{real_version}%{tar_suffix}/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz Source1: qt-creator-rpmlintrc +# PATCH-FIX-UPSTREAM -- Fixes build on PPC, riscv64, s390x +Patch0: 0001-Utils-Static-assert-on-unknown-binaryArchitecture-on.patch # Patches 11-20 are openSUSE changes Patch11: fix-application-output.patch Patch12: 0001-Disable-some-plugins.patch ++++++ 0001-Utils-Static-assert-on-unknown-binaryArchitecture-on.patch ++++++ >From 275beff6e92e32291be8db22bae489d5d2116bc3 Mon Sep 17 00:00:00 2001 From: Eike Ziller <[email protected]> Date: Fri, 27 Mar 2026 10:23:44 +0100 Subject: [PATCH] Utils: Static assert on unknown "binaryArchitecture" only in debug We introduced this limitation in QtC 19 for a feature that is very limited in use, so relax that a bit for people who build Qt Creator on under-the-radar platforms. Fixes: QTCREATORBUG-34297 Change-Id: I1a40a23193134a60ecaef01da30249b44dd14dfe Reviewed-by: Christian Kandeler <[email protected]> --- src/libs/utils/hostosinfo.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libs/utils/hostosinfo.cpp b/src/libs/utils/hostosinfo.cpp index 64d4244c38c..cff843000ba 100644 --- a/src/libs/utils/hostosinfo.cpp +++ b/src/libs/utils/hostosinfo.cpp @@ -114,7 +114,9 @@ OsArch binaryArchitecture() #elif defined(Q_PROCESSOR_IA64) return OsArchItanium; #else +# if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS) static_assert(false, "Unknown architecture, please add detection."); +# endif return OsArchUnknown; #endif } -- 2.53.0
