Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2023-01-16 17:58:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and      /work/SRC/openSUSE:Factory/.kitemmodels.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kitemmodels"

Mon Jan 16 17:58:21 2023 rev:111 rq:1058505 version:5.102.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2022-12-12 
17:40:11.861330783 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.32243/kitemmodels.changes       
2023-01-16 18:00:29.259349715 +0100
@@ -1,0 +2,10 @@
+Thu Jan 12 08:18:57 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Update to 5.102.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.102.0
+- Changes since 5.101.0:
+  * KSelectionModel: Fix build with QPrivateSignal changes
+
+-------------------------------------------------------------------

Old:
----
  kitemmodels-5.101.0.tar.xz
  kitemmodels-5.101.0.tar.xz.sig

New:
----
  kitemmodels-5.102.0.tar.xz
  kitemmodels-5.102.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kitemmodels.spec ++++++
--- /var/tmp/diff_new_pack.GTQsGX/_old  2023-01-16 18:00:30.059354204 +0100
+++ /var/tmp/diff_new_pack.GTQsGX/_new  2023-01-16 18:00:30.063354227 +0100
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.101
+%define _tar_path 5.102
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without released
 Name:           kitemmodels
-Version:        5.101.0
+Version:        5.102.0
 Release:        0
 Summary:        Set of item models extending the Qt model-view framework
 License:        LGPL-2.1-or-later


++++++ kitemmodels-5.101.0.tar.xz -> kitemmodels-5.102.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.101.0/CMakeLists.txt 
new/kitemmodels-5.102.0/CMakeLists.txt
--- old/kitemmodels-5.101.0/CMakeLists.txt      2022-12-03 10:48:25.000000000 
+0100
+++ new/kitemmodels-5.102.0/CMakeLists.txt      2023-01-07 01:29:38.000000000 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.101.0") # handled by release scripts
+set(KF_VERSION "5.102.0") # handled by release scripts
 project(KItemModels VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.101.0  NO_MODULE)
+find_package(ECM 5.102.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.101.0/src/core/kselectionproxymodel.cpp 
new/kitemmodels-5.102.0/src/core/kselectionproxymodel.cpp
--- old/kitemmodels-5.101.0/src/core/kselectionproxymodel.cpp   2022-12-03 
10:48:25.000000000 +0100
+++ new/kitemmodels-5.102.0/src/core/kselectionproxymodel.cpp   2023-01-07 
01:29:38.000000000 +0100
@@ -755,12 +755,12 @@
     QItemSelection selection;
     for (const QModelIndex &rootIndex : std::as_const(m_rootIndexList)) {
         // This will be optimized later.
-        Q_EMIT q->rootIndexAboutToBeRemoved(rootIndex, {});
+        Q_EMIT q->rootIndexAboutToBeRemoved(rootIndex, 
KSelectionProxyModel::QPrivateSignal());
         selection.append(QItemSelectionRange(rootIndex, rootIndex));
     }
 
     selection = kNormalizeSelection(selection);
-    Q_EMIT q->rootSelectionAboutToBeRemoved(selection, {});
+    Q_EMIT q->rootSelectionAboutToBeRemoved(selection, 
KSelectionProxyModel::QPrivateSignal());
 
     QPersistentModelIndex srcPersistentIndex;
     const auto lst = q->persistentIndexList();
@@ -1723,7 +1723,7 @@
         if (!rootWillBeRemoved(selection, *rootIt)) {
             break;
         }
-        q->rootIndexAboutToBeRemoved(*rootIt, {});
+        q->rootIndexAboutToBeRemoved(*rootIt, 
KSelectionProxyModel::QPrivateSignal());
         if (m_startWithChildTrees) {
             auto rc = q->sourceModel()->rowCount(*rootIt);
             proxyEndRemove += rc;
@@ -1940,7 +1940,7 @@
                 // We still need to make sure its future children are inserted 
into the model.
                 m_rootIndexList.insert(rootListRow, newIndex);
                 if (!m_resetting || m_layoutChanging) {
-                    Q_EMIT q->rootIndexAdded(newIndex, {});
+                    Q_EMIT q->rootIndexAdded(newIndex, 
KSelectionProxyModel::QPrivateSignal());
                 }
                 continue;
             }
@@ -1950,7 +1950,7 @@
             Q_ASSERT(newIndex.isValid());
             m_rootIndexList.insert(rootListRow, newIndex);
             if (!m_resetting || m_layoutChanging) {
-                Q_EMIT q->rootIndexAdded(newIndex, {});
+                Q_EMIT q->rootIndexAdded(newIndex, 
KSelectionProxyModel::QPrivateSignal());
             }
 
             int _start = 0;
@@ -1976,7 +1976,7 @@
             m_rootIndexList.insert(row, newIndex);
 
             if (!m_resetting || m_layoutChanging) {
-                Q_EMIT q->rootIndexAdded(newIndex, {});
+                Q_EMIT q->rootIndexAdded(newIndex, 
KSelectionProxyModel::QPrivateSignal());
             }
             Q_ASSERT(m_rootIndexList.size() > row);
             updateInternalIndexes(QModelIndex(), row, 1);
@@ -1987,7 +1987,7 @@
             }
         }
     }
-    q->rootSelectionAdded(selection, {});
+    Q_EMIT q->rootSelectionAdded(selection, 
KSelectionProxyModel::QPrivateSignal());
 }
 
 KSelectionProxyModel::KSelectionProxyModel(QItemSelectionModel 
*selectionModel, QObject *parent)
@@ -2057,7 +2057,7 @@
             break;
         }
         }
-        Q_EMIT filterBehaviorChanged({});
+        Q_EMIT filterBehaviorChanged(QPrivateSignal());
         d->resetInternalData();
         if (d->m_selectionModel) {
             d->selectionChanged(d->m_selectionModel->selection(), 
QItemSelection());
@@ -2381,7 +2381,7 @@
         }
 
         d->m_selectionModel = itemSelectionModel;
-        Q_EMIT selectionModelChanged({});
+        Q_EMIT selectionModelChanged(QPrivateSignal());
 
         if (d->m_selectionModel) {
             connect(d->m_selectionModel, 
SIGNAL(selectionChanged(QItemSelection, QItemSelection)), 
SLOT(selectionChanged(QItemSelection, QItemSelection)));

Reply via email to