git: 2aa4be7855fa - main - devel/qtcreator: Update to 15.0.0

From: Jason E. Hale <jhale_at_FreeBSD.org>
Date: Tue, 17 Dec 2024 06:09:01 UTC
The branch main has been updated by jhale:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2aa4be7855fa143d543738707234dca71ff6f18e

commit 2aa4be7855fa143d543738707234dca71ff6f18e
Author:     Jason E. Hale <jhale@FreeBSD.org>
AuthorDate: 2024-12-17 05:32:17 +0000
Commit:     Jason E. Hale <jhale@FreeBSD.org>
CommitDate: 2024-12-17 05:54:05 +0000

    devel/qtcreator: Update to 15.0.0
    
    Fixes build with Qt 6.8.x [1]
    
    Announcement: https://www.qt.io/blog/qt-creator-15-released
    
    PR:             283290 [1]
---
 devel/qtcreator/Makefile                           | 11 ++---
 devel/qtcreator/distinfo                           |  8 ++--
 .../files/patch-src_libs_utils_algorithm.h         |  4 +-
 .../patch-src_plugins_qmldesigner_CMakeLists.txt   | 16 +++----
 .../files/patch-src_tools_process__stub_main.cpp   | 18 +++----
 devel/qtcreator/pkg-plist                          | 56 ++++++++++++++--------
 6 files changed, 62 insertions(+), 51 deletions(-)

diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile
index 860dffa66d68..fd89b65fc54b 100644
--- a/devel/qtcreator/Makefile
+++ b/devel/qtcreator/Makefile
@@ -1,14 +1,10 @@
 PORTNAME=	qtcreator
-DISTVERSION=	14.0.2
-PORTREVISION=	1
+DISTVERSION=	15.0.0
 CATEGORIES=	devel
 MASTER_SITES=	QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}
 DISTNAME=	qt-creator-opensource-src-${DISTVERSION}
 DIST_SUBDIR=	KDE/Qt/qtcreator
 
-PATCH_SITES=	https://github.com/qt-creator/qt-creator/commit/
-PATCHFILES+=	f175ec933f1c5c5d7a345edbaacc8ff90202aee2.patch:-p1 # clang-format19 fix; will be in qtcreator 15.0
-
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	C++ and QML IDE for Qt development
 WWW=		https://qt-project.org/wiki/Category:Tools::QtCreator
@@ -29,8 +25,9 @@ USES=		cmake compiler:c++17-lang desktop-file-utils gl \
 		qt:6 shebangfix tar:xz
 USE_GL=		gl
 USE_LDCONFIG=	${LOCALBASE}/lib/${PORTNAME}
