git: 406069d46cee - main - devel/qtcreator: update to 7.0.0

From: Tobias C. Berner <tcberner_at_FreeBSD.org>
Date: Thu, 14 Apr 2022 18:56:08 UTC
The branch main has been updated by tcberner:

URL: https://cgit.FreeBSD.org/ports/commit/?id=406069d46ceefdbf704b9b45d094a1f6eb5cdf0f

commit 406069d46ceefdbf704b9b45d094a1f6eb5cdf0f
Author:     Tobias C. Berner <tcberner@FreeBSD.org>
AuthorDate: 2022-04-14 18:14:00 +0000
Commit:     Tobias C. Berner <tcberner@FreeBSD.org>
CommitDate: 2022-04-14 18:56:01 +0000

    devel/qtcreator: update to 7.0.0
    
    Announcement:
            https://www.qt.io/blog/qt-creator-7-released
---
 devel/qtcreator/Makefile                |   4 +-
 devel/qtcreator/distinfo                |   6 +-
 devel/qtcreator/files/patch-git_b3e9f24 |  42 -----
 devel/qtcreator/pkg-plist               | 261 ++++++++++++++++++++++++++++----
 4 files changed, 234 insertions(+), 79 deletions(-)

diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile
index b5146b30b082..1e1113a84601 100644
--- a/devel/qtcreator/Makefile
+++ b/devel/qtcreator/Makefile
@@ -1,7 +1,7 @@
 # Created by: Kris Moore <kris@pcbsd.org>
 
 PORTNAME=	qtcreator
-DISTVERSION=	6.0.2
+DISTVERSION=	7.0.0
 CATEGORIES=	devel
 MASTER_SITES=	QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}
 DISTNAME=	qt-creator-opensource-src-${DISTVERSION}
@@ -54,6 +54,8 @@ CMAKE_ARGS+=	-DCMAKE_PREFIX_PATH:STRING="${PREFIX}/llvm${LLVM_DEFAULT};${PREFIX}
 CMAKE_ON=	CMAKE_DISABLE_FIND_PACKAGE_elfutils
 # Disable precompiled headers for now, they are missing compile flags.
 CMAKE_OFF=	BUILD_WITH_PCH
+# Disable Qt6 suport for now
+CMAKE_ON+=	CMAKE_DISABLE_FIND_PACKAGE_Qt6
 
 LDFLAGS+=	-lexecinfo
 
diff --git a/devel/qtcreator/distinfo b/devel/qtcreator/distinfo
index 11373df25455..07aa6fed7231 100644
--- a/devel/qtcreator/distinfo
+++ b/devel/qtcreator/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1645295631
-SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-6.0.2.tar.xz) = 3d173c1a02ce55137a23f294e1a840d7648656e97826067eb29d9df653351bfa
-SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-6.0.2.tar.xz) = 44746240
+TIMESTAMP = 1649958248
+SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-7.0.0.tar.xz) = d39a05e48bb961cfab61135a5ee5503fc4d381c74000b910f36bf0cea37736d9
+SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-7.0.0.tar.xz) = 44922832
diff --git a/devel/qtcreator/files/patch-git_b3e9f24 b/devel/qtcreator/files/patch-git_b3e9f24
deleted file mode 100644
index db1821dbb271..000000000000
--- a/devel/qtcreator/files/patch-git_b3e9f24
+++ /dev/null
@@ -1,42 +0,0 @@
-From: Marco Bubke <marco.bubke@qt.io>
-Date: Mon, 24 Jan 2022 13:38:29 +0000 (+0100)
-Subject: QmlDesigner: Fix 32 bit
-X-Git-Tag: qds/v3.0.0~7
-X-Git-Url: https://codereview.qt-project.org/gitweb?p=qt-creator%2Fqt-creator.git;a=commitdiff_plain;h=b3e9f24ed1c0d3c0ee4917d4b449da90e00e888a;hp=e05ecea4f52174db2e9e2a4e7d5b9c59bae1fd6f
-
-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
-Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
-Reviewed-by: Christophe Giboudeaux <christophe@krop.fr>
-Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
----
-
-diff --git a/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h b/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h
-index 747c3d9a07d..27d2905e8e4 100644
---- src/plugins/qmldesigner/designercore/projectstorage/storagecache.h
-+++ src/plugins/qmldesigner/designercore/projectstorage/storagecache.h
-@@ -67,15 +67,8 @@ class StorageCache
- 
-         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)}
-         {}
- 
diff --git a/devel/qtcreator/pkg-plist b/devel/qtcreator/pkg-plist
index ba5d95d75407..5cf186b87a17 100644
--- a/devel/qtcreator/pkg-plist
+++ b/devel/qtcreator/pkg-plist
@@ -1,42 +1,42 @@
 bin/qtcreator
 bin/qtcreator.sh
