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 2022-01-24 23:10:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt-creator (Old) and /work/SRC/openSUSE:Factory/.qt-creator.new.1938 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt-creator" Mon Jan 24 23:10:19 2022 rev:3 rq:948444 version:6.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qt-creator/qt-creator.changes 2021-12-25 20:17:09.933274993 +0100 +++ /work/SRC/openSUSE:Factory/.qt-creator.new.1938/qt-creator.changes 2022-01-24 23:11:01.330336338 +0100 @@ -1,0 +2,17 @@ +Thu Jan 20 08:47:37 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 6.0.2 + https://code.qt.io/cgit/qt-creator/qt-creator.git/plain/dist/changes-6.0.2.md + * Fixed crash in process launcher + * Fixed that `Select All` scrolled to bottom + * Fixed copying with block selection + * Fixed working directory for `REPL` + * Fixed missing options in property editor + * Fixed that closing application in `Application Output` pane + killed process even if `Keep Running` was selected + * Fixed filtering in target setup page + * Fixed crash when switching screen configuration +- Add patch to fix the 32bit builds: + * c7deacf.diff + +------------------------------------------------------------------- Old: ---- qt-creator-opensource-src-6.0.1.tar.xz New: ---- c7deacf.diff qt-creator-opensource-src-6.0.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt-creator.spec ++++++ --- /var/tmp/diff_new_pack.3aN7va/_old 2022-01-24 23:11:02.846325977 +0100 +++ /var/tmp/diff_new_pack.3aN7va/_new 2022-01-24 23:11:02.850325950 +0100 @@ -16,7 +16,7 @@ # -%define real_version 6.0.1 +%define real_version 6.0.2 %define short_version 6.0 %define tar_name qt-creator-opensource-src %define tar_suffix %{nil} @@ -56,7 +56,7 @@ %global __requires_exclude_from %{_datadir}/qtcreator/qml/qmlpuppet/ Name: %{pkgname_prefix}-creator -Version: 6.0.1 +Version: 6.0.2 Release: 0 Summary: Integrated Development Environment targeting Qt apps # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only OR LGPL-3.0-only @@ -69,6 +69,7 @@ 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 # Patches 0-10 are upstream changes +Patch0: c7deacf.diff # Patches 11-20 are openSUSE changes Patch11: fix-application-output.patch Patch12: 0001-Disable-some-plugins.patch ++++++ c7deacf.diff ++++++ >From c7deacf46a764faa9f00a3fc5afc075a44b2e737 Mon Sep 17 00:00:00 2001 From: Marco Bubke <marco.bu...@qt.io> Date: Mon, 24 Jan 2022 14:38:29 +0100 Subject: [PATCH] QmlDesigner: Fix 32 bit Because std::ptrdiff_t and int are the same under 32 bit the constructor is changed to a template. The class is private so it is very unlikely that it leads to errors. Task-number: QTCREATORBUG-26910 Change-Id: I94c987b9b6d2f04876740ff283a339c0db056cfd --- diff --git a/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h b/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h index 747c3d9..27d2905 100644 --- a/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h +++ b/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h @@ -67,15 +67,8 @@ StorageCacheIndex(const char *) = delete; - constexpr explicit StorageCacheIndex(int id) noexcept - : id{id} - {} - - constexpr explicit StorageCacheIndex(std::size_t id) noexcept - : id{static_cast<int>(id)} - {} - - constexpr explicit StorageCacheIndex(std::ptrdiff_t id) noexcept + template<typename IntegerType> + constexpr explicit StorageCacheIndex(IntegerType id) noexcept : id{static_cast<int>(id)} {} ++++++ qt-creator-opensource-src-6.0.1.tar.xz -> qt-creator-opensource-src-6.0.2.tar.xz ++++++ /work/SRC/openSUSE:Factory/qt-creator/qt-creator-opensource-src-6.0.1.tar.xz /work/SRC/openSUSE:Factory/.qt-creator.new.1938/qt-creator-opensource-src-6.0.2.tar.xz differ: char 26, line 1