Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kitemmodels for openSUSE:Factory checked in at 2021-08-16 10:07:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old) and /work/SRC/openSUSE:Factory/.kitemmodels.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kitemmodels" Mon Aug 16 10:07:57 2021 rev:94 rq:912144 version:5.85.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes 2021-07-16 00:01:34.665002806 +0200 +++ /work/SRC/openSUSE:Factory/.kitemmodels.new.1899/kitemmodels.changes 2021-08-16 10:12:07.235060870 +0200 @@ -1,0 +2,9 @@ +Fri Aug 6 12:12:51 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.85.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.85.0 +- No code change since 5.84.0 + +------------------------------------------------------------------- Old: ---- kitemmodels-5.84.0.tar.xz kitemmodels-5.84.0.tar.xz.sig New: ---- kitemmodels-5.85.0.tar.xz kitemmodels-5.85.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kitemmodels.spec ++++++ --- /var/tmp/diff_new_pack.UNkrEi/_old 2021-08-16 10:12:07.611060429 +0200 +++ /var/tmp/diff_new_pack.UNkrEi/_new 2021-08-16 10:12:07.611060429 +0200 @@ -17,7 +17,7 @@ %define lname libKF5ItemModels5 -%define _tar_path 5.84 +%define _tar_path 5.85 # 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 lang Name: kitemmodels -Version: 5.84.0 +Version: 5.85.0 Release: 0 Summary: Set of item models extending the Qt model-view framework License: LGPL-2.1-or-later ++++++ kitemmodels-5.84.0.tar.xz -> kitemmodels-5.85.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/CMakeLists.txt new/kitemmodels-5.85.0/CMakeLists.txt --- old/kitemmodels-5.84.0/CMakeLists.txt 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/CMakeLists.txt 2021-08-03 23:53:53.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.84.0") # handled by release scripts +set(KF_VERSION "5.85.0") # handled by release scripts project(KItemModels VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.84.0 NO_MODULE) +find_package(ECM 5.85.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.84.0/autotests/ksortfilterproxymodel_qml.cpp new/kitemmodels-5.85.0/autotests/ksortfilterproxymodel_qml.cpp --- old/kitemmodels-5.84.0/autotests/ksortfilterproxymodel_qml.cpp 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/autotests/ksortfilterproxymodel_qml.cpp 2021-08-03 23:53:53.000000000 +0200 @@ -154,7 +154,7 @@ void tst_KSortFilterProxyModelQml::testFilterRegExp() { - // filterRegExp comes from the QSortFilterProxyModel direclty, confirm it still works + // filterRegExp comes from the QSortFilterProxyModel directly, confirm it still works QQmlApplicationEngine app; app.rootContext()->setContextProperty("testModel", createMonthTestModel(&app)); @@ -177,7 +177,7 @@ void tst_KSortFilterProxyModelQml::testFilterRegExpRole() { - // filterRegExp comes from the QSortFilterProxyModel direclty, confirm it still works + // filterRegExp comes from the QSortFilterProxyModel directly, confirm it still works QQmlApplicationEngine app; app.rootContext()->setContextProperty("testModel", createMonthTestModel(&app)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/autotests/proxymodeltestsuite/modeleventlogger.cpp new/kitemmodels-5.85.0/autotests/proxymodeltestsuite/modeleventlogger.cpp --- old/kitemmodels-5.84.0/autotests/proxymodeltestsuite/modeleventlogger.cpp 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/autotests/proxymodeltestsuite/modeleventlogger.cpp 2021-08-03 23:53:53.000000000 +0200 @@ -249,8 +249,8 @@ m_oldPaths.clear(); m_persistentIndexes.clear(); const QModelIndexList list = static_cast<const ModelWrapper *>(m_model)->per(); - for (const QPersistentModelIndex &idx : list) { - m_persistentIndexes.append(idx); + for (const QModelIndex &idx : list) { + m_persistentIndexes.append(QPersistentModelIndex(idx)); m_oldPaths.append(IndexFinder::indexToIndexFinder(idx).rows()); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/src/core/kconcatenaterowsproxymodel.cpp new/kitemmodels-5.85.0/src/core/kconcatenaterowsproxymodel.cpp --- old/kitemmodels-5.84.0/src/core/kconcatenaterowsproxymodel.cpp 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/src/core/kconcatenaterowsproxymodel.cpp 2021-08-03 23:53:53.000000000 +0200 @@ -337,7 +337,7 @@ const QModelIndexList persistentIndexList = q->persistentIndexList(); layoutChangePersistentIndexes.reserve(persistentIndexList.size()); - for (const QPersistentModelIndex &proxyPersistentIndex : persistentIndexList) { + for (const QModelIndex &proxyPersistentIndex : persistentIndexList) { proxyIndexes << proxyPersistentIndex; Q_ASSERT(proxyPersistentIndex.isValid()); const QPersistentModelIndex srcPersistentIndex = q->mapToSource(proxyPersistentIndex); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/src/core/kdescendantsproxymodel.cpp new/kitemmodels-5.85.0/src/core/kdescendantsproxymodel.cpp --- old/kitemmodels-5.84.0/src/core/kdescendantsproxymodel.cpp 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/src/core/kdescendantsproxymodel.cpp 2021-08-03 23:53:53.000000000 +0200 @@ -1244,7 +1244,7 @@ QPersistentModelIndex srcPersistentIndex; const auto lst = q->persistentIndexList(); - for (const QPersistentModelIndex &proxyPersistentIndex : lst) { + for (const QModelIndex &proxyPersistentIndex : lst) { m_proxyIndexes << proxyPersistentIndex; Q_ASSERT(proxyPersistentIndex.isValid()); srcPersistentIndex = q->mapToSource(proxyPersistentIndex); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/src/core/kdescendantsproxymodel.h new/kitemmodels-5.85.0/src/core/kdescendantsproxymodel.h --- old/kitemmodels-5.84.0/src/core/kdescendantsproxymodel.h 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/src/core/kdescendantsproxymodel.h 2021-08-03 23:53:53.000000000 +0200 @@ -210,7 +210,7 @@ bool isSourceIndexExpanded(const QModelIndex &sourceIndex) const; /** - * @returns true if the source index is visible in the proxy, meaning all its parent hyerarchy is expanded. + * @returns true if the source index is visible in the proxy, meaning all its parent hierarchy is expanded. * @since 5.74 */ bool isSourceIndexVisible(const QModelIndex &sourceIndex) const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/src/core/kextracolumnsproxymodel.cpp new/kitemmodels-5.85.0/src/core/kextracolumnsproxymodel.cpp --- old/kitemmodels-5.84.0/src/core/kextracolumnsproxymodel.cpp 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/src/core/kextracolumnsproxymodel.cpp 2021-08-03 23:53:53.000000000 +0200 @@ -294,7 +294,7 @@ layoutChangePersistentIndexes.reserve(persistentIndexList.size()); layoutChangeProxyColumns.reserve(persistentIndexList.size()); - for (QPersistentModelIndex proxyPersistentIndex : persistentIndexList) { + for (QModelIndex proxyPersistentIndex : persistentIndexList) { proxyIndexes << proxyPersistentIndex; Q_ASSERT(proxyPersistentIndex.isValid()); const int column = proxyPersistentIndex.column(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/src/core/knumbermodel.h new/kitemmodels-5.85.0/src/core/knumbermodel.h --- old/kitemmodels-5.84.0/src/core/knumbermodel.h 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/src/core/knumbermodel.h 2021-08-03 23:53:53.000000000 +0200 @@ -83,7 +83,7 @@ QLocale::NumberOptions formattingOptions() const; /** - * Returns the value represnted at the given index. + * Returns the value represented at the given index. */ qreal value(const QModelIndex &index) const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kitemmodels-5.84.0/src/core/kselectionproxymodel.cpp new/kitemmodels-5.85.0/src/core/kselectionproxymodel.cpp --- old/kitemmodels-5.84.0/src/core/kselectionproxymodel.cpp 2021-06-19 17:58:56.000000000 +0200 +++ new/kitemmodels-5.85.0/src/core/kselectionproxymodel.cpp 2021-08-03 23:53:53.000000000 +0200 @@ -430,7 +430,7 @@ /** Keeping Persistent indexes from this model in this model breaks in certain situations such as after source insert, but before calling endInsertRows in this model. In such a state, - the persistent indexes are not updated, but the methods assume they are already uptodate. + the persistent indexes are not updated, but the methods assume they are already up-to-date. Instead of using persistentindexes for proxy indexes in m_mappedParents, we maintain them ourselves with this method. @@ -765,7 +765,7 @@ QPersistentModelIndex srcPersistentIndex; const auto lst = q->persistentIndexList(); - for (const QPersistentModelIndex &proxyPersistentIndex : lst) { + for (const QModelIndex &proxyPersistentIndex : lst) { m_proxyIndexes << proxyPersistentIndex; Q_ASSERT(proxyPersistentIndex.isValid()); srcPersistentIndex = q->mapToSource(proxyPersistentIndex);