-lib/qtcreator/libAdvancedDockingSystem.so.6
+lib/qtcreator/libAdvancedDockingSystem.so.7
 lib/qtcreator/libAdvancedDockingSystem.so.%%SHLIB_VER%%
-lib/qtcreator/libAggregation.so.6
+lib/qtcreator/libAggregation.so.7
 lib/qtcreator/libAggregation.so.%%SHLIB_VER%%
-lib/qtcreator/libCPlusPlus.so.6
+lib/qtcreator/libCPlusPlus.so.7
 lib/qtcreator/libCPlusPlus.so.%%SHLIB_VER%%
-lib/qtcreator/libClangSupport.so.6
+lib/qtcreator/libClangSupport.so.7
 lib/qtcreator/libClangSupport.so.%%SHLIB_VER%%
-lib/qtcreator/libExtensionSystem.so.6
+lib/qtcreator/libExtensionSystem.so.7
 lib/qtcreator/libExtensionSystem.so.%%SHLIB_VER%%
-lib/qtcreator/libGLSL.so.6
+lib/qtcreator/libGLSL.so.7
 lib/qtcreator/libGLSL.so.%%SHLIB_VER%%
-lib/qtcreator/libLanguageServerProtocol.so.6
+lib/qtcreator/libLanguageServerProtocol.so.7
 lib/qtcreator/libLanguageServerProtocol.so.%%SHLIB_VER%%
-lib/qtcreator/libLanguageUtils.so.6
+lib/qtcreator/libLanguageUtils.so.7
 lib/qtcreator/libLanguageUtils.so.%%SHLIB_VER%%
-lib/qtcreator/libModeling.so.6
+lib/qtcreator/libModeling.so.7
 lib/qtcreator/libModeling.so.%%SHLIB_VER%%
-lib/qtcreator/libProParser.so.6
+lib/qtcreator/libProParser.so.7
 lib/qtcreator/libProParser.so.%%SHLIB_VER%%
-lib/qtcreator/libQmlDebug.so.6
+lib/qtcreator/libQmlDebug.so.7
 lib/qtcreator/libQmlDebug.so.%%SHLIB_VER%%
-lib/qtcreator/libQmlEditorWidgets.so.6
+lib/qtcreator/libQmlEditorWidgets.so.7
 lib/qtcreator/libQmlEditorWidgets.so.%%SHLIB_VER%%
-lib/qtcreator/libQmlJS.so.6
+lib/qtcreator/libQmlJS.so.7
 lib/qtcreator/libQmlJS.so.%%SHLIB_VER%%
-lib/qtcreator/libQtcSsh.so.6
+lib/qtcreator/libQtcSsh.so.7
 lib/qtcreator/libQtcSsh.so.%%SHLIB_VER%%
-lib/qtcreator/libSqlite.so.6
+lib/qtcreator/libSqlite.so.7
 lib/qtcreator/libSqlite.so.%%SHLIB_VER%%
-lib/qtcreator/libTracing.so.6
+lib/qtcreator/libTracing.so.7
 lib/qtcreator/libTracing.so.%%SHLIB_VER%%
-lib/qtcreator/libUtils.so.6
+lib/qtcreator/libUtils.so.7
 lib/qtcreator/libUtils.so.%%SHLIB_VER%%
