From 1b845519dc37138c48440b2609a7692a61e71e7f Mon Sep 17 00:00:00 2001 From: Pete Walter Date: Mon, 19 Sep 2022 01:23:06 +0100 Subject: [PATCH 01/11] Rebuild for llvm 15 --- qt6-qttools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 92c6ddc..810a0d0 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -11,7 +11,7 @@ Summary: Qt6 - QtTool components Name: qt6-qttools Version: 6.3.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv3 or LGPLv2 Url: http://www.qt.io @@ -374,6 +374,9 @@ popd %changelog +* Mon Sep 19 2022 Pete Walter - 6.3.1-3 +- Rebuild for llvm 15 + * Sat Jul 23 2022 Fedora Release Engineering - 6.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 0f658eb149c796e43e53a435f704522060b16387 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 1 Nov 2022 07:27:50 +0100 Subject: [PATCH 02/11] 6.4.0 --- .gitignore | 1 + qt6-qttools.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3bedaae..d47a10c 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /qttools-everywhere-src-6.2.3.tar.xz /qttools-everywhere-src-6.3.0.tar.xz /qttools-everywhere-src-6.3.1.tar.xz +/qttools-everywhere-src-6.4.0.tar.xz diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 810a0d0..29b757d 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -10,8 +10,8 @@ Summary: Qt6 - QtTool components Name: qt6-qttools -Version: 6.3.1 -Release: 3%{?dist} +Version: 6.4.0 +Release: 1%{?dist} License: LGPLv3 or LGPLv2 Url: http://www.qt.io @@ -241,7 +241,7 @@ popd %{_qt6_libdir}/libQt6UiTools.so.6* %files common -%license LICENSE.LGPL* +%license LICENSES/LGPL* %ldconfig_scriptlets libs-designer @@ -374,6 +374,9 @@ popd %changelog +* Mon Oct 31 2022 Jan Grulich - 6.4.0-1 +- 6.4.0 + * Mon Sep 19 2022 Pete Walter - 6.3.1-3 - Rebuild for llvm 15 diff --git a/sources b/sources index 14ec1d4..7c24e42 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (qttools-everywhere-src-6.3.1.tar.xz) = 6e392ef2415b14119d0c4058efa78f1a66e91c01c8f48a2f1926df43f7f1cb8fcd94f84c91fc0188baa96e3055eede6f080ca4e9f150e263c3fdc5c864649883 +SHA512 (qttools-everywhere-src-6.4.0.tar.xz) = ff4ed95491d26227b3bfea665fe810572f537a295dda0cffa26b18525961026db0471e7ef04667e3e4b8ae6b92dbedccb0fa77d733274c34d489d448b961ab44 From feb19cb1ee007024f7553c69d572d264ef0ce318 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 1 Nov 2022 09:00:54 +0100 Subject: [PATCH 03/11] Fix build against Clang 15 --- lupdate-clang-15.patch | 67 ++++++++++++++++++++++++++++++++++++++++++ qt6-qttools.spec | 7 +++-- 2 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 lupdate-clang-15.patch diff --git a/lupdate-clang-15.patch b/lupdate-clang-15.patch new file mode 100644 index 0000000..48e5d3f --- /dev/null +++ b/lupdate-clang-15.patch @@ -0,0 +1,67 @@ +From 01cae372619369d1a5a04f4d0f87817011029b78 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Bj=C3=B6rn=20Sch=C3=A4pers?= +Date: Sat, 1 Oct 2022 07:19:52 +0200 +Subject: [PATCH] lupdate: Fix build with clang 15+ +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +The signature of InclusionDirective changed for clang 15. + +Change-Id: Ic259b3508088671b40f6f615524137ce8837c487 +Reviewed-by: Jörg Bornemann +(cherry picked from commit 6495329e6de803025e6e4e8291b648f94893551c) +Reviewed-by: Qt Cherry-pick Bot +--- + src/linguist/lupdate/lupdatepreprocessoraction.cpp | 13 +++++++++++-- + src/linguist/lupdate/lupdatepreprocessoraction.h | 7 ++++++- + 2 files changed, 17 insertions(+), 3 deletions(-) + +diff --git a/src/linguist/lupdate/lupdatepreprocessoraction.cpp b/src/linguist/lupdate/lupdatepreprocessoraction.cpp +index d7446c364..9733f20d2 100644 +--- a/src/linguist/lupdate/lupdatepreprocessoraction.cpp ++++ b/src/linguist/lupdate/lupdatepreprocessoraction.cpp +@@ -156,14 +156,23 @@ void LupdatePPCallbacks::SourceRangeSkipped(clang::SourceRange sourceRange, + // To list the included files + void LupdatePPCallbacks::InclusionDirective(clang::SourceLocation /*hashLoc*/, + const clang::Token & /*includeTok*/, clang::StringRef /*fileName*/, bool /*isAngled*/, +- clang::CharSourceRange /*filenameRange*/, const clang::FileEntry *file, ++ clang::CharSourceRange /*filenameRange*/, ++#if (LUPDATE_CLANG_VERSION >= LUPDATE_CLANG_VERSION_CHECK(15,0,0)) ++ const clang::Optional file, ++#else ++ const clang::FileEntry *file, ++#endif + clang::StringRef /*searchPath*/, clang::StringRef /*relativePath*/, + const clang::Module */*imported*/, clang::SrcMgr::CharacteristicKind /*fileType*/) + { + if (!file) + return; + +- clang::StringRef fileNameRealPath = file->tryGetRealPathName(); ++ clang::StringRef fileNameRealPath = file-> ++#if (LUPDATE_CLANG_VERSION >= LUPDATE_CLANG_VERSION_CHECK(15,0,0)) ++ getFileEntry(). ++#endif ++ tryGetRealPathName(); + if (!LupdatePrivate::isFileSignificant(fileNameRealPath.str())) + return; + +diff --git a/src/linguist/lupdate/lupdatepreprocessoraction.h b/src/linguist/lupdate/lupdatepreprocessoraction.h +index b1ee468d4..3e44cee83 100644 +--- a/src/linguist/lupdate/lupdatepreprocessoraction.h ++++ b/src/linguist/lupdate/lupdatepreprocessoraction.h +@@ -51,7 +51,12 @@ class LupdatePPCallbacks : public clang::PPCallbacks + void SourceRangeSkipped(clang::SourceRange sourceRange, clang::SourceLocation endifLoc) override; + void InclusionDirective(clang::SourceLocation /*hashLoc*/, const clang::Token &/*includeTok*/, + clang::StringRef /*fileName*/, bool /*isAngled*/, +- clang::CharSourceRange /*filenameRange*/, const clang::FileEntry *file, ++ clang::CharSourceRange /*filenameRange*/, ++#if (LUPDATE_CLANG_VERSION >= LUPDATE_CLANG_VERSION_CHECK(15,0,0)) ++ const clang::Optional file, ++#else ++ const clang::FileEntry *file, ++#endif + clang::StringRef /*searchPath*/, clang::StringRef /*relativePath*/, + const clang::Module */*imported*/, + clang::SrcMgr::CharacteristicKind /*fileType*/) override; diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 29b757d..0229071 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -32,6 +32,7 @@ Patch1: qttools-run-qttools-with-qt6-suffix.patch Patch2: qttools-add-libatomic.patch ## upstream patches +Patch50: lupdate-clang-15.patch Source20: assistant.desktop Source21: designer.desktop @@ -49,6 +50,9 @@ BuildRequires: qt6-qtbase-static >= %{version} BuildRequires: qt6-qtdeclarative-static >= %{version} BuildRequires: qt6-qtdeclarative >= %{version} %{?_qt6:Requires: %{_qt6}%{?_isa} = %{_qt6_version}} +BuildRequires: qt6-qtbase-mysql >= %{version} +BuildRequires: qt6-qtbase-odbc >= %{version} +BuildRequires: qt6-qtbase-postgresql >= %{version} BuildRequires: clang-devel llvm-devel @@ -145,8 +149,6 @@ Summary: Qt6 doc tools package %if 0%{?examples} %package examples Summary: Programming examples for %{name} -# BuildRequires: qt6-qttools-devel >= %{version} -# BuildRequires: qt6-qttools-static >= %{version} Requires: %{name}-common = %{version}-%{release} %description examples %{summary}. @@ -160,6 +162,7 @@ Requires: %{name}-common = %{version}-%{release} %patch2 -p1 -b .libatomic %endif +%patch50 -p1 -b .lupdate-clang-15 %build %cmake_qt6 -DQT_BUILD_EXAMPLES:BOOL=%{?examples:ON}%{!?examples:OFF} From 4ade46b96197c252c9be72f0e049bc18bfc728e6 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Wed, 23 Nov 2022 13:43:58 +0100 Subject: [PATCH 04/11] 6.4.1 --- .gitignore | 1 + qt6-qttools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d47a10c..6290bf8 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /qttools-everywhere-src-6.3.0.tar.xz /qttools-everywhere-src-6.3.1.tar.xz /qttools-everywhere-src-6.4.0.tar.xz +/qttools-everywhere-src-6.4.1.tar.xz diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 0229071..84fe648 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -10,7 +10,7 @@ Summary: Qt6 - QtTool components Name: qt6-qttools -Version: 6.4.0 +Version: 6.4.1 Release: 1%{?dist} License: LGPLv3 or LGPLv2 @@ -377,6 +377,9 @@ popd %changelog +* Wed Nov 23 2022 Jan Grulich - 6.4.1-1 +- 6.4.1 + * Mon Oct 31 2022 Jan Grulich - 6.4.0-1 - 6.4.0 diff --git a/sources b/sources index 7c24e42..1744087 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (qttools-everywhere-src-6.4.0.tar.xz) = ff4ed95491d26227b3bfea665fe810572f537a295dda0cffa26b18525961026db0471e7ef04667e3e4b8ae6b92dbedccb0fa77d733274c34d489d448b961ab44 +SHA512 (qttools-everywhere-src-6.4.1.tar.xz) = 10ece151d78583976284b0b0c156d6309b0e381e8232a96ef26e71ea0616d9b14e2860c68285ddf263ce8f3aed41147ade7c0c12c061e959a163f46e8ae99cd5 From 3275b12e7bc83984cac3e765af4e7c85ab02de65 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Wed, 23 Nov 2022 16:15:59 +0100 Subject: [PATCH 05/11] Remove unneeded patch --- lupdate-clang-15.patch | 67 ------------------------------------------ qt6-qttools.spec | 1 - 2 files changed, 68 deletions(-) delete mode 100644 lupdate-clang-15.patch diff --git a/lupdate-clang-15.patch b/lupdate-clang-15.patch deleted file mode 100644 index 48e5d3f..0000000 --- a/lupdate-clang-15.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 01cae372619369d1a5a04f4d0f87817011029b78 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Bj=C3=B6rn=20Sch=C3=A4pers?= -Date: Sat, 1 Oct 2022 07:19:52 +0200 -Subject: [PATCH] lupdate: Fix build with clang 15+ -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -The signature of InclusionDirective changed for clang 15. - -Change-Id: Ic259b3508088671b40f6f615524137ce8837c487 -Reviewed-by: Jörg Bornemann -(cherry picked from commit 6495329e6de803025e6e4e8291b648f94893551c) -Reviewed-by: Qt Cherry-pick Bot ---- - src/linguist/lupdate/lupdatepreprocessoraction.cpp | 13 +++++++++++-- - src/linguist/lupdate/lupdatepreprocessoraction.h | 7 ++++++- - 2 files changed, 17 insertions(+), 3 deletions(-) - -diff --git a/src/linguist/lupdate/lupdatepreprocessoraction.cpp b/src/linguist/lupdate/lupdatepreprocessoraction.cpp -index d7446c364..9733f20d2 100644 ---- a/src/linguist/lupdate/lupdatepreprocessoraction.cpp -+++ b/src/linguist/lupdate/lupdatepreprocessoraction.cpp -@@ -156,14 +156,23 @@ void LupdatePPCallbacks::SourceRangeSkipped(clang::SourceRange sourceRange, - // To list the included files - void LupdatePPCallbacks::InclusionDirective(clang::SourceLocation /*hashLoc*/, - const clang::Token & /*includeTok*/, clang::StringRef /*fileName*/, bool /*isAngled*/, -- clang::CharSourceRange /*filenameRange*/, const clang::FileEntry *file, -+ clang::CharSourceRange /*filenameRange*/, -+#if (LUPDATE_CLANG_VERSION >= LUPDATE_CLANG_VERSION_CHECK(15,0,0)) -+ const clang::Optional file, -+#else -+ const clang::FileEntry *file, -+#endif - clang::StringRef /*searchPath*/, clang::StringRef /*relativePath*/, - const clang::Module */*imported*/, clang::SrcMgr::CharacteristicKind /*fileType*/) - { - if (!file) - return; - -- clang::StringRef fileNameRealPath = file->tryGetRealPathName(); -+ clang::StringRef fileNameRealPath = file-> -+#if (LUPDATE_CLANG_VERSION >= LUPDATE_CLANG_VERSION_CHECK(15,0,0)) -+ getFileEntry(). -+#endif -+ tryGetRealPathName(); - if (!LupdatePrivate::isFileSignificant(fileNameRealPath.str())) - return; - -diff --git a/src/linguist/lupdate/lupdatepreprocessoraction.h b/src/linguist/lupdate/lupdatepreprocessoraction.h -index b1ee468d4..3e44cee83 100644 ---- a/src/linguist/lupdate/lupdatepreprocessoraction.h -+++ b/src/linguist/lupdate/lupdatepreprocessoraction.h -@@ -51,7 +51,12 @@ class LupdatePPCallbacks : public clang::PPCallbacks - void SourceRangeSkipped(clang::SourceRange sourceRange, clang::SourceLocation endifLoc) override; - void InclusionDirective(clang::SourceLocation /*hashLoc*/, const clang::Token &/*includeTok*/, - clang::StringRef /*fileName*/, bool /*isAngled*/, -- clang::CharSourceRange /*filenameRange*/, const clang::FileEntry *file, -+ clang::CharSourceRange /*filenameRange*/, -+#if (LUPDATE_CLANG_VERSION >= LUPDATE_CLANG_VERSION_CHECK(15,0,0)) -+ const clang::Optional file, -+#else -+ const clang::FileEntry *file, -+#endif - clang::StringRef /*searchPath*/, clang::StringRef /*relativePath*/, - const clang::Module */*imported*/, - clang::SrcMgr::CharacteristicKind /*fileType*/) override; diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 84fe648..bfa47c9 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -32,7 +32,6 @@ Patch1: qttools-run-qttools-with-qt6-suffix.patch Patch2: qttools-add-libatomic.patch ## upstream patches -Patch50: lupdate-clang-15.patch Source20: assistant.desktop Source21: designer.desktop From 7d2050dcc0d9f3619145bf81bd8e0a85e38a3ce7 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Wed, 23 Nov 2022 16:29:05 +0100 Subject: [PATCH 06/11] Do not apply non-existing patch --- qt6-qttools.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/qt6-qttools.spec b/qt6-qttools.spec index bfa47c9..87486b6 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -161,8 +161,6 @@ Requires: %{name}-common = %{version}-%{release} %patch2 -p1 -b .libatomic %endif -%patch50 -p1 -b .lupdate-clang-15 - %build %cmake_qt6 -DQT_BUILD_EXAMPLES:BOOL=%{?examples:ON}%{!?examples:OFF} From 887c0e397c86677581bbcd1fc6d3e2cb53ace025 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Mon, 2 Jan 2023 11:19:52 +0100 Subject: [PATCH 07/11] Remove BR on qtbase database plugins --- qt6-qttools.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 87486b6..c538245 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -49,9 +49,6 @@ BuildRequires: qt6-qtbase-static >= %{version} BuildRequires: qt6-qtdeclarative-static >= %{version} BuildRequires: qt6-qtdeclarative >= %{version} %{?_qt6:Requires: %{_qt6}%{?_isa} = %{_qt6_version}} -BuildRequires: qt6-qtbase-mysql >= %{version} -BuildRequires: qt6-qtbase-odbc >= %{version} -BuildRequires: qt6-qtbase-postgresql >= %{version} BuildRequires: clang-devel llvm-devel From 7295fc78a3ef77ca37776d7daba816f68798284b Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Mon, 16 Jan 2023 13:26:16 +0100 Subject: [PATCH 08/11] 6.4.2 --- .gitignore | 1 + qt6-qttools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6290bf8..6f4d362 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /qttools-everywhere-src-6.3.1.tar.xz /qttools-everywhere-src-6.4.0.tar.xz /qttools-everywhere-src-6.4.1.tar.xz +/qttools-everywhere-src-6.4.2.tar.xz diff --git a/qt6-qttools.spec b/qt6-qttools.spec index c538245..45bd213 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -10,7 +10,7 @@ Summary: Qt6 - QtTool components Name: qt6-qttools -Version: 6.4.1 +Version: 6.4.2 Release: 1%{?dist} License: LGPLv3 or LGPLv2 @@ -371,6 +371,9 @@ popd %changelog +* Mon Jan 16 2023 Jan Grulich - 6.4.2-1 +- 6.4.2 + * Wed Nov 23 2022 Jan Grulich - 6.4.1-1 - 6.4.1 diff --git a/sources b/sources index 1744087..a696623 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (qttools-everywhere-src-6.4.1.tar.xz) = 10ece151d78583976284b0b0c156d6309b0e381e8232a96ef26e71ea0616d9b14e2860c68285ddf263ce8f3aed41147ade7c0c12c061e959a163f46e8ae99cd5 +SHA512 (qttools-everywhere-src-6.4.2.tar.xz) = 303da2e7d58d213b8a5d4f4e36c7903b57ea8011f711cfb598b79414a6da1e3cc5e47a26a34ff1bdf82e07cb4f5274bd45297b880c380e6a3de3df42837a2c2c From ba51e3e6c205c8dc96eeb89d594d6777c632919d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 19:12:57 +0000 Subject: [PATCH 09/11] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- qt6-qttools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qt6-qttools.spec b/qt6-qttools.spec index 45bd213..d01e138 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -11,7 +11,7 @@ Summary: Qt6 - QtTool components Name: qt6-qttools Version: 6.4.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3 or LGPLv2 Url: http://www.qt.io @@ -371,6 +371,9 @@ popd %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 6.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Jan 16 2023 Jan Grulich - 6.4.2-1 - 6.4.2 From 811c481e6bb9ec8e1827312adab5418b954ce68d Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 31 Jan 2023 14:59:59 +0100 Subject: [PATCH 10/11] migrated to SPDX license --- qt6-qttools.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qt6-qttools.spec b/qt6-qttools.spec index d01e138..eb3096a 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -11,9 +11,9 @@ Summary: Qt6 - QtTool components Name: qt6-qttools Version: 6.4.2 -Release: 2%{?dist} +Release: 3%{?dist} -License: LGPLv3 or LGPLv2 +License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0 Url: http://www.qt.io %global majmin %(echo %{version} | cut -d. -f1-2) %global qt_version %(echo %{version} | cut -d~ -f1) @@ -371,6 +371,9 @@ popd %changelog +* Tue Jan 31 2023 Jan Grulich - 6.4.2-3 +- migrated to SPDX license + * Fri Jan 20 2023 Fedora Release Engineering - 6.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 40986c007221df065b011b1b9f6ac81c7f5ad0a0 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Thu, 23 Mar 2023 09:13:06 +0100 Subject: [PATCH 11/11] 6.4.3 --- .gitignore | 1 + qt6-qttools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6f4d362..7b81cea 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /qttools-everywhere-src-6.4.0.tar.xz /qttools-everywhere-src-6.4.1.tar.xz /qttools-everywhere-src-6.4.2.tar.xz +/qttools-everywhere-src-6.4.3.tar.xz diff --git a/qt6-qttools.spec b/qt6-qttools.spec index eb3096a..d173249 100644 --- a/qt6-qttools.spec +++ b/qt6-qttools.spec @@ -10,8 +10,8 @@ Summary: Qt6 - QtTool components Name: qt6-qttools -Version: 6.4.2 -Release: 3%{?dist} +Version: 6.4.3 +Release: 1%{?dist} License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0 Url: http://www.qt.io @@ -371,6 +371,9 @@ popd %changelog +* Thu Mar 23 2023 Jan Grulich - 6.4.3-1 +- 6.4.3 + * Tue Jan 31 2023 Jan Grulich - 6.4.2-3 - migrated to SPDX license diff --git a/sources b/sources index a696623..2373848 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (qttools-everywhere-src-6.4.2.tar.xz) = 303da2e7d58d213b8a5d4f4e36c7903b57ea8011f711cfb598b79414a6da1e3cc5e47a26a34ff1bdf82e07cb4f5274bd45297b880c380e6a3de3df42837a2c2c +SHA512 (qttools-everywhere-src-6.4.3.tar.xz) = 24dc02b760d4b1640eac539c9d0dfff9fe516332e5932f43456140daa3044c1e748731a883cc4f80e94626602241d040341e2af27efd470e7d6f50a908660382