commit qt6-tools for openSUSE:Factory

2024-10-03 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2024-10-03 18:02:19

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.19354 (New)


Package is "qt6-tools"

Thu Oct  3 18:02:19 2024 rev:39 rq:1205150 version:6.7.3

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2024-06-24 
20:50:12.693545367 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.19354/qt6-tools.changes   
2024-10-03 18:03:13.129277745 +0200
@@ -1,0 +2,12 @@
+Sat Sep 28 08:23:10 UTC 2024 - Christophe Marin 
+
+- Update to 6.7.3
+  * https://www.qt.io/blog/qt-6.7.3-released
+
+---
+Tue Sep 24 21:22:32 UTC 2024 - Aaron Puchert 
+
+- Add fix-llvm19-build.patch to fix build with LLVM 19. Upstream
+  report is at https://bugreports.qt.io/browse/QTBUG-129146.
+
+---

Old:

  qttools-everywhere-src-6.7.2.tar.xz

New:

  fix-llvm19-build.patch
  qttools-everywhere-src-6.7.3.tar.xz

BETA DEBUG BEGIN:
  New:
- Add fix-llvm19-build.patch to fix build with LLVM 19. Upstream
  report is at https://bugreports.qt.io/browse/QTBUG-129146.
BETA DEBUG END:



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.eEetRZ/_old  2024-10-03 18:03:13.917310541 +0200
+++ /var/tmp/diff_new_pack.eEetRZ/_new  2024-10-03 18:03:13.921310708 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.7.2
+%define real_version 6.7.3
 %define short_version 6.7
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.7.2
+Version:6.7.3
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -46,11 +46,12 @@
 # The 48x48 icon was removed from qttools
 Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
+Patch1: fix-llvm19-build.patch
 # clang-devel in Leap 15 points to clang7...
 %if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150600
 BuildRequires:  clang17-devel
 %else
-%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150400
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150500
 BuildRequires:  clang15-devel
 %else
 BuildRequires:  clang-devel >= 8

++ fix-llvm19-build.patch ++
Should eventually be replaced by upstream fix, see 
https://bugreports.qt.io/browse/QTBUG-129146.

diff --git a/src/linguist/lupdate/clangtoolastreader.cpp 
b/src/linguist/lupdate/clangtoolastreader.cpp
index 6b85c6c..63ddf3d 100644
--- a/src/linguist/lupdate/clangtoolastreader.cpp
+++ b/src/linguist/lupdate/clangtoolastreader.cpp
@@ -782,7 +782,7 @@ bool LupdateVisitor::VisitNamedDecl(clang::NamedDecl 
*namedDeclaration)
 if (!fullLocation.isValid() || !fullLocation.getFileEntry())
 return true;
 
-if 
(!LupdatePrivate::isFileSignificant(fullLocation.getFileEntry()->getName().str()))
+if 
(!LupdatePrivate::isFileSignificant(fullLocation.getFileEntry()->tryGetRealPathName().str()))
 return true;
 
 qCDebug(lcClang) << "NamedDecl Name:   " << 