-lib/qtcreator/libqlitehtml.so.6
+lib/qtcreator/libqlitehtml.so.7
 lib/qtcreator/libqlitehtml.so.%%SHLIB_VER%%
-lib/qtcreator/libyaml-cpp.so.6
+lib/qtcreator/libyaml-cpp.so.7
 lib/qtcreator/libyaml-cpp.so.%%SHLIB_VER%%
 lib/qtcreator/plugins/libAndroid.so
 lib/qtcreator/plugins/libAutoTest.so
@@ -89,7 +89,6 @@ lib/qtcreator/plugins/libProjectExplorer.so
 lib/qtcreator/plugins/libPython.so
 lib/qtcreator/plugins/libQbsProjectManager.so
 lib/qtcreator/plugins/libQmakeProjectManager.so
-lib/qtcreator/plugins/libQmlDesigner.so
 lib/qtcreator/plugins/libQmlJSEditor.so
 lib/qtcreator/plugins/libQmlJSTools.so
 lib/qtcreator/plugins/libQmlPreview.so
@@ -102,7 +101,6 @@ lib/qtcreator/plugins/libResourceEditor.so
 lib/qtcreator/plugins/libScxmlEditor.so
 lib/qtcreator/plugins/libSerialTerminal.so
 lib/qtcreator/plugins/libSilverSearcher.so
-lib/qtcreator/plugins/libStudioWelcome.so
 lib/qtcreator/plugins/libSubversion.so
 lib/qtcreator/plugins/libTaskList.so
 lib/qtcreator/plugins/libTextEditor.so
@@ -113,10 +111,6 @@ lib/qtcreator/plugins/libVcsBase.so
 lib/qtcreator/plugins/libWebAssembly.so
 lib/qtcreator/plugins/libWelcome.so
 lib/qtcreator/plugins/libWinRt.so
-lib/qtcreator/plugins/qmldesigner/libassetexporterplugin.so
-lib/qtcreator/plugins/qmldesigner/libcomponentsplugin.so
-lib/qtcreator/plugins/qmldesigner/libqmlpreviewplugin.so
-lib/qtcreator/plugins/qmldesigner/libqtquickplugin.so
 libexec/qtcreator/buildoutputparser
 libexec/qtcreator/clangbackend
 libexec/qtcreator/cpaster
@@ -127,7 +121,6 @@ libexec/qtcreator/qtcreator_processlauncher
 libexec/qtcreator/qtpromaker
 libexec/qtcreator/sdktool
 share/applications/org.qt-project.qtcreator.desktop
-share/metainfo/org.qt-project.qtcreator.appdata.xml
 share/icons/hicolor/128x128/apps/QtProject-qtcreator.png
 share/icons/hicolor/16x16/apps/QtProject-qtcreator.png
 share/icons/hicolor/24x24/apps/QtProject-qtcreator.png
@@ -136,6 +129,7 @@ share/icons/hicolor/32x32/apps/QtProject-qtcreator.png
 share/icons/hicolor/48x48/apps/QtProject-qtcreator.png
 share/icons/hicolor/512x512/apps/QtProject-qtcreator.png
 share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
+share/metainfo/org.qt-project.qtcreator.appdata.xml
 %%DATADIR%%/android/sdk_definitions.json
 %%DATADIR%%/cplusplus/examples/CMakeLists.txt
 %%DATADIR%%/cplusplus/examples/clazy_example.cpp
@@ -255,6 +249,8 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/qml/qmlpuppet/commands/informationchangedcommand.h
 %%DATADIR%%/qml/qmlpuppet/commands/inputeventcommand.cpp
 %%DATADIR%%/qml/qmlpuppet/commands/inputeventcommand.h
+%%DATADIR%%/qml/qmlpuppet/commands/nanotracecommand.cpp
+%%DATADIR%%/qml/qmlpuppet/commands/nanotracecommand.h
 %%DATADIR%%/qml/qmlpuppet/commands/pixmapchangedcommand.cpp
 %%DATADIR%%/qml/qmlpuppet/commands/pixmapchangedcommand.h
 %%DATADIR%%/qml/qmlpuppet/commands/puppetalivecommand.cpp
