public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Sandro Mani <manisandro@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/qt-creator] epel10: Update to 19.0.1
Date: Tue, 04 Aug 2026 17:31:12 GMT	[thread overview]
Message-ID: <178586467243.1.5753211516051537535.rpms-qt-creator-3cbbdc7cf302@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/qt-creator
Branch : epel10
Commit : 3cbbdc7cf302a5be2f3e15ba163f218ccbbe38c8
Author : Sandro Mani <manisandro@gmail.com>
Date   : 2026-05-04T12:56:51+02:00
Stats  : +17/-84 in 8 file(s)
URL    : https://src.fedoraproject.org/rpms/qt-creator/c/3cbbdc7cf302a5be2f3e15ba163f218ccbbe38c8?branch=epel10

Log:
Update to 19.0.1

---
diff --git a/.gitignore b/.gitignore
index 14b6423..0207e65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -186,3 +186,4 @@
 /qt-creator-opensource-src-18.0.1.tar.xz
 /qt-creator-opensource-src-18.0.2.tar.xz
 /qt-creator-opensource-src-19.0.0-beta1.tar.xz
+/qt-creator-opensource-src-19.0.1.tar.xz

diff --git a/qt-creator-Fedora-privlibs b/qt-creator-Fedora-privlibs
index 274b884..2136aa0 100644
--- a/qt-creator-Fedora-privlibs
+++ b/qt-creator-Fedora-privlibs
@@ -80,7 +80,6 @@
 %global privlibs %{privlibs}|libQmakeProjectManager
 %global privlibs %{privlibs}|libQmlDebug
 %global privlibs %{privlibs}|libQmlDesigner
-%global privlibs %{privlibs}|libQmlDesignerAi
 %global privlibs %{privlibs}|libQmlDesignerCore
 %global privlibs %{privlibs}|libQmlEditorWidgets
 %global privlibs %{privlibs}|libQmlJS

diff --git a/qt-creator-debuginfod.patch b/qt-creator-debuginfod.patch
index c645539..d929ebf 100644
--- a/qt-creator-debuginfod.patch
+++ b/qt-creator-debuginfod.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference qt-creator-opensource-src-19.0.0-beta1/cmake/Findelfutils.cmake qt-creator-opensource-src-19.0.0-beta1-new/cmake/Findelfutils.cmake
---- qt-creator-opensource-src-19.0.0-beta1/cmake/Findelfutils.cmake	2026-01-27 03:56:14.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/cmake/Findelfutils.cmake	2026-01-31 10:21:56.055680245 +0100
+diff -rupN --no-dereference qt-creator-opensource-src-19.0.1/cmake/Findelfutils.cmake qt-creator-opensource-src-19.0.1-new/cmake/Findelfutils.cmake
+--- qt-creator-opensource-src-19.0.1/cmake/Findelfutils.cmake	2026-04-21 03:35:01.000000000 +0200
++++ qt-creator-opensource-src-19.0.1-new/cmake/Findelfutils.cmake	2026-05-04 00:10:40.652467348 +0200
 @@ -32,7 +32,7 @@ find_path(ELFUTILS_INCLUDE_DIR
      "${ELFUTILS_INSTALL_DIR}" ENV ELFUTILS_INSTALL_DIR "${CMAKE_PREFIX_PATH}"
  )