-USE_QT=		5compat base declarative positioning quick3d quicktimeline \
-		serialport shadertools sqldriver-sqlite svg tools translations webchannel
+USE_QT=		5compat base declarative positioning quick3d \
+		quicktimeline serialport shadertools sqldriver-sqlite \
+		svg tools translations webchannel
 
 SHEBANG_GLOB=	*.pl *.py *.sh
 SHEBANG_FILES=	src/plugins/terminal/tests/* \
diff --git a/devel/qtcreator/distinfo b/devel/qtcreator/distinfo
index d71289b05176..523b73d2868b 100644
--- a/devel/qtcreator/distinfo
+++ b/devel/qtcreator/distinfo
@@ -1,5 +1,3 @@
-TIMESTAMP = 1730535650
-SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-14.0.2.tar.xz) = b2d2f878bb6928a8e6e30d87600bdd93cf404c2619a151c64bdcdc8cd0783892
-SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-14.0.2.tar.xz) = 52423044
-SHA256 (KDE/Qt/qtcreator/f175ec933f1c5c5d7a345edbaacc8ff90202aee2.patch) = 5f4528f1b927c68a0a162a9f2c1b01d49387355eb6e5640dd2b2a8332d6383f9
-SIZE (KDE/Qt/qtcreator/f175ec933f1c5c5d7a345edbaacc8ff90202aee2.patch) = 1196
+TIMESTAMP = 1734242208
+SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-15.0.0.tar.xz) = 23b1c6b478ca760997ecddd4c728f0da280b0696008a9bddd9a1068f16d48f72
+SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-15.0.0.tar.xz) = 53254544
diff --git a/devel/qtcreator/files/patch-src_libs_utils_algorithm.h b/devel/qtcreator/files/patch-src_libs_utils_algorithm.h
index cbe9421ff8bc..426257524d84 100644
--- a/devel/qtcreator/files/patch-src_libs_utils_algorithm.h
+++ b/devel/qtcreator/files/patch-src_libs_utils_algorithm.h
@@ -4,7 +4,7 @@ Clang >= 19.1.0-rc1 enables C++17 relaxed template template argument
 matching by default. The workaround in qtcreator before this was the
 case is now causing build failures.
 
---- src/libs/utils/algorithm.h.orig	2024-09-27 01:17:49 UTC
+--- src/libs/utils/algorithm.h.orig	2024-11-27 10:00:22 UTC
 +++ src/libs/utils/algorithm.h
 @@ -258,7 +258,7 @@ Q_REQUIRED_RESULT decltype(auto) transform(SC &&contai
           typename Result = std::decay_t<std::invoke_result_t<F, Value&>>,
@@ -15,7 +15,7 @@ case is now causing build failures.
  // "Matching of template template-arguments excludes compatible templates"
  // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0522r0.html (P0522R0)
  // in C++17 makes the above match e.g. C=std::vector even though that takes two
-@@ -809,7 +809,7 @@ Q_REQUIRED_RESULT decltype(auto) transform(SC &&contai
+@@ -833,7 +833,7 @@ Q_REQUIRED_RESULT decltype(auto) transform(SC &&contai
      return transform<ResultContainer>(std::forward<SC>(container), function);
  }
  
diff --git a/devel/qtcreator/files/patch-src_plugins_qmldesigner_CMakeLists.txt b/devel/qtcreator/files/patch-src_plugins_qmldesigner_CMakeLists.txt
index 22bf88593db9..e313fc481741 100644
--- a/devel/qtcreator/files/patch-src_plugins_qmldesigner_CMakeLists.txt
+++ b/devel/qtcreator/files/patch-src_plugins_qmldesigner_CMakeLists.txt
@@ -5,14 +5,14 @@ warning: unknown warning option '-Werror=maybe-uninitialized'; did you mean '-We
 
 Regressed by: https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=8129f886bcc50e91f55de15f751df183f0db822c
 
---- src/plugins/qmldesigner/CMakeLists.txt.orig	2024-08-06 01:26:37 UTC
+--- src/plugins/qmldesigner/CMakeLists.txt.orig	2024-11-27 10:00:24 UTC
 +++ src/plugins/qmldesigner/CMakeLists.txt
-@@ -50,7 +50,7 @@ if (TARGET QmlDesignerUtils)
+@@ -110,7 +110,7 @@ extend_qtc_plugin(QmlDesigner
+ extend_qtc_plugin(QmlDesigner
+     CONDITION ENABLE_COMPILE_WARNING_AS_ERROR
+     PROPERTIES COMPILE_WARNING_AS_ERROR ON
+-    PUBLIC_COMPILE_OPTIONS $<$<COMPILE_LANG_AND_ID:CXX,Clang,GNU>:-Wno-error=maybe-uninitialized>
++    PUBLIC_COMPILE_OPTIONS $<$<COMPILE_LANG_AND_ID:CXX,GNU>:-Wno-error=maybe-uninitialized>
  )
  
- if (TARGET QmlDesignerUtils)
--    target_compile_options(QmlDesignerUtils PUBLIC $<$<COMPILE_LANG_AND_ID:CXX,Clang,GNU>:-Wno-error=maybe-uninitialized>)
-+    target_compile_options(QmlDesignerUtils PUBLIC $<$<COMPILE_LANG_AND_ID:CXX,GNU>:-Wno-error=maybe-uninitialized>)
-     target_compile_options(QmlDesignerUtils PUBLIC $<$<COMPILE_LANG_AND_ID:CXX,Clang>:-Wno-unneeded-internal-declaration>)
- endif()
- 
+ if (QTC_STATIC_BUILD AND TARGET QmlDesigner)
diff --git a/devel/qtcreator/files/patch-src_tools_process__stub_main.cpp b/devel/qtcreator/files/patch-src_tools_process__stub_main.cpp
index 2045918eab7c..7e0cec3c0c59 100644
--- a/devel/qtcreator/files/patch-src_tools_process__stub_main.cpp
+++ b/devel/qtcreator/files/patch-src_tools_process__stub_main.cpp
@@ -1,4 +1,4 @@
---- src/tools/process_stub/main.cpp.orig	2023-09-27 07:28:08 UTC
+--- src/tools/process_stub/main.cpp.orig	2024-11-27 10:00:23 UTC
 +++ src/tools/process_stub/main.cpp
 @@ -22,10 +22,9 @@
  #include <unistd.h>
@@ -19,16 +19,18 @@
 +#elif defined(Q_OS_FREEBSD)
 +    ptrace(PT_DETACH, inferiorId, 0, SIGSTOP);
 +    sendPid(inferiorId);
- #else
- 
+ #elif defined(Q_OS_LINUX)
      if (debugMode) {
-@@ -287,6 +289,9 @@ void setupUnixInferior()
+         qCInfo(log) << "Waiting for SIGTRAP from inferiors execve ...";
+@@ -287,6 +289,11 @@ void setupUnixInferior()
+             *shared_child_pid = getpid();
              // Suspend ourselves ...
              raise(SIGSTOP);
-         });
++        });
 +#elif defined(Q_OS_FREEBSD)
 +        // PT_TRACE_ME will stop execution of the child process as soon as execve is called.
-+        inferiorProcess.setChildProcessModifier([] { ptrace(PT_TRACE_ME, 0, 0, 0); });
- #else
++        inferiorProcess.setChildProcessModifier([] {
++            ptrace(PT_TRACE_ME, 0, 0, 0);
+         });
+ #elif defined(Q_OS_LINUX)
          // PTRACE_TRACEME will stop execution of the child process as soon as execve is called.
-         inferiorProcess.setChildProcessModifier([] {
diff --git a/devel/qtcreator/pkg-plist b/devel/qtcreator/pkg-plist
index 17adaf4bf846..cd9c83b1040b 100644
--- a/devel/qtcreator/pkg-plist
+++ b/devel/qtcreator/pkg-plist
@@ -6,6 +6,8 @@ lib/qtcreator/libAggregation.so.%%SHLIB_SHVER%%
 lib/qtcreator/libAggregation.so.%%SHLIB_VER%%
 lib/qtcreator/libCPlusPlus.so.%%SHLIB_SHVER%%
 lib/qtcreator/libCPlusPlus.so.%%SHLIB_VER%%
+lib/qtcreator/libCmdBridgeClient.so.%%SHLIB_SHVER%%
+lib/qtcreator/libCmdBridgeClient.so.%%SHLIB_VER%%
 lib/qtcreator/libExtensionSystem.so.%%SHLIB_SHVER%%
 lib/qtcreator/libExtensionSystem.so.%%SHLIB_VER%%
 lib/qtcreator/libGLSL.so.%%SHLIB_SHVER%%
@@ -24,6 +26,8 @@ lib/qtcreator/libProParser.so.%%SHLIB_SHVER%%
 lib/qtcreator/libProParser.so.%%SHLIB_VER%%
 lib/qtcreator/libQmlDebug.so.%%SHLIB_SHVER%%
 lib/qtcreator/libQmlDebug.so.%%SHLIB_VER%%
+lib/qtcreator/libQmlDesignerCore.so.%%SHLIB_SHVER%%
+lib/qtcreator/libQmlDesignerCore.so.%%SHLIB_VER%%
 lib/qtcreator/libQmlEditorWidgets.so.%%SHLIB_SHVER%%
 lib/qtcreator/libQmlEditorWidgets.so.%%SHLIB_VER%%
 lib/qtcreator/libQmlJS.so.%%SHLIB_SHVER%%
@@ -36,6 +40,8 @@ lib/qtcreator/libTracing.so.%%SHLIB_SHVER%%
 lib/qtcreator/libTracing.so.%%SHLIB_VER%%
 lib/qtcreator/libUtils.so.%%SHLIB_SHVER%%
 lib/qtcreator/libUtils.so.%%SHLIB_VER%%
+lib/qtcreator/libZip.so.%%SHLIB_SHVER%%
+lib/qtcreator/libZip.so.%%SHLIB_VER%%
 lib/qtcreator/libqlitehtml.so.%%SHLIB_SHVER%%
 lib/qtcreator/libqlitehtml.so.%%SHLIB_VER%%
 lib/qtcreator/libqtkeychain.so.%%SHLIB_SHVER%%
@@ -180,6 +186,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/changelog/changes-14.0.0.md
 %%DATADIR%%/changelog/changes-14.0.1.md
 %%DATADIR%%/changelog/changes-14.0.2.md
+%%DATADIR%%/changelog/changes-15.0.0.md
 %%DATADIR%%/changelog/changes-2.0.0
 %%DATADIR%%/changelog/changes-2.0.1
 %%DATADIR%%/changelog/changes-2.1.0
@@ -325,8 +332,6 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/debugger/setup.cfg
 %%DATADIR%%/debugger/stdtypes.py
 %%DATADIR%%/debugger/utils.py
-%%DATADIR%%/externaltools/lrelease.xml
-%%DATADIR%%/externaltools/lupdate.xml
 %%DATADIR%%/externaltools/qml.xml
 %%DATADIR%%/externaltools/qmlscene.xml
 %%DATADIR%%/externaltools/vi.xml
@@ -360,6 +365,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/generic-highlighter/syntax/perl.xml
 %%DATADIR%%/generic-highlighter/syntax/powershell.xml
 %%DATADIR%%/generic-highlighter/syntax/qdocconf.xml
+%%DATADIR%%/generic-highlighter/syntax/qface.xml
 %%DATADIR%%/generic-highlighter/syntax/ruby.xml
 %%DATADIR%%/generic-highlighter/syntax/spdx-comments.xml
 %%DATADIR%%/generic-highlighter/syntax/toml.xml
@@ -381,34 +387,21 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/indexer_preincludes/qglobal.h
 %%DATADIR%%/indexer_preincludes/windows.h
 %%DATADIR%%/jsonschemas/project.json
+%%DATADIR%%/lua-lupdate/README.md
+%%DATADIR%%/lua-lupdate/lupdate.lua
 %%DATADIR%%/lua-plugins/luals/init.lua
 %%DATADIR%%/lua-plugins/luals/luals.lua
-%%DATADIR%%/lua-plugins/luatests/INSPECT-LICENSE.txt
 %%DATADIR%%/lua-plugins/luatests/guidemo.lua
-%%DATADIR%%/lua-plugins/luatests/inspect.lua
 %%DATADIR%%/lua-plugins/luatests/luatests.lua
 %%DATADIR%%/lua-plugins/luatests/qtctest.lua
 %%DATADIR%%/lua-plugins/luatests/tests.lua
 %%DATADIR%%/lua-plugins/luatests/tst_aspectcontainer.lua
 %%DATADIR%%/lua-plugins/luatests/tst_fetch.lua
+%%DATADIR%%/lua-plugins/luatests/tst_texteditor.lua
 %%DATADIR%%/lua-plugins/luatests/tst_utils.lua
 %%DATADIR%%/lua-plugins/rustls/init.lua
 %%DATADIR%%/lua-plugins/rustls/rustls.lua
 %%DATADIR%%/lua-plugins/tellajoke/tellajoke.lua
-%%DATADIR%%/lua/meta/action.lua
-%%DATADIR%%/lua/meta/async.lua
-%%DATADIR%%/lua/meta/core.lua
-%%DATADIR%%/lua/meta/fetch.lua
-%%DATADIR%%/lua/meta/gui.lua
-%%DATADIR%%/lua/meta/lsp.lua
-%%DATADIR%%/lua/meta/messagemanager.lua
-%%DATADIR%%/lua/meta/process.lua
-%%DATADIR%%/lua/meta/qt.lua
-%%DATADIR%%/lua/meta/qtc.lua
-%%DATADIR%%/lua/meta/settings.lua
-%%DATADIR%%/lua/meta/simpletypes.lua
-%%DATADIR%%/lua/meta/utils.lua
-%%DATADIR%%/lua/meta/widgets.lua
 %%DATADIR%%/modeleditor/standard.def
 %%DATADIR%%/package-manager/LICENSE.conan
 %%DATADIR%%/package-manager/auto-setup.cmake
@@ -472,6 +465,8 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/connectionseditor/TabCheckButton.qml
 %%DATADIR%%/qmldesigner/connectionseditor/imports/ConnectionsEditor/Constants.qml
 %%DATADIR%%/qmldesigner/connectionseditor/imports/ConnectionsEditor/qmldir
+%%DATADIR%%/qmldesigner/contentLibraryImages/camera.png
+%%DATADIR%%/qmldesigner/contentLibraryImages/light.png
 %%DATADIR%%/qmldesigner/contentLibraryImages/new_flag_triangle.png
 %%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibrary.qml
 %%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryEffectContextMenu.qml
@@ -764,8 +759,10 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialItem.qml
 %%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureBrowserContextMenu.qml
 %%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureItem.qml
+%%DATADIR%%/qmldesigner/materialEditorQmlSources/ColorEditorPopup.qml
 %%DATADIR%%/qmldesigner/materialEditorQmlSources/EmptyMaterialEditorPane.qml
 %%DATADIR%%/qmldesigner/materialEditorQmlSources/MaterialEditorPane.qml
+%%DATADIR%%/qmldesigner/materialEditorQmlSources/MaterialEditorPreview.qml
 %%DATADIR%%/qmldesigner/materialEditorQmlSources/MaterialEditorToolBar.qml
 %%DATADIR%%/qmldesigner/materialEditorQmlSources/MaterialEditorTopSection.qml
 %%DATADIR%%/qmldesigner/misc/BusyIndicator.qml
@@ -1121,6 +1118,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBox.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBoxIndicator.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBoxInput.qml
+%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SplitView.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Switch.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabBar.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabButton.qml
@@ -1171,6 +1169,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/qt4mcu/qul-25.qml
 %%DATADIR%%/qmldesigner/qt4mcu/qul-26.qml
 %%DATADIR%%/qmldesigner/qt4mcu/qul-27.qml
+%%DATADIR%%/qmldesigner/qt4mcu/qul-28.qml
 %%DATADIR%%/qmldesigner/stateseditor/Main.qml
 %%DATADIR%%/qmldesigner/stateseditor/MenuButton.qml
 %%DATADIR%%/qmldesigner/stateseditor/StateMenu.qml
@@ -1179,7 +1178,12 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/stateseditor/images/checkers.png
 %%DATADIR%%/qmldesigner/stateseditor/imports/StatesEditor/Constants.qml
 %%DATADIR%%/qmldesigner/stateseditor/imports/StatesEditor/qmldir
+%%DATADIR%%/qmldesigner/statusbar/IssuesOutputPanel.qml
+%%DATADIR%%/qmldesigner/statusbar/IssuesPanel.qml
 %%DATADIR%%/qmldesigner/statusbar/Main.qml
+%%DATADIR%%/qmldesigner/statusbar/NotificationButton.qml
+%%DATADIR%%/qmldesigner/statusbar/OutputPanel.qml
+%%DATADIR%%/qmldesigner/statusbar/TabBarButton.qml
 %%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button.png
 %%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button@2.png
 %%DATADIR%%/qmldesigner/studio_templates/files/custombutton/file.qml.tpl
@@ -1315,13 +1319,15 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/qmldir
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Screen01.ui.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/app_mcu.qmlproject.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/assets.txt
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/constants_module.qmlproject.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank.png
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank@2.png
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/images.txt
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/main.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/mcuqtquickcontrols2.conf
-%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/qmldir
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/qmldir.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/wizard.json
 %%DATADIR%%/qmldesigner/studio_templates/projects/application/Screen01.ui.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank.png
@@ -1364,14 +1370,12 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/wizard.json
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/CMakeLists.importmodule.txt.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/Constants.qml.tpl
-%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/DirectoryFontLoader.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/EventListModel.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/EventListSimulator.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/JsonData.qml.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/data.json.tpl
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/designer/plugin.metainfo
 %%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/importmodule.qmldir.tpl
-%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/qmldir
 %%DATADIR%%/qmldesigner/textureEditorQmlSource/EmptyTextureEditorPane.qml
 %%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorPane.qml
 %%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorToolBar.qml
@@ -1465,6 +1469,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/qmldesigner/workspacePresets/Code.wrk
 %%DATADIR%%/qmldesigner/workspacePresets/Essentials-3D.wrk
 %%DATADIR%%/qmldesigner/workspacePresets/Essentials.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/Lite-QML-Designer.wrk
 %%DATADIR%%/qmldesigner/workspacePresets/UX-Design.wrk
 %%DATADIR%%/qmldesigner/workspacePresets/Views-All.wrk
 %%DATADIR%%/qmldesigner/workspacePresets/order.json
@@ -1530,12 +1535,14 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/snippets/test.xml
 %%DATADIR%%/snippets/text.xml
 %%DATADIR%%/styles/creator-dark.xml
+%%DATADIR%%/styles/dark-2024.xml
 %%DATADIR%%/styles/dark.xml
 %%DATADIR%%/styles/default.xml
 %%DATADIR%%/styles/default_classic.xml
 %%DATADIR%%/styles/grayscale.xml
 %%DATADIR%%/styles/inkpot.xml
 %%DATADIR%%/styles/intellij.xml
+%%DATADIR%%/styles/light-2024.xml
 %%DATADIR%%/styles/mabakor.xml
 %%DATADIR%%/styles/modnokai_night_shift_v2.xml
 %%DATADIR%%/styles/solarized-dark.xml
@@ -1639,6 +1646,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/templates/wizards/global/guiapplication@2x.png
 %%DATADIR%%/templates/wizards/global/lib.png
 %%DATADIR%%/templates/wizards/global/lib@2x.png
+%%DATADIR%%/templates/wizards/projects/consoleapp/CMakeLists-Qt6.txt
 %%DATADIR%%/templates/wizards/projects/consoleapp/CMakeLists.txt
 %%DATADIR%%/templates/wizards/projects/consoleapp/file.pro
 %%DATADIR%%/templates/wizards/projects/consoleapp/file.qbs
@@ -1740,6 +1748,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/qtquickuiprototype.png
 %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/qtquickuiprototype@2x.png
 %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/wizard.json
+%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/CMakeLists-Qt6.txt
 %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/CMakeLists.txt
 %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/main.cpp
 %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/meson.build
@@ -1768,6 +1777,8 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/templates/wizards/qtcreatorplugin/CMakeLists.txt
 %%DATADIR%%/templates/wizards/qtcreatorplugin/MyPlugin.json.in
 %%DATADIR%%/templates/wizards/qtcreatorplugin/README.md
+%%DATADIR%%/templates/wizards/qtcreatorplugin/github_scripts_plugin.json
+%%DATADIR%%/templates/wizards/qtcreatorplugin/github_scripts_registerPlugin.js
 %%DATADIR%%/templates/wizards/qtcreatorplugin/github_workflows_README.md
 %%DATADIR%%/templates/wizards/qtcreatorplugin/github_workflows_build_cmake.yml
 %%DATADIR%%/templates/wizards/qtcreatorplugin/myplugin.cpp
@@ -1776,6 +1787,8 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/templates/wizards/qtcreatorplugin/qtcreatorplugin.png
 %%DATADIR%%/templates/wizards/qtcreatorplugin/qtcreatorplugin@2x.png
 %%DATADIR%%/templates/wizards/qtcreatorplugin/wizard.json
+%%DATADIR%%/themes/2024.tokenmapping
+%%DATADIR%%/themes/dark-2024.creatortheme
 %%DATADIR%%/themes/dark.creatortheme
 %%DATADIR%%/themes/dark.figmatokens
 %%DATADIR%%/themes/default.creatortheme
@@ -1784,6 +1797,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/themes/flat-dark.creatortheme
 %%DATADIR%%/themes/flat-light.creatortheme
 %%DATADIR%%/themes/flat.creatortheme
+%%DATADIR%%/themes/light-2024.creatortheme
 %%DATADIR%%/themes/light-palette.inc
 %%DATADIR%%/themes/light.figmatokens
 %%DATADIR%%/translations/qtcreator_cs.qm