@@ -409,6 +405,7 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/MoveGizmo.qml
 %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/NodeNodeView.qml
 %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/Overlay2D.qml
+%%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ParticleEmitterGizmo.qml
 %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ParticleSystemGizmo.qml
 %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/PlanarDraggable.qml
 %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/PlanarMoveHandle.qml
@@ -528,11 +525,13 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/qml/qmlpuppet/types/enumeration.h
 %%DATADIR%%/qml/qmlpuppet/types/types.pri
 %%DATADIR%%/qmldesigner/formatconfiguration.json
-%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddImport.qml
+%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddModuleView.qml
 %%DATADIR%%/qmldesigner/itemLibraryQmlSources/Assets.qml
 %%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml
 %%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemsView.qml
-%%DATADIR%%/qmldesigner/itemLibraryQmlSources/LibraryHeader.qml
+%%DATADIR%%/qmldesigner/itemLibraryQmlSources/PlusButton.qml
+%%DATADIR%%/qmldesigner/itemLibraryQmlSources/SearchBox.qml
+%%DATADIR%%/qmldesigner/misc/BusyIndicator.qml
 %%DATADIR%%/qmldesigner/newprojectdialog/NewProjectDialog.qml
 %%DATADIR%%/qmldesigner/newprojectdialog/image/logo.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/logo@2x.png
@@ -546,8 +545,8 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-fusion@2x.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-imagine.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-imagine@2x.png
-%%DATADIR%%/qmldesigner/newprojectdialog/image/style-macOs@2x.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-macos.png
+%%DATADIR%%/qmldesigner/newprojectdialog/image/style-macos@2x.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_dark.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_dark@2x.png
 %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_light.png
@@ -561,6 +560,9 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/Details.qml
 %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/DialogValues.qml
 %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/NewProjectView.qml
+%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialog.qml
+%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialogButton.qml
+%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialogButtonBox.qml
 %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/Styles.qml
 %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/qmldir
 %%DATADIR%%/qmldesigner/newprojectdialog/imports/ProjectType/DefaultProject.qml
@@ -810,6 +812,7 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%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/Switch.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabBar.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabButton.qml
 %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextArea.qml
@@ -827,11 +830,204 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/qmldesigner/qt4mcu/qul-17.qml
 %%DATADIR%%/qmldesigner/qt4mcu/qul-18.qml
 %%DATADIR%%/qmldesigner/qt4mcu/qul-19.qml
+%%DATADIR%%/qmldesigner/qt4mcu/qul-20.qml
 %%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesDelegate.qml
 %%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesList.qml
 %%DATADIR%%/qmldesigner/statesEditorQmlSources/images/checkers.png
