diff --git a/0001-CMake-Fix-find_package-call-in-Qt6QmlFindQmlscIntern.patch b/0001-CMake-Fix-find_package-call-in-Qt6QmlFindQmlscIntern.patch new file mode 100644 index 0000000..c42fb93 --- /dev/null +++ b/0001-CMake-Fix-find_package-call-in-Qt6QmlFindQmlscIntern.patch @@ -0,0 +1,42 @@ +From eff776c676b042bd75604105a3876f999b9808d5 Mon Sep 17 00:00:00 2001 +From: Joerg Bornemann +Date: Mon, 23 Dec 2024 12:47:21 +0100 +Subject: [PATCH] CMake: Fix find_package call in Qt6QmlFindQmlscInternal.cmake + +Qt6QmlFindQmlscInternal.cmake tries to find the +Qt6QmlCompilerPlusPrivateTools package and specifies a version. That +version was PROJECT_VERSION, which is the version of the user project. +It should be the Qt's version instead. + +Read the package version of the Qt6::Qml target and use that in the +find_package call. The target is guaranteed to exist, because the +Qt6QmlFindQmlscInternal.cmake inclusion is guarded by a check for this +target. + +This amends commit b0f1ec4e394dcee82400964225be485a7cdd3c53. + +Pick-to: 6.8 6.9 +Fixes: QTBUG-132421 +Change-Id: I04402296b351ef8df991ade697c633594b0b17b5 +Reviewed-by: Alexey Edelev +--- + src/qml/Qt6QmlFindQmlscInternal.cmake | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/qml/Qt6QmlFindQmlscInternal.cmake b/src/qml/Qt6QmlFindQmlscInternal.cmake +index f02103f45f..3f549c7cbe 100644 +--- a/src/qml/Qt6QmlFindQmlscInternal.cmake ++++ b/src/qml/Qt6QmlFindQmlscInternal.cmake +@@ -30,7 +30,8 @@ endif() + + # This can't use the find_package(Qt6 COMPONENTS) signature, because Qt6Config uses NO_DEFAULT and + # won't look at the prepended extra find root paths. +-find_package(Qt6QmlCompilerPlusPrivateTools ${PROJECT_VERSION} QUIET CONFIG ++get_target_property(_qt_qml_package_version Qt6::Qml _qt_package_version) ++find_package(Qt6QmlCompilerPlusPrivateTools ${_qt_qml_package_version} QUIET CONFIG + PATHS + ${_qt_additional_host_packages_prefix_paths} + ) +-- +2.47.1 + diff --git a/_constraints b/_constraints index 091cbbb..f930b65 100644 --- a/_constraints +++ b/_constraints @@ -2,10 +2,20 @@ - 20 + 25 4 + + + s390x + + + + 9 + + + ppc64 @@ -35,7 +45,7 @@ - 2 + 3 2 diff --git a/qt6-declarative.changes b/qt6-declarative.changes index 5a70269..0835d38 100644 --- a/qt6-declarative.changes +++ b/qt6-declarative.changes @@ -1,3 +1,88 @@ +------------------------------------------------------------------- +Sat Jan 18 15:34:27 UTC 2025 - Christophe Marin + +- Add patch to fix qmlsc detection: + * 0001-CMake-Fix-find_package-call-in-Qt6QmlFindQmlscIntern.patch + +------------------------------------------------------------------- +Mon Dec 2 13:02:02 UTC 2024 - Christophe Marin + +- Update to 6.8.1: + * https://www.qt.io/blog/qt-6.8.1-released +- Drop patches, merged upstream: + * 0001-Revert-QQmlDelegateModel-fix-delegates-not-being-cre.patch + * 0002-QQmlDelegateModel-fix-delegates-not-being-created-in.patch + * 0001-Compiler-Wrap-raw-string-literals-in-QStringLiteral-.patch + * 0001-QQuickItemView-fix-crash-with-zero-size-SwipeView-th.patch + * 0001-QQuickAccessibleAttached-Let-implicit-names-work-whe.patch + * 0001-QQuickItem-map-To-From-Item-Account-for-not-having-a.patch + * 0001-Log-state-transitions-for-the-GC.patch + * 0001-Engine-Mark-created-wrapped-objects-after-GCState-Ma.patch + +------------------------------------------------------------------- +Tue Nov 12 15:40:15 UTC 2024 - Fabian Vogt + +- Replace 0001-WIP-speculative-gc-fix.patch with newer ones, + should unbreak spectacle and some others (kde#496139): + * 0001-Log-state-transitions-for-the-GC.patch + * 0001-Engine-Mark-created-wrapped-objects-after-GCState-Ma.patch + +------------------------------------------------------------------- +Wed Nov 6 19:20:07 UTC 2024 - Fabian Vogt + +- Add patch (pending upstream) to fix properties getting GC'd: + (QTBUG-128789, kde#494804) + * 0001-WIP-speculative-gc-fix.patch + +------------------------------------------------------------------- +Mon Nov 4 17:50:07 UTC 2024 - Christophe Marin + +- Add upstream change (QTBUG-129500, kde#495089): + * 0001-QQuickItem-map-To-From-Item-Account-for-not-having-a.patch + +------------------------------------------------------------------- +Fri Oct 25 11:42:28 UTC 2024 - Christophe Marin + +- Add upstream changes: + * 0001-QQuickItemView-fix-crash-with-zero-size-SwipeView-th.patch + (QTBUG-129622, kde#493854) + * 0001-QQuickAccessibleAttached-Let-implicit-names-work-whe.patch + (QTBUG-130360) + +------------------------------------------------------------------- +Tue Oct 15 09:37:16 UTC 2024 - Antonio Larrosa + +- Update memory constraints for s390x and use %limit_build + +------------------------------------------------------------------- +Tue Oct 15 07:52:36 UTC 2024 - Christophe Marin + +- Update disk constraints + +------------------------------------------------------------------- +Wed Oct 9 16:52:34 UTC 2024 - Christophe Marin + +- Add upstream change to fix compilation failures (kde#494281, QTBUG-129797) + * 0001-Compiler-Wrap-raw-string-literals-in-QStringLiteral-.patch + +------------------------------------------------------------------- +Tue Oct 8 10:17:37 UTC 2024 - Christophe Marin + +- Update to 6.8.0: + * https://www.qt.io/blog/qt-6.8-released +- Add upstream changes: + * 0001-Revert-QQmlDelegateModel-fix-delegates-not-being-cre.patch + * 0002-QQmlDelegateModel-fix-delegates-not-being-created-in.patch + (kde#493116, QTBUG-127340) +- Merge some -devel and -private-devel packages that only have + private API. + +------------------------------------------------------------------- +Sat Sep 28 08:22:56 UTC 2024 - Christophe Marin + +- Update to 6.7.3 + * https://www.qt.io/blog/qt-6.7.3-released + ------------------------------------------------------------------- Wed Jun 19 07:25:41 UTC 2024 - Christophe Marin diff --git a/qt6-declarative.spec b/qt6-declarative.spec index e7cf093..f9eba04 100644 --- a/qt6-declarative.spec +++ b/qt6-declarative.spec @@ -1,7 +1,7 @@ # # spec file for package qt6-declarative # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,8 +16,8 @@ # -%define real_version 6.7.2 -%define short_version 6.7 +%define real_version 6.8.1 +%define short_version 6.8 %define tar_name qtdeclarative-everywhere-src %define tar_suffix %{nil} # @@ -27,7 +27,7 @@ %endif # Name: qt6-declarative%{?pkg_suffix} -Version: 6.7.2 +Version: 6.8.1 Release: 0 Summary: Qt 6 Declarative Libraries and tools License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -36,6 +36,9 @@ Source0: https://download.qt.io/official_releases/qt/%{short_version}/%{r Source99: qt6-declarative-rpmlintrc # PATCH-FIX-OPENSUSE Patch0: 0001-qmlimportscanner-Include-module-versions-again.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-CMake-Fix-find_package-call-in-Qt6QmlFindQmlscIntern.patch +BuildRequires: memory-constraints BuildRequires: pkgconfig BuildRequires: python3-base BuildRequires: qt6-core-private-devel @@ -87,23 +90,15 @@ This package contains documentation for qt6-declarative in QCH format. %else -# Note: The qt 'labs' libraries are not part of the meta packages %package devel Summary: Qt 6 Declarative meta package Requires: cmake(Qt6Qml) = %{real_version} Requires: cmake(Qt6QmlCompiler) = %{real_version} -Requires: cmake(Qt6QmlCore) = %{real_version} -Requires: cmake(Qt6QmlLocalStorage) = %{real_version} -Requires: cmake(Qt6QmlModels) = %{real_version} -Requires: cmake(Qt6QmlWorkerScript) = %{real_version} Requires: cmake(Qt6Quick) = %{real_version} Requires: cmake(Qt6QuickControls2) = %{real_version} Requires: cmake(Qt6QuickControls2Impl) = %{real_version} Requires: cmake(Qt6QuickDialogs2) = %{real_version} Requires: cmake(Qt6QuickDialogs2QuickImpl) = %{real_version} -Requires: cmake(Qt6QuickDialogs2Utils) = %{real_version} -Requires: cmake(Qt6QuickLayouts) = %{real_version} -Requires: cmake(Qt6QuickTemplates2) = %{real_version} Requires: cmake(Qt6QuickTest) = %{real_version} Requires: cmake(Qt6QuickWidgets) = %{real_version} BuildArch: noarch @@ -117,13 +112,14 @@ Requires: qt6-qml-private-devel = %{version} Requires: qt6-qmlcompiler-private-devel = %{version} Requires: qt6-qmlcore-private-devel = %{version} Requires: qt6-qmllocalstorage-private-devel = %{version} +Requires: qt6-qmlmeta-private-devel = %{version} Requires: qt6-qmlmodels-private-devel = %{version} Requires: qt6-qmlnetwork-private-devel = %{version} Requires: qt6-qmlworkerscript-private-devel = %{version} +Requires: qt6-qmlxmllistmodel-private-devel = %{version} Requires: qt6-quick-private-devel = %{version} Requires: qt6-quickcontrols2-private-devel = %{version} Requires: qt6-quickcontrols2impl-private-devel = %{version} -Requires: qt6-qmlxmllistmodel-private-devel = %{version} Requires: qt6-quickdialogs2-private-devel = %{version} Requires: qt6-quickdialogs2quickimpl-private-devel = %{version} Requires: qt6-quickdialogs2utils-private-devel = %{version} @@ -133,6 +129,7 @@ Requires: qt6-quickparticles-private-devel = %{version} Requires: qt6-quickshapes-private-devel = %{version} Requires: qt6-quicktemplates2-private-devel = %{version} Requires: qt6-quicktest-private-devel = %{version} +Requires: qt6-quickvectorimage-private-devel = %{version} Requires: qt6-quickwidgets-private-devel = %{version} BuildArch: noarch @@ -159,171 +156,12 @@ QML files and plugins from the Qt 6 Declarative module. %package tools Summary: Qt 6 Declarative Tools License: GPL-3.0-only -Requires: qt6-declarative-imports +Requires: qt6-declarative-imports = %{version} Requires: (qml-autoreqprov if rpm-build) %description tools Additional tools for inspecting, testing, viewing QML imports and files. -%package -n libQt6LabsAnimation6 -Summary: Qt 6 LabsAnimation library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6LabsAnimation6 -The Qt 6 LabsAnimation library. - -%package -n qt6-labsanimation-devel -Summary: Qt 6 LabsAnimation library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6LabsAnimation6 = %{version} -Requires: qt6-qml-private-devel = %{version} -Requires: qt6-quick-private-devel = %{version} - -%description -n qt6-labsanimation-devel -Development files for the Qt 6 LabsAnimation library. - -%package -n qt6-labsanimation-private-devel -Summary: Non-ABI stable API for the Qt 6 LabsAnimation library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6LabsAnimation) = %{real_version} - -%description -n qt6-labsanimation-private-devel -This package provides private headers of libQt6LabsAnimation that do not have any -ABI or API guarantees. - -%package -n libQt6LabsFolderListModel6 -Summary: Qt 6 LabsFolderListModel library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6LabsFolderListModel6 -The Qt 6 LabsFolderListModel library. - -%package -n qt6-labsfolderlistmodel-devel -Summary: Qt 6 LabsFolderListModel library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6LabsFolderListModel6 = %{version} -Requires: qt6-qml-private-devel = %{version} -Requires: qt6-qmlmodels-private-devel = %{version} -%requires_eq qt6-core-private-devel - -%description -n qt6-labsfolderlistmodel-devel -Development files for the Qt 6 LabsFolderListModel library. - -%package -n qt6-labsfolderlistmodel-private-devel -Summary: Non-ABI stable API for the Qt 6 LabsFolderListModel library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6LabsFolderListModel) = %{real_version} - -%description -n qt6-labsfolderlistmodel-private-devel -This package provides private headers of libQt6LabsFolderListModel that do not have any -ABI or API guarantees. - -%package -n libQt6LabsQmlModels6 -Summary: Qt 6 LabsQmlModels library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6LabsQmlModels6 -The Qt 6 LabsQmlModels library. - -%package -n qt6-labsqmlmodels-devel -Summary: Qt 6 LabsQmlModels library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6LabsQmlModels6 = %{version} -Requires: qt6-qml-private-devel = %{version} -Requires: qt6-qmlmodels-private-devel = %{version} - -%description -n qt6-labsqmlmodels-devel -Development files for the Qt 6 LabsQmlModels library. - -%package -n qt6-labsqmlmodels-private-devel -Summary: Non-ABI stable API for the Qt 6 LabsQmlModels library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6LabsQmlModels) = %{real_version} - -%description -n qt6-labsqmlmodels-private-devel -This package provides private headers of libQt6LabsQmlModels that do not have any -ABI or API guarantees. - -%package -n libQt6LabsSettings6 -Summary: Qt 6 LabsSettings library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6LabsSettings6 -The Qt 6 LabsSettings library. - -%package -n qt6-labssettings-devel -Summary: Qt 6 LabsSettings library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6LabsSettings6 = %{version} -Requires: cmake(Qt6Core) = %{real_version} -Requires: cmake(Qt6Qml) = %{real_version} - -%description -n qt6-labssettings-devel -Development files for the Qt 6 LabsSettings library. - -%package -n qt6-labssettings-private-devel -Summary: Non-ABI stable API for the Qt 6 LabsSettings library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6LabsSettings) = %{real_version} - -%description -n qt6-labssettings-private-devel -This package provides private headers of libQt6LabsSettings that do not have any -ABI or API guarantees. - -%package -n libQt6LabsSharedImage6 -Summary: Qt 6 LabsSharedImage library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6LabsSharedImage6 -The Qt 6 LabsSharedImage library. - -%package -n qt6-labssharedimage-devel -Summary: Qt 6 LabsSharedImage library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6LabsSharedImage6 = %{version} -Requires: qt6-quick-private-devel = %{version} -%requires_eq qt6-core-private-devel -%requires_eq qt6-gui-private-devel - -%description -n qt6-labssharedimage-devel -Development files for the Qt 6 LabsSharedImage library. - -%package -n qt6-labssharedimage-private-devel -Summary: Non-ABI stable API for the Qt 6 LabsSharedImage library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6LabsSharedImage) = %{real_version} - -%description -n qt6-labssharedimage-private-devel -This package provides private headers of libQt6LabsSharedImage that do not have any -ABI or API guarantees. - -%package -n libQt6LabsWavefrontMesh6 -Summary: Qt 6 LabsWavefrontMesh library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6LabsWavefrontMesh6 -The Qt 6 LabsWavefrontMesh library. - -%package -n qt6-labswavefrontmesh-devel -Summary: Qt 6 LabsWavefrontMesh library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6LabsWavefrontMesh6 = %{version} -Requires: qt6-quick-private-devel = %{version} -%requires_eq qt6-core-private-devel -%requires_eq qt6-gui-private-devel - -%description -n qt6-labswavefrontmesh-devel -Development files for the Qt 6 LabsWavefrontMesh library. - -%package -n qt6-labswavefrontmesh-private-devel -Summary: Non-ABI stable API for the Qt 6 LabsWavefrontMesh library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6LabsWavefrontMesh) = %{real_version} - -%description -n qt6-labswavefrontmesh-private-devel -This package provides private headers of libQt6LabsWavefrontMesh that do not have any -ABI or API guarantees. - %package -n libQt6Qml6 Summary: Qt 6 Qml library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -339,7 +177,6 @@ License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only Requires: libQt6Qml6 = %{version} # Executables are required Requires: qt6-declarative-tools = %{version} -Requires: qt6-qmlbuiltins-devel-static = %{version} Requires: cmake(Qt6Network) = %{real_version} # qmldevtools is gone in 6.3 Provides: qt6-qmldevtools-devel-static = 6.3 @@ -376,7 +213,7 @@ Provides: qt6-qmlcompiler-devel-static = 6.4.0 Obsoletes: qt6-qmlcompiler-devel-static < 6.4.0 %description -n qt6-qmlcompiler-devel -Development files for the Qt 6 QmlCore library. +Development files for the Qt 6 QmlCompiler library. %package -n qt6-qmlcompiler-private-devel Summary: Non-ABI stable API for the Qt 6 QmlCompiler library @@ -386,143 +223,6 @@ Requires: qt6-qmlcompiler-devel = %{version} This package provides private headers of libQt6QmlCompiler that do not have any ABI or API guarantees. -%package -n libQt6QmlCore6 -Summary: Qt 6 QmlCore library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: qt6-declarative-imports - -%description -n libQt6QmlCore6 -The Qt 6 QmlCore library. - -%package -n qt6-qmlcore-devel -Summary: Qt 6 QmlCore library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6QmlCore6 = %{version} -Requires: cmake(Qt6Qml) = %{real_version} - -%description -n qt6-qmlcore-devel -Development files for the Qt 6 QmlCore library. - -%package -n qt6-qmlcore-private-devel -Summary: Non-ABI stable API for the Qt 6 QmlCore library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6QmlCore) = %{real_version} - -%description -n qt6-qmlcore-private-devel -This package provides private headers of libQt6QmlCore that do not have any -ABI or API guarantees. - -%package -n libQt6QmlLocalStorage6 -Summary: Qt 6 QmlLocalStorage library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6QmlLocalStorage6 -The Qt 6 QmlLocalStorage library. - -%package -n qt6-qmllocalstorage-devel -Summary: Qt 6 QmlLocalStorage library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6QmlLocalStorage6 = %{version} -Requires: qt6-qml-private-devel = %{version} -Requires: cmake(Qt6Sql) = %{real_version} -%requires_eq qt6-core-private-devel - -%description -n qt6-qmllocalstorage-devel -Development files for the Qt 6 QmlLocalStorage library. - -%package -n qt6-qmllocalstorage-private-devel -Summary: Non-ABI stable API for the Qt 6 QmlLocalStorage library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: qt6-qml-private-devel = %{version} -Requires: cmake(Qt6QmlLocalStorage) = %{real_version} -%requires_eq qt6-core-private-devel - -%description -n qt6-qmllocalstorage-private-devel -This package provides private headers of libQt6QmlLocalStorage that do not have any -ABI or API guarantees. - -%package -n libQt6QmlModels6 -Summary: Qt 6 QmlModels library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6QmlModels6 -The Qt 6 QmlModels library. - -%package -n qt6-qmlmodels-devel -Summary: Qt 6 QmlModels library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6QmlModels6 = %{version} -Requires: cmake(Qt6Core) = %{real_version} -Requires: cmake(Qt6Qml) = %{real_version} - -%description -n qt6-qmlmodels-devel -Development files for the Qt 6 QmlModels library. - -%package -n qt6-qmlmodels-private-devel -Summary: Non-ABI stable API for the Qt 6 QmlModels library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: qt6-qml-private-devel = %{version} -Requires: cmake(Qt6QmlModels) = %{real_version} -%requires_eq qt6-core-private-devel - -%description -n qt6-qmlmodels-private-devel -This package provides private headers of libQt6QmlModels that do not have any -ABI or API guarantees. - -%package -n libQt6QmlWorkerScript6 -Summary: Qt 6 QmlWorkScript library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6QmlWorkerScript6 -The Qt 6 QmlModels library. - -%package -n qt6-qmlworkerscript-devel -Summary: Qt 6 QmlModels library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6QmlWorkerScript6 = %{version} -Requires: cmake(Qt6Core) = %{real_version} -Requires: cmake(Qt6Qml) = %{real_version} - -%description -n qt6-qmlworkerscript-devel -Development files for the Qt 6 QmlModels library. - -%package -n qt6-qmlworkerscript-private-devel -Summary: Non-ABI stable API for the Qt 6 QmlWorkerScript library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: qt6-qml-private-devel = %{version} -Requires: cmake(Qt6QmlWorkerScript) = %{real_version} -%requires_eq qt6-core-private-devel - -%description -n qt6-qmlworkerscript-private-devel -This package provides private headers of libQt6QmlWorkerScript that do not have -any ABI or API guarantees. - -%package -n libQt6QmlXmlListModel6 -Summary: Qt 6 QmlXmlListModel library - -%description -n libQt6QmlXmlListModel6 -The Qt 6 QmlXmlListModel library. - -%package -n qt6-qmlxmllistmodel-devel -Summary: Qt 6 QmlXmlListModel library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6QmlXmlListModel6 = %{version} -Requires: cmake(Qt6Qml) = %{real_version} -Requires: cmake(Qt6QmlModels) = %{real_version} - -%description -n qt6-qmlxmllistmodel-devel -Development files for the Qt 6 QmlXmlListModel library. - -%package -n qt6-qmlxmllistmodel-private-devel -Summary: Non-ABI stable API for the Qt 6 QmlXmlListModel library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6QmlXmlListModel) = %{real_version} -%requires_eq qt6-core-private-devel - -%description -n qt6-qmlxmllistmodel-private-devel -This package provides private headers of libQt6QmlXmlListModel that do not have -any ABI or API guarantees. - %package -n libQt6Quick6 Summary: Qt 6 Quick library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -662,83 +362,6 @@ Requires: cmake(Qt6QuickDialogs2QuickImpl) = %{real_version} This package provides private headers of libQt6QuickDialogs2Impl that do not have any ABI or API guarantees. -%package -n libQt6QuickDialogs2Utils6 -Summary: Qt 6 QuickDialogs2Utils library - -%description -n libQt6QuickDialogs2Utils6 -The Qt 6 QuickDialogs2Utils library. - -%package -n qt6-quickdialogs2utils-devel -Summary: Qt6 QuickDialogs2Utils library - Development files -Requires: libQt6QuickDialogs2Utils6 = %{version} -Requires: cmake(Qt6Gui) = %{real_version} - -%description -n qt6-quickdialogs2utils-devel -Development files for the Qt 6 QuickDialogs2Utils library. - -%package -n qt6-quickdialogs2utils-private-devel -Summary: Non-ABI stable API for the Qt 6 QuickDialogs2Utils library -Requires: qt6-qmlmodels-private-devel = %{version} -Requires: cmake(Qt6QuickDialogs2Utils) = %{real_version} - -%description -n qt6-quickdialogs2utils-private-devel -This package provides private headers of libQt6QuickDialogs2Utils that do not have -any ABI or API guarantees. - -%package -n libQt6QuickLayouts6 -Summary: Qt 6 QuickLayouts library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n libQt6QuickLayouts6 -The Qt 6 QuickLayouts library. - -%package -n qt6-quicklayouts-devel -Summary: Qt 6 QuickLayouts library - Development files -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: libQt6QuickLayouts6 = %{version} -Requires: qt6-quick-private-devel = %{version} -Requires: cmake(Qt6Gui) = %{real_version} -Requires: cmake(Qt6Qml) = %{real_version} -%requires_eq qt6-gui-private-devel - -%description -n qt6-quicklayouts-devel -Development files for the Qt 6 QuickLayouts library. - -%package -n qt6-quicklayouts-private-devel -Summary: Non-ABI stable API for the Qt 6 QuickLayouts library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only -Requires: cmake(Qt6QuickLayouts) = %{real_version} - -%description -n qt6-quicklayouts-private-devel -This package provides private headers of libQt6QuickLayouts that do not have -any ABI or API guarantees. - -%package -n libQt6QuickTemplates2-6 -Summary: Qt 6 QuickTemplates2 library - -%description -n libQt6QuickTemplates2-6 -The Qt 6 QuickTemplates2 library. - -%package -n qt6-quicktemplates2-devel -Summary: Qt6 QuickTemplates2 library - Development files -Requires: libQt6QuickTemplates2-6 = %{version} -Requires: cmake(Qt6Gui) = %{real_version} -Requires: cmake(Qt6Qml) = %{real_version} -Requires: cmake(Qt6QmlModels) = %{real_version} -Requires: cmake(Qt6Quick) = %{real_version} - -%description -n qt6-quicktemplates2-devel -Development files for the Qt 6 QuickTemplates2 library. - -%package -n qt6-quicktemplates2-private-devel -Summary: Non-ABI stable API for the Qt 6 QuickTemplates2 library -Requires: qt6-qmlmodels-private-devel = %{version} -Requires: cmake(Qt6QuickTemplates2) = %{real_version} - -%description -n qt6-quicktemplates2-private-devel -This package provides private headers of libQt6QuickTemplates2 that do not have -any ABI or API guarantees. - %package -n libQt6QuickTest6 Summary: Qt 6 QuickTest library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -801,7 +424,243 @@ Requires: cmake(Qt6QuickWidgets) = %{real_version} This package provides private headers of libQt6QuickWidgets that do not have any ABI or API guarantees. + + + ### Private only libraries ### +%package -n libQt6LabsPlatform6 +Summary: Qt 6 LabsPlatform library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsPlatform6 +The Qt 6 LabsPlatform library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labsplatform-private-devel +Summary: Qt 6 LabsPlatform library - Development files +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: qt6-core-private-devel = %{version} +Requires: qt6-gui-private-devel = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: qt6-quick-private-devel = %{version} +Requires: qt6-quicktemplates2-private-devel = %{version} + +%description -n qt6-labsplatform-private-devel +Development files for the Qt 6 LabsPlatform library. +This library does not have any ABI or API guarantees. + +%package -n libQt6LabsAnimation6 +Summary: Qt 6 LabsAnimation library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsAnimation6 +The Qt 6 LabsAnimation library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labsanimation-private-devel +Summary: Non-ABI stable API for the Qt 6 LabsAnimation library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6LabsAnimation6 = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: qt6-quick-private-devel = %{version} +Provides: qt6-labsanimation-devel = %{version} +Obsoletes: qt6-labsanimation-devel < %{version} + +%description -n qt6-labsanimation-private-devel +Development files for the Qt 6 LabsAnimation library. +This library does not have any ABI or API guarantees. + +%package -n libQt6LabsFolderListModel6 +Summary: Qt 6 LabsFolderListModel library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsFolderListModel6 +The Qt 6 LabsFolderListModel library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labsfolderlistmodel-private-devel +Summary: Non-ABI stable API for the Qt 6 LabsFolderListModel library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6LabsFolderListModel6 = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: qt6-qmlmodels-private-devel = %{version} +%requires_eq qt6-core-private-devel +Provides: qt6-labsfolderlistmodel-devel = %{version} +Obsoletes: qt6-labsfolderlistmodel-devel < %{version} + +%description -n qt6-labsfolderlistmodel-private-devel +Development files for the Qt 6 LabsFolderListModel library. +This library does not have any ABI or API guarantees. + +%package -n libQt6LabsQmlModels6 +Summary: Qt 6 LabsQmlModels library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsQmlModels6 +The Qt 6 LabsQmlModels library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labsqmlmodels-private-devel +Summary: Non-ABI stable API for the Qt 6 LabsQmlModels library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6LabsQmlModels6 = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: qt6-qmlmodels-private-devel = %{version} +Provides: qt6-labsqmlmodels-devel = %{version} +Obsoletes: qt6-labsqmlmodels-devel < %{version} + +%description -n qt6-labsqmlmodels-private-devel +Development files for the Qt 6 LabsQmlModels library. +This library does not have any ABI or API guarantees. + +%package -n libQt6LabsSettings6 +Summary: Qt 6 LabsSettings library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsSettings6 +The Qt 6 LabsSettings library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labssettings-private-devel +Summary: Non-ABI stable API for the Qt 6 LabsSettings library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6LabsSettings6 = %{version} +Requires: cmake(Qt6Core) = %{real_version} +Requires: cmake(Qt6Qml) = %{real_version} +Provides: qt6-labssettings-devel = %{version} +Obsoletes: qt6-labssettings-devel < %{version} + +%description -n qt6-labssettings-private-devel +Development files for the Qt 6 LabsSettings library. +This library does not have any ABI or API guarantees. + +%package -n libQt6LabsSharedImage6 +Summary: Qt 6 LabsSharedImage library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsSharedImage6 +The Qt 6 LabsSharedImage library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labssharedimage-private-devel +Summary: Non-ABI stable API for the Qt 6 LabsSharedImage library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6LabsSharedImage6 = %{version} +Requires: qt6-quick-private-devel = %{version} +%requires_eq qt6-core-private-devel +%requires_eq qt6-gui-private-devel +Provides: qt6-labssharedimage-devel = %{version} +Obsoletes: qt6-labssharedimage-devel < %{version} + +%description -n qt6-labssharedimage-private-devel +Development files for the Qt 6 LabsSharedImage library. +This library does not have any ABI or API guarantees. + +%package -n libQt6LabsWavefrontMesh6 +Summary: Qt 6 LabsWavefrontMesh library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6LabsWavefrontMesh6 +The Qt 6 LabsWavefrontMesh library. +This library does not have any ABI or API guarantees. + +%package -n qt6-labswavefrontmesh-private-devel +Summary: Non-ABI stable API for the Qt 6 LabsWavefrontMesh library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6LabsWavefrontMesh6 = %{version} +Requires: qt6-quick-private-devel = %{version} +%requires_eq qt6-core-private-devel +%requires_eq qt6-gui-private-devel +Provides: qt6-labswavefrontmesh-devel = %{version} +Obsoletes: qt6-labswavefrontmesh-devel < %{version} + +%description -n qt6-labswavefrontmesh-private-devel +Development files for the Qt 6 LabsWavefrontMesh library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QmlCore6 +Summary: Qt 6 QmlCore library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: qt6-declarative-imports + +%description -n libQt6QmlCore6 +The Qt 6 QmlCore library. + +%package -n qt6-qmlcore-private-devel +Summary: Qt 6 QmlCore library - Development files +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QmlCore6 = %{version} +Requires: cmake(Qt6Qml) = %{real_version} +Provides: qt6-qmlcore-devel = %{version} +Obsoletes: qt6-qmlcore-devel < %{version} + +%description -n qt6-qmlcore-private-devel +Development files for the Qt 6 QmlCore library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QmlLocalStorage6 +Summary: Qt 6 QmlLocalStorage library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6QmlLocalStorage6 +The Qt 6 QmlLocalStorage library. + +%package -n qt6-qmllocalstorage-private-devel +Summary: Non-ABI stable API for the Qt 6 QmlLocalStorage library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QmlLocalStorage6 = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: cmake(Qt6Sql) = %{real_version} +%requires_eq qt6-core-private-devel +Provides: qt6-qmllocalstorage-devel = %{version} +Obsoletes: qt6-qmllocalstorage-devel < %{version} + +%description -n qt6-qmllocalstorage-private-devel +Development files for the Qt 6 QmlLocalStorage library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QmlMeta6 +Summary: Qt 6 QmlMeta library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6QmlMeta6 +The Qt 6 QmlMeta library. +This library does not have any ABI or API guarantees. + +%package -n qt6-qmlmeta-private-devel +Summary: Qt 6 QmlMeta library - Development files +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QmlMeta6 = %{version} +Requires: cmake(Qt6Qml) = %{real_version} +Requires: cmake(Qt6QmlModels) = %{real_version} +Requires: cmake(Qt6QmlWorkerScript) = %{real_version} + +%description -n qt6-qmlmeta-private-devel +Development files for the Qt 6 QmlMeta library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QmlModels6 +Summary: Qt 6 QmlModels library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6QmlModels6 +The Qt 6 QmlModels library. +This library does not have any ABI or API guarantees. + +%package -n qt6-qmlmodels-private-devel +Summary: Non-ABI stable API for the Qt 6 QmlModels library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QmlModels6 = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: cmake(Qt6Core) = %{real_version} +Requires: cmake(Qt6Qml) = %{real_version} +%requires_eq qt6-core-private-devel +Provides: qt6-qmlmodels-devel = %{version} +Obsoletes: qt6-qmlmodels-devel < %{version} + +%description -n qt6-qmlmodels-private-devel +This package provides private headers of libQt6QmlModels that do not have any +ABI or API guarantees. %package -n libQt6QmlNetwork6 Summary: Qt 6 QmlNetwork library @@ -822,6 +681,67 @@ Requires: qt6-qml-devel = %{version} Development files for the Qt 6 QmlNetwork library. This library does not have any ABI or API guarantees. +%package -n libQt6QmlWorkerScript6 +Summary: Qt 6 QmlWorkScript library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6QmlWorkerScript6 +The Qt 6 QmlModels library. + +%package -n qt6-qmlworkerscript-private-devel +Summary: Qt 6 QmlWorkerScript library - Development files +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QmlWorkerScript6 = %{version} +Requires: qt6-qml-private-devel = %{version} +Requires: cmake(Qt6Core) = %{real_version} +Requires: cmake(Qt6Qml) = %{real_version} +%requires_eq qt6-core-private-devel +Provides: qt6-qmlworkerscript-devel = %{version} +Obsoletes: qt6-qmlworkerscript-devel < %{version} + +%description -n qt6-qmlworkerscript-private-devel +Development files for the Qt 6 QmlWorkerScript library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QmlXmlListModel6 +Summary: Qt 6 QmlXmlListModel library + +%description -n libQt6QmlXmlListModel6 +The Qt 6 QmlXmlListModel library. + +%package -n qt6-qmlxmllistmodel-private-devel +Summary: Qt 6 QmlXmlListModel library - Development files +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QmlXmlListModel6 = %{version} +Requires: cmake(Qt6Qml) = %{real_version} +Requires: cmake(Qt6QmlModels) = %{real_version} +%requires_eq qt6-core-private-devel +Provides: qt6-qmlxmllistmodel-devel = %{version} +Obsoletes: qt6-qmlxmllistmodel-devel < %{version} + +%description -n qt6-qmlxmllistmodel-private-devel +Development files for the Qt 6 QmlXmlListModel library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QuickDialogs2Utils6 +Summary: Qt 6 QuickDialogs2Utils library + +%description -n libQt6QuickDialogs2Utils6 +The Qt 6 QuickDialogs2Utils library. +This library does not have any ABI or API guarantees. + +%package -n qt6-quickdialogs2utils-private-devel +Summary: Qt6 QuickDialogs2Utils library - Development files +Requires: libQt6QuickDialogs2Utils6 = %{version} +Requires: qt6-qmlmodels-private-devel = %{version} +Requires: cmake(Qt6Gui) = %{real_version} +Provides: qt6-quickdialogs2utils-devel = %{version} +Obsoletes: qt6-quickdialogs2utils-devel < %{version} + +%description -n qt6-quickdialogs2utils-private-devel +The Qt 6 QuickDialogs2Utils library. +This library does not have any ABI or API guarantees. + %package -n libQt6QuickEffects6 Summary: Qt 6 QuickEffects library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -842,6 +762,28 @@ Requires: qt6-quick-private-devel = %{version} Development files for the Qt 6 QuickEffects library. This library does not have any ABI or API guarantees. +%package -n libQt6QuickLayouts6 +Summary: Qt 6 QuickLayouts library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6QuickLayouts6 +The Qt 6 QuickLayouts library. + +%package -n qt6-quicklayouts-private-devel +Summary: Non-ABI stable API for the Qt 6 QuickLayouts library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QuickLayouts6 = %{version} +Requires: qt6-quick-private-devel = %{version} +Requires: cmake(Qt6Gui) = %{real_version} +Requires: cmake(Qt6Qml) = %{real_version} +%requires_eq qt6-gui-private-devel +Provides: qt6-quicklayouts-devel = %{version} +Obsoletes: qt6-quicklayouts-devel < %{version} + +%description -n qt6-quicklayouts-private-devel +Development files for the Qt 6 QuickLayouts library. +This library does not have any ABI or API guarantees. + %package -n libQt6QuickParticles6 Summary: Qt 6 QuickParticles library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -889,6 +831,50 @@ Obsoletes: qt6-quickshapes-devel < 6.2.0 Development files for the Qt 6 QuickShapes library. This library does not have any ABI or API guarantees. +%package -n libQt6QuickTemplates2-6 +Summary: Qt 6 QuickTemplates2 library + +%description -n libQt6QuickTemplates2-6 +The Qt 6 QuickTemplates2 library. +This library does not have any ABI or API guarantees. + +%package -n qt6-quicktemplates2-private-devel +Summary: Non-ABI stable API for the Qt 6 QuickTemplates2 library +Requires: libQt6QuickTemplates2-6 = %{version} +Requires: qt6-qmlmodels-private-devel = %{version} +Requires: cmake(Qt6Gui) = %{real_version} +Requires: cmake(Qt6Qml) = %{real_version} +Requires: cmake(Qt6QmlModels) = %{real_version} +Requires: cmake(Qt6Quick) = %{real_version} +Provides: qt6-quicktemplates2-devel = %{version} +Obsoletes: qt6-quicktemplates2-devel < %{version} + +%description -n qt6-quicktemplates2-private-devel +Development files for the Qt 6 QuickTemplates2 library. +This library does not have any ABI or API guarantees. + +%package -n libQt6QuickVectorImage6 +Summary: Qt 6 QuickVectorImage library +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only + +%description -n libQt6QuickVectorImage6 +The Qt 6 QuickVectorImage library. +This library does not have any ABI or API guarantees. + +%package -n qt6-quickvectorimage-private-devel +Summary: Qt 6 QuickVectorImage library - Development files +License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only +Requires: libQt6QuickVectorImage6 = %{version} +Requires: qt6-quick-private-devel = %{version} +Requires: qt6-quickshapes-private-devel = %{version} +%requires_eq qt6-svg-private-devel + +%description -n qt6-quickvectorimage-private-devel +Development files for the Qt 6 QuickVectorImage library. +This library does not have any ABI or API guarantees. + + + ### Static libraries ### %package -n qt6-packetprotocol-devel-static @@ -903,14 +889,6 @@ Obsoletes: qt6-packetprotocol-private-devel < 6.2.0 The Qt6 PacketProtocol static library. This library does not have any ABI or API guarantees. -%package -n qt6-qmlbuiltins-devel-static -Summary: Qt 6 QmlBuiltins static library -License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only - -%description -n qt6-qmlbuiltins-devel-static -The Qt6 QmlBuiltins static library. -This library does not have any ABI or API guarantees. - %package -n qt6-qmldebug-devel-static Summary: Qt6 QmlDebug static library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only @@ -943,7 +921,9 @@ the new compiler. %package -n qt6-qmlls-devel-static Summary: Qt6 QmlLS static library Requires: qt6-qml-private-devel = %{version} -Requires: qt6-languageserver-private-devel = %{version} +Requires: qt6-qmlcompiler-private-devel = %{version} +Requires: cmake(Qt6LanguageServerPrivate) = %{real_version} +Requires: cmake(Qt6QmlCompiler) = %{real_version} Requires: cmake(Qt6QmlDomPrivate) = %{real_version} Requires: cmake(Qt6QmlToolingSettingsPrivate) = %{real_version} @@ -1001,10 +981,17 @@ This is a meta package, it does not contain any file EOF %build +%ifarch s390x +%if "%{qt6_flavor}" == "" +# Determine the right number of parallel processes based on the available memory +%limit_build -m 1700 +%endif +%endif # Package provides static libraries %global _lto_cflags %{_lto_cflags} -ffat-lto-objects -%cmake_qt6 +%cmake_qt6 \ + -DQT_GENERATE_SBOM:BOOL=FALSE %{qt6_build} @@ -1027,6 +1014,7 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %ldconfig_scriptlets -n libQt6LabsAnimation6 %ldconfig_scriptlets -n libQt6LabsFolderListModel6 +%ldconfig_scriptlets -n libQt6LabsPlatform6 %ldconfig_scriptlets -n libQt6LabsQmlModels6 %ldconfig_scriptlets -n libQt6LabsSettings6 %ldconfig_scriptlets -n libQt6LabsSharedImage6 @@ -1035,6 +1023,7 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %ldconfig_scriptlets -n libQt6QmlCompiler6 %ldconfig_scriptlets -n libQt6QmlCore6 %ldconfig_scriptlets -n libQt6QmlLocalStorage6 +%ldconfig_scriptlets -n libQt6QmlMeta6 %ldconfig_scriptlets -n libQt6QmlModels6 %ldconfig_scriptlets -n libQt6QmlNetwork6 %ldconfig_scriptlets -n libQt6QmlWorkerScript6 @@ -1051,6 +1040,7 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %ldconfig_scriptlets -n libQt6QuickShapes6 %ldconfig_scriptlets -n libQt6QuickTemplates2-6 %ldconfig_scriptlets -n libQt6QuickTest6 +%ldconfig_scriptlets -n libQt6QuickVectorImage6 %ldconfig_scriptlets -n libQt6QuickWidgets6 %files devel @@ -1063,13 +1053,14 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_examplesdir}/* %files imports +%{_qt6_qmldir}/QML/ +%{_qt6_qmldir}/QmlTime/ %{_qt6_qmldir}/Qt/ %{_qt6_qmldir}/QtCore/ %{_qt6_qmldir}/QtNetwork/ %{_qt6_qmldir}/QtQml/ %{_qt6_qmldir}/QtQuick/ %{_qt6_qmldir}/QtTest/ -%{_qt6_qmldir}/QmlTime/ %{_qt6_qmldir}/builtins.qmltypes %{_qt6_qmldir}/jsroot.qmltypes @@ -1102,121 +1093,15 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_bindir}/qmltestrunner %{_qt6_bindir}/qmltime %{_qt6_bindir}/svgtoqml +%{_qt6_libexecdir}/qmlaotstats %{_qt6_libexecdir}/qmlcachegen %{_qt6_libexecdir}/qmlimportscanner %{_qt6_libexecdir}/qmljsrootgen %{_qt6_libexecdir}/qmltyperegistrar %{_qt6_pluginsdir}/qmllint/ +%{_qt6_pluginsdir}/qmlls/ %{_qt6_pluginsdir}/qmltooling/ -%files -n libQt6LabsAnimation6 -%{_qt6_libdir}/libQt6LabsAnimation.so.* - -%files -n qt6-labsanimation-devel -%{_qt6_cmakedir}/Qt6LabsAnimation/ -%{_qt6_descriptionsdir}/LabsAnimation.json -%{_qt6_includedir}/QtLabsAnimation/ -%{_qt6_libdir}/libQt6LabsAnimation.prl -%{_qt6_libdir}/libQt6LabsAnimation.so -%{_qt6_metatypesdir}/qt6labsanimation_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_labsanimation.pri -%{_qt6_pkgconfigdir}/Qt6LabsAnimation.pc -%exclude %{_qt6_includedir}/QtLabsAnimation/%{real_version} - -%files -n qt6-labsanimation-private-devel -%{_qt6_includedir}/QtLabsAnimation/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_labsanimation_private.pri - -%files -n libQt6LabsFolderListModel6 -%{_qt6_libdir}/libQt6LabsFolderListModel.so.* - -%files -n qt6-labsfolderlistmodel-devel -%{_qt6_cmakedir}/Qt6LabsFolderListModel/ -%{_qt6_descriptionsdir}/LabsFolderListModel.json -%{_qt6_includedir}/QtLabsFolderListModel/ -%{_qt6_libdir}/libQt6LabsFolderListModel.prl -%{_qt6_libdir}/libQt6LabsFolderListModel.so -%{_qt6_metatypesdir}/qt6labsfolderlistmodel_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_labsfolderlistmodel.pri -%{_qt6_pkgconfigdir}/Qt6LabsFolderListModel.pc -%exclude %{_qt6_includedir}/QtLabsFolderListModel/%{real_version} - -%files -n qt6-labsfolderlistmodel-private-devel -%{_qt6_includedir}/QtLabsFolderListModel/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_labsfolderlistmodel_private.pri - -%files -n libQt6LabsQmlModels6 -%{_qt6_libdir}/libQt6LabsQmlModels.so.* - -%files -n qt6-labsqmlmodels-devel -%{_qt6_cmakedir}/Qt6LabsQmlModels/ -%{_qt6_descriptionsdir}/LabsQmlModels.json -%{_qt6_includedir}/QtLabsQmlModels/ -%{_qt6_libdir}/libQt6LabsQmlModels.prl -%{_qt6_libdir}/libQt6LabsQmlModels.so -%{_qt6_metatypesdir}/qt6labsqmlmodels_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_labsqmlmodels.pri -%{_qt6_pkgconfigdir}/Qt6LabsQmlModels.pc -%exclude %{_qt6_includedir}/QtLabsQmlModels/%{real_version} - -%files -n qt6-labsqmlmodels-private-devel -%{_qt6_includedir}/QtLabsQmlModels/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_labsqmlmodels_private.pri - -%files -n libQt6LabsSettings6 -%{_qt6_libdir}/libQt6LabsSettings.so.* - -%files -n qt6-labssettings-devel -%{_qt6_cmakedir}/Qt6LabsSettings/ -%{_qt6_descriptionsdir}/LabsSettings.json -%{_qt6_includedir}/QtLabsSettings/ -%{_qt6_libdir}/libQt6LabsSettings.prl -%{_qt6_libdir}/libQt6LabsSettings.so -%{_qt6_metatypesdir}/qt6labssettings_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_labssettings.pri -%{_qt6_pkgconfigdir}/Qt6LabsSettings.pc -%exclude %{_qt6_includedir}/QtLabsSettings/%{real_version} - -%files -n qt6-labssettings-private-devel -%{_qt6_includedir}/QtLabsSettings/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_labssettings_private.pri - -%files -n libQt6LabsSharedImage6 -%{_qt6_libdir}/libQt6LabsSharedImage.so.* - -%files -n qt6-labssharedimage-devel -%{_qt6_cmakedir}/Qt6LabsSharedImage/ -%{_qt6_descriptionsdir}/LabsSharedImage.json -%{_qt6_includedir}/QtLabsSharedImage/ -%{_qt6_libdir}/libQt6LabsSharedImage.prl -%{_qt6_libdir}/libQt6LabsSharedImage.so -%{_qt6_metatypesdir}/qt6labssharedimage_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_labssharedimage.pri -%{_qt6_pkgconfigdir}/Qt6LabsSharedImage.pc -%exclude %{_qt6_includedir}/QtLabsSharedImage/%{real_version} - -%files -n qt6-labssharedimage-private-devel -%{_qt6_includedir}/QtLabsSharedImage/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_labssharedimage_private.pri - -%files -n libQt6LabsWavefrontMesh6 -%{_qt6_libdir}/libQt6LabsWavefrontMesh.so.* - -%files -n qt6-labswavefrontmesh-devel -%{_qt6_cmakedir}/Qt6LabsWavefrontMesh/ -%{_qt6_descriptionsdir}/LabsWavefrontMesh.json -%{_qt6_includedir}/QtLabsWavefrontMesh/ -%{_qt6_libdir}/libQt6LabsWavefrontMesh.prl -%{_qt6_libdir}/libQt6LabsWavefrontMesh.so -%{_qt6_metatypesdir}/qt6labswavefrontmesh_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_labswavefrontmesh.pri -%{_qt6_pkgconfigdir}/Qt6LabsWavefrontMesh.pc -%exclude %{_qt6_includedir}/QtLabsWavefrontMesh/%{real_version} - -%files -n qt6-labswavefrontmesh-private-devel -%{_qt6_includedir}/QtLabsWavefrontMesh/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_labswavefrontmesh_private.pri - %files -n libQt6Qml6 %license LICENSES/* # libQt6Qml6 'provides' %%_qt6_importsdir and %%_qt6_qmldir @@ -1269,96 +1154,6 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_includedir}/QtQmlCompiler/%{real_version}/ %{_qt6_mkspecsdir}/modules/qt_lib_qmlcompiler_private.pri -%files -n libQt6QmlCore6 -%{_qt6_libdir}/libQt6QmlCore.so.* - -%files -n qt6-qmlcore-devel -%{_qt6_cmakedir}/Qt6QmlCore/ -%{_qt6_descriptionsdir}/QmlCore.json -%{_qt6_includedir}/QtQmlCore/ -%{_qt6_libdir}/libQt6QmlCore.prl -%{_qt6_libdir}/libQt6QmlCore.so -%{_qt6_metatypesdir}/qt6qmlcore_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_qmlcore.pri -%{_qt6_pkgconfigdir}/Qt6QmlCore.pc -%exclude %{_qt6_includedir}/QtQmlCore/%{real_version} - -%files -n qt6-qmlcore-private-devel -%{_qt6_includedir}/QtQmlCore/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_qmlcore_private.pri - -%files -n libQt6QmlLocalStorage6 -%{_qt6_libdir}/libQt6QmlLocalStorage.so.* - -%files -n qt6-qmllocalstorage-devel -%{_qt6_cmakedir}/Qt6QmlLocalStorage/ -%{_qt6_descriptionsdir}/QmlLocalStorage.json -%{_qt6_includedir}/QtQmlLocalStorage/ -%{_qt6_libdir}/libQt6QmlLocalStorage.prl -%{_qt6_libdir}/libQt6QmlLocalStorage.so -%{_qt6_metatypesdir}/qt6qmllocalstorage_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_qmllocalstorage.pri -%{_qt6_pkgconfigdir}/Qt6QmlLocalStorage.pc -%exclude %{_qt6_includedir}/QtQmlLocalStorage/%{real_version} - -%files -n qt6-qmllocalstorage-private-devel -%{_qt6_includedir}/QtQmlLocalStorage/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_qmllocalstorage_private.pri - -%files -n libQt6QmlModels6 -%{_qt6_libdir}/libQt6QmlModels.so.* - -%files -n qt6-qmlmodels-devel -%{_qt6_cmakedir}/Qt6QmlModels/ -%{_qt6_descriptionsdir}/QmlModels.json -%{_qt6_includedir}/QtQmlModels/ -%{_qt6_libdir}/libQt6QmlModels.prl -%{_qt6_libdir}/libQt6QmlModels.so -%{_qt6_metatypesdir}/qt6qmlmodels_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_qmlmodels.pri -%{_qt6_pkgconfigdir}/Qt6QmlModels.pc -%exclude %{_qt6_includedir}/QtQmlModels/%{real_version} - -%files -n qt6-qmlmodels-private-devel -%{_qt6_includedir}/QtQmlModels/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_qmlmodels_private.pri - -%files -n libQt6QmlWorkerScript6 -%{_qt6_libdir}/libQt6QmlWorkerScript.so.* - -%files -n qt6-qmlworkerscript-devel -%{_qt6_cmakedir}/Qt6QmlWorkerScript/ -%{_qt6_descriptionsdir}/QmlWorkerScript.json -%{_qt6_includedir}/QtQmlWorkerScript/ -%{_qt6_libdir}/libQt6QmlWorkerScript.prl -%{_qt6_libdir}/libQt6QmlWorkerScript.so -%{_qt6_metatypesdir}/qt6qmlworkerscript_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_qmlworkerscript.pri -%{_qt6_pkgconfigdir}/Qt6QmlWorkerScript.pc -%exclude %{_qt6_includedir}/QtQmlWorkerScript/%{real_version} - -%files -n qt6-qmlworkerscript-private-devel -%{_qt6_includedir}/QtQmlWorkerScript/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_qmlworkerscript_private.pri - -%files -n libQt6QmlXmlListModel6 -%{_qt6_libdir}/libQt6QmlXmlListModel.so.* - -%files -n qt6-qmlxmllistmodel-devel -%{_qt6_cmakedir}/Qt6QmlXmlListModel/ -%{_qt6_descriptionsdir}/QmlXmlListModel.json -%{_qt6_includedir}/QtQmlXmlListModel/ -%{_qt6_libdir}/libQt6QmlXmlListModel.prl -%{_qt6_libdir}/libQt6QmlXmlListModel.so -%{_qt6_metatypesdir}/qt6qmlxmllistmodel_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_qmlxmllistmodel.pri -%{_qt6_pkgconfigdir}/Qt6QmlXmlListModel.pc -%exclude %{_qt6_includedir}/QtQmlXmlListModel/%{real_version} - -%files -n qt6-qmlxmllistmodel-private-devel -%{_qt6_includedir}/QtQmlXmlListModel/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_qmlxmllistmodel_private.pri - %files -n libQt6Quick6 %{_qt6_libdir}/libQt6Quick.so.* @@ -1449,6 +1244,7 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %files -n libQt6QuickControls2Impl6 %{_qt6_libdir}/libQt6QuickControls2BasicStyleImpl.so.* +%{_qt6_libdir}/libQt6QuickControls2FluentWinUI3StyleImpl.so.* %{_qt6_libdir}/libQt6QuickControls2FusionStyleImpl.so.* %{_qt6_libdir}/libQt6QuickControls2ImagineStyleImpl.so.* %{_qt6_libdir}/libQt6QuickControls2Impl.so.* @@ -1456,19 +1252,22 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_libdir}/libQt6QuickControls2UniversalStyleImpl.so.* %files -n qt6-quickcontrols2impl-devel -%{_qt6_cmakedir}/Qt6QuickControls2Impl/ %{_qt6_cmakedir}/Qt6QuickControls2BasicStyleImpl/ +%{_qt6_cmakedir}/Qt6QuickControls2FluentWinUI3StyleImpl/ %{_qt6_cmakedir}/Qt6QuickControls2FusionStyleImpl/ %{_qt6_cmakedir}/Qt6QuickControls2ImagineStyleImpl/ +%{_qt6_cmakedir}/Qt6QuickControls2Impl/ %{_qt6_cmakedir}/Qt6QuickControls2MaterialStyleImpl/ %{_qt6_cmakedir}/Qt6QuickControls2UniversalStyleImpl/ %{_qt6_descriptionsdir}/QuickControls2BasicStyleImpl.json +%{_qt6_descriptionsdir}/QuickControls2FluentWinUI3StyleImpl.json %{_qt6_descriptionsdir}/QuickControls2FusionStyleImpl.json %{_qt6_descriptionsdir}/QuickControls2ImagineStyleImpl.json +%{_qt6_descriptionsdir}/QuickControls2Impl.json %{_qt6_descriptionsdir}/QuickControls2MaterialStyleImpl.json %{_qt6_descriptionsdir}/QuickControls2UniversalStyleImpl.json -%{_qt6_descriptionsdir}/QuickControls2Impl.json %{_qt6_includedir}/QtQuickControls2BasicStyleImpl/ +%{_qt6_includedir}/QtQuickControls2FluentWinUI3StyleImpl/ %{_qt6_includedir}/QtQuickControls2FusionStyleImpl/ %{_qt6_includedir}/QtQuickControls2ImagineStyleImpl/ %{_qt6_includedir}/QtQuickControls2Impl/ @@ -1476,6 +1275,8 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_includedir}/QtQuickControls2UniversalStyleImpl/ %{_qt6_libdir}/libQt6QuickControls2BasicStyleImpl.prl %{_qt6_libdir}/libQt6QuickControls2BasicStyleImpl.so +%{_qt6_libdir}/libQt6QuickControls2FluentWinUI3StyleImpl.prl +%{_qt6_libdir}/libQt6QuickControls2FluentWinUI3StyleImpl.so %{_qt6_libdir}/libQt6QuickControls2FusionStyleImpl.prl %{_qt6_libdir}/libQt6QuickControls2FusionStyleImpl.so %{_qt6_libdir}/libQt6QuickControls2ImagineStyleImpl.prl @@ -1487,24 +1288,28 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_libdir}/libQt6QuickControls2UniversalStyleImpl.prl %{_qt6_libdir}/libQt6QuickControls2UniversalStyleImpl.so %{_qt6_metatypesdir}/qt6quickcontrols2basicstyleimpl_*_metatypes.json +%{_qt6_metatypesdir}/qt6quickcontrols2fluentwinui3styleimpl_*_metatypes.json %{_qt6_metatypesdir}/qt6quickcontrols2fusionstyleimpl_*_metatypes.json %{_qt6_metatypesdir}/qt6quickcontrols2imaginestyleimpl_*_metatypes.json %{_qt6_metatypesdir}/qt6quickcontrols2impl_*.json %{_qt6_metatypesdir}/qt6quickcontrols2materialstyleimpl_*_metatypes.json %{_qt6_metatypesdir}/qt6quickcontrols2universalstyleimpl_*_metatypes.json %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2basicstyleimpl.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2fluentwinui3styleimpl.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2fusionstyleimpl.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2imaginestyleimpl.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2impl.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2materialstyleimpl.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2universalstyleimpl.pri %{_qt6_pkgconfigdir}/Qt6QuickControls2BasicStyleImpl.pc +%{_qt6_pkgconfigdir}/Qt6QuickControls2FluentWinUI3StyleImpl.pc %{_qt6_pkgconfigdir}/Qt6QuickControls2FusionStyleImpl.pc %{_qt6_pkgconfigdir}/Qt6QuickControls2ImagineStyleImpl.pc %{_qt6_pkgconfigdir}/Qt6QuickControls2Impl.pc %{_qt6_pkgconfigdir}/Qt6QuickControls2MaterialStyleImpl.pc %{_qt6_pkgconfigdir}/Qt6QuickControls2UniversalStyleImpl.pc %exclude %{_qt6_includedir}/QtQuickControls2BasicStyleImpl/%{real_version} +%exclude %{_qt6_includedir}/QtQuickControls2FluentWinUI3StyleImpl/%{real_version} %exclude %{_qt6_includedir}/QtQuickControls2FusionStyleImpl/%{real_version} %exclude %{_qt6_includedir}/QtQuickControls2Impl/%{real_version} %exclude %{_qt6_includedir}/QtQuickControls2MaterialStyleImpl/%{real_version} @@ -1512,11 +1317,13 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %files -n qt6-quickcontrols2impl-private-devel %{_qt6_includedir}/QtQuickControls2BasicStyleImpl/%{real_version}/ +%{_qt6_includedir}/QtQuickControls2FluentWinUI3StyleImpl/%{real_version}/ %{_qt6_includedir}/QtQuickControls2FusionStyleImpl/%{real_version}/ %{_qt6_includedir}/QtQuickControls2Impl/%{real_version}/ %{_qt6_includedir}/QtQuickControls2MaterialStyleImpl/%{real_version}/ %{_qt6_includedir}/QtQuickControls2UniversalStyleImpl/%{real_version}/ %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2basicstyleimpl_private.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2fluentwinui3styleimpl_private.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2fusionstyleimpl_private.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2imaginestyleimpl_private.pri %{_qt6_mkspecsdir}/modules/qt_lib_quickcontrols2impl_private.pri @@ -1559,61 +1366,6 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_includedir}/QtQuickDialogs2QuickImpl/%{real_version}/ %{_qt6_mkspecsdir}/modules/qt_lib_quickdialogs2quickimpl_private.pri -%files -n libQt6QuickDialogs2Utils6 -%{_qt6_libdir}/libQt6QuickDialogs2Utils.so.* - -%files -n qt6-quickdialogs2utils-devel -%{_qt6_cmakedir}/Qt6QuickDialogs2Utils/ -%{_qt6_descriptionsdir}/QuickDialogs2Utils.json -%{_qt6_includedir}/QtQuickDialogs2Utils/ -%{_qt6_libdir}/libQt6QuickDialogs2Utils.prl -%{_qt6_libdir}/libQt6QuickDialogs2Utils.so -%{_qt6_metatypesdir}/qt6quickdialogs2utils_*.json -%{_qt6_mkspecsdir}/modules/qt_lib_quickdialogs2utils.pri -%{_qt6_pkgconfigdir}/Qt6QuickDialogs2Utils.pc -%exclude %{_qt6_includedir}/QtQuickDialogs2Utils/%{real_version} - -%files -n qt6-quickdialogs2utils-private-devel -%{_qt6_includedir}/QtQuickDialogs2Utils/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_quickdialogs2utils_private.pri - -%files -n libQt6QuickLayouts6 -%{_qt6_libdir}/libQt6QuickLayouts.so.* - -%files -n qt6-quicklayouts-devel -%{_qt6_cmakedir}/Qt6QuickLayouts/ -%{_qt6_descriptionsdir}/QuickLayouts.json -%{_qt6_includedir}/QtQuickLayouts/ -%{_qt6_libdir}/libQt6QuickLayouts.prl -%{_qt6_libdir}/libQt6QuickLayouts.so -%{_qt6_metatypesdir}/qt6quicklayouts_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_quicklayouts.pri -%{_qt6_pkgconfigdir}/Qt6QuickLayouts.pc -%exclude %{_qt6_includedir}/QtQuickLayouts/%{real_version} - -%files -n qt6-quicklayouts-private-devel -%{_qt6_includedir}/QtQuickLayouts/%{real_version}/ -%{_qt6_libdir}/libQt6QuickLayouts.so -%{_qt6_mkspecsdir}/modules/qt_lib_quicklayouts_private.pri - -%files -n libQt6QuickTemplates2-6 -%{_qt6_libdir}/libQt6QuickTemplates2.so.* - -%files -n qt6-quicktemplates2-devel -%{_qt6_cmakedir}/Qt6QuickTemplates2/ -%{_qt6_descriptionsdir}/QuickTemplates2.json -%{_qt6_includedir}/QtQuickTemplates2/ -%{_qt6_libdir}/libQt6QuickTemplates2.prl -%{_qt6_libdir}/libQt6QuickTemplates2.so -%{_qt6_metatypesdir}/qt6quicktemplates2_*.json -%{_qt6_mkspecsdir}/modules/qt_lib_quicktemplates2.pri -%{_qt6_pkgconfigdir}/Qt6QuickTemplates2.pc -%exclude %{_qt6_includedir}/QtQuickTemplates2/%{real_version} - -%files -n qt6-quicktemplates2-private-devel -%{_qt6_includedir}/QtQuickTemplates2/%{real_version}/ -%{_qt6_mkspecsdir}/modules/qt_lib_quicktemplates2_private.pri - %files -n libQt6QuickTest6 %{_qt6_libdir}/libQt6QuickTest.so.* @@ -1652,6 +1404,146 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri ### Private only libraries ### +%files -n libQt6LabsPlatform6 +%{_qt6_libdir}/libQt6LabsPlatform.so.* + +%files -n qt6-labsplatform-private-devel +%{_qt6_cmakedir}/Qt6LabsPlatform/ +%{_qt6_descriptionsdir}/LabsPlatform.json +%{_qt6_includedir}/QtLabsPlatform/ +%{_qt6_libdir}/libQt6LabsPlatform.prl +%{_qt6_libdir}/libQt6LabsPlatform.so +%{_qt6_metatypesdir}/qt6labsplatform_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labsplatform.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labsplatform_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsPlatform.pc + +%files -n libQt6LabsAnimation6 +%{_qt6_libdir}/libQt6LabsAnimation.so.* + +%files -n qt6-labsanimation-private-devel +%{_qt6_cmakedir}/Qt6LabsAnimation/ +%{_qt6_descriptionsdir}/LabsAnimation.json +%{_qt6_includedir}/QtLabsAnimation/ +%{_qt6_libdir}/libQt6LabsAnimation.prl +%{_qt6_libdir}/libQt6LabsAnimation.so +%{_qt6_metatypesdir}/qt6labsanimation_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labsanimation.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labsanimation_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsAnimation.pc + +%files -n libQt6LabsFolderListModel6 +%{_qt6_libdir}/libQt6LabsFolderListModel.so.* + +%files -n qt6-labsfolderlistmodel-private-devel +%{_qt6_cmakedir}/Qt6LabsFolderListModel/ +%{_qt6_descriptionsdir}/LabsFolderListModel.json +%{_qt6_includedir}/QtLabsFolderListModel/ +%{_qt6_libdir}/libQt6LabsFolderListModel.prl +%{_qt6_libdir}/libQt6LabsFolderListModel.so +%{_qt6_metatypesdir}/qt6labsfolderlistmodel_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labsfolderlistmodel.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labsfolderlistmodel_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsFolderListModel.pc + +%files -n libQt6LabsQmlModels6 +%{_qt6_libdir}/libQt6LabsQmlModels.so.* + +%files -n qt6-labsqmlmodels-private-devel +%{_qt6_cmakedir}/Qt6LabsQmlModels/ +%{_qt6_descriptionsdir}/LabsQmlModels.json +%{_qt6_includedir}/QtLabsQmlModels/ +%{_qt6_libdir}/libQt6LabsQmlModels.prl +%{_qt6_libdir}/libQt6LabsQmlModels.so +%{_qt6_metatypesdir}/qt6labsqmlmodels_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labsqmlmodels.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labsqmlmodels_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsQmlModels.pc + +%files -n libQt6LabsSettings6 +%{_qt6_libdir}/libQt6LabsSettings.so.* + +%files -n qt6-labssettings-private-devel +%{_qt6_cmakedir}/Qt6LabsSettings/ +%{_qt6_descriptionsdir}/LabsSettings.json +%{_qt6_includedir}/QtLabsSettings/ +%{_qt6_libdir}/libQt6LabsSettings.prl +%{_qt6_libdir}/libQt6LabsSettings.so +%{_qt6_metatypesdir}/qt6labssettings_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labssettings.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labssettings_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsSettings.pc + +%files -n libQt6LabsSharedImage6 +%{_qt6_libdir}/libQt6LabsSharedImage.so.* + +%files -n qt6-labssharedimage-private-devel +%{_qt6_cmakedir}/Qt6LabsSharedImage/ +%{_qt6_descriptionsdir}/LabsSharedImage.json +%{_qt6_includedir}/QtLabsSharedImage/ +%{_qt6_libdir}/libQt6LabsSharedImage.prl +%{_qt6_libdir}/libQt6LabsSharedImage.so +%{_qt6_metatypesdir}/qt6labssharedimage_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labssharedimage.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labssharedimage_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsSharedImage.pc + +%files -n libQt6LabsWavefrontMesh6 +%{_qt6_libdir}/libQt6LabsWavefrontMesh.so.* + +%files -n qt6-labswavefrontmesh-private-devel +%{_qt6_cmakedir}/Qt6LabsWavefrontMesh/ +%{_qt6_descriptionsdir}/LabsWavefrontMesh.json +%{_qt6_includedir}/QtLabsWavefrontMesh/ +%{_qt6_libdir}/libQt6LabsWavefrontMesh.prl +%{_qt6_libdir}/libQt6LabsWavefrontMesh.so +%{_qt6_metatypesdir}/qt6labswavefrontmesh_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_labswavefrontmesh.pri +%{_qt6_mkspecsdir}/modules/qt_lib_labswavefrontmesh_private.pri +%{_qt6_pkgconfigdir}/Qt6LabsWavefrontMesh.pc + +%files -n libQt6QmlLocalStorage6 +%{_qt6_libdir}/libQt6QmlLocalStorage.so.* + +%files -n qt6-qmllocalstorage-private-devel +%{_qt6_cmakedir}/Qt6QmlLocalStorage/ +%{_qt6_descriptionsdir}/QmlLocalStorage.json +%{_qt6_includedir}/QtQmlLocalStorage/ +%{_qt6_libdir}/libQt6QmlLocalStorage.prl +%{_qt6_libdir}/libQt6QmlLocalStorage.so +%{_qt6_metatypesdir}/qt6qmllocalstorage_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_qmllocalstorage.pri +%{_qt6_mkspecsdir}/modules/qt_lib_qmllocalstorage_private.pri +%{_qt6_pkgconfigdir}/Qt6QmlLocalStorage.pc + +%files -n libQt6QmlMeta6 +%{_qt6_libdir}/libQt6QmlMeta.so.* + +%files -n qt6-qmlmeta-private-devel +%{_qt6_cmakedir}/Qt6QmlMeta/ +%{_qt6_descriptionsdir}/QmlMeta.json +%{_qt6_includedir}/QtQmlMeta +%{_qt6_libdir}/libQt6QmlMeta.prl +%{_qt6_libdir}/libQt6QmlMeta.so +%{_qt6_metatypesdir}/qt6qmlmeta_relwithdebinfo_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_qmlmeta.pri +%{_qt6_mkspecsdir}/modules/qt_lib_qmlmeta_private.pri +%{_qt6_pkgconfigdir}/Qt6QmlMeta.pc + +%files -n libQt6QmlModels6 +%{_qt6_libdir}/libQt6QmlModels.so.* + +%files -n qt6-qmlmodels-private-devel +%{_qt6_cmakedir}/Qt6QmlModels/ +%{_qt6_descriptionsdir}/QmlModels.json +%{_qt6_includedir}/QtQmlModels/ +%{_qt6_libdir}/libQt6QmlModels.prl +%{_qt6_libdir}/libQt6QmlModels.so +%{_qt6_metatypesdir}/qt6qmlmodels_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_qmlmodels.pri +%{_qt6_mkspecsdir}/modules/qt_lib_qmlmodels_private.pri +%{_qt6_pkgconfigdir}/Qt6QmlModels.pc + %files -n libQt6QmlNetwork6 %{_qt6_libdir}/libQt6QmlNetwork.so.* @@ -1666,6 +1558,62 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_mkspecsdir}/modules/qt_lib_qmlnetwork_private.pri %{_qt6_pkgconfigdir}/Qt6QmlNetwork.pc +%files -n libQt6QmlCore6 +%{_qt6_libdir}/libQt6QmlCore.so.* + +%files -n qt6-qmlcore-private-devel +%{_qt6_cmakedir}/Qt6QmlCore/ +%{_qt6_descriptionsdir}/QmlCore.json +%{_qt6_includedir}/QtQmlCore/ +%{_qt6_libdir}/libQt6QmlCore.prl +%{_qt6_libdir}/libQt6QmlCore.so +%{_qt6_metatypesdir}/qt6qmlcore_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_qmlcore.pri +%{_qt6_mkspecsdir}/modules/qt_lib_qmlcore_private.pri +%{_qt6_pkgconfigdir}/Qt6QmlCore.pc + +%files -n libQt6QmlWorkerScript6 +%{_qt6_libdir}/libQt6QmlWorkerScript.so.* + +%files -n qt6-qmlworkerscript-private-devel +%{_qt6_cmakedir}/Qt6QmlWorkerScript/ +%{_qt6_descriptionsdir}/QmlWorkerScript.json +%{_qt6_includedir}/QtQmlWorkerScript/ +%{_qt6_libdir}/libQt6QmlWorkerScript.prl +%{_qt6_libdir}/libQt6QmlWorkerScript.so +%{_qt6_metatypesdir}/qt6qmlworkerscript_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_qmlworkerscript.pri +%{_qt6_mkspecsdir}/modules/qt_lib_qmlworkerscript_private.pri +%{_qt6_pkgconfigdir}/Qt6QmlWorkerScript.pc + +%files -n libQt6QmlXmlListModel6 +%{_qt6_libdir}/libQt6QmlXmlListModel.so.* + +%files -n qt6-qmlxmllistmodel-private-devel +%{_qt6_cmakedir}/Qt6QmlXmlListModel/ +%{_qt6_descriptionsdir}/QmlXmlListModel.json +%{_qt6_includedir}/QtQmlXmlListModel/ +%{_qt6_libdir}/libQt6QmlXmlListModel.prl +%{_qt6_libdir}/libQt6QmlXmlListModel.so +%{_qt6_metatypesdir}/qt6qmlxmllistmodel_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_qmlxmllistmodel.pri +%{_qt6_mkspecsdir}/modules/qt_lib_qmlxmllistmodel_private.pri +%{_qt6_pkgconfigdir}/Qt6QmlXmlListModel.pc + +%files -n libQt6QuickDialogs2Utils6 +%{_qt6_libdir}/libQt6QuickDialogs2Utils.so.* + +%files -n qt6-quickdialogs2utils-private-devel +%{_qt6_cmakedir}/Qt6QuickDialogs2Utils/ +%{_qt6_descriptionsdir}/QuickDialogs2Utils.json +%{_qt6_includedir}/QtQuickDialogs2Utils/ +%{_qt6_libdir}/libQt6QuickDialogs2Utils.prl +%{_qt6_libdir}/libQt6QuickDialogs2Utils.so +%{_qt6_metatypesdir}/qt6quickdialogs2utils_*.json +%{_qt6_mkspecsdir}/modules/qt_lib_quickdialogs2utils.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quickdialogs2utils_private.pri +%{_qt6_pkgconfigdir}/Qt6QuickDialogs2Utils.pc + %files -n libQt6QuickEffects6 %{_qt6_libdir}/libQt6QuickEffects.so.* @@ -1678,6 +1626,20 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_metatypesdir}/qt6quickeffectsprivate_*_metatypes.json %{_qt6_mkspecsdir}/modules/qt_lib_quickeffects_private.pri +%files -n libQt6QuickLayouts6 +%{_qt6_libdir}/libQt6QuickLayouts.so.* + +%files -n qt6-quicklayouts-private-devel +%{_qt6_cmakedir}/Qt6QuickLayouts/ +%{_qt6_descriptionsdir}/QuickLayouts.json +%{_qt6_includedir}/QtQuickLayouts/ +%{_qt6_libdir}/libQt6QuickLayouts.prl +%{_qt6_libdir}/libQt6QuickLayouts.so +%{_qt6_metatypesdir}/qt6quicklayouts_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_quicklayouts.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quicklayouts_private.pri +%{_qt6_pkgconfigdir}/Qt6QuickLayouts.pc + %files -n libQt6QuickParticles6 %{_qt6_libdir}/libQt6QuickParticles.so.* @@ -1702,6 +1664,42 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_metatypesdir}/qt6quickshapesprivate_*_metatypes.json %{_qt6_mkspecsdir}/modules/qt_lib_quickshapes_private.pri +%files -n libQt6QuickTemplates2-6 +%{_qt6_libdir}/libQt6QuickTemplates2.so.* + +%files -n qt6-quicktemplates2-private-devel +%{_qt6_cmakedir}/Qt6QuickTemplates2/ +%{_qt6_descriptionsdir}/QuickTemplates2.json +%{_qt6_includedir}/QtQuickTemplates2/ +%{_qt6_libdir}/libQt6QuickTemplates2.prl +%{_qt6_libdir}/libQt6QuickTemplates2.so +%{_qt6_metatypesdir}/qt6quicktemplates2_*.json +%{_qt6_mkspecsdir}/modules/qt_lib_quicktemplates2.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quicktemplates2_private.pri +%{_qt6_pkgconfigdir}/Qt6QuickTemplates2.pc + +%files -n libQt6QuickVectorImage6 +%{_qt6_libdir}/libQt6QuickVectorImage.so.* +%{_qt6_libdir}/libQt6QuickVectorImageGenerator.so.* + +%files -n qt6-quickvectorimage-private-devel +%{_qt6_cmakedir}/Qt6QuickVectorImage/ +%{_qt6_cmakedir}/Qt6QuickVectorImageGeneratorPrivate/ +%{_qt6_descriptionsdir}/QuickVectorImage.json +%{_qt6_descriptionsdir}/QuickVectorImageGeneratorPrivate.json +%{_qt6_includedir}/QtQuickVectorImage/ +%{_qt6_includedir}/QtQuickVectorImageGenerator/ +%{_qt6_libdir}/libQt6QuickVectorImage.prl +%{_qt6_libdir}/libQt6QuickVectorImage.so +%{_qt6_libdir}/libQt6QuickVectorImageGenerator.prl +%{_qt6_libdir}/libQt6QuickVectorImageGenerator.so +%{_qt6_metatypesdir}/qt6quickvectorimage_*_metatypes.json +%{_qt6_metatypesdir}/qt6quickvectorimagegeneratorprivate_*_metatypes.json +%{_qt6_mkspecsdir}/modules/qt_lib_quickvectorimage.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quickvectorimage_private.pri +%{_qt6_mkspecsdir}/modules/qt_lib_quickvectorimagegenerator_private.pri +%{_qt6_pkgconfigdir}/Qt6QuickVectorImage.pc + ### Static libraries ### %files -n qt6-packetprotocol-devel-static @@ -1713,17 +1711,6 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %{_qt6_metatypesdir}/qt6packetprotocolprivate_*_metatypes.json %{_qt6_mkspecsdir}/modules/qt_lib_packetprotocol_private.pri -%files -n qt6-qmlbuiltins-devel-static -%{_qt6_cmakedir}/Qt6QmlBuiltins/ -%{_qt6_descriptionsdir}/QmlBuiltins.json -%{_qt6_includedir}/QtQmlBuiltins/ -%{_qt6_libdir}/libQt6QmlBuiltins.prl -%{_qt6_libdir}/libQt6QmlBuiltins.a -%{_qt6_metatypesdir}/qt6qmlbuiltins_*_metatypes.json -%{_qt6_mkspecsdir}/modules/qt_lib_qmlbuiltins.pri -%{_qt6_mkspecsdir}/modules/qt_lib_qmlbuiltins_private.pri -%{_qt6_pkgconfigdir}/Qt6QmlBuiltins.pc - %files -n qt6-qmldebug-devel-static %{_qt6_cmakedir}/Qt6QmlDebugPrivate/ %{_qt6_descriptionsdir}/QmlDebugPrivate.json @@ -1762,8 +1749,8 @@ rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qmlintegration_private.pri %files -n qt6-qmltyperegistrar-devel-static # Expected development files -%dir %{_qt6_archdatadir}/objects-RelWithDebInfo -%{_qt6_archdatadir}/objects-RelWithDebInfo/QmlTypeRegistrarPrivate_resources_1/ +%dir %{_qt6_archdatadir}/objects-* +%{_qt6_archdatadir}/objects-*/QmlTypeRegistrarPrivate_resources_1/ %{_qt6_cmakedir}/Qt6QmlTypeRegistrarPrivate/ %{_qt6_descriptionsdir}/QmlTypeRegistrarPrivate.json %{_qt6_includedir}/QtQmlTypeRegistrar/ diff --git a/qtdeclarative-everywhere-src-6.7.2.tar.xz b/qtdeclarative-everywhere-src-6.7.2.tar.xz deleted file mode 100644 index c7a7f37..0000000 --- a/qtdeclarative-everywhere-src-6.7.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c29cba1af8c42d425d8eb6e01bad24cb80f4b983d71eef566a0542dfdb9b999 -size 35629324 diff --git a/qtdeclarative-everywhere-src-6.8.1.tar.xz b/qtdeclarative-everywhere-src-6.8.1.tar.xz new file mode 100644 index 0000000..771d04f --- /dev/null +++ b/qtdeclarative-everywhere-src-6.8.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d15d5c1b6adcedb1df6485219ad13b8dc1bb5168b5151f2f1f7246a4c039fc +size 36463572