diff --git a/qt-creator-osarch.patch b/qt-creator-osarch.patch
deleted file mode 100644
index f13b033..0000000
--- a/qt-creator-osarch.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-diff -rupN qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/hostosinfo.cpp qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/hostosinfo.cpp
---- qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/hostosinfo.cpp	2026-01-27 03:56:15.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/hostosinfo.cpp	2026-01-31 10:25:36.099606157 +0100
-@@ -125,6 +125,10 @@ OsArch binaryArchitecture()
-     return OsArchArm;
- #elif defined(__ia64__) || defined(__itanium__)
-     return OsArchItanium;
-+#elif defined(__powerpc64__) and defined(__LITTLE_ENDIAN__)
-+    return OsArchPPC64LE;
-+#elif defined(__s390x__)
-+    return OsArchS390X;
- #else
-     static_assert(false, "Unknown architecture, please add detection.");
-     return OsArchUnknown;
-diff -rupN qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/osspecificaspects.cpp qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/osspecificaspects.cpp
---- qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/osspecificaspects.cpp	2026-01-27 03:56:15.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/osspecificaspects.cpp	2026-01-31 10:26:35.955918874 +0100
-@@ -56,6 +56,10 @@ Result<OsArch> osArchFromString(const QS
-         return OsArchArm;
-     if (architecture == QLatin1String("arm64") || architecture == QLatin1String("aarch64"))
-         return OsArchArm64;
-+    if (architecture == QLatin1String("ppc64le"))
-+        return OsArchPPC64LE;
-+    if (architecture == QLatin1String("s390x"))
-+        return OsArchS390X;
- 
-     return Utils::ResultError(QString::fromLatin1("Unknown architecture: %1").arg(architecture));
- }
-diff -rupN qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/osspecificaspects.h qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/osspecificaspects.h
---- qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/osspecificaspects.h	2026-01-27 03:56:15.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/osspecificaspects.h	2026-01-31 10:26:54.434565426 +0100
-@@ -15,7 +15,7 @@ namespace Utils {
- // Add more as needed.
- enum OsType { OsTypeWindows, OsTypeLinux, OsTypeMac, OsTypeOtherUnix, OsTypeOther };
- 
--enum OsArch { OsArchUnknown, OsArchX86, OsArchAMD64, OsArchItanium, OsArchArm, OsArchArm64 };
-+enum OsArch { OsArchUnknown, OsArchX86, OsArchAMD64, OsArchItanium, OsArchArm, OsArchArm64, OsArchPPC64LE, OsArchS390X };
- 
- QTCREATOR_UTILS_EXPORT QString osTypeToString(OsType osType);
- QTCREATOR_UTILS_EXPORT Utils::Result<OsType> osTypeFromString(const QString &string);
-diff -rupN qt-creator-opensource-src-19.0.0-beta1/src/plugins/extensionmanager/extensionsmodel.cpp qt-creator-opensource-src-19.0.0-beta1-new/src/plugins/extensionmanager/extensionsmodel.cpp
---- qt-creator-opensource-src-19.0.0-beta1/src/plugins/extensionmanager/extensionsmodel.cpp	2026-01-27 03:56:18.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/src/plugins/extensionmanager/extensionsmodel.cpp	2026-01-31 10:27:18.388865959 +0100
-@@ -391,6 +391,10 @@ QString customOsArchToString(OsArch osAr
-         return "arm";
-     case OsArchArm64:
-         return "arm64";
-+    case OsArchPPC64LE:
-+        return "ppc64le";
-+    case OsArchS390X:
-+        return "s390x";
-     case OsArchUnknown:
-         break;
-     }
-diff -rupN qt-creator-opensource-src-19.0.0-beta1/src/plugins/lua/bindings/utils.cpp qt-creator-opensource-src-19.0.0-beta1-new/src/plugins/lua/bindings/utils.cpp
---- qt-creator-opensource-src-19.0.0-beta1/src/plugins/lua/bindings/utils.cpp	2026-01-27 03:56:18.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/src/plugins/lua/bindings/utils.cpp	2026-01-31 10:27:34.852965572 +0100
-@@ -144,6 +144,10 @@ void setupUtilsModule()
-                     return "arm";
-                 case OsArchArm64:
-                     return "arm64";
-+                case OsArchPPC64LE:
-+                    return "ppc64le";
-+                case OsArchS390X:
-+                    return "s390x";
-                 default:
-                     return "unknown";
-                 }

diff --git a/qt-creator.spec b/qt-creator.spec
index 487bbc4..cc3e6b9 100644
--- a/qt-creator.spec
+++ b/qt-creator.spec
@@ -1,12 +1,12 @@
-%define prerelease beta1
+#define prerelease beta1
 
 # We need avoid oython byte compiler to not crash over template .py file which
 # is not a valid python file, only for the IDE
 %global _python_bytecompile_errors_terminate_build 0
 
 Name:           qt-creator
-Version:        19.0.0
-Release:        0.4%{?dist}
+Version:        19.0.1
+Release:        1%{?dist}
 Summary:        Cross-platform IDE for Qt
 
 # https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
@@ -23,8 +23,6 @@ Patch1:         qt-creator_desktop.patch
 Patch2:         qt-creator_qmake-names.patch
 # Fix debuginfod detection
 Patch3:         qt-creator-debuginfod.patch