-%%DATADIR%%/qmldesigner/workspacePresets/3D_Preset.wrk
+%%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
+%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/custom_checkbox.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/custom_checkbox@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/customdial/custom_dial.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customdial/custom_dial@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customdial/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/customdial/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/customslider/custom_slider.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customslider/custom_slider@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customslider/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/customslider/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/custom_spinbox.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/custom_spinbox@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/custom_switch.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/custom_switch@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/flow_item.png
+%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/flow_item@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/flowview/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/flowview/flow_view.png
+%%DATADIR%%/qmldesigner/studio_templates/files/flowview/flowview2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/flowview/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file.js.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file_javascript.png
+%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file_javascript@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/javascript/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/data_listmodel.png
+%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/data_listmodel@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/pane/custom_panes.png
+%%DATADIR%%/qmldesigner/studio_templates/files/pane/custom_panes@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/pane/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/pane/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file_qml.png
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file_qml@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/DataModel.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/GridDelegate.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/GridView.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/ListDelegate.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/ListView.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/data_gridmodel.png
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/data_gridmodel@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file_ui.png
+%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file_ui@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/custom_stacked_view.png
+%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/custom_stacked_view@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/custom_swipe_view.png
+%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/custom_swipe_view@2.png
+%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/file.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/app_mcu.qmlproject
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/Screen01.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/contentmodule.main.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/desktop_blank.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/desktop_blank@2.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/CMakeLists.txt
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Constants.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/DirectoryFontLoader.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Button.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/CheckBox.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/DefaultStyle.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Dial.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/ProgressBar.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/RadioButton.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Slider.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/SwipeView.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Switch.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button-disabled.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-checked-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-checked.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-disabled.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-partially-checked-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-partially-checked.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-background-disabled.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-background.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-progress.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/progressbar-background.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/progressbar-progress.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-checked-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-checked.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-disabled.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-disabled-vertical.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-disabled.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-vertical.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-disabled-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-disabled.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-pressed.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-progress-vertical.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-progress.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-bg.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-handle.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-i.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-o.png
+%%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/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/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/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/application/Screen01.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank@2.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/application/place_holder.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/application/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/App.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/CMakeLists.content.txt.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/CMakeLists.imports.txt.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/CMakeLists.main.txt.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/app.qmlproject.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/app_environment.h.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/contentmodule.main.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/fonts.txt
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/import_qml_plugins.h.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.cpp.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/qmlmodules.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/qtquickcontrols2.conf
+%%DATADIR%%/qmldesigner/studio_templates/projects/common/qtquickcontrols2.conf.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/defaults/qmlapplication-project-page.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/Screen01.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/desktop_launcher.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/desktop_launcher@2.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/fonts.txt
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/Screen01.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/mobile_scroll.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/mobile_scroll@2.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/App.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/CMakeLists.content.txt.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/Screen01.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/Screen02.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/mobile_stack.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/mobile_stack@2.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/wizard.json
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/App.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/CMakeLists.content.txt.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/Screen01.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/Screen02.ui.qml.tpl
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/detailsPage.qml
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/mobile_swipe.png
+%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/mobile_swipe@2.png
+%%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/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/workspacePresets/Animation-2D.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/Animation-3D.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/Basic.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/Code.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/Essentials-3D.wrk
 %%DATADIR%%/qmldesigner/workspacePresets/Essentials.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/UX-Design.wrk
+%%DATADIR%%/qmldesigner/workspacePresets/Views-All.wrk
 %%DATADIR%%/qmlicons/Qt/16x16/BorderImage.png
 %%DATADIR%%/qmlicons/Qt/16x16/BusyIndicator.png
 %%DATADIR%%/qmlicons/Qt/16x16/Button.png
@@ -916,6 +1112,8 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/templates/wizards/autotest/files/catch2_tst.cpp
 %%DATADIR%%/templates/wizards/autotest/files/googlecommon.js
 %%DATADIR%%/templates/wizards/autotest/files/gtest_dependency.pri
+%%DATADIR%%/templates/wizards/autotest/files/setup.cpp
+%%DATADIR%%/templates/wizards/autotest/files/setup.h
 %%DATADIR%%/templates/wizards/autotest/files/tst.pro
 %%DATADIR%%/templates/wizards/autotest/files/tst.qbs
 %%DATADIR%%/templates/wizards/autotest/files/tst.txt
@@ -936,9 +1134,6 @@ share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 %%DATADIR%%/templates/wizards/classes/itemmodel/wizard.json
 %%DATADIR%%/templates/wizards/classes/python/file.py
 %%DATADIR%%/templates/wizards/classes/python/wizard.json
-%%DATADIR%%/templates/wizards/classes/qtquickui/file.qml.tpl
-%%DATADIR%%/templates/wizards/classes/qtquickui/fileForm.ui.qml.tpl
-%%DATADIR%%/templates/wizards/classes/qtquickui/wizard.json
 %%DATADIR%%/templates/wizards/codesnippet/main.cpp
 %%DATADIR%%/templates/wizards/codesnippet/project.pro
 %%DATADIR%%/templates/wizards/codesnippet/wizard.xml