QString::fromStdString(namedDeclaration->getQualifiedNameAsString());
diff --git a/src/qdoc/qdoc/src/qdoc/clangcodeparser.cpp 
b/src/qdoc/qdoc/src/qdoc/clangcodeparser.cpp
index bd3cc63..c5ec3d4 100644
--- a/src/qdoc/qdoc/src/qdoc/clangcodeparser.cpp
+++ b/src/qdoc/qdoc/src/qdoc/clangcodeparser.cpp
@@ -168,7 +168,11 @@ static std::string get_expression_as_string(const 
clang::Expr* expression, const
  */
 static std::string get_default_value_initializer_as_string(const 
clang::TemplateTypeParmDecl* parameter) {
 return (parameter && parameter->hasDefaultArgument()) ?
+#if LIBCLANG_VERSION_MAJOR >= 19
+
get_fully_qualified_type_name(parameter->getDefaultArgument().getTypeSourceInfo()->getType(),
 parameter->getASTContext()) :
+#else
 get_fully_qualified_type_name(parameter->getDefaultArgument(), 
parameter->getASTContext()) :
+#endif
 "";
 
 }
@@ -184,7 +188,11 @@ static std::string 
get_default_value_initializer_as_string(const clang::Template
  */
 static std::string get_default_value_initializer_as_string(const 
clang::NonTypeTemplateParmDecl* parameter) {
 return (parameter && parameter->hasDefaultArgument()) ?
+#if LIBCLANG_VERSION_MAJOR >= 19
+
get_expression_as_string(parameter->getDefaultArgument().getLocInfo().getAsExpr(),
 parameter->getASTContext()) : "";
+#else
 get_expression_as_string(parameter->getDefaultArgument(), 
parameter->getASTContext()) : "";
+#endif
 
 }
 
@@ -204,7 +212,7 @@ st

commit qt6-tools for openSUSE:Factory

2024-06-24 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2024-06-24 20:49:53

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.18349 (New)


Package is "qt6-tools"

Mon Jun 24 20:49:53 2024 rev:38 rq:1182615 version:6.7.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2024-05-27 
11:46:50.725980152 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.18349/qt6-tools.changes   
2024-06-24 20:50:12.693545367 +0200
@@ -1,0 +2,6 @@
+Wed Jun 19 07:26:03 UTC 2024 - Christophe Marin 
+
+- Update to 6.7.2:
+  * https://www.qt.io/blog/qt-6.7.2-released
+
+---

Old:

  qttools-everywhere-src-6.7.1.tar.xz

New:

  qttools-everywhere-src-6.7.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.kQUJ61/_old  2024-06-24 20:50:15.029631006 +0200
+++ /var/tmp/diff_new_pack.kQUJ61/_new  2024-06-24 20:50:15.041631447 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.7.1
+%define real_version 6.7.2
 %define short_version 6.7
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.7.1
+Version:6.7.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid


++ qttools-everywhere-src-6.7.1.tar.xz -> 
qttools-everywhere-src-6.7.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.7.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.18349/qttools-everywhere-src-6.7.2.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2024-05-27 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2024-05-27 11:45:19

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.24587 (New)


Package is "qt6-tools"

Mon May 27 11:45:19 2024 rev:37 rq:1176076 version:6.7.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2024-04-08 
17:43:33.582383989 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.24587/qt6-tools.changes   
2024-05-27 11:46:50.725980152 +0200
@@ -1,0 +2,6 @@
+Tue May 21 08:31:49 UTC 2024 - Christophe Marin 
+
+- Update to 6.7.1:
+  * https://www.qt.io/blog/qt-6.7.1-released
+
+---

Old:

  qttools-everywhere-src-6.7.0.tar.xz

New:

  qttools-everywhere-src-6.7.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.oERkwe/_old  2024-05-27 11:46:52.214034678 +0200
+++ /var/tmp/diff_new_pack.oERkwe/_new  2024-05-27 11:46:52.218034825 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.7.0
+%define real_version 6.7.1
 %define short_version 6.7
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.7.0
+Version:6.7.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -38,7 +38,7 @@
 # 'GPL-3.0-only WITH Qt-GPL-exception-1.0' files in this folder are only used 
on Windows.
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) AND 
GPL-3.0-only WITH Qt-GPL-exception-1.0
 URL:https://www.qt.io
-Source: 
https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
+Source0:
https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
 Source10:   org.qt.designer6.desktop
 Source11:   org.qt.linguist6.desktop
 Source12:   org.qt.qdbusviewer6.desktop


++ qttools-everywhere-src-6.7.0.tar.xz -> 
qttools-everywhere-src-6.7.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.7.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.24587/qttools-everywhere-src-6.7.1.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2024-04-08 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2024-04-08 17:38:01

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1905 (New)


Package is "qt6-tools"

Mon Apr  8 17:38:01 2024 rev:36 rq:1165807 version:6.7.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2024-03-28 
14:09:21.722568397 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1905/qt6-tools.changes
2024-04-08 17:43:33.582383989 +0200
@@ -1,0 +2,6 @@
+Tue Apr  2 13:40:00 UTC 2024 - Christophe Marin 
+
+- Update to 6.7.0:
+  * https://www.qt.io/blog/qt-6.7-released
+
+---

Old:

  qttools-everywhere-src-6.6.3.tar.xz

New:

  qttools-everywhere-src-6.7.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.w73u3F/_old  2024-04-08 17:43:34.558420042 +0200
+++ /var/tmp/diff_new_pack.w73u3F/_new  2024-04-08 17:43:34.562420189 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define real_version 6.6.3
-%define short_version 6.6
+%define real_version 6.7.0
+%define short_version 6.7
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.6.3
+Version:6.7.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -295,13 +295,9 @@
 # CMake files are not needed for plugins (except for Qt6UiPlugin)
 rm %{buildroot}%{_qt6_cmakedir}/Qt6Designer/*Plugin{Config,Targets}*.cmake
 
-# Unused file. There are no private headers for this library
-rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_linguist_private.pri
-
 # This doesn't look useful
 rm -r %{buildroot}%{_qt6_includedir}/QtQDocCatch*
 rm -r %{buildroot}%{_qt6_cmakedir}/Qt6QDocCatch*
-rm %{buildroot}%{_qt6_pkgconfigdir}/Qt6QDocCatch*.pc
 rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qdoccatch*.pri
 rm %{buildroot}%{_qt6_descriptionsdir}/QDocCatch*.json
 


++ org.qt.assistant6.desktop ++
--- /var/tmp/diff_new_pack.w73u3F/_old  2024-04-08 17:43:34.614422110 +0200
+++ /var/tmp/diff_new_pack.w73u3F/_new  2024-04-08 17:43:34.618422259 +0200
@@ -1,6 +1,5 @@
 [Desktop Entry]
 Categories=Qt;Development;Documentation;
-Encoding=UTF-8
 Exec=assistant6
 Name=Qt 6 Assistant
 GenericName=Document Browser
@@ -10,5 +9,3 @@
 Type=Application
 Icon=assistant6
 
-
-

++ org.qt.designer6.desktop ++
--- /var/tmp/diff_new_pack.w73u3F/_old  2024-04-08 17:43:34.634422849 +0200
+++ /var/tmp/diff_new_pack.w73u3F/_new  2024-04-08 17:43:34.638422997 +0200
@@ -1,6 +1,5 @@
 [Desktop Entry]
 Categories=Qt;Development;GUIDesigner;
-Encoding=UTF-8
 Exec=designer6
 Name=Qt 6 Designer
 GenericName=Interface Designer
@@ -10,5 +9,3 @@
 Terminal=false
 Type=Application
 
-
-

++ org.qt.linguist6.desktop ++
--- /var/tmp/diff_new_pack.w73u3F/_old  2024-04-08 17:43:34.654423588 +0200
+++ /var/tmp/diff_new_pack.w73u3F/_new  2024-04-08 17:43:34.658423735 +0200
@@ -1,6 +1,5 @@
 [Desktop Entry]
 Categories=Qt;Development;Translation;
-Encoding=UTF-8
 Exec=linguist6
 Name=Qt 6 Linguist
 GenericName=Translation Tool

++ org.qt.qdbusviewer6.desktop ++
--- /var/tmp/diff_new_pack.w73u3F/_old  2024-04-08 17:43:34.674424327 +0200
+++ /var/tmp/diff_new_pack.w73u3F/_new  2024-04-08 17:43:34.678424475 +0200
@@ -1,7 +1,6 @@
 [Desktop Entry]
 Categories=Qt;Development;Debugger;
-Encoding=UTF-8
-Exec=/usr/bin/qdbusviewer6
+Exec=qdbusviewer6
 Name=Qt 6 D-Bus Viewer
 GenericName=D-Bus Debugger
 Comment=Introspect D-Bus objects and messages
@@ -10,5 +9,3 @@
 Type=Application
 Icon=qdbusviewer6
 
-
-

++ qttools-everywhere-src-6.6.3.tar.xz -> 
qttools-everywhere-src-6.7.0.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.6.3.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1905/qttools-everywhere-src-6.7.0.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2024-02-18 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2024-02-18 20:24:18

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1815 (New)


Package is "qt6-tools"

Sun Feb 18 20:24:18 2024 rev:34 rq:1147237 version:6.6.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2024-01-11 
21:05:54.860187998 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1815/qt6-tools.changes
2024-02-18 20:24:51.873680777 +0100
@@ -1,0 +2,6 @@
+Wed Feb 14 16:53:34 UTC 2024 - Christophe Marin 
+
+- Update to 6.6.2
+  * https://www.qt.io/blog/qt-6.6.2-released
+
+---

Old:

  qttools-everywhere-src-6.6.1.tar.xz

New:

  qttools-everywhere-src-6.6.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.tofRvs/_old  2024-02-18 20:24:52.985720908 +0100
+++ /var/tmp/diff_new_pack.tofRvs/_new  2024-02-18 20:24:52.989721052 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.6.1
+%define real_version 6.6.2
 %define short_version 6.6
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.6.1
+Version:6.6.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid


++ qttools-everywhere-src-6.6.1.tar.xz -> 
qttools-everywhere-src-6.6.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.6.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1815/qttools-everywhere-src-6.6.2.tar.xz
 differ: char 25, line 1


commit qt6-tools for openSUSE:Factory

2024-01-11 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2024-01-11 21:05:22

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.21961 (New)


Package is "qt6-tools"

Thu Jan 11 21:05:22 2024 rev:33 rq:1138069 version:6.6.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-12-04 
23:00:39.633783109 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.21961/qt6-tools.changes   
2024-01-11 21:05:54.860187998 +0100
@@ -1,0 +2,5 @@
+Wed Jan 10 18:47:55 UTC 2024 - Antonio Larrosa 
+
+- Fix build in SLE15 SP6 by using clang17-devel 
+
+---



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.Agcb2D/_old  2024-01-11 21:05:55.628216135 +0100
+++ /var/tmp/diff_new_pack.Agcb2D/_new  2024-01-11 21:05:55.628216135 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qt6-tools
 #
-# 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
@@ -47,11 +47,15 @@
 Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
 # clang-devel in Leap 15 points to clang7...
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150600
+BuildRequires:  clang17-devel
+%else
 %if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150400
 BuildRequires:  clang15-devel
 %else
 BuildRequires:  clang-devel >= 8
 %endif
+%endif
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  pkgconfig
 BuildRequires:  qt6-core-private-devel


commit qt6-tools for openSUSE:Factory

2023-12-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-12-04 23:00:23

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.25432 (New)


Package is "qt6-tools"

Mon Dec  4 23:00:23 2023 rev:32 rq:1130432 version:6.6.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-10-13 
23:15:23.348577984 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.25432/qt6-tools.changes   
2023-12-04 23:00:39.633783109 +0100
@@ -1,0 +2,6 @@
+Mon Nov 27 14:00:20 UTC 2023 - Christophe Marin 
+
+- Update to 6.6.1:
+  * https://www.qt.io/blog/qt-6.6.1-released
+
+---

Old:

  qttools-everywhere-src-6.6.0.tar.xz

New:

  qttools-everywhere-src-6.6.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.pL3LU8/_old  2023-12-04 23:00:40.529814777 +0100
+++ /var/tmp/diff_new_pack.pL3LU8/_new  2023-12-04 23:00:40.533814918 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.6.0
+%define real_version 6.6.1
 %define short_version 6.6
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.6.0
+Version:6.6.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid


++ qttools-everywhere-src-6.6.0.tar.xz -> 
qttools-everywhere-src-6.6.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.6.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.25432/qttools-everywhere-src-6.6.1.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2023-10-13 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-10-13 23:14:33

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.20540 (New)


Package is "qt6-tools"

Fri Oct 13 23:14:33 2023 rev:31 rq:1116958 version:6.6.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-10-02 
20:07:56.609991660 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.20540/qt6-tools.changes   
2023-10-13 23:15:23.348577984 +0200
@@ -1,0 +2,6 @@
+Tue Oct 10 09:40:01 UTC 2023 - Christophe Marin 
+
+- Update to 6.6.0
+  * https://www.qt.io/blog/qt-6.6-released
+
+---

Old:

  qttools-everywhere-src-6.5.3.tar.xz

New:

  qttools-everywhere-src-6.6.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.YDKMMq/_old  2023-10-13 23:15:25.036639211 +0200
+++ /var/tmp/diff_new_pack.YDKMMq/_new  2023-10-13 23:15:25.040639357 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define real_version 6.5.3
-%define short_version 6.5
+%define real_version 6.6.0
+%define short_version 6.6
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.5.3
+Version:6.6.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -73,6 +73,7 @@
 BuildRequires:  cmake(Qt6Sql) = %{real_version}
 BuildRequires:  cmake(Qt6Widgets) = %{real_version}
 BuildRequires:  cmake(Qt6Xml) = %{real_version}
+BuildRequires:  pkgconfig(libzstd) >= 1.3
 # These packages are required to generate documentation for the Qt packages
 Requires:   qt6-tools-helpgenerators
 Requires:   qt6-tools-qdoc
@@ -293,6 +294,13 @@
 # Unused file. There are no private headers for this library
 rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_linguist_private.pri
 
+# This doesn't look useful
+rm -r %{buildroot}%{_qt6_includedir}/QtQDocCatch*
+rm -r %{buildroot}%{_qt6_cmakedir}/Qt6QDocCatch*
+rm %{buildroot}%{_qt6_pkgconfigdir}/Qt6QDocCatch*.pc
+rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_qdoccatch*.pri
+rm %{buildroot}%{_qt6_descriptionsdir}/QDocCatch*.json
+
 # Desktop files for applications
 %suse_update_desktop_file -i org.qt.assistant6
 %suse_update_desktop_file -i org.qt.designer6


++ qttools-everywhere-src-6.5.3.tar.xz -> 
qttools-everywhere-src-6.6.0.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.5.3.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.20540/qttools-everywhere-src-6.6.0.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2023-10-02 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-10-02 20:05:50

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.28202 (New)


Package is "qt6-tools"

Mon Oct  2 20:05:50 2023 rev:30 rq:1114516 version:6.5.3

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-07-26 
13:23:33.847863506 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.28202/qt6-tools.changes   
2023-10-02 20:07:56.609991660 +0200
@@ -1,0 +2,6 @@
+Thu Sep 28 07:34:22 UTC 2023 - Christophe Marin 
+
+- Update to 6.5.3
+  * https://www.qt.io/blog/qt-6.5.3-released
+
+---

Old:

  qttools-everywhere-src-6.5.2.tar.xz

New:

  qttools-everywhere-src-6.5.3.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.OXp88q/_old  2023-10-02 20:07:58.126046182 +0200
+++ /var/tmp/diff_new_pack.OXp88q/_new  2023-10-02 20:07:58.126046182 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.5.2
+%define real_version 6.5.3
 %define short_version 6.5
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.5.2
+Version:6.5.3
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -38,7 +38,7 @@
 # 'GPL-3.0-only WITH Qt-GPL-exception-1.0' files in this folder are only used 
on Windows.
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) AND 
GPL-3.0-only WITH Qt-GPL-exception-1.0
 URL:https://www.qt.io
-Source: 
https://www.nic.funet.fi/pub/mirrors/download.qt-project.org/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
 Source10:   org.qt.designer6.desktop
 Source11:   org.qt.linguist6.desktop
 Source12:   org.qt.qdbusviewer6.desktop


++ qttools-everywhere-src-6.5.2.tar.xz -> 
qttools-everywhere-src-6.5.3.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.5.2.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.28202/qttools-everywhere-src-6.5.3.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2023-07-26 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-07-26 13:22:58

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.15225 (New)


Package is "qt6-tools"

Wed Jul 26 13:22:58 2023 rev:29 rq:1100014 version:6.5.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-07-08 
22:47:46.447350888 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.15225/qt6-tools.changes   
2023-07-26 13:23:33.847863506 +0200
@@ -1,0 +2,6 @@
+Thu Jul 20 09:07:20 UTC 2023 - Christophe Marin 
+
+- Update to 6.5.2
+  * https://www.qt.io/blog/qt-6.5.2-released-1
+
+---

Old:

  qttools-everywhere-src-6.5.1.tar.xz

New:

  qttools-everywhere-src-6.5.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.26YHCM/_old  2023-07-26 13:23:37.083881822 +0200
+++ /var/tmp/diff_new_pack.26YHCM/_new  2023-07-26 13:23:37.123882048 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.5.1
+%define real_version 6.5.2
 %define short_version 6.5
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.5.1
+Version:6.5.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -38,7 +38,7 @@
 # 'GPL-3.0-only WITH Qt-GPL-exception-1.0' files in this folder are only used 
on Windows.
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) AND 
GPL-3.0-only WITH Qt-GPL-exception-1.0
 URL:https://www.qt.io
-Source: 
https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
+Source: 
https://www.nic.funet.fi/pub/mirrors/download.qt-project.org/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
 Source10:   org.qt.designer6.desktop
 Source11:   org.qt.linguist6.desktop
 Source12:   org.qt.qdbusviewer6.desktop


++ qttools-everywhere-src-6.5.1.tar.xz -> 
qttools-everywhere-src-6.5.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.5.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.15225/qttools-everywhere-src-6.5.2.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2023-07-08 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-07-08 22:47:39

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.23466 (New)


Package is "qt6-tools"

Sat Jul  8 22:47:39 2023 rev:28 rq:1097623 version:6.5.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-06-28 
21:33:16.081827558 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.23466/qt6-tools.changes   
2023-07-08 22:47:46.447350888 +0200
@@ -1,0 +2,5 @@
+Fri Jun 30 15:13:16 UTC 2023 - Christophe Marin 
+
+- Update subpackages requirements
+
+---



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.tmBshX/_old  2023-07-08 22:47:47.591357765 +0200
+++ /var/tmp/diff_new_pack.tmBshX/_new  2023-07-08 22:47:47.595357789 +0200
@@ -120,6 +120,7 @@
 Summary:Qt 6 Designer libraries - Development files
 Requires:   libQt6Designer6 = %{version}
 Requires:   cmake(Qt6Gui) = %{real_version}
+Requires:   cmake(Qt6OpenGL) = %{real_version}
 Requires:   cmake(Qt6OpenGLWidgets) = %{real_version}
 Requires:   cmake(Qt6Widgets) = %{real_version}
 Requires:   cmake(Qt6Xml) = %{real_version}


commit qt6-tools for openSUSE:Factory

2023-06-28 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-06-28 21:33:14

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.13546 (New)


Package is "qt6-tools"

Wed Jun 28 21:33:14 2023 rev:27 rq:1095698 version:6.5.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-05-28 
19:22:37.948887074 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.13546/qt6-tools.changes   
2023-06-28 21:33:16.081827558 +0200
@@ -1,0 +2,7 @@
+Wed Jun 21 01:27:39 UTC 2023 - Christophe Marin 
+
+- Also use llvm 15 on Leap 15.4. A new llvm version was submitted
+  to 15.4 which caused crashes when trying to run qdoc with an
+  older version.
+
+---



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.3YuDYk/_old  2023-06-28 21:33:16.893832352 +0200
+++ /var/tmp/diff_new_pack.3YuDYk/_new  2023-06-28 21:33:16.897832376 +0200
@@ -47,15 +47,11 @@
 Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
 # clang-devel in Leap 15 points to clang7...
-%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150400
-BuildRequires:  clang13-devel
-%else
-%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150500
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150400
 BuildRequires:  clang15-devel
 %else
 BuildRequires:  clang-devel >= 8
 %endif
-%endif
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  pkgconfig
 BuildRequires:  qt6-core-private-devel


commit qt6-tools for openSUSE:Factory

2023-05-28 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-05-28 19:22:14

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1533 (New)


Package is "qt6-tools"

Sun May 28 19:22:14 2023 rev:26 rq:1089109 version:6.5.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-04-05 
21:37:09.483083167 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1533/qt6-tools.changes
2023-05-28 19:22:37.948887074 +0200
@@ -1,0 +2,6 @@
+Wed May 24 07:45:44 UTC 2023 - Christophe Marin 
+
+- Update to 6.5.1
+  * https://www.qt.io/blog/qt-6.5.1-released
+
+---

Old:

  qttools-everywhere-src-6.5.0.tar.xz

New:

  qttools-everywhere-src-6.5.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.QpMzP9/_old  2023-05-28 19:22:40.100899881 +0200
+++ /var/tmp/diff_new_pack.QpMzP9/_new  2023-05-28 19:22:40.104899905 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.5.0
+%define real_version 6.5.1
 %define short_version 6.5
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.5.0
+Version:6.5.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid


++ qttools-everywhere-src-6.5.0.tar.xz -> 
qttools-everywhere-src-6.5.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.5.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1533/qttools-everywhere-src-6.5.1.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2023-04-05 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-04-05 21:32:12

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.19717 (New)


Package is "qt6-tools"

Wed Apr  5 21:32:12 2023 rev:25 rq:1077347 version:6.5.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-03-17 
17:04:30.109756000 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.19717/qt6-tools.changes   
2023-04-05 21:37:09.483083167 +0200
@@ -1,0 +2,6 @@
+Mon Apr  3 10:02:50 UTC 2023 - Christophe Marin 
+
+- Update to 6.5.0
+  * https://www.qt.io/blog/qt-6.5-lts-released
+
+---

Old:

  qttools-everywhere-src-6.4.3.tar.xz

New:

  qttools-everywhere-src-6.5.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.vSqI4Z/_old  2023-04-05 21:37:11.631095427 +0200
+++ /var/tmp/diff_new_pack.vSqI4Z/_new  2023-04-05 21:37:11.643095495 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define real_version 6.4.3
-%define short_version 6.4
+%define real_version 6.5.0
+%define short_version 6.5
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.4.3
+Version:6.5.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -65,18 +65,18 @@
 BuildRequires:  qt6-quick-private-devel
 BuildRequires:  qt6-widgets-private-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  cmake(Qt6Core)
-BuildRequires:  cmake(Qt6DBus)
-BuildRequires:  cmake(Qt6Gui)
-BuildRequires:  cmake(Qt6Network)
-BuildRequires:  cmake(Qt6OpenGL)
-BuildRequires:  cmake(Qt6OpenGLWidgets)
-BuildRequires:  cmake(Qt6PrintSupport)
-BuildRequires:  cmake(Qt6Quick)
-BuildRequires:  cmake(Qt6QuickWidgets)
-BuildRequires:  cmake(Qt6Sql)
-BuildRequires:  cmake(Qt6Widgets)
-BuildRequires:  cmake(Qt6Xml)
+BuildRequires:  cmake(Qt6Core) = %{real_version}
+BuildRequires:  cmake(Qt6DBus) = %{real_version}
+BuildRequires:  cmake(Qt6Gui) = %{real_version}
+BuildRequires:  cmake(Qt6Network) = %{real_version}
+BuildRequires:  cmake(Qt6OpenGL) = %{real_version}
+BuildRequires:  cmake(Qt6OpenGLWidgets) = %{real_version}
+BuildRequires:  cmake(Qt6PrintSupport) = %{real_version}
+BuildRequires:  cmake(Qt6Quick) = %{real_version}
+BuildRequires:  cmake(Qt6QuickWidgets) = %{real_version}
+BuildRequires:  cmake(Qt6Sql) = %{real_version}
+BuildRequires:  cmake(Qt6Widgets) = %{real_version}
+BuildRequires:  cmake(Qt6Xml) = %{real_version}
 # These packages are required to generate documentation for the Qt packages
 Requires:   qt6-tools-helpgenerators
 Requires:   qt6-tools-qdoc
@@ -279,8 +279,7 @@
 %autosetup -p1 -n %{tar_name}-%{real_version}%{tar_suffix}
 
 %build
-%define _lto_cflags %{nil}
-%cmake_qt6
+%cmake_qt6 -DBUILD_TESTING:BOOL=OFF
 
 %{qt6_build}
 
@@ -419,7 +418,6 @@
 %{_qt6_pluginsdir}/designer/libcustomwidgetplugin.so
 %{_qt6_pluginsdir}/designer/libqquickwidget.so
 %{_qt6_pluginsdir}/designer/libtaskmenuextension.so
-%{_qt6_pluginsdir}/designer/libworldtimeclockplugin.so
 
 %files helpgenerators
 %{_qt6_libexecdir}/qhelpgenerator


++ qttools-everywhere-src-6.4.3.tar.xz -> 
qttools-everywhere-src-6.5.0.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.4.3.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.19717/qttools-everywhere-src-6.5.0.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2023-03-17 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-03-17 17:03:53

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.31432 (New)


Package is "qt6-tools"

Fri Mar 17 17:03:53 2023 rev:24 rq:1072429 version:6.4.3

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-01-12 
22:44:55.693078810 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.31432/qt6-tools.changes   
2023-03-17 17:04:30.109756000 +0100
@@ -1,0 +2,6 @@
+Thu Mar 16 10:00:10 UTC 2023 - Christophe Marin 
+
+- Update to 6.4.3:
+  * https://www.qt.io/blog/qt-6.4.3-released
+
+---

Old:

  qttools-everywhere-src-6.4.2.tar.xz

New:

  qttools-everywhere-src-6.4.3.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.ATirXn/_old  2023-03-17 17:04:31.189761692 +0100
+++ /var/tmp/diff_new_pack.ATirXn/_new  2023-03-17 17:04:31.193761713 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.4.2
+%define real_version 6.4.3
 %define short_version 6.4
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.4.2
+Version:6.4.3
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -123,10 +123,10 @@
 %package -n qt6-designer-devel
 Summary:Qt 6 Designer libraries - Development files
 Requires:   libQt6Designer6 = %{version}
-Requires:   cmake(Qt6Gui)
-Requires:   cmake(Qt6OpenGLWidgets)
-Requires:   cmake(Qt6Widgets)
-Requires:   cmake(Qt6Xml)
+Requires:   cmake(Qt6Gui) = %{real_version}
+Requires:   cmake(Qt6OpenGLWidgets) = %{real_version}
+Requires:   cmake(Qt6Widgets) = %{real_version}
+Requires:   cmake(Qt6Xml) = %{real_version}
 
 %description -n qt6-designer-devel
 Development files for the Qt6 Designer libraries.
@@ -151,10 +151,10 @@
 %package -n qt6-help-devel
 Summary:Qt 6 Help library - Development files
 Requires:   libQt6Help6 = %{version}
-Requires:   cmake(Qt6Gui)
-Requires:   cmake(Qt6Network)
-Requires:   cmake(Qt6Sql)
-Requires:   cmake(Qt6Widgets)
+Requires:   cmake(Qt6Gui) = %{real_version}
+Requires:   cmake(Qt6Network) = %{real_version}
+Requires:   cmake(Qt6Sql) = %{real_version}
+Requires:   cmake(Qt6Widgets) = %{real_version}
 
 %description -n qt6-help-devel
 Development files for the Qt6 Help library.
@@ -177,11 +177,11 @@
 %package -n qt6-uitools-devel
 Summary:Qt 6 UiTools library - Development files
 Requires:   libQt6UiTools6 = %{version}
-Requires:   cmake(Qt6Gui)
-Requires:   cmake(Qt6OpenGL)
-Requires:   cmake(Qt6OpenGLWidgets)
-Requires:   cmake(Qt6UiPlugin)
-Requires:   cmake(Qt6Widgets)
+Requires:   cmake(Qt6Gui) = %{real_version}
+Requires:   cmake(Qt6OpenGL) = %{real_version}
+Requires:   cmake(Qt6OpenGLWidgets) = %{real_version}
+Requires:   cmake(Qt6UiPlugin) = %{real_version}
+Requires:   cmake(Qt6Widgets) = %{real_version}
 # qt6uitools_*_metatypes.json location fixed
 Conflicts:  qt6-designer-devel < 6.2.2
 
@@ -262,8 +262,8 @@
 Summary:Development files for the Qt 6 DesignerComponents library
 Requires:   libQt6DesignerComponents6 = %{version}
 Requires:   qt6-designer-private-devel = %{version}
-Requires:   cmake(Qt6Core)
-Requires:   cmake(Qt6Xml)
+Requires:   cmake(Qt6Core) = %{real_version}
+Requires:   cmake(Qt6Xml) = %{real_version}
 %requires_eqqt6-gui-private-devel
 %requires_eqqt6-widgets-private-devel
 
@@ -313,14 +313,10 @@
 install -D -m644 src/assistant/assistant/images/assistant.png 
%{buildroot}%{_datadir}/icons/hicolor/32x32/apps/assistant6.png
 install -D -m644 src/assistant/assistant/images/assistant-128.png 
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/assistant6.png
 
-%post -n libQt6Designer6 -p /sbin/ldconfig
-%post -n libQt6DesignerComponents6 -p /sbin/ldconfig
-%post -n libQt6Help6 -p /sbin/ldconfig
-%post -n libQt6UiTools6 -p /sbin/ldconfig
-%postun -n libQt6Designer6 -p /sbin/ldconfig
-%postun -n libQt6DesignerComponents6 -p /sbin/ldconfig
-%postun -n libQt6Help6 -p /sbin/ldconfig
-%postun -n libQt6UiTools6 -p /sbin/ldconfig
+%ldconfig_scriptlets -n libQt6Designer6
+%ldconfig_scriptlets -n libQt6DesignerComponents6
+%ldconfig_scriptlets -n libQt6Help6
+%ldconfig_scriptlets -n libQt6UiTools6
 
 %files
 %license LICENSES/*
@@ -419,7 +415,11 @@
 %{_datadir}/applications/org.qt.designer6.desktop
 %{_datadir}/icons/hicolor/128x128/a

commit qt6-tools for openSUSE:Factory

2023-01-12 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-01-12 22:44:40

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.32243 (New)


Package is "qt6-tools"

Thu Jan 12 22:44:40 2023 rev:23 rq:1057859 version:6.4.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2023-01-11 
14:35:18.789318648 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.32243/qt6-tools.changes   
2023-01-12 22:44:55.693078810 +0100
@@ -1,0 +2,12 @@
+Wed Jan 11 20:07:37 UTC 2023 - Antonio Larrosa 
+
+- Leap 15.4 doesn't have llvm11 but llvm13 so just use that in
+  SP4 and llvm15 in SP5.
+
+---
+Wed Jan 11 19:29:26 UTC 2023 - Antonio Larrosa 
+
+- Fix condition to use llvm11 in SLE 15 SP5 instead of the default
+  llvm7.
+
+---



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.qn76XV/_old  2023-01-12 22:44:57.193087230 +0100
+++ /var/tmp/diff_new_pack.qn76XV/_new  2023-01-12 22:44:57.205087297 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qt6-tools
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -46,12 +46,16 @@
 # The 48x48 icon was removed from qttools
 Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
-# clang-devel in Leap 15.3 points to clang7...
-%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
-BuildRequires:  clang11-devel
+# clang-devel in Leap 15 points to clang7...
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150400
+BuildRequires:  clang13-devel
+%else
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150500
+BuildRequires:  clang15-devel
 %else
 BuildRequires:  clang-devel >= 8
 %endif
+%endif
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  pkgconfig
 BuildRequires:  qt6-core-private-devel


commit qt6-tools for openSUSE:Factory

2023-01-11 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2023-01-11 14:34:14

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.32243 (New)


Package is "qt6-tools"

Wed Jan 11 14:34:14 2023 rev:22 rq:1057282 version:6.4.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-11-21 
15:29:32.216630432 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.32243/qt6-tools.changes   
2023-01-11 14:35:18.789318648 +0100
@@ -1,0 +2,6 @@
+Fri Jan  6 16:46:53 UTC 2023 - Christophe Marin 
+
+- Update to 6.4.2:
+  * https://www.qt.io/blog/qt-6.4.2-released
+
+---

Old:

  qttools-everywhere-src-6.4.1.tar.xz

New:

  qttools-everywhere-src-6.4.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.MQmhMC/_old  2023-01-11 14:35:19.513322741 +0100
+++ /var/tmp/diff_new_pack.MQmhMC/_new  2023-01-11 14:35:19.517322763 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.4.1
+%define real_version 6.4.2
 %define short_version 6.4
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.4.1
+Version:6.4.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid


++ qttools-everywhere-src-6.4.1.tar.xz -> 
qttools-everywhere-src-6.4.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.4.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.32243/qttools-everywhere-src-6.4.2.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2022-11-21 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-11-21 15:29:17

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1597 (New)


Package is "qt6-tools"

Mon Nov 21 15:29:17 2022 rev:21 rq:1036926 version:6.4.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-10-10 
18:47:21.799231283 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1597/qt6-tools.changes
2022-11-21 15:29:32.216630432 +0100
@@ -1,0 +2,8 @@
+Tue Nov 15 11:53:25 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.4.1:
+  * https://www.qt.io/blog/qt-6.4.1-released
+- Drop patch, fixed upstream:
+  * 0001-lupdate-Fix-build-with-clang-15.patch
+
+---

Old:

  0001-lupdate-Fix-build-with-clang-15.patch
  qttools-everywhere-src-6.4.0.tar.xz

New:

  qttools-everywhere-src-6.4.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.6gv9ri/_old  2022-11-21 15:29:32.928634047 +0100
+++ /var/tmp/diff_new_pack.6gv9ri/_new  2022-11-21 15:29:32.936634088 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.4.0
+%define real_version 6.4.1
 %define short_version 6.4
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.4.0
+Version:6.4.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -46,8 +46,6 @@
 # The 48x48 icon was removed from qttools
 Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
-# PATCH-FIX-UPSTREAM
-Patch0: 0001-lupdate-Fix-build-with-clang-15.patch
 # clang-devel in Leap 15.3 points to clang7...
 %if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
 BuildRequires:  clang11-devel


++ qttools-everywhere-src-6.4.0.tar.xz -> 
qttools-everywhere-src-6.4.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.4.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1597/qttools-everywhere-src-6.4.1.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2022-10-10 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-10-10 18:46:55

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2275 (New)


Package is "qt6-tools"

Mon Oct 10 18:46:55 2022 rev:20 rq:1008920 version:6.4.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-10-01 
17:43:48.41764 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2275/qt6-tools.changes
2022-10-10 18:47:21.799231283 +0200
@@ -1,0 +2,6 @@
+Sat Oct  8 06:49:06 UTC 2022 - Christophe Giboudeaux 
+
+- Add patch to fix build with clang 15:
+  * 0001-lupdate-Fix-build-with-clang-15.patch
+
+---

New:

  0001-lupdate-Fix-build-with-clang-15.patch



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.qO9FXc/_old  2022-10-10 18:47:22.363232509 +0200
+++ /var/tmp/diff_new_pack.qO9FXc/_new  2022-10-10 18:47:22.367232518 +0200
@@ -46,6 +46,8 @@
 # The 48x48 icon was removed from qttools
 Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
+# PATCH-FIX-UPSTREAM
+Patch0: 0001-lupdate-Fix-build-with-clang-15.patch
 # clang-devel in Leap 15.3 points to clang7...
 %if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
 BuildRequires:  clang11-devel

++ 0001-lupdate-Fix-build-with-clang-15.patch ++
>From 6495329e6de803025e6e4e8291b648f94893551c 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.

Pick-to: 6.4
Change-Id: Ic259b3508088671b40f6f615524137ce8837c487
Reviewed-by: J??rg Bornemann 
---
 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 abfab34e5..d963747d8 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 @@ private:
 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;
-- 
2.37.3


commit qt6-tools for openSUSE:Factory

2022-10-01 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-10-01 17:43:22

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2275 (New)


Package is "qt6-tools"

Sat Oct  1 17:43:22 2022 rev:19 rq:1007332 version:6.4.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-09-15 
23:00:51.525498016 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2275/qt6-tools.changes
2022-10-01 17:43:48.41764 +0200
@@ -1,0 +2,11 @@
+Thu Sep 29 10:36:06 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.4.0:
+  * https://www.qt.io/blog/qt-6.4-released
+
+---
+Fri Sep 16 08:29:22 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.4.0 RC
+
+---

Old:

  qttools-everywhere-src-6.3.2.tar.xz

New:

  linguist6.png
  qttools-everywhere-src-6.4.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.XWbaIs/_old  2022-10-01 17:43:50.541744971 +0200
+++ /var/tmp/diff_new_pack.XWbaIs/_new  2022-10-01 17:43:50.549744986 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define real_version 6.3.2
-%define short_version 6.3
+%define real_version 6.4.0
+%define short_version 6.4
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.3.2
+Version:6.4.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -43,6 +43,8 @@
 Source11:   org.qt.linguist6.desktop
 Source12:   org.qt.qdbusviewer6.desktop
 Source13:   org.qt.assistant6.desktop
+# The 48x48 icon was removed from qttools
+Source14:   linguist6.png
 Source99:   qt6-tools-rpmlintrc
 # clang-devel in Leap 15.3 points to clang7...
 %if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
@@ -273,6 +275,7 @@
 %autosetup -p1 -n %{tar_name}-%{real_version}%{tar_suffix}
 
 %build
+%define _lto_cflags %{nil}
 %cmake_qt6
 
 %{qt6_build}
@@ -284,6 +287,9 @@
 
 %{qt6_link_executables}
 
+# CMake files are not needed for plugins (except for Qt6UiPlugin)
+rm %{buildroot}%{_qt6_cmakedir}/Qt6Designer/*Plugin{Config,Targets}*.cmake
+
 # Unused file. There are no private headers for this library
 rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_linguist_private.pri
 
@@ -291,11 +297,12 @@
 %suse_update_desktop_file -i org.qt.assistant6
 %suse_update_desktop_file -i org.qt.designer6
 %suse_update_desktop_file -i org.qt.linguist6
+rm %{buildroot}%{_datadir}/pixmaps/linguist6.png
 %suse_update_desktop_file -i org.qt.qdbusviewer6
 
 # Icons for the desktop files
 install -D -m644 src/designer/src/designer/images/designer.png 
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/designer6.png
-install -D -m644 src/linguist/linguist/images/icons/linguist-48-32.png 
%{buildroot}%{_datadir}/icons/hicolor/48x48/apps/linguist6.png
+install -D -m644 %{SOURCE14} 
%{buildroot}%{_datadir}/icons/hicolor/48x48/apps/linguist6.png
 install -D -m644 src/linguist/linguist/images/icons/linguist-128-32.png 
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/linguist6.png
 install -D -m644 src/qdbus/qdbusviewer/images/qdbusviewer.png 
%{buildroot}%{_datadir}/icons/hicolor/32x32/apps/qdbusviewer6.png
 install -D -m644 src/qdbus/qdbusviewer/images/qdbusviewer-128.png 
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/qdbusviewer6.png
@@ -312,7 +319,7 @@
 %postun -n libQt6UiTools6 -p /sbin/ldconfig
 
 %files
-%license LICENSE.*
+%license LICENSES/*
 %{_bindir}/pixeltool6
 %{_bindir}/qdistancefieldgenerator6
 %{_bindir}/qtdiag6

++ qttools-everywhere-src-6.3.2.tar.xz -> 
qttools-everywhere-src-6.4.0.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.3.2.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.2275/qttools-everywhere-src-6.4.0.tar.xz
 differ: char 25, line 1


commit qt6-tools for openSUSE:Factory

2022-09-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-09-15 22:59:37

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2083 (New)


Package is "qt6-tools"

Thu Sep 15 22:59:37 2022 rev:18 rq:1003824 version:6.3.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-06-20 
15:38:13.970943505 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2083/qt6-tools.changes
2022-09-15 23:00:51.525498016 +0200
@@ -1,0 +2,6 @@
+Fri Sep  9 12:41:48 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.3.2:
+  * https://www.qt.io/blog/qt-6.3.2-released
+
+---

Old:

  qttools-everywhere-src-6.3.1.tar.xz

New:

  qttools-everywhere-src-6.3.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.r4XYDR/_old  2022-09-15 23:00:52.109499665 +0200
+++ /var/tmp/diff_new_pack.r4XYDR/_new  2022-09-15 23:00:52.117499687 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.3.1
+%define real_version 6.3.2
 %define short_version 6.3
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.3.1
+Version:6.3.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid

++ qttools-everywhere-src-6.3.1.tar.xz -> 
qttools-everywhere-src-6.3.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.3.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.2083/qttools-everywhere-src-6.3.2.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2022-06-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-06-20 15:37:44

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1548 (New)


Package is "qt6-tools"

Mon Jun 20 15:37:44 2022 rev:17 rq:983754 version:6.3.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-04-20 
16:56:24.366571267 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1548/qt6-tools.changes
2022-06-20 15:38:13.970943505 +0200
@@ -1,0 +2,6 @@
+Fri Jun 17 15:15:39 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.3.1:
+  * https://www.qt.io/blog/qt-6.3.1-released
+
+---

Old:

  qttools-everywhere-src-6.3.0.tar.xz

New:

  qttools-everywhere-src-6.3.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.clDsoT/_old  2022-06-20 15:38:14.946944932 +0200
+++ /var/tmp/diff_new_pack.clDsoT/_new  2022-06-20 15:38:14.950944938 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.3.0
+%define real_version 6.3.1
 %define short_version 6.3
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.3.0
+Version:6.3.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -51,6 +51,7 @@
 BuildRequires:  clang-devel >= 8
 %endif
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  pkgconfig
 BuildRequires:  qt6-core-private-devel
 BuildRequires:  qt6-dbus-private-devel
 BuildRequires:  qt6-gui-private-devel
@@ -350,6 +351,8 @@
 %{_qt6_metatypesdir}/qt6designer_*_metatypes.json
 %{_qt6_mkspecsdir}/modules/qt_lib_designer.pri
 %{_qt6_mkspecsdir}/modules/qt_lib_uiplugin.pri
+%{_qt6_pkgconfigdir}/Qt6Designer.pc
+%{_qt6_pkgconfigdir}/Qt6UiPlugin.pc
 %exclude %{_qt6_includedir}/QtDesigner/%{real_version}
 
 %files -n qt6-designer-private-devel
@@ -367,6 +370,7 @@
 %{_qt6_libdir}/libQt6Help.so
 %{_qt6_metatypesdir}/qt6help_*_metatypes.json
 %{_qt6_mkspecsdir}/modules/qt_lib_help.pri
+%{_qt6_pkgconfigdir}/Qt6Help.pc
 %exclude %{_qt6_includedir}/QtHelp/%{real_version}
 
 %files -n qt6-help-private-devel
@@ -384,6 +388,7 @@
 %{_qt6_libdir}/libQt6UiTools.so
 %{_qt6_metatypesdir}/qt6uitools_*_metatypes.json
 %{_qt6_mkspecsdir}/modules/qt_lib_uitools.pri
+%{_qt6_pkgconfigdir}/Qt6UiTools.pc
 %exclude %{_qt6_includedir}/QtUiTools/%{real_version}
 
 %files -n qt6-uitools-private-devel
@@ -431,6 +436,7 @@
 %{_qt6_cmakedir}/Qt6Linguist/
 %{_qt6_cmakedir}/Qt6LinguistTools/
 %{_qt6_mkspecsdir}/modules/qt_lib_linguist.pri
+%{_qt6_pkgconfigdir}/Qt6Linguist.pc
 
 %files qdbus
 %{_bindir}/qdbus6

++ qttools-everywhere-src-6.3.0.tar.xz -> 
qttools-everywhere-src-6.3.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.3.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1548/qttools-everywhere-src-6.3.1.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2022-04-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-04-20 16:56:05

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1941 (New)


Package is "qt6-tools"

Wed Apr 20 16:56:05 2022 rev:16 rq:970811 version:6.3.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-03-29 
18:15:08.479115485 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1941/qt6-tools.changes
2022-04-20 16:56:24.366571267 +0200
@@ -1,0 +2,11 @@
+Fri Apr  8 11:57:01 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.3.0:
+  * https://www.qt.io/blog/qt-6.3-released
+
+---
+Tue Mar 29 12:28:42 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.3.0-rc
+
+---

Old:

  qttools-everywhere-src-6.2.4.tar.xz

New:

  qttools-everywhere-src-6.3.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.c9PxHD/_old  2022-04-20 16:56:27.218573931 +0200
+++ /var/tmp/diff_new_pack.c9PxHD/_new  2022-04-20 16:56:27.222573935 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qt6-tools
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 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.2.4
-%define short_version 6.2
+%define real_version 6.3.0
+%define short_version 6.3
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.2.4
+Version:6.3.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -65,7 +65,6 @@
 BuildRequires:  cmake(Qt6OpenGL)
 BuildRequires:  cmake(Qt6OpenGLWidgets)
 BuildRequires:  cmake(Qt6PrintSupport)
-BuildRequires:  cmake(Qt6QmlDevToolsPrivate)
 BuildRequires:  cmake(Qt6Quick)
 BuildRequires:  cmake(Qt6QuickWidgets)
 BuildRequires:  cmake(Qt6Sql)
@@ -407,8 +406,7 @@
 %{_qt6_pluginsdir}/designer/libqquickwidget.so
 
 %files helpgenerators
-%{_bindir}/qhelpgenerator6
-%{_qt6_bindir}/qhelpgenerator
+%{_qt6_libexecdir}/qhelpgenerator
 
 %files linguist
 %dir %{_qt6_datadir}/phrasebooks

++ _constraints ++
--- /var/tmp/diff_new_pack.c9PxHD/_old  2022-04-20 16:56:27.254573964 +0200
+++ /var/tmp/diff_new_pack.c9PxHD/_new  2022-04-20 16:56:27.262573972 +0200
@@ -1,17 +1,33 @@
-
 
   
-2
+
+  5
+
   
   
 
+  x86_64
   ppc64
   ppc64le
 
 
+  
+5
+  
+
+  
+  
+  
+
+  qt6-tools:docs
+
+
   
-8
+2
   
+  
+3
+  
 
   
 

++ qttools-everywhere-src-6.2.4.tar.xz -> 
qttools-everywhere-src-6.3.0.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.2.4.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1941/qttools-everywhere-src-6.3.0.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2022-03-29 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-03-29 18:14:44

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1900 (New)


Package is "qt6-tools"

Tue Mar 29 18:14:44 2022 rev:15 rq:965410 version:6.2.4

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2022-02-02 
22:45:01.494063240 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1900/qt6-tools.changes
2022-03-29 18:15:08.479115485 +0200
@@ -1,0 +2,6 @@
+Mon Mar 21 08:46:43 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.2.4
+  * https://www.qt.io/blog/qt-6.2.4-released
+
+---

Old:

  qttools-everywhere-src-6.2.3.tar.xz

New:

  qttools-everywhere-src-6.2.4.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.JN1PHu/_old  2022-03-29 18:15:09.323116342 +0200
+++ /var/tmp/diff_new_pack.JN1PHu/_new  2022-03-29 18:15:09.327116346 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.2.3
+%define real_version 6.2.4
 %define short_version 6.2
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.2.3
+Version:6.2.4
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -45,7 +45,7 @@
 Source13:   org.qt.assistant6.desktop
 Source99:   qt6-tools-rpmlintrc
 # clang-devel in Leap 15.3 points to clang7...
-%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150300
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
 BuildRequires:  clang11-devel
 %else
 BuildRequires:  clang-devel >= 8

++ qttools-everywhere-src-6.2.3.tar.xz -> 
qttools-everywhere-src-6.2.4.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.2.3.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1900/qttools-everywhere-src-6.2.4.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2022-02-02 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2022-02-02 22:40:31

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1898 (New)


Package is "qt6-tools"

Wed Feb  2 22:40:31 2022 rev:14 rq:950509 version:6.2.3

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-12-24 
20:23:35.966032602 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1898/qt6-tools.changes
2022-02-02 22:41:27.339514789 +0100
@@ -1,0 +2,6 @@
+Mon Jan 31 08:54:55 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 6.2.3:
+  * https://www.qt.io/blog/qt-6.2.3-released
+
+---

Old:

  qttools-everywhere-src-6.2.2.tar.xz

New:

  qttools-everywhere-src-6.2.3.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.XEafl9/_old  2022-02-02 22:41:28.487507008 +0100
+++ /var/tmp/diff_new_pack.XEafl9/_new  2022-02-02 22:41:28.491506981 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.2.2
+%define real_version 6.2.3
 %define short_version 6.2
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.2.2
+Version:6.2.3
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid

++ qttools-everywhere-src-6.2.2.tar.xz -> 
qttools-everywhere-src-6.2.3.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.2.2.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1898/qttools-everywhere-src-6.2.3.tar.xz
 differ: char 25, line 1


commit qt6-tools for openSUSE:Factory

2021-12-24 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-12-24 20:23:15

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2520 (New)


Package is "qt6-tools"

Fri Dec 24 20:23:15 2021 rev:13 rq:942331 version:6.2.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-12-08 
22:10:10.786897038 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2520/qt6-tools.changes
2021-12-24 20:23:35.966032602 +0100
@@ -1,0 +2,5 @@
+Wed Dec 22 13:42:30 UTC 2021 - Antonio Larrosa 
+
+- Use clang11 in SLE15 SP4 and newer too, not just in SLE15 SP3 
+
+---



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.zPmyT8/_old  2021-12-24 20:23:36.470032866 +0100
+++ /var/tmp/diff_new_pack.zPmyT8/_new  2021-12-24 20:23:36.474032869 +0100
@@ -45,7 +45,7 @@
 Source13:   org.qt.assistant6.desktop
 Source99:   qt6-tools-rpmlintrc
 # clang-devel in Leap 15.3 points to clang7...
-%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} >= 150300
 BuildRequires:  clang11-devel
 %else
 BuildRequires:  clang-devel >= 8


commit qt6-tools for openSUSE:Factory

2021-12-08 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-12-08 22:09:11

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.31177 (New)


Package is "qt6-tools"

Wed Dec  8 22:09:11 2021 rev:12 rq:936322 version:6.2.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-11-04 
16:09:49.741055924 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.31177/qt6-tools.changes   
2021-12-08 22:10:10.786897038 +0100
@@ -1,0 +2,8 @@
+Wed Dec  1 10:06:30 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.2.2
+  * https://www.qt.io/blog/qt-6.2.2-released
+- Make sure all dependencies are present when installing devel
+  packages. Qt >= 6.2.2 is much less permissive.
+
+---

Old:

  qttools-everywhere-src-6.2.1.tar.xz

New:

  qttools-everywhere-src-6.2.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.hrfAbJ/_old  2021-12-08 22:10:11.378897315 +0100
+++ /var/tmp/diff_new_pack.hrfAbJ/_new  2021-12-08 22:10:11.382897317 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.2.1
+%define real_version 6.2.2
 %define short_version 6.2
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.2.1
+Version:6.2.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -117,6 +117,10 @@
 %package -n qt6-designer-devel
 Summary:Qt 6 Designer libraries - Development files
 Requires:   libQt6Designer6 = %{version}
+Requires:   cmake(Qt6Gui)
+Requires:   cmake(Qt6OpenGLWidgets)
+Requires:   cmake(Qt6Widgets)
+Requires:   cmake(Qt6Xml)
 
 %description -n qt6-designer-devel
 Development files for the Qt6 Designer libraries.
@@ -141,6 +145,10 @@
 %package -n qt6-help-devel
 Summary:Qt 6 Help library - Development files
 Requires:   libQt6Help6 = %{version}
+Requires:   cmake(Qt6Gui)
+Requires:   cmake(Qt6Network)
+Requires:   cmake(Qt6Sql)
+Requires:   cmake(Qt6Widgets)
 
 %description -n qt6-help-devel
 Development files for the Qt6 Help library.
@@ -163,10 +171,13 @@
 %package -n qt6-uitools-devel
 Summary:Qt 6 UiTools library - Development files
 Requires:   libQt6UiTools6 = %{version}
-# Qt6UiToolsDependencies.cmake has explicit dependencies on these libraries
 Requires:   cmake(Qt6Gui)
+Requires:   cmake(Qt6OpenGL)
 Requires:   cmake(Qt6OpenGLWidgets)
+Requires:   cmake(Qt6UiPlugin)
 Requires:   cmake(Qt6Widgets)
+# qt6uitools_*_metatypes.json location fixed
+Conflicts:  qt6-designer-devel < 6.2.2
 
 %description -n qt6-uitools-devel
 Development files for the Qt6 UiTools library.
@@ -244,7 +255,11 @@
 %package -n qt6-designercomponents-private-devel
 Summary:Development files for the Qt 6 DesignerComponents library
 Requires:   libQt6DesignerComponents6 = %{version}
-Requires:   qt6-designer-private-devel = %{real_version}
+Requires:   qt6-designer-private-devel = %{version}
+Requires:   cmake(Qt6Core)
+Requires:   cmake(Qt6Xml)
+%requires_eqqt6-gui-private-devel
+%requires_eqqt6-widgets-private-devel
 
 %description -n qt6-designercomponents-private-devel
 Development files for the Qt 6 DesignerComponents library.
@@ -334,7 +349,6 @@
 %{_qt6_libdir}/libQt6Designer.prl
 %{_qt6_libdir}/libQt6Designer.so
 %{_qt6_metatypesdir}/qt6designer_*_metatypes.json
-%{_qt6_metatypesdir}/qt6uitools_*_metatypes.json
 %{_qt6_mkspecsdir}/modules/qt_lib_designer.pri
 %{_qt6_mkspecsdir}/modules/qt_lib_uiplugin.pri
 %exclude %{_qt6_includedir}/QtDesigner/%{real_version}
@@ -369,6 +383,7 @@
 %{_qt6_includedir}/QtUiTools/
 %{_qt6_libdir}/libQt6UiTools.prl
 %{_qt6_libdir}/libQt6UiTools.so
+%{_qt6_metatypesdir}/qt6uitools_*_metatypes.json
 %{_qt6_mkspecsdir}/modules/qt_lib_uitools.pri
 %exclude %{_qt6_includedir}/QtUiTools/%{real_version}
 

++ qttools-everywhere-src-6.2.1.tar.xz -> 
qttools-everywhere-src-6.2.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.2.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.31177/qttools-everywhere-src-6.2.2.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2021-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-11-04 16:09:28

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1890 (New)


Package is "qt6-tools"

Thu Nov  4 16:09:28 2021 rev:11 rq:928720 version:6.2.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-10-04 
18:41:20.442191609 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1890/qt6-tools.changes
2021-11-04 16:09:49.741055924 +0100
@@ -1,0 +2,7 @@
+Tue Oct 26 11:22:59 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.2.1
+  * https://www.qt.io/blog/qt-6.2.1-released
+
+
+---

Old:

  qttools-everywhere-src-6.2.0.tar.xz

New:

  qttools-everywhere-src-6.2.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.QXzmew/_old  2021-11-04 16:09:50.621056438 +0100
+++ /var/tmp/diff_new_pack.QXzmew/_new  2021-11-04 16:09:50.625056441 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.2.0
+%define real_version 6.2.1
 %define short_version 6.2
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.2.0
+Version:6.2.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -244,6 +244,7 @@
 %package -n qt6-designercomponents-private-devel
 Summary:Development files for the Qt 6 DesignerComponents library
 Requires:   libQt6DesignerComponents6 = %{version}
+Requires:   qt6-designer-private-devel = %{real_version}
 
 %description -n qt6-designercomponents-private-devel
 Development files for the Qt 6 DesignerComponents library.

++ qttools-everywhere-src-6.2.0.tar.xz -> 
qttools-everywhere-src-6.2.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.2.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1890/qttools-everywhere-src-6.2.1.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2021-10-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-10-04 18:40:05

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2443 (New)


Package is "qt6-tools"

Mon Oct  4 18:40:05 2021 rev:10 rq:922700 version:6.2.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-09-07 
21:21:33.997313494 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2443/qt6-tools.changes
2021-10-04 18:41:20.442191609 +0200
@@ -1,0 +2,21 @@
+Thu Sep 30 12:30:23 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.2.0:
+  * https://www.qt.io/blog/qt-6.2-lts-released
+
+---
+Sat Sep 25 07:18:43 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.2.0-rc2
+
+---
+Thu Sep 16 14:08:06 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.2.0-rc
+
+---
+Thu Sep  9 14:05:30 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.2.0-beta4
+
+---

Old:

  qttools-everywhere-src-6.1.3.tar.xz

New:

  qttools-everywhere-src-6.2.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.Icdvtm/_old  2021-10-04 18:41:21.194192830 +0200
+++ /var/tmp/diff_new_pack.Icdvtm/_new  2021-10-04 18:41:21.194192830 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define real_version 6.1.3
-%define short_version 6.1
+%define real_version 6.2.0
+%define short_version 6.2
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,13 +27,12 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.1.3
+Version:6.2.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
 # Legal:
 # most src/ subfolders are GPL-3.0-only WITH Qt-GPL-exception-1.0, except:
-# qtpaths is BSD-3-Clause
 # qdoc is GPL-3.0-only WITH Qt-GPL-exception-1.0 + (LGPL-3.0-only OR 
(GPL-2.0-only OR GPL-3.0-or-later)) == GPL-3.0-only
 # src/shared contains BSD-3-Clause and LGPL-3.0-only OR (GPL-2.0-only OR 
GPL-3.0-or-later) files. The
 # 'GPL-3.0-only WITH Qt-GPL-exception-1.0' files in this folder are only used 
on Windows.
@@ -55,6 +54,7 @@
 BuildRequires:  qt6-core-private-devel
 BuildRequires:  qt6-dbus-private-devel
 BuildRequires:  qt6-gui-private-devel
+BuildRequires:  qt6-qml-private-devel
 BuildRequires:  qt6-quick-private-devel
 BuildRequires:  qt6-widgets-private-devel
 BuildRequires:  update-desktop-files
@@ -65,7 +65,7 @@
 BuildRequires:  cmake(Qt6OpenGL)
 BuildRequires:  cmake(Qt6OpenGLWidgets)
 BuildRequires:  cmake(Qt6PrintSupport)
-BuildRequires:  cmake(Qt6QmlDevTools)
+BuildRequires:  cmake(Qt6QmlDevToolsPrivate)
 BuildRequires:  cmake(Qt6Quick)
 BuildRequires:  cmake(Qt6QuickWidgets)
 BuildRequires:  cmake(Qt6Sql)
@@ -78,7 +78,6 @@
 Recommends: qt6-tools-designer
 Recommends: qt6-tools-linguist
 Recommends: qt6-tools-qdbus
-Recommends: qt6-tools-qtpaths
 %if "%{qt6_flavor}" == "docs"
 BuildRequires:  qt6-tools
 %{qt6_doc_packages}
@@ -115,17 +114,9 @@
 %description -n libQt6Designer6
 This package contains the Qt 6 Designer Library.
 
-%package -n libQt6DesignerComponents6
-Summary:Qt 6 DesignerComponents library
-License:GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-%description -n libQt6DesignerComponents6
-This package contains the Qt 6 Designer Library.
-
 %package -n qt6-designer-devel
 Summary:Qt 6 Designer libraries - Development files
 Requires:   libQt6Designer6 = %{version}
-Requires:   libQt6DesignerComponents6 = %{version}
 
 %description -n qt6-designer-devel
 Development files for the Qt6 Designer libraries.
@@ -133,7 +124,6 @@
 %package -n qt6-designer-private-devel
 Summary:Non-ABI stable API for the Qt 6 Designer libraries
 Requires:   cmake(Qt6Designer) = %{real_version}
-Requires:   cmake(Qt6DesignerComponents) = %{real_version}
 %requires_eqqt6-core-private-devel
 %requires_eqqt6-gui-private-devel
 %requires_eqqt6-widgets-private-devel
@@ -241,12 +231,23 @@
 %description qdoc
 Qt 6 Tool used by Qt to generate documentation.
 
-%package qtpaths
-Summary:Command line client to QStandardPaths
-License:BSD-3-Clause
+### Private only library ###
+
+%package -n libQt6DesignerComponents6
+Summary:Qt 6 DesignerComponents library
+License:GPL-3.0-only WITH Qt-GPL-exception-1.0
 
-%description qtpaths
-Command line client to QStandardPaths.
+%description -n libQt6DesignerComponents6
+The Qt 6 De

commit qt6-tools for openSUSE:Factory

2021-09-07 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-09-07 21:21:17

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.1899 (New)


Package is "qt6-tools"

Tue Sep  7 21:21:17 2021 rev:9 rq:917036 version:6.1.3

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-07-05 
22:23:55.769281096 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.1899/qt6-tools.changes
2021-09-07 21:21:33.997313494 +0200
@@ -1,0 +2,6 @@
+Wed Sep  1 13:03:52 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.3:
+  * https://www.qt.io/blog/qt-6.1.3-released
+
+---

Old:

  qttools-everywhere-src-6.1.2.tar.xz

New:

  qttools-everywhere-src-6.1.3.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.7BWh9b/_old  2021-09-07 21:21:39.093319654 +0200
+++ /var/tmp/diff_new_pack.7BWh9b/_new  2021-09-07 21:21:39.097319659 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.1.2
+%define real_version 6.1.3
 %define short_version 6.1
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.1.2
+Version:6.1.3
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid

++ qttools-everywhere-src-6.1.2.tar.xz -> 
qttools-everywhere-src-6.1.3.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.1.2.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.1899/qttools-everywhere-src-6.1.3.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2021-07-05 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-07-05 22:23:11

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2625 (New)


Package is "qt6-tools"

Mon Jul  5 22:23:11 2021 rev:8 rq:904101 version:6.1.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-06-15 
16:38:45.045840395 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2625/qt6-tools.changes
2021-07-05 22:23:55.769281096 +0200
@@ -1,0 +2,6 @@
+Fri Jul  2 14:08:22 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.2. New bugfix release:
+  * https://www.qt.io/blog/qt-6.1.2-released
+
+---

Old:

  qttools-everywhere-src-6.1.1.tar.xz

New:

  qttools-everywhere-src-6.1.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.bpZ6qo/_old  2021-07-05 22:23:56.565274937 +0200
+++ /var/tmp/diff_new_pack.bpZ6qo/_new  2021-07-05 22:23:56.569274906 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.1.1
+%define real_version 6.1.2
 %define short_version 6.1
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.1.1
+Version:6.1.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid

++ qttools-everywhere-src-6.1.1.tar.xz -> 
qttools-everywhere-src-6.1.2.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.1.1.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.2625/qttools-everywhere-src-6.1.2.tar.xz
 differ: char 26, line 1


commit qt6-tools for openSUSE:Factory

2021-06-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-06-15 16:38:05

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.32437 (New)


Package is "qt6-tools"

Tue Jun 15 16:38:05 2021 rev:7 rq:900102 version:6.1.1

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-05-10 
15:41:03.305162561 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.32437/qt6-tools.changes   
2021-06-15 16:38:45.045840395 +0200
@@ -1,0 +2,6 @@
+Tue Jun  8 05:54:20 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.1:
+  * https://www.qt.io/blog/qt-6.1.1-released
+
+---

Old:

  qttools-everywhere-src-6.1.0.tar.xz

New:

  qttools-everywhere-src-6.1.1.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.1yTGX9/_old  2021-06-15 16:38:45.841841773 +0200
+++ /var/tmp/diff_new_pack.1yTGX9/_new  2021-06-15 16:38:45.849841787 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.1.0
+%define real_version 6.1.1
 %define short_version 6.1
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.1.0
+Version:6.1.1
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -265,9 +265,6 @@
 
 %if !%{qt6_docs_flavor}
 
-# 475d609 creates a useless qtdiag6 hardlink (also see QTBUG-89170)
-rm %{buildroot}%{_qt6_bindir}/qtdiag6
-
 %{qt6_link_executables}
 
 # Unused file. There is no private headers for this library

++ qttools-everywhere-src-6.1.0.tar.xz -> 
qttools-everywhere-src-6.1.1.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.1.0.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.32437/qttools-everywhere-src-6.1.1.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2021-05-10 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-05-10 15:38:34

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2988 (New)


Package is "qt6-tools"

Mon May 10 15:38:34 2021 rev:6 rq:891712 version:6.1.0

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-04-06 
17:32:16.571293052 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2988/qt6-tools.changes
2021-05-10 15:41:03.305162561 +0200
@@ -1,0 +2,16 @@
+Thu May  6 17:10:41 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.0:
+  * https://www.qt.io/blog/qt-6.1-released
+
+---
+Fri Apr 23 14:11:43 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.0-rc.
+
+---
+Tue Apr 13 06:29:29 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.0-beta3.
+
+---
@@ -13,0 +30,5 @@
+Fri Mar 19 15:34:32 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.0-beta2
+
+---
@@ -16,0 +38,6 @@
+
+---
+Tue Mar  9 14:47:35 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.1.0-beta1
+  https://www.qt.io/blog/qt-6.1-beta-released

Old:

  qttools-everywhere-src-6.0.3.tar.xz

New:

  qttools-everywhere-src-6.1.0.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.Jum8Df/_old  2021-05-10 15:41:03.993159852 +0200
+++ /var/tmp/diff_new_pack.Jum8Df/_new  2021-05-10 15:41:03.993159852 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define real_version 6.0.3
-%define short_version 6.0
+%define real_version 6.1.0
+%define short_version 6.1
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.0.3
+Version:6.1.0
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -57,6 +57,7 @@
 BuildRequires:  qt6-gui-private-devel
 BuildRequires:  qt6-quick-private-devel
 BuildRequires:  qt6-widgets-private-devel
+BuildRequires:  update-desktop-files
 BuildRequires:  cmake(Qt6Core)
 BuildRequires:  cmake(Qt6DBus)
 BuildRequires:  cmake(Qt6Gui)
@@ -70,7 +71,6 @@
 BuildRequires:  cmake(Qt6Sql)
 BuildRequires:  cmake(Qt6Widgets)
 BuildRequires:  cmake(Qt6Xml)
-BuildRequires:  update-desktop-files
 # These packages are required to generate documentation for the Qt packages
 Requires:   qt6-tools-helpgenerators
 Requires:   qt6-tools-qdoc
@@ -94,8 +94,8 @@
 
 %package devel
 Summary:Qt 6 Tools libraries - Development files
-Requires:   qt6-tools-helpgenerators = %{version}
 Requires:   qt6-tools = %{version}
+Requires:   qt6-tools-helpgenerators = %{version}
 Requires:   qt6-tools-qdoc = %{version}
 
 %description devel
@@ -157,7 +157,6 @@
 
 %package -n qt6-help-private-devel
 Summary:Non-ABI stable API for the Qt 6 Help library
-
 Requires:   cmake(Qt6Help) = %{real_version}
 %requires_eqqt6-core-private-devel
 
@@ -174,6 +173,10 @@
 %package -n qt6-uitools-devel
 Summary:Qt 6 UiTools library - Development files
 Requires:   libQt6UiTools6 = %{version}
+# Qt6UiToolsDependencies.cmake has explicit dependencies on these libraries
+Requires:   cmake(Qt6Gui)
+Requires:   cmake(Qt6OpenGLWidgets)
+Requires:   cmake(Qt6Widgets)
 
 %description -n qt6-uitools-devel
 Development files for the Qt6 UiTools library.
@@ -262,6 +265,9 @@
 
 %if !%{qt6_docs_flavor}
 
+# 475d609 creates a useless qtdiag6 hardlink (also see QTBUG-89170)
+rm %{buildroot}%{_qt6_bindir}/qtdiag6
+
 %{qt6_link_executables}
 
 # Unused file. There is no private headers for this library
@@ -403,22 +409,19 @@
 %dir %{_qt6_datadir}/phrasebooks
 %{_bindir}/lconvert6
 %{_bindir}/linguist6
-%{_bindir}/lprodump6
-%{_bindir}/lrelease-pro6
 %{_bindir}/lrelease6
-%{_bindir}/lupdate-pro6
 %{_bindir}/lupdate6
 %{_datadir}/applications/org.qt.linguist6.desktop
 %{_datadir}/icons/hicolor/48x48/apps/linguist6.png
 %{_datadir}/icons/hicolor/128x128/apps/linguist6.png
 %{_qt6_bindir}/lconvert
 %{_qt6_bindir}/linguist
-%{_qt6_bindir}/lprodump
 %{_qt6_bindir}/lrelease
-%{_qt6_bindir}/lrelease-pro
 %{_qt6_bindir}/lupdate
-%{_qt6_bindir}/lupdate-pro
 %{_qt6_datadir}/phrasebooks/*.qph
+%{_qt6_libexecdir}/lprodump
+%{_qt6_libexecdir}/lrelease-pro
+%{_qt6_libexecdir}/lupdate-pro
 
 %files -n qt6-linguist-devel
 %{_qt6_descriptionsdir}/Linguist.json

++ qttools-e

commit qt6-tools for openSUSE:Factory

2021-04-06 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-04-06 17:30:45

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2401 (New)


Package is "qt6-tools"

Tue Apr  6 17:30:45 2021 rev:5 rq:883000 version:6.0.3

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-03-24 
16:16:03.356134403 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2401/qt6-tools.changes
2021-04-06 17:32:16.571293052 +0200
@@ -1,0 +2,6 @@
+Wed Mar 31 13:43:10 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.0.3
+  * https://www.qt.io/blog/qt-6.0.3-released
+
+---

Old:

  qttools-everywhere-src-6.0.2.tar.xz

New:

  qttools-everywhere-src-6.0.3.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.U2muIc/_old  2021-04-06 17:32:17.251293821 +0200
+++ /var/tmp/diff_new_pack.U2muIc/_new  2021-04-06 17:32:17.251293821 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.0.2
+%define real_version 6.0.3
 %define short_version 6.0
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.0.2
+Version:6.0.3
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid

++ qttools-everywhere-src-6.0.2.tar.xz -> 
qttools-everywhere-src-6.0.3.tar.xz ++
/work/SRC/openSUSE:Factory/qt6-tools/qttools-everywhere-src-6.0.2.tar.xz 
/work/SRC/openSUSE:Factory/.qt6-tools.new.2401/qttools-everywhere-src-6.0.3.tar.xz
 differ: char 27, line 1


commit qt6-tools for openSUSE:Factory

2021-03-24 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-03-24 16:15:17

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2401 (New)


Package is "qt6-tools"

Wed Mar 24 16:15:17 2021 rev:4 rq:880722 version:6.0.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-03-18 
22:55:45.571583922 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2401/qt6-tools.changes
2021-03-24 16:16:03.356134403 +0100
@@ -1,0 +2,6 @@
+Mon Mar 22 17:21:47 UTC 2021 - Christophe Giboudeaux 
+
+- Work around boo#1179155 and explicitly require clang11
+  for Leap 15.3.
+
+---



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.TNTCKX/_old  2021-03-24 16:16:03.972135049 +0100
+++ /var/tmp/diff_new_pack.TNTCKX/_new  2021-03-24 16:16:03.972135049 +0100
@@ -45,7 +45,12 @@
 Source12:   org.qt.qdbusviewer6.desktop
 Source13:   org.qt.assistant6.desktop
 Source99:   qt6-tools-rpmlintrc
-BuildRequires:  clang-devel
+# clang-devel in Leap 15.3 points to clang7...
+%if 0%{?suse_version} == 1500 && 0%{?sle_version} == 150300
+BuildRequires:  clang11-devel
+%else
+BuildRequires:  clang-devel >= 8
+%endif
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  qt6-core-private-devel
 BuildRequires:  qt6-dbus-private-devel
@@ -228,8 +233,7 @@
 Summary:Qt 6 Tool used by Qt to generate documentation
 License:GPL-3.0-only
 # qdoc hardcodes clang include paths: boo#1109367, QTBUG-70687
-%global _clang_major_version %(printf %{pkg_version clang-devel} | cut -d. -f1)
-%requires_eqlibclang%{_clang_major_version}
+%requires_eqlibclang%{_llvm_sonum}
 
 %description qdoc
 Qt 6 Tool used by Qt to generate documentation.


commit qt6-tools for openSUSE:Factory

2021-03-18 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-03-18 22:55:44

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2401 (New)


Package is "qt6-tools"

Thu Mar 18 22:55:44 2021 rev:3 rq:879938 version:6.0.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2021-03-17 
20:18:29.915198082 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2401/qt6-tools.changes
2021-03-18 22:55:45.571583922 +0100
@@ -1,0 +2,5 @@
+Thu Mar 18 14:24:03 UTC 2021 - Guillaume GARDET 
+
+- Update _constraints
+
+---



Other differences:
--
++ _constraints ++
--- /var/tmp/diff_new_pack.VnY1zn/_old  2021-03-18 22:55:46.067584443 +0100
+++ /var/tmp/diff_new_pack.VnY1zn/_new  2021-03-18 22:55:46.067584443 +0100
@@ -1,5 +1,8 @@
 
 
+  
+2
+  
   
 
   ppc64


commit qt6-tools for openSUSE:Factory

2021-03-17 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-tools for openSUSE:Factory 
checked in at 2021-03-17 20:14:38

Comparing /work/SRC/openSUSE:Factory/qt6-tools (Old)
 and  /work/SRC/openSUSE:Factory/.qt6-tools.new.2401 (New)


Package is "qt6-tools"

Wed Mar 17 20:14:38 2021 rev:2 rq:878007 version:6.0.2

Changes:

--- /work/SRC/openSUSE:Factory/qt6-tools/qt6-tools.changes  2020-12-18 
19:59:04.454042331 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-tools.new.2401/qt6-tools.changes
2021-03-17 20:18:29.915198082 +0100
@@ -1,0 +2,12 @@
+Tue Mar  9 13:40:47 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.0.2: 
+  https://www.qt.io/blog/qt-6.0.2-released
+
+---
+Wed Feb  3 21:18:12 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 6.0.1
+  https://www.qt.io/blog/qt-6.0.1-released
+
+---

Old:

  qttools-everywhere-src-6.0.0.tar.xz

New:

  qttools-everywhere-src-6.0.2.tar.xz



Other differences:
--
++ qt6-tools.spec ++
--- /var/tmp/diff_new_pack.Fz7A9J/_old  2021-03-17 20:18:45.855219871 +0100
+++ /var/tmp/diff_new_pack.Fz7A9J/_new  2021-03-17 20:18:45.859219876 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qt6-tools
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.0.0
+%define real_version 6.0.2
 %define short_version 6.0
 %define tar_name qttools-everywhere-src
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:   qt6-tools%{?pkg_suffix}
-Version:6.0.0
+Version:6.0.2
 Release:0
 Summary:Qt 6 Tools libraries and tools
 # TODO Check if it's still valid
@@ -65,6 +65,7 @@
 BuildRequires:  cmake(Qt6Sql)
 BuildRequires:  cmake(Qt6Widgets)
 BuildRequires:  cmake(Qt6Xml)
+BuildRequires:  update-desktop-files
 # These packages are required to generate documentation for the Qt packages
 Requires:   qt6-tools-helpgenerators
 Requires:   qt6-tools-qdoc
@@ -79,7 +80,8 @@
 %endif
 
 %description
-The QtTools modules contains some tools mostly useful for application 
development.
+The QtTools modules contains some tools mostly useful for application
+development.
 
 Included are Qt Designer (GUI design), QDbusViewer and more.
 
@@ -183,28 +185,29 @@
 Summary:Documentation browser
 
 %description assistant
-The Qt assistant tools allows browsing documentation using the QCH format.
+Qt Assistant is a tool for viewing documentation in Qt help file format.
 
 %package designer
 Summary:Qt graphical interface creation tool
 
 %description designer
-Qt Designer is a tool for creating graphical interface for Qt applications.
+Qt Designer is a tool for designing and building graphical user interface
+with Qt Widgets.
 
 %package helpgenerators
-Summary:Qt Help files generators (QCH)
+Summary:Qt Help files generator
 Requires:   qt6-docs-common
 # help files are SQLite databases, so qhelpgenerator needs the SQLite plugin
 Requires:   qt6-sql-sqlite
 
 %description helpgenerators
-Qt 6 tools for generating .qch help catalogs.
+Qt 6 tool for generating .qch help catalogs.
 
 %package linguist
-Summary:Qt 6 Linguist tools
+Summary:Translation tool for Qt applications
 
 %description linguist
-The Qt 6 Linguist tools.
+Qt Linguist can be used by translator to translate text in Qt applications.
 
 %package -n qt6-linguist-devel
 Summary:Qt 6 linguist tools - Development files
@@ -261,10 +264,10 @@
 rm %{buildroot}%{_qt6_mkspecsdir}/modules/qt_lib_linguist_private.pri
 
 # Desktop files for applications
-install -D -m644 %{SOURCE10} 
%{buildroot}%{_datadir}/applications/org.qt.designer6.desktop
-install -D -m644 %{SOURCE11} 
%{buildroot}%{_datadir}/applications/org.qt.linguist6.desktop
-install -D -m644 %{SOURCE12} 
%{buildroot}%{_datadir}/applications/org.qt.qdbusviewer6.desktop
-install -D -m644 %{SOURCE13} 
%{buildroot}%{_datadir}/applications/org.qt.assistant6.desktop
+%suse_update_desktop_file -i org.qt.assistant6
+%suse_update_desktop_file -i org.qt.designer6
+%suse_update_desktop_file -i org.qt.linguist6
+%suse_update_desktop_file -i org.qt.qdbusviewer6
 
 # Icons for the desktop files
 install -D -m644 src/designer/src/designer/images/designer.png 
%{buildroot}%{_datadir}/icons/hicolor/128x128/apps/designer6.png
@@ -393,6 +396,7 @@
 %{_qt6_bindir}/qhelpgenerator
 
 %files linguist
+%dir %{_qt6_datadir}/ph