-# Add ppc64le and s390x to OsArch enum
-Patch4:         qt-creator-osarch.patch
 
 BuildRequires:  chrpath
 BuildRequires:  cmake
@@ -222,6 +220,9 @@ diff -u %{SOURCE1} $outfile
 
 
 %changelog
+* Mon May 04 2026 Sandro Mani <manisandro@gmail.com> - 19.0.1-1
+- Update to 19.0.1
+
 * Thu Apr 16 2026 Jan Grulich <jgrulich@redhat.com>
 - Rebuild (qt6)
 

diff --git a/qt-creator_desktop.patch b/qt-creator_desktop.patch
index 2f80b73..a4b88f4 100644
--- a/qt-creator_desktop.patch
+++ b/qt-creator_desktop.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference qt-creator-opensource-src-19.0.0-beta1/share/applications/org.qt-project.qtcreator.desktop qt-creator-opensource-src-19.0.0-beta1-new/share/applications/org.qt-project.qtcreator.desktop
---- qt-creator-opensource-src-19.0.0-beta1/share/applications/org.qt-project.qtcreator.desktop	2026-01-27 03:56:20.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/share/applications/org.qt-project.qtcreator.desktop	2026-01-31 10:21:53.772860378 +0100
+diff -rupN --no-dereference qt-creator-opensource-src-19.0.1/share/applications/org.qt-project.qtcreator.desktop qt-creator-opensource-src-19.0.1-new/share/applications/org.qt-project.qtcreator.desktop
+--- qt-creator-opensource-src-19.0.1/share/applications/org.qt-project.qtcreator.desktop	2026-04-21 03:35:05.000000000 +0200
++++ qt-creator-opensource-src-19.0.1-new/share/applications/org.qt-project.qtcreator.desktop	2026-05-04 00:10:38.828995924 +0200
 @@ -8,5 +8,5 @@ Icon=QtProject-qtcreator
  StartupWMClass=qtcreator
  Terminal=false

diff --git a/qt-creator_qmake-names.patch b/qt-creator_qmake-names.patch
index c006348..fc0b858 100644
--- a/qt-creator_qmake-names.patch
+++ b/qt-creator_qmake-names.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/buildablehelperlibrary.cpp qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/buildablehelperlibrary.cpp
---- qt-creator-opensource-src-19.0.0-beta1/src/libs/utils/buildablehelperlibrary.cpp	2026-01-27 03:56:15.000000000 +0100
-+++ qt-creator-opensource-src-19.0.0-beta1-new/src/libs/utils/buildablehelperlibrary.cpp	2026-01-31 10:21:54.968864177 +0100
+diff -rupN --no-dereference qt-creator-opensource-src-19.0.1/src/libs/utils/buildablehelperlibrary.cpp qt-creator-opensource-src-19.0.1-new/src/libs/utils/buildablehelperlibrary.cpp
+--- qt-creator-opensource-src-19.0.1/src/libs/utils/buildablehelperlibrary.cpp	2026-04-21 03:35:01.000000000 +0200
++++ qt-creator-opensource-src-19.0.1-new/src/libs/utils/buildablehelperlibrary.cpp	2026-05-04 00:10:39.767715047 +0200
 @@ -179,7 +179,10 @@ QStringList BuildableHelperLibrary::poss
      // Qt 6 CMake built targets, such as Android, are dependent on the host installation
      // and use a script wrapper around the host qmake executable

diff --git a/sources b/sources
index 1cb6c37..5289f14 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (qt-creator-opensource-src-19.0.0-beta1.tar.xz) = bd90d69359a424e8a37c570fbdbcbf9b13ded1c6ab08018c75484d9e59d1eed8b802449968a7a23926636158ddb4c00d43d0f3c3ef159dba159026a3c2ff05cd
+SHA512 (qt-creator-opensource-src-19.0.1.tar.xz) = 9cce61ea678f5c98c5a7cecce28d74a2c22687b1fa26aeb61e475534effdaa6558fe59beef805f9c5ac77fd5c6f28bd7738b870e4801008e05c84ca0dac4a8ff

                 reply	other threads:[~2026-08-04 17:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178586467243.1.5753211516051537535.rpms-qt-creator-3cbbdc7cf302@fedoraproject.org \
    --to=manisandro@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox