commit kitemmodels for openSUSE:Factory

2020-10-12 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-10-12 13:55:20

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.3486 (New)


Package is "kitemmodels"

Mon Oct 12 13:55:20 2020 rev:84 rq:840830 version:5.75.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-09-18 
14:41:40.368016928 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.3486/kitemmodels.changes
2020-10-12 13:57:05.362160427 +0200
@@ -1,0 +2,12 @@
+Mon Oct  5 08:33:20 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.75.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.75.0
+- Changes since 5.74.0:
+  * add reference to Qt bug
+  * ignore sourceDataChanged on invalid indexes
+  * Support for KDescendantProxyModel "collapsing" nodes
+
+---

Old:

  kitemmodels-5.74.0.tar.xz
  kitemmodels-5.74.0.tar.xz.sig

New:

  kitemmodels-5.75.0.tar.xz
  kitemmodels-5.75.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.qUBo9I/_old  2020-10-12 13:57:07.722161412 +0200
+++ /var/tmp/diff_new_pack.qUBo9I/_new  2020-10-12 13:57:07.726161413 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.74
+%define _tar_path 5.75
 # 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.74.0
+Version:5.75.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.74.0.tar.xz -> kitemmodels-5.75.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.74.0/CMakeLists.txt 
new/kitemmodels-5.75.0/CMakeLists.txt
--- old/kitemmodels-5.74.0/CMakeLists.txt   2020-09-06 11:23:39.0 
+0200
+++ new/kitemmodels-5.75.0/CMakeLists.txt   2020-10-04 11:53:39.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.74.0") # handled by release scripts
+set(KF5_VERSION "5.75.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.74.0  NO_MODULE)
+find_package(ECM 5.75.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.74.0/autotests/kdescendantsproxymodeltest.cpp 
new/kitemmodels-5.75.0/autotests/kdescendantsproxymodeltest.cpp
--- old/kitemmodels-5.74.0/autotests/kdescendantsproxymodeltest.cpp 
2020-09-06 11:23:39.0 +0200
+++ new/kitemmodels-5.75.0/autotests/kdescendantsproxymodeltest.cpp 
2020-10-04 11:53:39.0 +0200
@@ -7,14 +7,235 @@
 #include "kdescendantsproxymodel.h"
 
 #include 
+#include 
 #include 
 #include 
 
+struct Node
+{
+QString label;
+Node *parent = nullptr;
+QList children;
+};
+
+class SimpleObjectModel: public QAbstractListModel
+{
+Q_OBJECT
+public:
+explicit SimpleObjectModel(QObject *parent = nullptr);
+~SimpleObjectModel();
+
+QModelIndex index(int, int, const QModelIndex  = QModelIndex()) 
const override;
+QModelIndex parent(const QModelIndex &) const override;
+int rowCount(const QModelIndex  = QModelIndex()) const override;
+bool hasChildren(const QModelIndex  = QModelIndex()) const override;
+QVariant data(const QModelIndex , int role = Qt::DisplayRole) const 
override;
+
+bool insert(const QModelIndex , int row, const QString );
+bool removeRows(int row, int count, const QModelIndex  = 
QModelIndex()) override;
+bool moveRows(const QModelIndex , int sourceRow, int count, 
const QModelIndex , int destinationRow) override;
+
+private:
+Node *m_root;
+};
+
+SimpleObjectModel::SimpleObjectModel(QObject *parent)
+: QAbstractListModel(parent)
+{
+m_root = new Node;
+}
+
+SimpleObjectModel::~SimpleObjectModel()
+{}
+
+QModelIndex SimpleObjectModel::index(int row, int col, const QModelIndex 
) const
+{
+Node *parentItem;
+if ( !parent.isValid() ) {
+parentItem = static_cast( m_root );
+} else {
+parentItem = static_cast( parent.internalPointer() );
+   

commit kitemmodels for openSUSE:Factory

2020-09-18 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-09-18 14:40:39

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.4249 (New)


Package is "kitemmodels"

Fri Sep 18 14:40:39 2020 rev:83 rq:834415 version:5.74.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-08-12 
12:28:57.136176838 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.4249/kitemmodels.changes
2020-09-18 14:41:40.368016928 +0200
@@ -1,0 +2,9 @@
+Sun Sep  6 12:49:39 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.74.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.74.0
+- Too many changes to list here.
+
+---

Old:

  kitemmodels-5.73.0.tar.xz
  kitemmodels-5.73.0.tar.xz.sig

New:

  kitemmodels-5.74.0.tar.xz
  kitemmodels-5.74.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.XkDs9h/_old  2020-09-18 14:41:41.276017738 +0200
+++ /var/tmp/diff_new_pack.XkDs9h/_new  2020-09-18 14:41:41.280017742 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.73
+%define _tar_path 5.74
 # 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.73.0
+Version:5.74.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.73.0.tar.xz -> kitemmodels-5.74.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.73.0/CMakeLists.txt 
new/kitemmodels-5.74.0/CMakeLists.txt
--- old/kitemmodels-5.73.0/CMakeLists.txt   2020-08-01 19:07:47.0 
+0200
+++ new/kitemmodels-5.74.0/CMakeLists.txt   2020-09-06 11:23:39.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.73.0") # handled by release scripts
+set(KF5_VERSION "5.74.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.73.0  NO_MODULE)
+find_package(ECM 5.74.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.73.0/COPYING.LIB 
new/kitemmodels-5.74.0/COPYING.LIB
--- old/kitemmodels-5.73.0/COPYING.LIB  2020-08-01 19:07:47.0 +0200
+++ new/kitemmodels-5.74.0/COPYING.LIB  1970-01-01 01:00:00.0 +0100
@@ -1,510 +0,0 @@
-
-  GNU LESSER GENERAL PUBLIC LICENSE
-   Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
-   51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the Lesser GPL.  It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it.  You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations
-below.
-
-  When we speak of free software, we are referring to freedom of use,
-not price.  Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-  

commit kitemmodels for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-08-12 12:24:26

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.3399 (New)


Package is "kitemmodels"

Wed Aug 12 12:24:26 2020 rev:82 rq:825088 version:5.73.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-07-14 
07:54:27.520851107 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.3399/kitemmodels.changes
2020-08-12 12:28:57.136176838 +0200
@@ -1,0 +2,13 @@
+Sun Aug  2 07:13:32 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.73.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.73.0
+- Changes since 5.72.0:
+  * Use KF-standardized Qt logging categories
+  * KSelectionProxyModel: allow using the model with new-style connect
+  * KRearrangeColumnsProxyModel: fix hasChildren() when no columns are set up 
yet
+  * Use camelcase include. (scripted)
+
+---

Old:

  kitemmodels-5.72.0.tar.xz
  kitemmodels-5.72.0.tar.xz.sig

New:

  kitemmodels-5.73.0.tar.xz
  kitemmodels-5.73.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.buArXn/_old  2020-08-12 12:28:57.604176824 +0200
+++ /var/tmp/diff_new_pack.buArXn/_new  2020-08-12 12:28:57.608176824 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.72
+%define _tar_path 5.73
 # 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.72.0
+Version:5.73.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
@@ -111,6 +111,7 @@
 %files -n %{lname}
 %license LICENSES/*
 %{_kf5_debugdir}/*.categories
+%{_kf5_debugdir}/*.renamecategories
 %{_kf5_libdir}/libKF5ItemModels.so.*
 
 %files devel


++ kitemmodels-5.72.0.tar.xz -> kitemmodels-5.73.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.72.0/CMakeLists.txt 
new/kitemmodels-5.73.0/CMakeLists.txt
--- old/kitemmodels-5.72.0/CMakeLists.txt   2020-07-04 11:52:49.0 
+0200
+++ new/kitemmodels-5.73.0/CMakeLists.txt   2020-08-01 19:07:47.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.72.0") # handled by release scripts
+set(KF5_VERSION "5.73.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.72.0  NO_MODULE)
+find_package(ECM 5.73.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.72.0/autotests/kdescendantsproxymodel_smoketest.cpp 
new/kitemmodels-5.73.0/autotests/kdescendantsproxymodel_smoketest.cpp
--- old/kitemmodels-5.72.0/autotests/kdescendantsproxymodel_smoketest.cpp   
2020-07-04 11:52:49.0 +0200
+++ new/kitemmodels-5.73.0/autotests/kdescendantsproxymodel_smoketest.cpp   
2020-08-01 19:07:47.0 +0200
@@ -8,8 +8,8 @@
 #include "proxymodeltestsuite/proxymodeltest.h"
 #include 
 
-#include 
-#include 
+#include 
+#include 
 
 class TestData : public ProxyModelTestData
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.72.0/autotests/krearrangecolumnsproxymodeltest.cpp 
new/kitemmodels-5.73.0/autotests/krearrangecolumnsproxymodeltest.cpp
--- old/kitemmodels-5.72.0/autotests/krearrangecolumnsproxymodeltest.cpp
2020-07-04 11:52:49.0 +0200
+++ new/kitemmodels-5.73.0/autotests/krearrangecolumnsproxymodeltest.cpp
2020-08-01 19:07:47.0 +0200
@@ -72,6 +72,7 @@
 // Then the proxy should show nothing (no columns selected)
 QCOMPARE(pm.rowCount(), mod.rowCount());
 QCOMPARE(pm.columnCount(), 0);
+QVERIFY(!pm.hasChildren());
 }
 
 void shouldMapColumns()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.72.0/src/core/CMakeLists.txt 
new/kitemmodels-5.73.0/src/core/CMakeLists.txt
--- old/kitemmodels-5.72.0/src/core/CMakeLists.txt  2020-07-04 
11:52:49.0 

commit kitemmodels for openSUSE:Factory

2020-07-13 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-07-14 07:53:29

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.3060 (New)


Package is "kitemmodels"

Tue Jul 14 07:53:29 2020 rev:81 rq:820375 version:5.72.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-06-16 
13:43:32.157266805 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.3060/kitemmodels.changes
2020-07-14 07:54:27.520851107 +0200
@@ -1,0 +2,10 @@
+Sun Jul  5 07:55:30 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.72.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.72.0
+- Changes since 5.71.0:
+  * Fix sort order enum values referenced in the API docs
+
+---

Old:

  kitemmodels-5.71.0.tar.xz
  kitemmodels-5.71.0.tar.xz.sig

New:

  kitemmodels-5.72.0.tar.xz
  kitemmodels-5.72.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.sjnVyU/_old  2020-07-14 07:54:29.332856974 +0200
+++ /var/tmp/diff_new_pack.sjnVyU/_new  2020-07-14 07:54:29.336856987 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.71
+%define _tar_path 5.72
 # 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.71.0
+Version:5.72.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
@@ -38,7 +38,6 @@
 Source2:frameworks.keyring
 %endif
 Source99:   baselibs.conf
-BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
@@ -110,19 +109,19 @@
 %postun -n %{lname} -p /sbin/ldconfig
 
 %files -n %{lname}
-%license COPYING*
-%{_kf5_libdir}/libKF5ItemModels.so.*
+%license LICENSES/*
 %{_kf5_debugdir}/*.categories
+%{_kf5_libdir}/libKF5ItemModels.so.*
 
 %files devel
-%license COPYING*
-%{_kf5_libdir}/libKF5ItemModels.so
-%{_kf5_libdir}/cmake/KF5ItemModels/
+%license LICENSES/*
 %{_kf5_includedir}/
+%{_kf5_libdir}/cmake/KF5ItemModels/
+%{_kf5_libdir}/libKF5ItemModels.so
 %{_kf5_mkspecsdir}/qt_KItemModels.pri
 
 %files imports
-%license COPYING*
+%license LICENSES/*
 %dir %{_kf5_qmldir}/org
 %dir %{_kf5_qmldir}/org/kde
 %dir %{_kf5_qmldir}/org/kde/kitemmodels
@@ -131,7 +130,7 @@
 
 %if %{with python}
 %files -n python-%{name}
-%license COPYING*
+%license LICENSES/*
 %{python3_sitearch}/PyKF5
 %{_datadir}/sip/PyKF5/
 %endif


++ kitemmodels-5.71.0.tar.xz -> kitemmodels-5.72.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.71.0/CMakeLists.txt 
new/kitemmodels-5.72.0/CMakeLists.txt
--- old/kitemmodels-5.71.0/CMakeLists.txt   2020-06-06 21:35:01.0 
+0200
+++ new/kitemmodels-5.72.0/CMakeLists.txt   2020-07-04 11:52:49.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.71.0") # handled by release scripts
+set(KF5_VERSION "5.72.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.71.0  NO_MODULE)
+find_package(ECM 5.72.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.71.0/src/qml/ksortfilterproxymodel.h 
new/kitemmodels-5.72.0/src/qml/ksortfilterproxymodel.h
--- old/kitemmodels-5.71.0/src/qml/ksortfilterproxymodel.h  2020-06-06 
21:35:01.0 +0200
+++ new/kitemmodels-5.72.0/src/qml/ksortfilterproxymodel.h  2020-07-04 
11:52:49.0 +0200
@@ -84,7 +84,7 @@
 Q_PROPERTY(QString sortRole READ sortRole WRITE setSortRole NOTIFY 
sortRoleChanged)
 
 /**
- * One of Qt.Ascending or Qt.Descending
+ * One of Qt.AscendingOrder or Qt.DescendingOrder
  */
 Q_PROPERTY(Qt::SortOrder sortOrder READ sortOrder WRITE setSortOrder 
NOTIFY sortOrderChanged)
 




commit kitemmodels for openSUSE:Factory

2020-06-16 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-06-16 13:43:10

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.3606 (New)


Package is "kitemmodels"

Tue Jun 16 13:43:10 2020 rev:80 rq:814370 version:5.71.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-05-11 
13:30:38.775770841 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.3606/kitemmodels.changes
2020-06-16 13:43:32.157266805 +0200
@@ -1,0 +2,11 @@
+Sun Jun  7 08:06:47 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.71.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.71.0
+- Changes since 5.70.0:
+  * Use Q_EMIT and build with QT_NO_KEYWORDS
+  * Fix build with EXCLUDE_DEPRECATED_BEFORE_AND_AT=CURRENT
+
+---

Old:

  kitemmodels-5.70.0.tar.xz
  kitemmodels-5.70.0.tar.xz.sig

New:

  kitemmodels-5.71.0.tar.xz
  kitemmodels-5.71.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.YL9NsM/_old  2020-06-16 13:43:33.177270524 +0200
+++ /var/tmp/diff_new_pack.YL9NsM/_new  2020-06-16 13:43:33.181270538 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.70
+%define _tar_path 5.71
 # 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.70.0
+Version:5.71.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.70.0.tar.xz -> kitemmodels-5.71.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.70.0/.arcconfig 
new/kitemmodels-5.71.0/.arcconfig
--- old/kitemmodels-5.70.0/.arcconfig   2020-05-02 23:58:45.0 +0200
+++ new/kitemmodels-5.71.0/.arcconfig   1970-01-01 01:00:00.0 +0100
@@ -1,3 +0,0 @@
-{
-  "phabricator.uri" : "https://phabricator.kde.org/;
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.70.0/CMakeLists.txt 
new/kitemmodels-5.71.0/CMakeLists.txt
--- old/kitemmodels-5.70.0/CMakeLists.txt   2020-05-02 23:58:45.0 
+0200
+++ new/kitemmodels-5.71.0/CMakeLists.txt   2020-06-06 21:35:01.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.70.0") # handled by release scripts
+set(KF5_VERSION "5.71.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.70.0  NO_MODULE)
+find_package(ECM 5.71.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)
 
@@ -39,6 +39,7 @@
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake"
 SOVERSION 5)
+add_definitions(-DQT_NO_KEYWORDS)
 add_definitions(-DQT_NO_FOREACH)
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
 add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.70.0/autotests/CMakeLists.txt 
new/kitemmodels-5.71.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.70.0/autotests/CMakeLists.txt 2020-05-02 
23:58:45.0 +0200
+++ new/kitemmodels-5.71.0/autotests/CMakeLists.txt 2020-06-06 
21:35:01.0 +0200
@@ -14,6 +14,11 @@
 
 include(ECMAddTests)
 
+if(NOT EXCLUDE_DEPRECATED_BEFORE_AND_AT STREQUAL "CURRENT" AND
+   EXCLUDE_DEPRECATED_BEFORE_AND_AT VERSION_LESS 5.65.0)
+set(krecursivefilterproxymodeltest_SRC krecursivefilterproxymodeltest.cpp)
+endif()
+
 ecm_add_tests(
   kconcatenaterowsproxymodeltest.cpp
   kdescendantsproxymodel_smoketest.cpp
@@ -22,7 +27,7 @@
   klinkitemselectionmodeltest.cpp
   kselectionproxymodeltest.cpp
   kmodelindexproxymappertest.cpp
-  krecursivefilterproxymodeltest.cpp
+  ${krecursivefilterproxymodeltest_SRC}
   krearrangecolumnsproxymodeltest.cpp
   knumbermodeltest.cpp
   kcolumnheadersmodeltest.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit kitemmodels for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-05-11 13:28:50

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.2738 (New)


Package is "kitemmodels"

Mon May 11 13:28:50 2020 rev:79 rq:802096 version:5.70.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-04-15 
20:03:35.629983037 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.2738/kitemmodels.changes
2020-05-11 13:30:38.775770841 +0200
@@ -1,0 +2,9 @@
+Sun May  3 09:40:03 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.70.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.70.0
+- No code change since 5.69.0
+
+---

Old:

  kitemmodels-5.69.0.tar.xz
  kitemmodels-5.69.0.tar.xz.sig

New:

  kitemmodels-5.70.0.tar.xz
  kitemmodels-5.70.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.rXouZr/_old  2020-05-11 13:30:39.827773046 +0200
+++ /var/tmp/diff_new_pack.rXouZr/_new  2020-05-11 13:30:39.831773054 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.69
+%define _tar_path 5.70
 # 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.69.0
+Version:5.70.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.69.0.tar.xz -> kitemmodels-5.70.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.69.0/CMakeLists.txt 
new/kitemmodels-5.70.0/CMakeLists.txt
--- old/kitemmodels-5.69.0/CMakeLists.txt   2020-04-05 00:35:55.0 
+0200
+++ new/kitemmodels-5.70.0/CMakeLists.txt   2020-05-02 23:58:45.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.69.0") # handled by release scripts
+set(KF5_VERSION "5.70.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.69.0  NO_MODULE)
+find_package(ECM 5.70.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)
 




commit kitemmodels for openSUSE:Factory

2020-04-15 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-04-15 20:02:03

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.2738 (New)


Package is "kitemmodels"

Wed Apr 15 20:02:03 2020 rev:78 rq:793163 version:5.69.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-03-19 
19:45:08.612014343 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.2738/kitemmodels.changes
2020-04-15 20:03:35.629983037 +0200
@@ -1,0 +2,11 @@
+Sun Apr  5 19:45:40 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.69.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.69.0
+- Changes since 5.68.0:
+  * [KItemModels/KLinkItemSelectionModelTest] Port QRegExp to 
QRegularExpression
+  * [KSortFilterProxyModel QML] Make invalidateFilter public
+
+---

Old:

  kitemmodels-5.68.0.tar.xz
  kitemmodels-5.68.0.tar.xz.sig

New:

  kitemmodels-5.69.0.tar.xz
  kitemmodels-5.69.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.suEAG3/_old  2020-04-15 20:03:36.357983583 +0200
+++ /var/tmp/diff_new_pack.suEAG3/_new  2020-04-15 20:03:36.357983583 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.68
+%define _tar_path 5.69
 # 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.68.0
+Version:5.69.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.68.0.tar.xz -> kitemmodels-5.69.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.68.0/CMakeLists.txt 
new/kitemmodels-5.69.0/CMakeLists.txt
--- old/kitemmodels-5.68.0/CMakeLists.txt   2020-03-07 09:52:56.0 
+0100
+++ new/kitemmodels-5.69.0/CMakeLists.txt   2020-04-05 00:35:55.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.68.0") # handled by release scripts
+set(KF5_VERSION "5.69.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.68.0  NO_MODULE)
+find_package(ECM 5.69.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.68.0/autotests/klinkitemselectionmodeltest.cpp 
new/kitemmodels-5.69.0/autotests/klinkitemselectionmodeltest.cpp
--- old/kitemmodels-5.68.0/autotests/klinkitemselectionmodeltest.cpp
2020-03-07 09:52:56.0 +0100
+++ new/kitemmodels-5.69.0/autotests/klinkitemselectionmodeltest.cpp
2020-04-05 00:35:55.0 +0200
@@ -27,7 +27,7 @@
 
 // Init subModel
 m_subModel = new QSortFilterProxyModel;
-m_subModel->setFilterRegExp(QRegExp(QStringLiteral("^[5-9]")));
+
m_subModel->setFilterRegularExpression(QRegularExpression(QStringLiteral("^[5-9]")));
 m_subModel->setSourceModel(m_mainModel);
 m_subSelectionModel = new KLinkItemSelectionModel(m_subModel, 
m_mainSelectionModel);
 }
@@ -185,7 +185,7 @@
 
 {
 QSortFilterProxyModel additionalProxy;
-additionalProxy.setFilterRegExp(QRegExp(QStringLiteral("^[3-9]")));
+
additionalProxy.setFilterRegularExpression(QRegularExpression(QStringLiteral("^[3-9]")));
 additionalProxy.setSourceModel(m_mainModel);
 
 KLinkItemSelectionModel additionalLink;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.68.0/autotests/ksortfilterproxymodel_qml.cpp 
new/kitemmodels-5.69.0/autotests/ksortfilterproxymodel_qml.cpp
--- old/kitemmodels-5.68.0/autotests/ksortfilterproxymodel_qml.cpp  
2020-03-07 09:52:56.0 +0100
+++ new/kitemmodels-5.69.0/autotests/ksortfilterproxymodel_qml.cpp  
2020-04-05 00:35:55.0 +0200
@@ -61,12 +61,13 @@
  "import org.kde.kitemmodels 1.0\n"
  "KSortFilterProxyModel\n"
  "{\n"
+ "property int modulo: 2\n"
  "sourceModel: KNumberModel {\n"
  "minimumValue: 1\n"
   

commit kitemmodels for openSUSE:Factory

2020-03-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-03-19 19:42:59

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.3160 (New)


Package is "kitemmodels"

Thu Mar 19 19:42:59 2020 rev:77 rq:785332 version:5.68.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-02-14 
16:33:57.979471776 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.3160/kitemmodels.changes
2020-03-19 19:45:08.612014343 +0100
@@ -1,0 +2,16 @@
+Sun Mar  8 09:17:51 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.68.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.68.0.php
+- Changes since 5.67.0:
+  * KRearrangeColumnsProxyModel: temporarily disable assert due to QTreeView 
bug
+  * Add missing license header in previous commit
+  * KRearrangeColumnsProxyModel: reset in setSourceColumns()
+  * KItemModels: Convert license headers to SPDX markers
+  * Use ecm_qt_install_logging_categories over manual categories file
+  * Revert early return on setFilterRole
+  * Move Plasma's SortFilterProxyModel into KItemModel's QML plugin
+
+---

Old:

  kitemmodels-5.67.0.tar.xz
  kitemmodels-5.67.0.tar.xz.sig

New:

  kitemmodels-5.68.0.tar.xz
  kitemmodels-5.68.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.OaZOxb/_old  2020-03-19 19:45:10.140015161 +0100
+++ /var/tmp/diff_new_pack.OaZOxb/_new  2020-03-19 19:45:10.160015171 +0100
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.67
+%define _tar_path 5.68
 # 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.67.0
+Version:5.68.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
@@ -43,6 +43,7 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.12.0
+BuildRequires:  cmake(Qt5Qml) >= 5.12.0
 %if %{with python}
 BuildRequires:  python3-clang
 BuildRequires:  python3-devel
@@ -62,6 +63,15 @@
 %description -n %{lname}
 KItemModels provides a set of item models extending the Qt model-view 
framework.
 
+%package imports
+Summary:Set of item models extending the Qt model-view framework
+Group:  System/GUI/KDE
+Requires:   %{lname} = %{version}
+
+%description imports
+KItemModels provides a set of item models extending the Qt model-view 
framework. This package
+provides support to use KItemModels with the QtQuick framework.
+
 %package devel
 Summary:Set of item models extending the Qt model-view framework
 Group:  Development/Libraries/KDE
@@ -111,6 +121,14 @@
 %{_kf5_includedir}/
 %{_kf5_mkspecsdir}/qt_KItemModels.pri
 
+%files imports
+%license COPYING*
+%dir %{_kf5_qmldir}/org
+%dir %{_kf5_qmldir}/org/kde
+%dir %{_kf5_qmldir}/org/kde/kitemmodels
+%{_kf5_qmldir}/org/kde/kitemmodels/libitemmodelsplugin.so
+%{_kf5_qmldir}/org/kde/kitemmodels/qmldir
+
 %if %{with python}
 %files -n python-%{name}
 %license COPYING*


++ kitemmodels-5.67.0.tar.xz -> kitemmodels-5.68.0.tar.xz ++
 5317 lines of diff (skipped)




commit kitemmodels for openSUSE:Factory

2020-02-14 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-02-14 16:33:11

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.26092 (New)


Package is "kitemmodels"

Fri Feb 14 16:33:11 2020 rev:76 rq:773270 version:5.67.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-01-19 
20:52:40.459900127 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.26092/kitemmodels.changes   
2020-02-14 16:33:57.979471776 +0100
@@ -1,0 +2,15 @@
+Sun Feb  2 18:07:01 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+---
+Sun Feb  2 14:32:49 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.67.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.67.0.php
+- Changes since 5.66.0:
+  * Fix build of python bindings for kcolumnheadersmodel
+
+---

Old:

  kitemmodels-5.66.0.tar.xz
  kitemmodels-5.66.0.tar.xz.sig

New:

  kitemmodels-5.67.0.tar.xz
  kitemmodels-5.67.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.G7I7WZ/_old  2020-02-14 16:33:58.655472152 +0100
+++ /var/tmp/diff_new_pack.G7I7WZ/_new  2020-02-14 16:33:58.655472152 +0100
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.66
+%define _tar_path 5.67
 # 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.66.0
+Version:5.67.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
@@ -42,7 +42,7 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.11.0
+BuildRequires:  cmake(Qt5Core) >= 5.12.0
 %if %{with python}
 BuildRequires:  python3-clang
 BuildRequires:  python3-devel
@@ -67,7 +67,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %{lname} = %{version}
 Requires:   extra-cmake-modules
-Requires:   cmake(Qt5Core) >= 5.11.0
+Requires:   cmake(Qt5Core) >= 5.12.0
 
 %description devel
 KItemModels provides a set of item models extending the Qt model-view 
framework.


++ kitemmodels-5.66.0.tar.xz -> kitemmodels-5.67.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.66.0/CMakeLists.txt 
new/kitemmodels-5.67.0/CMakeLists.txt
--- old/kitemmodels-5.66.0/CMakeLists.txt   2020-01-05 18:20:21.0 
+0100
+++ new/kitemmodels-5.67.0/CMakeLists.txt   2020-02-01 10:04:39.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.66.0") # handled by release scripts
+set(KF5_VERSION "5.67.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.66.0  NO_MODULE)
+find_package(ECM 5.67.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.66.0/src/core/kselectionproxymodel.h 
new/kitemmodels-5.67.0/src/core/kselectionproxymodel.h
--- old/kitemmodels-5.66.0/src/core/kselectionproxymodel.h  2020-01-05 
18:20:21.0 +0100
+++ new/kitemmodels-5.67.0/src/core/kselectionproxymodel.h  2020-02-01 
10:04:39.0 +0100
@@ -272,7 +272,7 @@
   Qt::MatchFlags flags = 
Qt::MatchFlags(Qt::MatchStartsWith | Qt::MatchWrap)) const override;
 
 Q_SIGNALS:
-#if !defined(Q_MOC_RUN) && !defined(DOXYGEN_SHOULD_SKIP_THIS) && 
!defined(IN_IDE_PARSER)
+#if !defined(Q_MOC_RUN) && !defined(K_DOXYGEN) && !defined(IN_IDE_PARSER)
 private: // Don't allow subclasses to emit these Q_SIGNALS.
 #endif
 




commit kitemmodels for openSUSE:Factory

2020-01-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-01-19 20:52:21

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.26092 (New)


Package is "kitemmodels"

Sun Jan 19 20:52:21 2020 rev:75 rq:764457 version:5.66.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2020-01-14 
21:05:03.790701208 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.26092/kitemmodels.changes   
2020-01-19 20:52:40.459900127 +0100
@@ -1,0 +2,6 @@
+Tue Jan 14 17:01:31 UTC 2020 - Christophe Giboudeaux 
+
+- Use python3 to build the python bindings.
+- Fix the python bindings build and installation.
+
+---



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.oXDSBI/_old  2020-01-19 20:52:41.283900560 +0100
+++ /var/tmp/diff_new_pack.oXDSBI/_new  2020-01-19 20:52:41.287900562 +0100
@@ -16,7 +16,6 @@
 #
 
 
-%define clang_sonum 3.8
 %define lname   libKF5ItemModels5
 %define _tar_path 5.66
 # Full KF5 version (e.g. 5.33.0)
@@ -45,11 +44,11 @@
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.11.0
 %if %{with python}
-BuildRequires:  python-clang
-BuildRequires:  python-devel
-BuildRequires:  python-qt5-devel
-BuildRequires:  python-qt5-utils
-BuildRequires:  python-sip-devel
+BuildRequires:  python3-clang
+BuildRequires:  python3-devel
+BuildRequires:  python3-qt5-devel
+BuildRequires:  python3-qt5-utils
+BuildRequires:  python3-sip-devel
 %endif
 
 %description
@@ -79,7 +78,7 @@
 Summary:Set of item models extending the Qt model-view framework
 Group:  Development/Libraries/KDE
 Requires:   %{lname} = %{version}
-%requires_python_sip_api
+%requires_python3_sip_api
 
 %description -n python-%{name}
 KItemModels provides a set of item models extending the Qt model-view 
framework.
@@ -90,7 +89,7 @@
 %setup -q
 
 %build
-  %cmake_kf5 -d build -- 
-Dlibclang_LIBRARY=%{_libdir}/libclang.so.%{clang_sonum}
+  %cmake_kf5 -d build
   %make_jobs
 
 %install
@@ -106,6 +105,7 @@
 %{_kf5_debugdir}/*.categories
 
 %files devel
+%license COPYING*
 %{_kf5_libdir}/libKF5ItemModels.so
 %{_kf5_libdir}/cmake/KF5ItemModels/
 %{_kf5_includedir}/
@@ -113,7 +113,8 @@
 
 %if %{with python}
 %files -n python-%{name}
-%{py_libdir}/dist-packages/PyKF5
+%license COPYING*
+%{python3_sitearch}/PyKF5
 %{_datadir}/sip/PyKF5/
 %endif
 






commit kitemmodels for openSUSE:Factory

2020-01-14 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2020-01-14 21:02:19

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.6675 (New)


Package is "kitemmodels"

Tue Jan 14 21:02:19 2020 rev:74 rq:763469 version:5.66.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-12-18 
14:42:57.673791595 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.6675/kitemmodels.changes
2020-01-14 21:05:03.790701208 +0100
@@ -1,0 +2,13 @@
+Sun Jan  5 09:02:13 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.66.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.66.0.php
+- Changes since 5.65.0:
+  * Port deprecated QSet::toList method
+  * Update the obsolete projects.kde.org URL
+  * Add KColumnHeadersProxyModel
+  * Fix build of python bindings for kcolumnheadersmodel
+
+---

Old:

  kitemmodels-5.65.0.tar.xz
  kitemmodels-5.65.0.tar.xz.sig

New:

  kitemmodels-5.66.0.tar.xz
  kitemmodels-5.66.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.lhDAqb/_old  2020-01-14 21:05:04.390701486 +0100
+++ /var/tmp/diff_new_pack.lhDAqb/_new  2020-01-14 21:05:04.390701486 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.65
+%define _tar_path 5.66
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   kitemmodels
-Version:5.65.0
+Version:5.66.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.65.0.tar.xz -> kitemmodels-5.66.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.65.0/CMakeLists.txt 
new/kitemmodels-5.66.0/CMakeLists.txt
--- old/kitemmodels-5.65.0/CMakeLists.txt   2019-12-07 20:44:03.0 
+0100
+++ new/kitemmodels-5.66.0/CMakeLists.txt   2020-01-05 18:20:21.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.65.0") # handled by release scripts
+set(KF5_VERSION "5.66.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.65.0  NO_MODULE)
-set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
+find_package(ECM 5.66.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)
 
 
@@ -16,7 +16,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.11.0)
+set(REQUIRED_QT_VERSION 5.12.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 find_package(Qt5Qml ${REQUIRED_QT_VERSION} NO_MODULE)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.65.0/autotests/CMakeLists.txt 
new/kitemmodels-5.66.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.65.0/autotests/CMakeLists.txt 2019-12-07 
20:44:03.0 +0100
+++ new/kitemmodels-5.66.0/autotests/CMakeLists.txt 2020-01-05 
18:20:21.0 +0100
@@ -25,6 +25,7 @@
   krecursivefilterproxymodeltest.cpp
   krearrangecolumnsproxymodeltest.cpp
   knumbermodeltest.cpp
+  kcolumnheadersmodeltest.cpp
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.65.0/autotests/kcolumnheadersmodeltest.cpp 
new/kitemmodels-5.66.0/autotests/kcolumnheadersmodeltest.cpp
--- old/kitemmodels-5.65.0/autotests/kcolumnheadersmodeltest.cpp
1970-01-01 01:00:00.0 +0100
+++ new/kitemmodels-5.66.0/autotests/kcolumnheadersmodeltest.cpp
2020-01-05 18:20:21.0 +0100
@@ -0,0 +1,189 @@
+/*
+Copyright (c) 2019 Arjen Hiemstra 
+
+This library is free 

commit kitemmodels for openSUSE:Factory

2019-12-18 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-12-18 14:41:11

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.4691 (New)


Package is "kitemmodels"

Wed Dec 18 14:41:11 2019 rev:73 rq:757044 version:5.65.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-11-12 
11:48:13.710899147 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.4691/kitemmodels.changes
2019-12-18 14:42:57.673791595 +0100
@@ -1,0 +2,9 @@
+Sun Dec  8 11:18:40 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.65.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.65.0.php
+- Too many changes to list here.
+
+---

Old:

  kitemmodels-5.64.0.tar.xz
  kitemmodels-5.64.0.tar.xz.sig

New:

  kitemmodels-5.65.0.tar.xz
  kitemmodels-5.65.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.SldXPG/_old  2019-12-18 14:42:58.057791771 +0100
+++ /var/tmp/diff_new_pack.SldXPG/_new  2019-12-18 14:42:58.057791771 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.64
+%define _tar_path 5.65
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   kitemmodels
-Version:5.64.0
+Version:5.65.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.64.0.tar.xz -> kitemmodels-5.65.0.tar.xz ++
 17632 lines of diff (skipped)




commit kitemmodels for openSUSE:Factory

2019-11-12 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-11-12 11:48:12

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.2990 (New)


Package is "kitemmodels"

Tue Nov 12 11:48:12 2019 rev:72 rq:747121 version:5.64.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-10-14 
13:37:04.610089466 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.2990/kitemmodels.changes
2019-11-12 11:48:13.710899147 +0100
@@ -1,0 +2,11 @@
+Sun Nov  3 15:47:06 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.64.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.64.0.php
+- Changes since 5.63.0:
+  * autotests: check that mapFromSource returns invalid for unmapped columns.
+  * Use ECMGenerateExportHeader to manage deprecated API better
+
+---

Old:

  kitemmodels-5.63.0.tar.xz
  kitemmodels-5.63.0.tar.xz.sig

New:

  kitemmodels-5.64.0.tar.xz
  kitemmodels-5.64.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Q5fJCC/_old  2019-11-12 11:48:14.266899715 +0100
+++ /var/tmp/diff_new_pack.Q5fJCC/_new  2019-11-12 11:48:14.266899715 +0100
@@ -18,7 +18,7 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.63
+%define _tar_path 5.64
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   kitemmodels
-Version:5.63.0
+Version:5.64.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.63.0.tar.xz -> kitemmodels-5.64.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.63.0/CMakeLists.txt 
new/kitemmodels-5.64.0/CMakeLists.txt
--- old/kitemmodels-5.63.0/CMakeLists.txt   2019-10-06 11:36:11.0 
+0200
+++ new/kitemmodels-5.64.0/CMakeLists.txt   2019-11-02 12:44:57.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.63.0") # handled by release scripts
+set(KF5_VERSION "5.64.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.63.0  NO_MODULE)
+find_package(ECM 5.64.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,13 +19,13 @@
 set(REQUIRED_QT_VERSION 5.11.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
-
-include(GenerateExportHeader)
-
+include(ECMGenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 include(ECMAddQch)
 
+set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of 
deprecated API excluded from the build [default=0].")
+
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
@@ -34,6 +34,8 @@
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake"
 SOVERSION 5)
 add_definitions(-DQT_NO_FOREACH)
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
+add_definitions(-DQT_DEPRECATED_WARNINGS_SINCE=0x06)
 add_subdirectory(src)
 if (BUILD_TESTING)
 add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.63.0/autotests/krearrangecolumnsproxymodeltest.cpp 
new/kitemmodels-5.64.0/autotests/krearrangecolumnsproxymodeltest.cpp
--- old/kitemmodels-5.63.0/autotests/krearrangecolumnsproxymodeltest.cpp
2019-10-06 11:36:11.0 +0200
+++ new/kitemmodels-5.64.0/autotests/krearrangecolumnsproxymodeltest.cpp
2019-11-02 12:44:57.0 +0100
@@ -106,6 +106,9 @@
 QCOMPARE(pm.sourceColumnForProxyColumn(0), 3);
 QCOMPARE(pm.sourceColumnForProxyColumn(1), 1);
 QCOMPARE(pm.sourceColumnForProxyColumn(2), 0);
+
+// And mapFromSource should return invalid for unmapped cells
+QVERIFY(!pm.mapFromSource(sourceModel.index(0, 2)).isValid());
 }
 
 void 

commit kitemmodels for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-10-14 13:37:03

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.2352 (New)


Package is "kitemmodels"

Mon Oct 14 13:37:03 2019 rev:71 rq:738039 version:5.63.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-09-23 
12:24:21.225738610 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.2352/kitemmodels.changes
2019-10-14 13:37:04.610089466 +0200
@@ -1,0 +2,10 @@
+Sun Oct  6 13:26:42 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.63.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.63.0.php
+- Changes since 5.62.0:
+  * Port away from deprecated methods since Qt 5.14
+
+---

Old:

  kitemmodels-5.62.0.tar.xz
  kitemmodels-5.62.0.tar.xz.sig

New:

  kitemmodels-5.63.0.tar.xz
  kitemmodels-5.63.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.aimOKm/_old  2019-10-14 13:37:05.214087892 +0200
+++ /var/tmp/diff_new_pack.aimOKm/_new  2019-10-14 13:37:05.218087881 +0200
@@ -18,7 +18,7 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.62
+%define _tar_path 5.63
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   kitemmodels
-Version:5.62.0
+Version:5.63.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
@@ -43,7 +43,7 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.6.0
+BuildRequires:  cmake(Qt5Core) >= 5.11.0
 %if %{with python}
 BuildRequires:  python-clang
 BuildRequires:  python-devel
@@ -68,7 +68,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %{lname} = %{version}
 Requires:   extra-cmake-modules
-Requires:   cmake(Qt5Core) >= 5.6.0
+Requires:   cmake(Qt5Core) >= 5.11.0
 
 %description devel
 KItemModels provides a set of item models extending the Qt model-view 
framework.


++ kitemmodels-5.62.0.tar.xz -> kitemmodels-5.63.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.62.0/CMakeLists.txt 
new/kitemmodels-5.63.0/CMakeLists.txt
--- old/kitemmodels-5.62.0/CMakeLists.txt   2019-09-07 14:35:53.0 
+0200
+++ new/kitemmodels-5.63.0/CMakeLists.txt   2019-10-06 11:36:11.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.62.0") # handled by release scripts
+set(KF5_VERSION "5.63.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.62.0  NO_MODULE)
+find_package(ECM 5.63.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.62.0/autotests/bihash/benchmarks.cpp 
new/kitemmodels-5.63.0/autotests/bihash/benchmarks.cpp
--- old/kitemmodels-5.62.0/autotests/bihash/benchmarks.cpp  2019-09-07 
14:35:53.0 +0200
+++ new/kitemmodels-5.63.0/autotests/bihash/benchmarks.cpp  2019-10-06 
11:36:11.0 +0200
@@ -97,7 +97,7 @@
 public:
 BiHashBenchmarks(QObject *parent = 0)
 {
-qsrand(QDateTime::currentDateTime().toTime_t());
+qsrand(QDateTime::currentDateTime().toSecsSinceEpoch());
 }
 
 private:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.62.0/autotests/proxymodeltestsuite/modeltest.cpp 
new/kitemmodels-5.63.0/autotests/proxymodeltestsuite/modeltest.cpp
--- old/kitemmodels-5.62.0/autotests/proxymodeltestsuite/modeltest.cpp  
2019-09-07 14:35:53.0 +0200
+++ new/kitemmodels-5.63.0/autotests/proxymodeltestsuite/modeltest.cpp  
2019-10-06 11:36:11.0 +0200
@@ -464,12 +464,12 @@
 }
 
 // General Purpose roles that should return a QColor
-QVariant colorVariant = model->data ( model->index ( 0, 0 ), 
Qt::BackgroundColorRole );
+QVariant colorVariant = model->data ( model->index ( 0, 0 ), 

commit kitemmodels for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-09-23 12:24:18

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.7948 (New)


Package is "kitemmodels"

Mon Sep 23 12:24:18 2019 rev:70 rq:730939 version:5.62.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-08-19 
21:09:17.496853847 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.7948/kitemmodels.changes
2019-09-23 12:24:21.225738610 +0200
@@ -1,0 +2,14 @@
+Sat Sep  7 20:36:54 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.62.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.62.0.php
+- Changes since 5.61.0:
+  * Add @since to properties
+  * Add Q_PROPERTIES interface to KDescendantsProxyModel
+  * Port away from deprecated methods in Qt
+  * Port away from deprecated method QModelIndex::child()
+  * Remove unused includes
+
+---

Old:

  kitemmodels-5.61.0.tar.xz
  kitemmodels-5.61.0.tar.xz.sig

New:

  kitemmodels-5.62.0.tar.xz
  kitemmodels-5.62.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.DQWlwC/_old  2019-09-23 12:24:21.757738523 +0200
+++ /var/tmp/diff_new_pack.DQWlwC/_new  2019-09-23 12:24:21.757738523 +0200
@@ -18,7 +18,7 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.61
+%define _tar_path 5.62
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   kitemmodels
-Version:5.61.0
+Version:5.62.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later


++ kitemmodels-5.61.0.tar.xz -> kitemmodels-5.62.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.61.0/CMakeLists.txt 
new/kitemmodels-5.62.0/CMakeLists.txt
--- old/kitemmodels-5.61.0/CMakeLists.txt   2019-08-03 21:33:52.0 
+0200
+++ new/kitemmodels-5.62.0/CMakeLists.txt   2019-09-07 14:35:53.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.61.0") # handled by release scripts
+set(KF5_VERSION "5.62.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.61.0  NO_MODULE)
+find_package(ECM 5.62.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.61.0/autotests/kextracolumnsproxymodeltest.cpp 
new/kitemmodels-5.62.0/autotests/kextracolumnsproxymodeltest.cpp
--- old/kitemmodels-5.61.0/autotests/kextracolumnsproxymodeltest.cpp
2019-08-03 21:33:52.0 +0200
+++ new/kitemmodels-5.62.0/autotests/kextracolumnsproxymodeltest.cpp
2019-09-07 14:35:53.0 +0200
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
@@ -113,7 +112,7 @@
 QCOMPARE(extractRowTexts(, 0), QStringLiteral("ABCD"));
 QCOMPARE(extractRowTexts(, 0, mod.index(0, 0)), 
QStringLiteral("mnop"));
 QCOMPARE(extractRowTexts(, 1, mod.index(0, 0)), 
QStringLiteral("qrst"));
-QCOMPARE(extractRowTexts(, 0, mod.index(0, 0).child(1, 0)), 
QStringLiteral("uvww"));
+QCOMPARE(extractRowTexts(, 0, mod.index(1, 0, mod.index(0, 0))), 
QStringLiteral("uvww"));
 QCOMPARE(extractRowTexts(, 1), QStringLiteral("EFGH"));
 QCOMPARE(extractRowTexts(, 0, mod.index(1, 0)), 
QStringLiteral("xyz."));
 QCOMPARE(extractHorizontalHeaderTexts(), 
QStringLiteral("H1H2H3H4"));
@@ -170,9 +169,9 @@
 QVERIFY(!secondParent.parent().isValid());
 QCOMPARE(indexToText(pm.index(0, 0, secondParent).parent()), 
indexToText(secondParent));
 QCOMPARE(indexToText(pm.index(0, 3, secondParent).parent()), 
indexToText(secondParent));
-QVERIFY(indexToText(pm.index(0, 
4)).startsWith(QStringLiteral("0,4,")));
+QVERIFY(indexToText(pm.index(0, 4)).startsWith(QLatin1String("0,4,")));
 QCOMPARE(indexToText(pm.index(0, 4, secondParent).parent()), 
indexToText(secondParent));
-QVERIFY(indexToText(pm.index(0, 

commit kitemmodels for openSUSE:Factory

2019-08-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-08-19 21:09:14

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.22127 (New)


Package is "kitemmodels"

Mon Aug 19 21:09:14 2019 rev:69 rq:722474 version:5.61.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-07-26 
12:16:20.158792099 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.22127/kitemmodels.changes   
2019-08-19 21:09:17.496853847 +0200
@@ -1,0 +2,16 @@
+Wed Aug  7 17:51:32 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.61.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.61.0.php
+- Changes since 5.60.0:
+  * Write myself down as the maintainer for KItemModels 
+  * KConcatenateRowsProxyModel: add note that Qt 5.13 provides 
QConcatenateTablesProxyModel
+
+---
+Fri Jul 19 11:42:40 UTC 2019 - Wolfgang Bauer 
+
+- Don't lower minimum Qt version anymore, it requires 5.11 now
+
+---

Old:

  kitemmodels-5.60.0.tar.xz

New:

  frameworks.keyring
  kitemmodels-5.61.0.tar.xz
  kitemmodels-5.61.0.tar.xz.sig



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.b59Gri/_old  2019-08-19 21:09:19.892853459 +0200
+++ /var/tmp/diff_new_pack.b59Gri/_new  2019-08-19 21:09:19.932853453 +0200
@@ -18,21 +18,27 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.60
+%define _tar_path 5.61
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
+# Only needed for the package signature condition
+%bcond_without lang
 Name:   kitemmodels
-Version:5.60.0
+Version:5.61.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 URL:https://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
-Source1:baselibs.conf
+Source: 
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz.sig
+Source2:frameworks.keyring
+%endif
+Source99:   baselibs.conf
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
@@ -82,9 +88,6 @@
 
 %prep
 %setup -q
-%if 0%{?suse_version} == 1500
-sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
-%endif
 
 %build
   %cmake_kf5 -d build -- 
-Dlibclang_LIBRARY=%{_libdir}/libclang.so.%{clang_sonum}

++ kitemmodels-5.60.0.tar.xz -> kitemmodels-5.61.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.60.0/CMakeLists.txt 
new/kitemmodels-5.61.0/CMakeLists.txt
--- old/kitemmodels-5.60.0/CMakeLists.txt   2019-07-06 15:16:13.0 
+0200
+++ new/kitemmodels-5.61.0/CMakeLists.txt   2019-08-03 21:33:52.0 
+0200
@@ -1,15 +1,15 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.60.0") # handled by release scripts
+set(KF5_VERSION "5.61.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.60.0  NO_MODULE)
+find_package(ECM 5.61.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.60.0/metainfo.yaml 
new/kitemmodels-5.61.0/metainfo.yaml
--- old/kitemmodels-5.60.0/metainfo.yaml2019-07-06 15:16:13.0 
+0200
+++ new/kitemmodels-5.61.0/metainfo.yaml2019-08-03 21:33:52.0 
+0200
@@ -1,4 +1,4 @@
-maintainer:
+maintainer: dfaure
 description: Models for Qt Model/View system
 tier: 1
 type: functional
diff -urN '--exclude=CVS' 

commit kitemmodels for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-07-26 12:16:13

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.4126 (New)


Package is "kitemmodels"

Fri Jul 26 12:16:13 2019 rev:68 rq:715889 version:5.60.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-06-22 
11:12:34.784619227 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.4126/kitemmodels.changes
2019-07-26 12:16:20.158792099 +0200
@@ -1,0 +2,10 @@
+Sun Jul 14 06:41:38 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.60.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.60.0.php
+- Changes since 5.59.0:
+  * Install in new logging directory when we use kf5 5.59.0
+
+---

Old:

  kitemmodels-5.59.0.tar.xz

New:

  kitemmodels-5.60.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.0wGydt/_old  2019-07-26 12:16:20.958791951 +0200
+++ /var/tmp/diff_new_pack.0wGydt/_new  2019-07-26 12:16:20.962791949 +0200
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.59
+%define _tar_path 5.60
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.59.0
+Version:5.60.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.59.0.tar.xz -> kitemmodels-5.60.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.59.0/CMakeLists.txt 
new/kitemmodels-5.60.0/CMakeLists.txt
--- old/kitemmodels-5.59.0/CMakeLists.txt   2019-06-01 18:38:53.0 
+0200
+++ new/kitemmodels-5.60.0/CMakeLists.txt   2019-07-06 15:16:13.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.59.0") # handled by release scripts
+set(KF5_VERSION "5.60.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.59.0  NO_MODULE)
+find_package(ECM 5.60.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,7 +16,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.10.0)
+set(REQUIRED_QT_VERSION 5.11.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
@@ -76,6 +76,6 @@
 )
 
 # contains list of debug categories, for kdebugsettings
-install(FILES kitemmodels.categories DESTINATION ${KDE_INSTALL_CONFDIR})
+install(FILES kitemmodels.categories  DESTINATION  
${KDE_INSTALL_LOGGINGCATEGORIESDIR})
 
 feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)




commit kitemmodels for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-06-22 11:12:30

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.4615 (New)


Package is "kitemmodels"

Sat Jun 22 11:12:30 2019 rev:67 rq:710751 version:5.59.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-05-21 
10:29:46.779450985 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.4615/kitemmodels.changes
2019-06-22 11:12:34.784619227 +0200
@@ -1,0 +2,9 @@
+Sun Jun 09 07:35:12 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.59.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.59.0.php
+- No code changes since 5.58.0
+
+---

Old:

  kitemmodels-5.58.0.tar.xz

New:

  kitemmodels-5.59.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.E0Hvs9/_old  2019-06-22 11:12:35.444620188 +0200
+++ /var/tmp/diff_new_pack.E0Hvs9/_new  2019-06-22 11:12:35.448620194 +0200
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.58
+%define _tar_path 5.59
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.58.0
+Version:5.59.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.58.0.tar.xz -> kitemmodels-5.59.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.58.0/CMakeLists.txt 
new/kitemmodels-5.59.0/CMakeLists.txt
--- old/kitemmodels-5.58.0/CMakeLists.txt   2019-05-05 00:44:21.0 
+0200
+++ new/kitemmodels-5.59.0/CMakeLists.txt   2019-06-01 18:38:53.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.58.0") # handled by release scripts
+set(KF5_VERSION "5.59.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.58.0  NO_MODULE)
+find_package(ECM 5.59.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2019-05-21 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-05-21 10:29:45

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.5148 (New)


Package is "kitemmodels"

Tue May 21 10:29:45 2019 rev:66 rq:703361 version:5.58.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-04-19 
21:23:16.067788920 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.5148/kitemmodels.changes
2019-05-21 10:29:46.779450985 +0200
@@ -1,0 +2,9 @@
+Wed May 15 18:16:17 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.58.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.58.0.php
+- No code changes since 5.57.0
+
+---

Old:

  kitemmodels-5.57.0.tar.xz

New:

  kitemmodels-5.58.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.O7ghJM/_old  2019-05-21 10:29:47.367450759 +0200
+++ /var/tmp/diff_new_pack.O7ghJM/_new  2019-05-21 10:29:47.371450757 +0200
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.57
+%define _tar_path 5.58
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.57.0
+Version:5.58.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.57.0.tar.xz -> kitemmodels-5.58.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.57.0/CMakeLists.txt 
new/kitemmodels-5.58.0/CMakeLists.txt
--- old/kitemmodels-5.57.0/CMakeLists.txt   2019-04-07 09:19:04.0 
+0200
+++ new/kitemmodels-5.58.0/CMakeLists.txt   2019-05-05 00:44:21.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.57.0") # handled by release scripts
+set(KF5_VERSION "5.58.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.57.0  NO_MODULE)
+find_package(ECM 5.58.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2019-04-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-04-19 21:23:14

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.5536 (New)


Package is "kitemmodels"

Fri Apr 19 21:23:14 2019 rev:65 rq:695233 version:5.57.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-03-21 
09:46:48.766890456 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.5536/kitemmodels.changes
2019-04-19 21:23:16.067788920 +0200
@@ -1,0 +2,11 @@
+Sun Apr 14 20:21:43 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.57.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.57.0.php
+- Changes since 5.56.0:
+  * [kitemmodels] make it compile without foreach
+  * Port deprecated qSort
+
+---

Old:

  kitemmodels-5.56.0.tar.xz

New:

  kitemmodels-5.57.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.frWhDH/_old  2019-04-19 21:23:17.767791084 +0200
+++ /var/tmp/diff_new_pack.frWhDH/_new  2019-04-19 21:23:17.791791115 +0200
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.56
+%define _tar_path 5.57
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.56.0
+Version:5.57.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.56.0.tar.xz -> kitemmodels-5.57.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.56.0/.gitignore 
new/kitemmodels-5.57.0/.gitignore
--- old/kitemmodels-5.56.0/.gitignore   1970-01-01 01:00:00.0 +0100
+++ new/kitemmodels-5.57.0/.gitignore   2019-04-07 09:19:04.0 +0200
@@ -0,0 +1,21 @@
+# Ignore the following files
+*~
+*.[oa]
+*.diff
+*.kate-swp
+*.kdev4
+.kdev_include_paths
+*.kdevelop.pcs
+*.moc
+*.moc.cpp
+*.orig
+*.user
+.*.swp
+.swp.*
+Doxyfile
+Makefile
+avail
+random_seed
+/build*/
+CMakeLists.txt.user*
+*.unc-backup*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.56.0/CMakeLists.txt 
new/kitemmodels-5.57.0/CMakeLists.txt
--- old/kitemmodels-5.56.0/CMakeLists.txt   2019-03-02 14:27:40.0 
+0100
+++ new/kitemmodels-5.57.0/CMakeLists.txt   2019-04-07 09:19:04.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.56.0") # handled by release scripts
+set(KF5_VERSION "5.57.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.56.0  NO_MODULE)
+find_package(ECM 5.57.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -33,7 +33,7 @@
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake"
 SOVERSION 5)
-
+add_definitions(-DQT_NO_FOREACH)
 add_subdirectory(src)
 if (BUILD_TESTING)
 add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.56.0/autotests/proxymodeltestsuite/dynamictreemodel.cpp 
new/kitemmodels-5.57.0/autotests/proxymodeltestsuite/dynamictreemodel.cpp
--- old/kitemmodels-5.56.0/autotests/proxymodeltestsuite/dynamictreemodel.cpp   
2019-03-02 14:27:40.0 +0100
+++ new/kitemmodels-5.57.0/autotests/proxymodeltestsuite/dynamictreemodel.cpp   
2019-04-07 09:19:04.0 +0200
@@ -195,7 +195,8 @@
 int _row;
 static const int column = 0;
 QHash > >::const_iterator it;
-Q_FOREACH (const QByteArray , encoded.split('\0')) {
+const auto lst = encoded.split('\0');
+for (const QByteArray  : lst) {
 id = ba.toInt();
 if (!ok) {
 qDebug() << ba;
@@ -237,7 +238,7 @@
 srcPath = indexToPath(srcParent);
 
 rowsMoved = src_parent_it.value();
-qSort(rowsMoved);
+std::sort(rowsMoved.begin(), rowsMoved.end());
 src_row_it = 

commit kitemmodels for openSUSE:Factory

2019-03-21 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-03-21 09:46:46

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.28833 (New)


Package is "kitemmodels"

Thu Mar 21 09:46:46 2019 rev:64 rq:686750 version:5.56.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-02-28 
21:30:54.565782484 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.28833/kitemmodels.changes   
2019-03-21 09:46:48.766890456 +0100
@@ -1,0 +2,11 @@
+Sun Mar 10 20:15:36 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.56.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.56.0.php
+- Changes since 5.55.0:
+  * Fix example in documentation
+  * KRearrangeColumnsProxyModel: make the two column-mapping methods public
+
+---

Old:

  kitemmodels-5.55.0.tar.xz

New:

  kitemmodels-5.56.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.34rrGB/_old  2019-03-21 09:46:49.650890252 +0100
+++ /var/tmp/diff_new_pack.34rrGB/_new  2019-03-21 09:46:49.650890252 +0100
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.55
+%define _tar_path 5.56
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.55.0
+Version:5.56.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.55.0.tar.xz -> kitemmodels-5.56.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.55.0/CMakeLists.txt 
new/kitemmodels-5.56.0/CMakeLists.txt
--- old/kitemmodels-5.55.0/CMakeLists.txt   2019-02-02 18:22:22.0 
+0100
+++ new/kitemmodels-5.56.0/CMakeLists.txt   2019-03-02 14:27:40.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.55.0") # handled by release scripts
+set(KF5_VERSION "5.56.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.55.0  NO_MODULE)
+find_package(ECM 5.56.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.55.0/autotests/krearrangecolumnsproxymodeltest.cpp 
new/kitemmodels-5.56.0/autotests/krearrangecolumnsproxymodeltest.cpp
--- old/kitemmodels-5.55.0/autotests/krearrangecolumnsproxymodeltest.cpp
2019-02-02 18:22:22.0 +0100
+++ new/kitemmodels-5.56.0/autotests/krearrangecolumnsproxymodeltest.cpp
2019-03-02 14:27:40.0 +0100
@@ -88,6 +88,27 @@
 QCOMPARE(pm.columnCount(), 0);
 }
 
+void shouldMapColumns()
+{
+// Given a rearrange-columns proxy
+KRearrangeColumnsProxyModel pm;
+pm.setSourceColumns(QVector() << 3 << 1 << 0);
+
+// When using that proxy on top of an empty source model
+QStandardItemModel sourceModel;
+sourceModel.setColumnCount(4);
+pm.setSourceModel();
+
+// Then the mapping methods should work
+QCOMPARE(pm.proxyColumnForSourceColumn(0), 2);
+QCOMPARE(pm.proxyColumnForSourceColumn(1), 1);
+QCOMPARE(pm.proxyColumnForSourceColumn(2), -1);
+QCOMPARE(pm.proxyColumnForSourceColumn(3), 0);
+QCOMPARE(pm.sourceColumnForProxyColumn(0), 3);
+QCOMPARE(pm.sourceColumnForProxyColumn(1), 1);
+QCOMPARE(pm.sourceColumnForProxyColumn(2), 0);
+}
+
 void shouldShowNothingIfNoRows()
 {
 // Given a rearrange-columns proxy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.55.0/src/krearrangecolumnsproxymodel.h 
new/kitemmodels-5.56.0/src/krearrangecolumnsproxymodel.h
--- old/kitemmodels-5.55.0/src/krearrangecolumnsproxymodel.h2019-02-02 
18:22:22.0 +0100
+++ new/kitemmodels-5.56.0/src/krearrangecolumnsproxymodel.h2019-03-02 
14:27:40.0 +0100
@@ -90,8 +90,17 @@
 /// @reimp
 QModelIndex sibling(int row, int column, 

commit kitemmodels for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-02-28 21:30:53

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.28833 (New)


Package is "kitemmodels"

Thu Feb 28 21:30:53 2019 rev:63 rq:678698 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-02-14 
14:26:37.639838962 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.28833/kitemmodels.changes   
2019-02-28 21:30:54.565782484 +0100
@@ -1,0 +2,5 @@
+Fri Feb 15 09:25:42 UTC 2019 - alarr...@suse.com
+
+- Downgrade the Qt version requirement to build with 5.9
+
+---



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.37UsJ4/_old  2019-02-28 21:30:55.461782184 +0100
+++ /var/tmp/diff_new_pack.37UsJ4/_new  2019-02-28 21:30:55.469782182 +0100
@@ -82,6 +82,9 @@
 
 %prep
 %setup -q
+%if 0%{?suse_version} == 1500
+sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
+%endif
 
 %build
   %cmake_kf5 -d build -- 
-Dlibclang_LIBRARY=%{_libdir}/libclang.so.%{clang_sonum}




commit kitemmodels for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-02-14 14:26:34

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.28833 (New)


Package is "kitemmodels"

Thu Feb 14 14:26:34 2019 rev:62 rq:674249 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2019-01-21 
10:20:54.574041627 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.28833/kitemmodels.changes   
2019-02-14 14:26:37.639838962 +0100
@@ -1,0 +2,10 @@
+Sun Feb 10 22:03:12 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.55.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.55.0.php
+- Changes since 5.54.0:
+  * No code changes since 5.54.0
+
+---

Old:

  kitemmodels-5.54.0.tar.xz

New:

  kitemmodels-5.55.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.yGrTgj/_old  2019-02-14 14:26:38.031838779 +0100
+++ /var/tmp/diff_new_pack.yGrTgj/_new  2019-02-14 14:26:38.035838777 +0100
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.54
+%define _tar_path 5.55
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.54.0
+Version:5.55.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.54.0.tar.xz -> kitemmodels-5.55.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.54.0/CMakeLists.txt 
new/kitemmodels-5.55.0/CMakeLists.txt
--- old/kitemmodels-5.54.0/CMakeLists.txt   2019-01-04 22:43:17.0 
+0100
+++ new/kitemmodels-5.55.0/CMakeLists.txt   2019-02-02 18:22:22.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.54.0") # handled by release scripts
+set(KF5_VERSION "5.55.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.54.0  NO_MODULE)
+find_package(ECM 5.55.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,7 +16,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.9.0)
+set(REQUIRED_QT_VERSION 5.10.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 




commit kitemmodels for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2019-01-21 10:20:52

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.28833 (New)


Package is "kitemmodels"

Mon Jan 21 10:20:52 2019 rev:61 rq:665820 version:5.54.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-12-19 
13:42:02.739903410 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.28833/kitemmodels.changes   
2019-01-21 10:20:54.574041627 +0100
@@ -1,0 +2,10 @@
+Mon Jan 14 06:08:48 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.54.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.54.0.php
+- Changes since 5.53.0:
+  * Remove code for qt < 4.7.2 :)
+
+---

Old:

  kitemmodels-5.53.0.tar.xz

New:

  kitemmodels-5.54.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.tQKRWF/_old  2019-01-21 10:20:55.146041053 +0100
+++ /var/tmp/diff_new_pack.tQKRWF/_new  2019-01-21 10:20:55.146041053 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.53
+%define _tar_path 5.54
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.53.0
+Version:5.54.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.53.0.tar.xz -> kitemmodels-5.54.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.53.0/CMakeLists.txt 
new/kitemmodels-5.54.0/CMakeLists.txt
--- old/kitemmodels-5.53.0/CMakeLists.txt   2018-12-01 15:40:33.0 
+0100
+++ new/kitemmodels-5.54.0/CMakeLists.txt   2019-01-04 22:43:17.0 
+0100
@@ -1,10 +1,10 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.53.0") # handled by release scripts
+set(KF5_VERSION "5.54.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.53.0  NO_MODULE)
+find_package(ECM 5.54.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.53.0/src/kcheckableproxymodel.cpp 
new/kitemmodels-5.54.0/src/kcheckableproxymodel.cpp
--- old/kitemmodels-5.53.0/src/kcheckableproxymodel.cpp 2018-12-01 
15:40:33.0 +0100
+++ new/kitemmodels-5.54.0/src/kcheckableproxymodel.cpp 2019-01-04 
22:43:17.0 +0100
@@ -27,13 +27,12 @@
 KCheckableProxyModel *q_ptr;
 
 KCheckableProxyModelPrivate(KCheckableProxyModel *checkableModel)
-: q_ptr(checkableModel),
-  m_itemSelectionModel(nullptr)
+: q_ptr(checkableModel)
 {
 
 }
 
-QItemSelectionModel *m_itemSelectionModel;
+QItemSelectionModel *m_itemSelectionModel = nullptr;
 
 void selectionChanged(const QItemSelection , const QItemSelection 
);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.53.0/src/kconcatenaterowsproxymodel.cpp 
new/kitemmodels-5.54.0/src/kconcatenaterowsproxymodel.cpp
--- old/kitemmodels-5.53.0/src/kconcatenaterowsproxymodel.cpp   2018-12-01 
15:40:33.0 +0100
+++ new/kitemmodels-5.54.0/src/kconcatenaterowsproxymodel.cpp   2019-01-04 
22:43:17.0 +0100
@@ -24,8 +24,7 @@
 {
 public:
 KConcatenateRowsProxyModelPrivate(KConcatenateRowsProxyModel* model)
-: q(model),
-  m_rowCount(0)
+: q(model)
 {}
 
 int computeRowsPrior(const QAbstractItemModel *sourceModel) const;
@@ -47,7 +46,7 @@
 
 KConcatenateRowsProxyModel *q;
 QList m_models;
-int m_rowCount; // have to maintain it here since we can't 

commit kitemmodels for openSUSE:Factory

2018-12-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-12-19 13:42:01

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new.28833 (New)


Package is "kitemmodels"

Wed Dec 19 13:42:01 2018 rev:60 rq:658574 version:5.53.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-11-14 
14:35:41.791191205 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new.28833/kitemmodels.changes   
2018-12-19 13:42:02.739903410 +0100
@@ -1,0 +2,13 @@
+Sun Dec 09 19:43:44 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * autotests: remove testmodelqueuedconnections.cpp which asserts in Qt 5.11
+  * Use isEmpty()
+  * Remove unused virtual keyword
+  * Normalize signal/slot
+
+---

Old:

  kitemmodels-5.52.0.tar.xz

New:

  kitemmodels-5.53.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Gd3wpQ/_old  2018-12-19 13:42:03.359902537 +0100
+++ /var/tmp/diff_new_pack.Gd3wpQ/_new  2018-12-19 13:42:03.363902531 +0100
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.52
+%define _tar_path 5.53
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.52.0
+Version:5.53.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.52.0.tar.xz -> kitemmodels-5.53.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.52.0/CMakeLists.txt 
new/kitemmodels-5.53.0/CMakeLists.txt
--- old/kitemmodels-5.52.0/CMakeLists.txt   2018-11-03 13:01:01.0 
+0100
+++ new/kitemmodels-5.53.0/CMakeLists.txt   2018-12-01 15:40:33.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.52.0") # handled by release scripts
+set(KF5_VERSION "5.53.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.52.0  NO_MODULE)
+find_package(ECM 5.53.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,7 +16,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION 5.9.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.52.0/autotests/CMakeLists.txt 
new/kitemmodels-5.53.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.52.0/autotests/CMakeLists.txt 2018-11-03 
13:01:01.0 +0100
+++ new/kitemmodels-5.53.0/autotests/CMakeLists.txt 2018-12-01 
15:40:33.0 +0100
@@ -20,7 +20,6 @@
   kdescendantsproxymodeltest.cpp
   kextracolumnsproxymodeltest.cpp
   klinkitemselectionmodeltest.cpp
-  testmodelqueuedconnections.cpp
   kselectionproxymodeltest.cpp
   kmodelindexproxymappertest.cpp
   krecursivefilterproxymodeltest.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.52.0/autotests/krecursivefilterproxymodeltest.cpp 
new/kitemmodels-5.53.0/autotests/krecursivefilterproxymodeltest.cpp
--- old/kitemmodels-5.52.0/autotests/krecursivefilterproxymodeltest.cpp 
2018-11-03 13:01:01.0 +0100
+++ new/kitemmodels-5.53.0/autotests/krecursivefilterproxymodeltest.cpp 
2018-12-01 15:40:33.0 +0100
@@ -30,11 +30,11 @@
 Q_OBJECT
 public:
 explicit ModelSignalSpy(QAbstractItemModel ) {
-connect(, SIGNAL(rowsInserted(QModelIndex, int, int)), this, 
SLOT(onRowsInserted(QModelIndex,int,int)));
-connect(, SIGNAL(rowsRemoved(QModelIndex, int, int)), this, 
SLOT(onRowsRemoved(QModelIndex,int,int)));
-connect(, SIGNAL(rowsAboutToBeInserted(QModelIndex, int, int)), 
this, SLOT(onRowsAboutToBeInserted(QModelIndex,int,int)));
-connect(, SIGNAL(rowsAboutToBeRemoved(QModelIndex, int, int)), 
this, 

commit kitemmodels for openSUSE:Factory

2018-11-14 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-11-14 14:35:36

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Wed Nov 14 14:35:36 2018 rev:59 rq:648525 version:5.52.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-10-22 
11:13:32.943768840 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-11-14 14:35:41.791191205 +0100
@@ -1,0 +2,12 @@
+Sun Nov 11 19:48:05 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.52.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.52.0.php
+- Changes since 5.51.0:
+  * Add missing "emit"
+  * Fix minor EBN issues and typos
+  * USe new syntax
+
+---

Old:

  kitemmodels-5.51.0.tar.xz

New:

  kitemmodels-5.52.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.I7XRvX/_old  2018-11-14 14:35:42.375190634 +0100
+++ /var/tmp/diff_new_pack.I7XRvX/_new  2018-11-14 14:35:42.375190634 +0100
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.51
+%define _tar_path 5.52
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.51.0
+Version:5.52.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.51.0.tar.xz -> kitemmodels-5.52.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.51.0/CMakeLists.txt 
new/kitemmodels-5.52.0/CMakeLists.txt
--- old/kitemmodels-5.51.0/CMakeLists.txt   2018-10-07 12:07:31.0 
+0200
+++ new/kitemmodels-5.52.0/CMakeLists.txt   2018-11-03 13:01:01.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.51.0") # handled by release scripts
+set(KF5_VERSION "5.52.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.51.0  NO_MODULE)
+find_package(ECM 5.52.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -34,11 +34,6 @@
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake"
 SOVERSION 5)
 
-add_definitions(-DQT_NO_CAST_FROM_ASCII)
-add_definitions(-DQT_NO_CAST_TO_ASCII)
-add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
-add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
-add_definitions(-DQT_USE_QSTRINGBUILDER)
 add_subdirectory(src)
 if (BUILD_TESTING)
 add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.51.0/autotests/kdescendantsproxymodeltest.cpp 
new/kitemmodels-5.52.0/autotests/kdescendantsproxymodeltest.cpp
--- old/kitemmodels-5.51.0/autotests/kdescendantsproxymodeltest.cpp 
2018-10-07 12:07:31.0 +0200
+++ new/kitemmodels-5.52.0/autotests/kdescendantsproxymodeltest.cpp 
2018-11-03 13:01:01.0 +0100
@@ -130,7 +130,7 @@
 delete model1;
 }
 
-/// tests that change seperator that is not shown does not change the content 
and does not
+/// tests that change separator that is not shown does not change the content 
and does not
 /// emit data changed signals, since the data isn't changed
 void tst_KDescendantProxyModel::testChangeInvisibleSeparator()
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.51.0/autotests/proxymodeltestsuite/proxymodeltest.cpp 
new/kitemmodels-5.52.0/autotests/proxymodeltestsuite/proxymodeltest.cpp
--- old/kitemmodels-5.51.0/autotests/proxymodeltestsuite/proxymodeltest.cpp 
2018-10-07 12:07:31.0 +0200
+++ new/kitemmodels-5.52.0/autotests/proxymodeltestsuite/proxymodeltest.cpp 
2018-11-03 13:01:01.0 +0100
@@ -189,7 +189,7 @@
 QVariantList result = getResultSignal();
 
 QCOMPARE(result.takeAt(0).toInt(), signalType);
-// Check that the signal we expected to recieve was emitted exactly.
+// Check that the 

commit kitemmodels for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-10-22 11:13:27

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Mon Oct 22 11:13:27 2018 rev:58 rq:642328 version:5.51.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-10-01 
08:07:22.798321806 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-10-22 11:13:32.943768840 +0200
@@ -1,0 +2,17 @@
+Tue Oct 16 08:02:21 UTC 2018 - Luca Beltrame 
+
+- Run spec-cleaner
+
+---
+Mon Oct 15 11:50:36 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.51.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.51.0.php
+- Changes since 5.50.0:
+  * Remove misleading use of KDE_INSTALL_PYTHONBINDINGSDIR
+  * Use reference in for loop for type with non-trivial copy constructor
+  * Make sure to build with strict compile flags + port to no deprecated method
+
+---

Old:

  kitemmodels-5.50.0.tar.xz

New:

  kitemmodels-5.51.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.4NOliY/_old  2018-10-22 11:13:34.963767236 +0200
+++ /var/tmp/diff_new_pack.4NOliY/_new  2018-10-22 11:13:34.963767236 +0200
@@ -12,25 +12,25 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.50
+%define _tar_path 5.51
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.50.0
+Version:5.51.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
-URL:http://www.kde.org
+URL:https://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake >= 3.0

++ kitemmodels-5.50.0.tar.xz -> kitemmodels-5.51.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.50.0/CMakeLists.txt 
new/kitemmodels-5.51.0/CMakeLists.txt
--- old/kitemmodels-5.50.0/CMakeLists.txt   2018-09-01 00:22:35.0 
+0200
+++ new/kitemmodels-5.51.0/CMakeLists.txt   2018-10-07 12:07:31.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.50.0") # handled by release scripts
+set(KF5_VERSION "5.51.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.50.0  NO_MODULE)
+find_package(ECM 5.51.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -34,7 +34,11 @@
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake"
 SOVERSION 5)
 
-
+add_definitions(-DQT_NO_CAST_FROM_ASCII)
+add_definitions(-DQT_NO_CAST_TO_ASCII)
+add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
+add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
+add_definitions(-DQT_USE_QSTRINGBUILDER)
 add_subdirectory(src)
 if (BUILD_TESTING)
 add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.50.0/src/CMakeLists.txt 
new/kitemmodels-5.51.0/src/CMakeLists.txt
--- old/kitemmodels-5.50.0/src/CMakeLists.txt   2018-09-01 00:22:35.0 
+0200
+++ new/kitemmodels-5.51.0/src/CMakeLists.txt   2018-10-07 12:07:31.0 
+0200
@@ -50,7 +50,6 @@
 TARGET KF5::ItemModels
 PYTHONNAMESPACE PyKF5
 MODULENAME KItemModels
-INSTALL_DIR_SUFFIX ${KDE_INSTALL_PYTHONBINDINGSDIR}
 SIP_DEPENDS
   QtCore/QtCoremod.sip
 HEADERS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit kitemmodels for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-10-01 08:07:17

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Mon Oct  1 08:07:17 2018 rev:57 rq:636007 version:5.50.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-08-24 
16:54:18.637376032 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-10-01 08:07:22.798321806 +0200
@@ -1,0 +2,10 @@
+Thu Sep 13 21:58:45 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.50.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.50.0.php
+- Changes since 5.49.0:
+  * None
+
+---

Old:

  kitemmodels-5.49.0.tar.xz

New:

  kitemmodels-5.50.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.6Wj0dx/_old  2018-10-01 08:07:23.294321540 +0200
+++ /var/tmp/diff_new_pack.6Wj0dx/_new  2018-10-01 08:07:23.298321538 +0200
@@ -18,14 +18,14 @@
 
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.49
+%define _tar_path 5.50
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_with python
 Name:   kitemmodels
-Version:5.49.0
+Version:5.50.0
 Release:0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1-or-later

++ kitemmodels-5.49.0.tar.xz -> kitemmodels-5.50.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.49.0/CMakeLists.txt 
new/kitemmodels-5.50.0/CMakeLists.txt
--- old/kitemmodels-5.49.0/CMakeLists.txt   2018-08-04 10:43:54.0 
+0200
+++ new/kitemmodels-5.50.0/CMakeLists.txt   2018-09-01 00:22:35.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.49.0") # handled by release scripts
+set(KF5_VERSION "5.50.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.49.0  NO_MODULE)
+find_package(ECM 5.50.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-08-24 16:54:14

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Fri Aug 24 16:54:14 2018 rev:56 rq:630618 version:5.49.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-07-21 
10:13:47.263120870 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-08-24 16:54:18.637376032 +0200
@@ -1,0 +2,10 @@
+Sun Aug 19 09:19:13 UTC 2018 - christo...@krop.fr
+
+- Update to 5.49.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.49.0.php
+- Changes since 5.48.0:
+  * None
+
+---

Old:

  kitemmodels-5.48.0.tar.xz

New:

  kitemmodels-5.49.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.nHJbuN/_old  2018-08-24 16:54:19.049376518 +0200
+++ /var/tmp/diff_new_pack.nHJbuN/_new  2018-08-24 16:54:19.053376523 +0200
@@ -16,17 +16,23 @@
 #
 
 
-%bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.48
+%define _tar_path 5.49
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
+%bcond_with python
 Name:   kitemmodels
-Version:5.48.0
+Version:5.49.0
 Release:0
+Summary:Set of item models extending the Qt model-view framework
+License:LGPL-2.1-or-later
+Group:  System/GUI/KDE
+URL:http://www.kde.org
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
@@ -39,29 +45,22 @@
 BuildRequires:  python-qt5-utils
 BuildRequires:  python-sip-devel
 %endif
-Summary:Set of item models extending the Qt model-view framework
-License:LGPL-2.1-or-later
-Group:  System/GUI/KDE
-Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
-Source1:baselibs.conf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 KItemModels provides a set of item models extending the Qt model-view 
framework.
 
-%package -n %lname
+%package -n %{lname}
 Summary:Set of item models extending the Qt model-view framework
 Group:  System/GUI/KDE
 %requires_ge libQt5Core5
 
-%description -n %lname
+%description -n %{lname}
 KItemModels provides a set of item models extending the Qt model-view 
framework.
 
 %package devel
 Summary:Set of item models extending the Qt model-view framework
 Group:  Development/Libraries/KDE
-Requires:   %lname = %{version}
+Requires:   %{lname} = %{version}
 Requires:   extra-cmake-modules
 Requires:   cmake(Qt5Core) >= 5.6.0
 
@@ -73,7 +72,7 @@
 %package -n python-%{name}
 Summary:Set of item models extending the Qt model-view framework
 Group:  Development/Libraries/KDE
-Requires:   %lname = %{version}
+Requires:   %{lname} = %{version}
 %requires_python_sip_api
 
 %description -n python-%{name}
@@ -92,18 +91,15 @@
   %kf5_makeinstall -C build
   %fdupes %{buildroot}
 
-%post -n %lname -p /sbin/ldconfig
-
-%postun -n %lname -p /sbin/ldconfig
+%post -n %{lname} -p /sbin/ldconfig
+%postun -n %{lname} -p /sbin/ldconfig
 
-%files -n %lname
-%defattr(-,root,root)
+%files -n %{lname}
 %license COPYING*
 %{_kf5_libdir}/libKF5ItemModels.so.*
 %{_kf5_debugdir}/*.categories
 
 %files devel
-%defattr(-,root,root)
 %{_kf5_libdir}/libKF5ItemModels.so
 %{_kf5_libdir}/cmake/KF5ItemModels/
 %{_kf5_includedir}/
@@ -111,7 +107,6 @@
 
 %if %{with python}
 %files -n python-%{name}
-%defattr(-,root,root)
 %{py_libdir}/dist-packages/PyKF5
 %{_datadir}/sip/PyKF5/
 %endif

++ kitemmodels-5.48.0.tar.xz -> kitemmodels-5.49.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.48.0/CMakeLists.txt 
new/kitemmodels-5.49.0/CMakeLists.txt
--- old/kitemmodels-5.48.0/CMakeLists.txt   2018-07-07 23:52:56.0 
+0200
+++ new/kitemmodels-5.49.0/CMakeLists.txt   2018-08-04 10:43:54.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.48.0") # handled by release scripts
+set(KF5_VERSION 

commit kitemmodels for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-07-21 10:13:44

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Sat Jul 21 10:13:44 2018 rev:55 rq:623292 version:5.48.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-06-22 
13:21:07.510267914 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-07-21 10:13:47.263120870 +0200
@@ -1,0 +2,10 @@
+Mon Jul 16 04:37:41 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.48.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.48.0.php
+- Changes since 5.47.0:
+  * None
+
+---

Old:

  kitemmodels-5.47.0.tar.xz

New:

  kitemmodels-5.48.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.pTtG0E/_old  2018-07-21 10:13:47.863120730 +0200
+++ /var/tmp/diff_new_pack.pTtG0E/_new  2018-07-21 10:13:47.867120729 +0200
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.47
+%define _tar_path 5.48
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
-%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
+%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.47.0
+Version:5.48.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.47.0.tar.xz -> kitemmodels-5.48.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.47.0/CMakeLists.txt 
new/kitemmodels-5.48.0/CMakeLists.txt
--- old/kitemmodels-5.47.0/CMakeLists.txt   2018-06-02 18:28:36.0 
+0200
+++ new/kitemmodels-5.48.0/CMakeLists.txt   2018-07-07 23:52:56.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.47.0") # handled by release scripts
+set(KF5_VERSION "5.48.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.47.0  NO_MODULE)
+find_package(ECM 5.48.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2018-06-22 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-06-22 13:21:05

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Fri Jun 22 13:21:05 2018 rev:54 rq:616770 version:5.47.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-05-18 
14:22:08.299065170 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-06-22 13:21:07.510267914 +0200
@@ -1,0 +2,12 @@
+Tue Jun 12 21:26:05 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.47.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.47.0.php
+- Changes since 5.46.0:
+  * Properly sanitize input
+  * Warning--
+  * Use override
+
+---

Old:

  kitemmodels-5.46.0.tar.xz

New:

  kitemmodels-5.47.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Uuy6wu/_old  2018-06-22 13:21:08.046248110 +0200
+++ /var/tmp/diff_new_pack.Uuy6wu/_new  2018-06-22 13:21:08.050247962 +0200
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.46
+%define _tar_path 5.47
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.46.0
+Version:5.47.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -98,7 +98,7 @@
 
 %files -n %lname
 %defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_libdir}/libKF5ItemModels.so.*
 %{_kf5_debugdir}/*.categories
 

++ kitemmodels-5.46.0.tar.xz -> kitemmodels-5.47.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.46.0/CMakeLists.txt 
new/kitemmodels-5.47.0/CMakeLists.txt
--- old/kitemmodels-5.46.0/CMakeLists.txt   2018-05-05 14:39:16.0 
+0200
+++ new/kitemmodels-5.47.0/CMakeLists.txt   2018-06-02 18:28:36.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.46.0") # handled by release scripts
+set(KF5_VERSION "5.47.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.46.0  NO_MODULE)
+find_package(ECM 5.47.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.46.0/autotests/kdescendantsproxymodel_smoketest.cpp 
new/kitemmodels-5.47.0/autotests/kdescendantsproxymodel_smoketest.cpp
--- old/kitemmodels-5.46.0/autotests/kdescendantsproxymodel_smoketest.cpp   
2018-05-05 14:39:16.0 +0200
+++ new/kitemmodels-5.47.0/autotests/kdescendantsproxymodel_smoketest.cpp   
2018-06-02 18:28:36.0 +0200
@@ -36,7 +36,7 @@
 }
 
 public Q_SLOTS:
-void testInsertWhenEmptyData() Q_DECL_OVERRIDE
+void testInsertWhenEmptyData() override
 {
 QTest::addColumn("signalList");
 QTest::addColumn("changeList");
@@ -63,7 +63,7 @@
 // QTest::newRow("insert03") << signalList << persistentList;
 }
 
-void testInsertInRootData() Q_DECL_OVERRIDE
+void testInsertInRootData() override
 {
 QTest::addColumn("signalList");
 QTest::addColumn("changeList");
@@ -90,7 +90,7 @@
 skipTestData(QStringLiteral("insert18"));
 }
 
-void testInsertInTopLevelData() Q_DECL_OVERRIDE
+void testInsertInTopLevelData() override
 {
 QTest::addColumn("signalList");
 QTest::addColumn("changeList");
@@ -117,7 +117,7 @@
 skipTestData(QStringLiteral("insert18"));
 }
 
-void testInsertInSecondLevelData() Q_DECL_OVERRIDE
+void testInsertInSecondLevelData() override
 {
 QTest::addColumn("signalList");
 QTest::addColumn("changeList");
@@ -144,7 +144,7 @@
 skipTestData(QStringLiteral("insert18"));
 }
 
-void testRemoveFromRootData() Q_DECL_OVERRIDE
+void testRemoveFromRootData() override
 {
 QTest::addColumn("signalList");
 QTest::addColumn("changeList");
@@ -156,7 +156,7 @@
 

commit kitemmodels for openSUSE:Factory

2018-05-18 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-05-18 14:22:06

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Fri May 18 14:22:06 2018 rev:53 rq:607569 version:5.46.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-04-19 
15:17:06.077087758 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-05-18 14:22:08.299065170 +0200
@@ -1,0 +2,10 @@
+Sun May 13 21:03:04 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.46.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.46.0.php
+- Changes since 5.45.0:
+  * None
+
+---

Old:

  kitemmodels-5.45.0.tar.xz

New:

  kitemmodels-5.46.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.j3wUFS/_old  2018-05-18 14:22:08.895043302 +0200
+++ /var/tmp/diff_new_pack.j3wUFS/_new  2018-05-18 14:22:08.899043155 +0200
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.45
+%define _tar_path 5.46
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.45.0
+Version:5.46.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.45.0.tar.xz -> kitemmodels-5.46.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.45.0/CMakeLists.txt 
new/kitemmodels-5.46.0/CMakeLists.txt
--- old/kitemmodels-5.45.0/CMakeLists.txt   2018-04-07 09:47:54.0 
+0200
+++ new/kitemmodels-5.46.0/CMakeLists.txt   2018-05-05 14:39:16.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.45.0") # handled by release scripts
+set(KF5_VERSION "5.46.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.45.0  NO_MODULE)
+find_package(ECM 5.46.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-04-19 15:17:04

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Thu Apr 19 15:17:04 2018 rev:52 rq:596881 version:5.45.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-03-20 
21:46:15.632143153 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-04-19 15:17:06.077087758 +0200
@@ -1,0 +2,10 @@
+Sat Apr 14 13:19:04 CEST 2018 - lbeltr...@kde.org
+
+- Update to 5.45.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.45.0.php
+- Changes since 5.44.0:
+  * Remove not necessary QtCore and co
+
+---

Old:

  kitemmodels-5.44.0.tar.xz

New:

  kitemmodels-5.45.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.pBe4kB/_old  2018-04-19 15:17:06.729061787 +0200
+++ /var/tmp/diff_new_pack.pBe4kB/_new  2018-04-19 15:17:06.733061627 +0200
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.44
+%define _tar_path 5.45
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.44.0
+Version:5.45.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.44.0.tar.xz -> kitemmodels-5.45.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.44.0/CMakeLists.txt 
new/kitemmodels-5.45.0/CMakeLists.txt
--- old/kitemmodels-5.44.0/CMakeLists.txt   2018-03-03 10:52:52.0 
+0100
+++ new/kitemmodels-5.45.0/CMakeLists.txt   2018-04-07 09:47:54.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.44.0") # handled by release scripts
+set(KF5_VERSION "5.45.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.44.0  NO_MODULE)
+find_package(ECM 5.45.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,7 +16,7 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-set(REQUIRED_QT_VERSION 5.7.0)
+set(REQUIRED_QT_VERSION 5.8.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.44.0/autotests/bihash/benchmarks.cpp 
new/kitemmodels-5.45.0/autotests/bihash/benchmarks.cpp
--- old/kitemmodels-5.44.0/autotests/bihash/benchmarks.cpp  2018-03-03 
10:52:52.0 +0100
+++ new/kitemmodels-5.45.0/autotests/bihash/benchmarks.cpp  2018-04-07 
09:47:54.0 +0200
@@ -19,7 +19,7 @@
 02110-1301, USA.
 */
 
-#include 
+#include 
 #include 
 
 #define KBIHASH 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.44.0/autotests/klinkitemselectionmodeltest.h 
new/kitemmodels-5.45.0/autotests/klinkitemselectionmodeltest.h
--- old/kitemmodels-5.44.0/autotests/klinkitemselectionmodeltest.h  
2018-03-03 10:52:52.0 +0100
+++ new/kitemmodels-5.45.0/autotests/klinkitemselectionmodeltest.h  
2018-04-07 09:47:54.0 +0200
@@ -19,7 +19,7 @@
 #ifndef KLINKITEMSELECTIONMODELTEST_H
 #define KLINKITEMSELECTIONMODELTEST_H
 
-#include 
+#include 
 
 class QItemSelectionModel;
 class QStandardItemModel;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.44.0/autotests/proxymodeltestsuite/modeltest.cpp 
new/kitemmodels-5.45.0/autotests/proxymodeltestsuite/modeltest.cpp
--- old/kitemmodels-5.44.0/autotests/proxymodeltestsuite/modeltest.cpp  
2018-03-03 10:52:52.0 +0100
+++ new/kitemmodels-5.45.0/autotests/proxymodeltestsuite/modeltest.cpp  
2018-04-07 09:47:54.0 +0200
@@ -18,8 +18,8 @@
 
 #include "modeltest.h"
 
-#include 
-#include 
+#include 
+#include 
 
 /*!
 Connect to all of the models signals.  Whenever anything happens recheck 
everything.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit kitemmodels for openSUSE:Factory

2018-03-20 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-03-20 21:46:13

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Tue Mar 20 21:46:13 2018 rev:51 rq:586839 version:5.44.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-02-16 
21:31:59.110559206 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-03-20 21:46:15.632143153 +0100
@@ -1,0 +2,10 @@
+Mon Mar 12 23:29:41 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.44.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.44.0.php
+- Changes since 5.43.0:
+  * None
+
+---

Old:

  kitemmodels-5.43.0.tar.xz

New:

  kitemmodels-5.44.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.0vjojF/_old  2018-03-20 21:46:16.52094 +0100
+++ /var/tmp/diff_new_pack.0vjojF/_new  2018-03-20 21:46:16.528110906 +0100
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.43
+%define _tar_path 5.44
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.43.0
+Version:5.44.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -40,7 +40,7 @@
 BuildRequires:  python-sip-devel
 %endif
 Summary:Set of item models extending the Qt model-view framework
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz

++ kitemmodels-5.43.0.tar.xz -> kitemmodels-5.44.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.43.0/CMakeLists.txt 
new/kitemmodels-5.44.0/CMakeLists.txt
--- old/kitemmodels-5.43.0/CMakeLists.txt   2018-02-05 09:11:20.0 
+0100
+++ new/kitemmodels-5.44.0/CMakeLists.txt   2018-03-03 10:52:52.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.43.0") # handled by release scripts
+set(KF5_VERSION "5.44.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.43.0  NO_MODULE)
+find_package(ECM 5.44.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2018-02-16 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-02-16 21:31:57

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Fri Feb 16 21:31:57 2018 rev:50 rq:576541 version:5.43.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-01-22 
16:01:36.681394958 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-02-16 21:31:59.110559206 +0100
@@ -1,0 +2,11 @@
+Mon Feb 12 23:42:09 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.43.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.43.0.php
+- Changes since 5.42.0:
+  * KRearrangeColumnsProxyModel: fix crash when there's no source model
+  * KRearrangeColumnsProxyModel: reimplement sibling() so it works as expected
+
+---

Old:

  kitemmodels-5.42.0.tar.xz

New:

  kitemmodels-5.43.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.iTeIBl/_old  2018-02-16 21:31:59.962528441 +0100
+++ /var/tmp/diff_new_pack.iTeIBl/_new  2018-02-16 21:31:59.966528297 +0100
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.42
+%define _tar_path 5.43
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.42.0
+Version:5.43.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.42.0.tar.xz -> kitemmodels-5.43.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.42.0/CMakeLists.txt 
new/kitemmodels-5.43.0/CMakeLists.txt
--- old/kitemmodels-5.42.0/CMakeLists.txt   2018-01-06 00:41:55.0 
+0100
+++ new/kitemmodels-5.43.0/CMakeLists.txt   2018-02-05 09:11:20.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.42.0") # handled by release scripts
+set(KF5_VERSION "5.43.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.42.0  NO_MODULE)
+find_package(ECM 5.43.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.42.0/autotests/krearrangecolumnsproxymodeltest.cpp 
new/kitemmodels-5.43.0/autotests/krearrangecolumnsproxymodeltest.cpp
--- old/kitemmodels-5.42.0/autotests/krearrangecolumnsproxymodeltest.cpp
2018-01-06 00:41:55.0 +0100
+++ new/kitemmodels-5.43.0/autotests/krearrangecolumnsproxymodeltest.cpp
2018-02-05 09:11:20.0 +0100
@@ -65,6 +65,16 @@
 // showModel();
 }
 
+void shouldShowNothingIfNoSourceModel()
+{
+// Given a rearrange-columns proxy with no source model
+KRearrangeColumnsProxyModel pm;
+
+// Then the proxy should show nothing (no columns selected)
+QCOMPARE(pm.rowCount(), 0);
+QCOMPARE(pm.columnCount(), 0);
+}
+
 void shouldShowNothingIfNoColumnSelection()
 {
 // Given a rearrange-columns proxy
@@ -121,6 +131,9 @@
 QCOMPARE(pm.mapToSource(pm.index(0, 0)).column(), 2); // column 0 
points to C
 QCOMPARE(pm.mapToSource(pm.index(0, 1)).column(), 3); // column 1 
points to D
 
+QCOMPARE(pm.sibling(0, 1, pm.index(0, 0)).column(), 1);
+QCOMPARE(pm.sibling(0, 0, pm.index(0, 1)).column(), 0);
+
 QCOMPARE(extractRowTexts(, 0), QStringLiteral("CDBA"));
 QCOMPARE(extractRowTexts(, 0, pm.index(0, 0)), 
QStringLiteral("opnm"));
 QCOMPARE(extractRowTexts(, 1, pm.index(0, 0)), 
QStringLiteral("strq"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.42.0/src/krearrangecolumnsproxymodel.cpp 
new/kitemmodels-5.43.0/src/krearrangecolumnsproxymodel.cpp
--- old/kitemmodels-5.42.0/src/krearrangecolumnsproxymodel.cpp  2018-01-06 
00:41:55.0 +0100
+++ new/kitemmodels-5.43.0/src/krearrangecolumnsproxymodel.cpp  2018-02-05 
09:11:20.0 +0100
@@ 

commit kitemmodels for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-01-22 16:01:31

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Mon Jan 22 16:01:31 2018 rev:49 rq:566690 version:5.42.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2018-01-09 
14:42:48.517017067 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-01-22 16:01:36.681394958 +0100
@@ -1,0 +2,11 @@
+Tue Jan 16 22:50:18 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.42.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.42.0.php
+- Changes since 5.41.0:
+  * Remove obsolete reviewboardrc file
+  * test program: fix QLayout warning
+
+---

Old:

  kitemmodels-5.41.0.tar.xz

New:

  kitemmodels-5.42.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.LRoumi/_old  2018-01-22 16:01:37.369362764 +0100
+++ /var/tmp/diff_new_pack.LRoumi/_new  2018-01-22 16:01:37.373362576 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.41
+%define _tar_path 5.42
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.41.0
+Version:5.42.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.41.0.tar.xz -> kitemmodels-5.42.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.41.0/.reviewboardrc 
new/kitemmodels-5.42.0/.reviewboardrc
--- old/kitemmodels-5.41.0/.reviewboardrc   2017-12-02 11:15:39.0 
+0100
+++ new/kitemmodels-5.42.0/.reviewboardrc   1970-01-01 01:00:00.0 
+0100
@@ -1,4 +0,0 @@
-REVIEWBOARD_URL = "https://git.reviewboard.kde.org;
-REPOSITORY = 'git://anongit.kde.org/kitemmodels'
-BRANCH = 'master'
-TARGET_GROUPS = 'kdeframeworks'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.41.0/CMakeLists.txt 
new/kitemmodels-5.42.0/CMakeLists.txt
--- old/kitemmodels-5.41.0/CMakeLists.txt   2017-12-02 11:15:39.0 
+0100
+++ new/kitemmodels-5.42.0/CMakeLists.txt   2018-01-06 00:41:55.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.41.0") # handled by release scripts
+set(KF5_VERSION "5.42.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.41.0  NO_MODULE)
+find_package(ECM 5.42.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.41.0/tests/proxymodeltestapp/descendantpmwidget.cpp 
new/kitemmodels-5.42.0/tests/proxymodeltestapp/descendantpmwidget.cpp
--- old/kitemmodels-5.41.0/tests/proxymodeltestapp/descendantpmwidget.cpp   
2017-12-02 11:15:39.0 +0100
+++ new/kitemmodels-5.42.0/tests/proxymodeltestapp/descendantpmwidget.cpp   
2018-01-06 00:41:55.0 +0100
@@ -123,8 +123,6 @@
 
 //   vLayout->addWidget(m_lineEdit);
 //   vLayout->addWidget(matchView);
-
-setLayout(layout);
 }
 
 DescendantProxyModelWidget::~DescendantProxyModelWidget()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.41.0/tests/proxymodeltestapp/scriptablereparentingwidget.cpp 
new/kitemmodels-5.42.0/tests/proxymodeltestapp/scriptablereparentingwidget.cpp
--- 
old/kitemmodels-5.41.0/tests/proxymodeltestapp/scriptablereparentingwidget.cpp  
2017-12-02 11:15:39.0 +0100
+++ 
new/kitemmodels-5.42.0/tests/proxymodeltestapp/scriptablereparentingwidget.cpp  
2018-01-06 

commit kitemmodels for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2018-01-09 14:42:47

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Tue Jan  9 14:42:47 2018 rev:48 rq:559450 version:5.41.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-11-16 
14:38:59.823060168 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2018-01-09 14:42:48.517017067 +0100
@@ -1,0 +2,11 @@
+Sun Dec 17 09:43:48 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.41.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.41.0.php
+- Changes since 5.40.0:
+  * Update comment for new Qt 5.10 API
+  * Port to qCDebug
+
+---

Old:

  kitemmodels-5.40.0.tar.xz

New:

  kitemmodels-5.41.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.HNmO3f/_old  2018-01-09 14:42:49.200984991 +0100
+++ /var/tmp/diff_new_pack.HNmO3f/_new  2018-01-09 14:42:49.200984991 +0100
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.40
+%define _tar_path 5.41
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.40.0
+Version:5.41.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -100,6 +100,7 @@
 %defattr(-,root,root)
 %doc COPYING*
 %{_kf5_libdir}/libKF5ItemModels.so.*
+%{_kf5_debugdir}/*.categories
 
 %files devel
 %defattr(-,root,root)

++ kitemmodels-5.40.0.tar.xz -> kitemmodels-5.41.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.40.0/CMakeLists.txt 
new/kitemmodels-5.41.0/CMakeLists.txt
--- old/kitemmodels-5.40.0/CMakeLists.txt   2017-11-04 22:44:23.0 
+0100
+++ new/kitemmodels-5.41.0/CMakeLists.txt   2017-12-02 11:15:39.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.40.0") # handled by release scripts
+set(KF5_VERSION "5.41.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.40.0  NO_MODULE)
+find_package(ECM 5.41.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -14,6 +14,7 @@
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
+include(ECMQtDeclareLoggingCategory)
 
 set(REQUIRED_QT_VERSION 5.7.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
@@ -75,4 +76,7 @@
   DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel
 )
 
+# contains list of debug categories, for kdebugsettings
+install(FILES kitemmodels.categories DESTINATION ${KDE_INSTALL_CONFDIR})
+
 feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.40.0/kitemmodels.categories 
new/kitemmodels-5.41.0/kitemmodels.categories
--- old/kitemmodels-5.40.0/kitemmodels.categories   1970-01-01 
01:00:00.0 +0100
+++ new/kitemmodels-5.41.0/kitemmodels.categories   2017-12-02 
11:15:39.0 +0100
@@ -0,0 +1 @@
+kf5.kitemmodels KItemModels
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.40.0/src/CMakeLists.txt 
new/kitemmodels-5.41.0/src/CMakeLists.txt
--- old/kitemmodels-5.40.0/src/CMakeLists.txt   2017-11-04 22:44:23.0 
+0100
+++ new/kitemmodels-5.41.0/src/CMakeLists.txt   2017-12-02 11:15:39.0 
+0100
@@ -12,6 +12,8 @@
   kselectionproxymodel.cpp
 )
 
+ecm_qt_declare_logging_category(kitemmodels_SRCS HEADER kitemmodels_debug.h 
IDENTIFIER KITEMMODELS_LOG CATEGORY_NAME kf5.kitemmodels)
+
 add_library(KF5ItemModels ${kitemmodels_SRCS})
 generate_export_header(KF5ItemModels BASE_NAME KItemModels)
 add_library(KF5::ItemModels ALIAS KF5ItemModels)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.40.0/src/kextracolumnsproxymodel.cpp 

commit kitemmodels for openSUSE:Factory

2017-11-16 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-11-16 14:38:59

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Thu Nov 16 14:38:59 2017 rev:47 rq:541668 version:5.40.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-10-27 
13:56:05.526964223 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-11-16 14:38:59.823060168 +0100
@@ -1,0 +2,10 @@
+Mon Nov 13 07:01:14 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.40.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.40.0.php
+- Changes since 5.39.0:
+  * None
+
+---

Old:

  kitemmodels-5.39.0.tar.xz

New:

  kitemmodels-5.40.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.c7ekyB/_old  2017-11-16 14:39:00.879021887 +0100
+++ /var/tmp/diff_new_pack.c7ekyB/_new  2017-11-16 14:39:00.879021887 +0100
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.39
+%define _tar_path 5.40
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.39.0
+Version:5.40.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.39.0.tar.xz -> kitemmodels-5.40.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.39.0/CMakeLists.txt 
new/kitemmodels-5.40.0/CMakeLists.txt
--- old/kitemmodels-5.39.0/CMakeLists.txt   2017-10-07 13:16:50.0 
+0200
+++ new/kitemmodels-5.40.0/CMakeLists.txt   2017-11-04 22:44:23.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.39.0") # handled by release scripts
+set(KF5_VERSION "5.40.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.39.0  NO_MODULE)
+find_package(ECM 5.40.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2017-10-27 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-10-27 13:56:04

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Fri Oct 27 13:56:04 2017 rev:46 rq:536333 version:5.39.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-09-19 
16:24:47.187495778 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-10-27 13:56:05.526964223 +0200
@@ -1,0 +2,10 @@
+Mon Oct 23 06:41:41 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.39.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.39.0.php
+- Changes since 5.38.0:
+  * None
+
+---

Old:

  kitemmodels-5.38.0.tar.xz

New:

  kitemmodels-5.39.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.DE6OA4/_old  2017-10-27 13:56:06.682910190 +0200
+++ /var/tmp/diff_new_pack.DE6OA4/_new  2017-10-27 13:56:06.686910003 +0200
@@ -19,13 +19,13 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.38
+%define _tar_path 5.39
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.38.0
+Version:5.39.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kitemmodels-5.38.0.tar.xz -> kitemmodels-5.39.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.38.0/CMakeLists.txt 
new/kitemmodels-5.39.0/CMakeLists.txt
--- old/kitemmodels-5.38.0/CMakeLists.txt   2017-09-02 11:09:30.0 
+0200
+++ new/kitemmodels-5.39.0/CMakeLists.txt   2017-10-07 13:16:50.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_VERSION "5.39.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.38.0  NO_MODULE)
+find_package(ECM 5.39.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-09-19 16:24:40

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Tue Sep 19 16:24:40 2017 rev:45 rq:526655 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-08-24 
17:57:09.996133279 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-09-19 16:24:47.187495778 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 07:11:17 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * None
+
+---

Old:

  kitemmodels-5.37.0.tar.xz

New:

  kitemmodels-5.38.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Z1XqWE/_old  2017-09-19 16:24:47.947388083 +0200
+++ /var/tmp/diff_new_pack.Z1XqWE/_new  2017-09-19 16:24:47.951387516 +0200
@@ -19,12 +19,16 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kitemmodels
-Version:5.37.0
+Version:5.38.0
 Release:0
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.6.0

++ kitemmodels-5.37.0.tar.xz -> kitemmodels-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.37.0/CMakeLists.txt 
new/kitemmodels-5.38.0/CMakeLists.txt
--- old/kitemmodels-5.37.0/CMakeLists.txt   2017-08-06 18:43:41.0 
+0200
+++ new/kitemmodels-5.38.0/CMakeLists.txt   2017-09-02 11:09:30.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0  NO_MODULE)
+find_package(ECM 5.38.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-08-24 17:57:07

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Thu Aug 24 17:57:07 2017 rev:44 rq:516686 version:5.37.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-07-17 
10:24:14.750146122 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-08-24 17:57:09.996133279 +0200
@@ -1,0 +2,10 @@
+Sat Aug 12 09:23:31 UTC 2017 - christo...@krop.fr
+
+- Update to 5.37.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.37.0.php
+- Changes since 5.36.0 :
+  * Use more nullptr
+
+---

Old:

  kitemmodels-5.36.0.tar.xz

New:

  kitemmodels-5.37.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.VOY9aj/_old  2017-08-24 17:57:10.916003716 +0200
+++ /var/tmp/diff_new_pack.VOY9aj/_new  2017-08-24 17:57:10.932001463 +0200
@@ -19,9 +19,9 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:   kitemmodels
-Version:5.36.0
+Version:5.37.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.36.0.tar.xz -> kitemmodels-5.37.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.36.0/CMakeLists.txt 
new/kitemmodels-5.37.0/CMakeLists.txt
--- old/kitemmodels-5.36.0/CMakeLists.txt   2017-06-30 12:35:54.0 
+0200
+++ new/kitemmodels-5.37.0/CMakeLists.txt   2017-08-06 18:43:41.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.36.0") # handled by release scripts
+set(KF5_VERSION "5.37.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.36.0  NO_MODULE)
+find_package(ECM 5.37.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -15,7 +15,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.6.0)
+set(REQUIRED_QT_VERSION 5.7.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.36.0/tests/proxymodeltestapp/statesaverwidget.h 
new/kitemmodels-5.37.0/tests/proxymodeltestapp/statesaverwidget.h
--- old/kitemmodels-5.36.0/tests/proxymodeltestapp/statesaverwidget.h   
2017-06-30 12:35:54.0 +0200
+++ new/kitemmodels-5.37.0/tests/proxymodeltestapp/statesaverwidget.h   
2017-08-06 18:43:41.0 +0200
@@ -34,7 +34,7 @@
 {
 Q_OBJECT
 public:
-DynamicTreeStateSaver(QObject *parent = 0);
+DynamicTreeStateSaver(QObject *parent = nullptr);
 
 protected:
 /* reimp */ QModelIndex indexFromConfigString(const QAbstractItemModel 
*model, const QString ) const;
@@ -45,7 +45,7 @@
 {
 Q_OBJECT
 public:
-StateSaverWidget(QWidget *parent = 0, Qt::WindowFlags f = 
Qt::WindowFlags());
+StateSaverWidget(QWidget *parent = nullptr, Qt::WindowFlags f = 
Qt::WindowFlags());
 ~StateSaverWidget();
 
 private Q_SLOTS:




commit kitemmodels for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-07-17 10:24:13

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Mon Jul 17 10:24:13 2017 rev:43 rq:509915 version:5.36.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-07-05 
23:51:23.127842054 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-07-17 10:24:14.750146122 +0200
@@ -1,0 +2,10 @@
+Wed Jul 12 07:14:01 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.36.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.36.0.php
+- Changes since 5.35.0:
+  * [FEATURE] Option to build & install QCH file with the public API dox
+
+---

Old:

  kitemmodels-5.35.0.tar.xz

New:

  kitemmodels-5.36.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.rnTxph/_old  2017-07-17 10:24:15.286070572 +0200
+++ /var/tmp/diff_new_pack.rnTxph/_new  2017-07-17 10:24:15.286070572 +0200
@@ -19,9 +19,9 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.35
+%define _tar_path 5.36
 Name:   kitemmodels
-Version:5.35.0
+Version:5.36.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.35.0.tar.xz -> kitemmodels-5.36.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.35.0/CMakeLists.txt 
new/kitemmodels-5.36.0/CMakeLists.txt
--- old/kitemmodels-5.35.0/CMakeLists.txt   2017-06-03 11:04:38.0 
+0200
+++ new/kitemmodels-5.36.0/CMakeLists.txt   2017-06-30 12:35:54.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.35.0") # handled by release scripts
+set(KF5_VERSION "5.36.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.35.0  NO_MODULE)
+find_package(ECM 5.36.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,6 +23,10 @@
 
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
+include(ECMAddQch)
+
+option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
+add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
@@ -40,6 +44,15 @@
 # create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5ItemModels")
 
+if (BUILD_QCH)
+ecm_install_qch_export(
+TARGETS KF5ItemModels_QCH
+FILE KF5ItemModelsQCHTargets.cmake
+DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
+)
+set(PACKAGE_INCLUDE_QCHTARGETS 
"include(\"\${CMAKE_CURRENT_LIST_DIR}/KF5ItemModelsQCHTargets.cmake\")")
+endif()
+
 include(CMakePackageConfigHelpers)
 
 configure_package_config_file(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.35.0/KF5ItemModelsConfig.cmake.in 
new/kitemmodels-5.36.0/KF5ItemModelsConfig.cmake.in
--- old/kitemmodels-5.35.0/KF5ItemModelsConfig.cmake.in 2017-06-03 
11:04:38.0 +0200
+++ new/kitemmodels-5.36.0/KF5ItemModelsConfig.cmake.in 2017-06-30 
12:35:54.0 +0200
@@ -5,4 +5,4 @@
 
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5ItemModelsTargets.cmake")
-
+@PACKAGE_INCLUDE_QCHTARGETS@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.35.0/src/CMakeLists.txt 
new/kitemmodels-5.36.0/src/CMakeLists.txt
--- old/kitemmodels-5.35.0/src/CMakeLists.txt   2017-06-03 11:04:38.0 
+0200
+++ new/kitemmodels-5.36.0/src/CMakeLists.txt   2017-06-30 12:35:54.0 
+0200
@@ -73,6 +73,27 @@
   DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KItemModels COMPONENT Devel
 )
 
+if(BUILD_QCH)
+ecm_add_qch(
+KF5ItemModels_QCH
+NAME KItemModels
+BASE_NAME KF5ItemModels
+VERSION ${KF5_VERSION}
+ORG_DOMAIN org.kde
+SOURCES # using only public headers, to cover only public API
+

commit kitemmodels for openSUSE:Factory

2017-07-05 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-07-05 23:51:20

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Wed Jul  5 23:51:20 2017 rev:42 rq:502953 version:5.35.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-06-01 
16:19:54.403651098 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-07-05 23:51:23.127842054 +0200
@@ -1,0 +2,12 @@
+Sun Jun 11 09:27:43 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.35.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.35.0.php
+- Changes since 5.34.0:
+  * Use explicit flags constructor instead of confusing nullptr
+  * Update link from websvn.kde.org to commits.kde.org
+  * API dox: note CamelCase includes by @class tag with more classes
+
+---

Old:

  kitemmodels-5.34.0.tar.xz

New:

  kitemmodels-5.35.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.oR0fDY/_old  2017-07-05 23:51:24.259682630 +0200
+++ /var/tmp/diff_new_pack.oR0fDY/_new  2017-07-05 23:51:24.263682066 +0200
@@ -19,9 +19,9 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.34
+%define _tar_path 5.35
 Name:   kitemmodels
-Version:5.34.0
+Version:5.35.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.34.0.tar.xz -> kitemmodels-5.35.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.34.0/CMakeLists.txt 
new/kitemmodels-5.35.0/CMakeLists.txt
--- old/kitemmodels-5.34.0/CMakeLists.txt   2017-05-06 10:38:42.0 
+0200
+++ new/kitemmodels-5.35.0/CMakeLists.txt   2017-06-03 11:04:38.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.34.0") # handled by release scripts
+set(KF5_VERSION "5.35.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.34.0  NO_MODULE)
+find_package(ECM 5.35.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.34.0/autotests/proxymodeltestsuite/dynamictreewidget.h 
new/kitemmodels-5.35.0/autotests/proxymodeltestsuite/dynamictreewidget.h
--- old/kitemmodels-5.34.0/autotests/proxymodeltestsuite/dynamictreewidget.h
2017-05-06 10:38:42.0 +0200
+++ new/kitemmodels-5.35.0/autotests/proxymodeltestsuite/dynamictreewidget.h
2017-06-03 11:04:38.0 +0200
@@ -37,7 +37,7 @@
 {
 Q_OBJECT
 public:
-DynamicTreeWidget(DynamicTreeModel *rootModel, QWidget *parent = nullptr, 
Qt::WindowFlags f = nullptr);
+DynamicTreeWidget(DynamicTreeModel *rootModel, QWidget *parent = nullptr, 
Qt::WindowFlags f = Qt::WindowFlags());
 
 void setInitialTree(const QString );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.34.0/src/kbreadcrumbselectionmodel.h 
new/kitemmodels-5.35.0/src/kbreadcrumbselectionmodel.h
--- old/kitemmodels-5.34.0/src/kbreadcrumbselectionmodel.h  2017-05-06 
10:38:42.0 +0200
+++ new/kitemmodels-5.35.0/src/kbreadcrumbselectionmodel.h  2017-06-03 
11:04:38.0 +0200
@@ -30,7 +30,7 @@
 class KBreadcrumbSelectionModelPrivate;
 
 /**
-  @class KBreadcrumbSelectionModel kbreadcrumbselectionmodel.h
+  @class KBreadcrumbSelectionModel kbreadcrumbselectionmodel.h 
KBreadcrumbSelectionModel
 
   @brief Selects the parents of selected items to create breadcrumbs
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.34.0/src/kcheckableproxymodel.h 
new/kitemmodels-5.35.0/src/kcheckableproxymodel.h
--- old/kitemmodels-5.34.0/src/kcheckableproxymodel.h   2017-05-06 
10:38:42.0 +0200
+++ new/kitemmodels-5.35.0/src/kcheckableproxymodel.h   2017-06-03 
11:04:38.0 +0200
@@ -27,6 +27,8 @@
 class KCheckableProxyModelPrivate;
 
 /**
+ * @class KCheckableProxyModel kcheckableproxymodel.h KCheckableProxyModel
+ *
  * @brief Adds a checkable capability to a source model
  *
  * Items is standard Qt views such as QTreeView and 

commit kitemmodels for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-06-01 16:19:53

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Thu Jun  1 16:19:53 2017 rev:41 rq:495050 version:5.34.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-04-30 
21:19:06.629200597 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-06-01 16:19:54.403651098 +0200
@@ -1,0 +2,10 @@
+Mon May 15 13:53:13 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.34.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.34.0.php
+- Changes since 5.33.0:
+  * None
+
+---

Old:

  kitemmodels-5.33.0.tar.xz

New:

  kitemmodels-5.34.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.POXLMA/_old  2017-06-01 16:19:55.023563682 +0200
+++ /var/tmp/diff_new_pack.POXLMA/_new  2017-06-01 16:19:55.023563682 +0200
@@ -19,9 +19,9 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.33
+%define _tar_path 5.34
 Name:   kitemmodels
-Version:5.33.0
+Version:5.34.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.33.0.tar.xz -> kitemmodels-5.34.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.33.0/CMakeLists.txt 
new/kitemmodels-5.34.0/CMakeLists.txt
--- old/kitemmodels-5.33.0/CMakeLists.txt   2017-04-01 19:35:01.0 
+0200
+++ new/kitemmodels-5.34.0/CMakeLists.txt   2017-05-06 10:38:42.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.33.0") # handled by release scripts
+set(KF5_VERSION "5.34.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.33.0  NO_MODULE)
+find_package(ECM 5.34.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-04-30 21:19:05

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Sun Apr 30 21:19:05 2017 rev:40 rq:492071 version:5.33.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-03-28 
15:10:52.078062528 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-04-30 21:19:06.629200597 +0200
@@ -1,0 +2,15 @@
+Sat Apr 15 10:11:51 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.33.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.33.0.php
+- Changes since 5.32.0:
+  * Upgrade ECM and KF5 version requirements for 5.33.0 release.
+  * Fix build with Qt branch 5.9
+  * Include file to integrate with phabricator
+  * Mention the new QSFPM::setRecursiveFiltering(true) which makes 
KRecursiveFilterProxyModel obsolete.
+  * KDescendantsProxyModel: fix typo in apidox
+  * Upgrade KF5 version to 5.33.0.
+
+---

Old:

  kitemmodels-5.32.0.tar.xz

New:

  kitemmodels-5.33.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.mhMWVZ/_old  2017-04-30 21:19:07.385094018 +0200
+++ /var/tmp/diff_new_pack.mhMWVZ/_new  2017-04-30 21:19:07.389093454 +0200
@@ -19,9 +19,9 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.32
+%define _tar_path 5.33
 Name:   kitemmodels
-Version:5.32.0
+Version:5.33.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.32.0.tar.xz -> kitemmodels-5.33.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.32.0/.arcconfig 
new/kitemmodels-5.33.0/.arcconfig
--- old/kitemmodels-5.32.0/.arcconfig   1970-01-01 01:00:00.0 +0100
+++ new/kitemmodels-5.33.0/.arcconfig   2017-04-01 19:35:01.0 +0200
@@ -0,0 +1,3 @@
+{
+  "phabricator.uri" : "https://phabricator.kde.org/;
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.32.0/CMakeLists.txt 
new/kitemmodels-5.33.0/CMakeLists.txt
--- old/kitemmodels-5.32.0/CMakeLists.txt   2017-03-03 13:58:08.0 
+0100
+++ new/kitemmodels-5.33.0/CMakeLists.txt   2017-04-01 19:35:01.0 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.32.0") # handled by release scripts
+set(KF5_VERSION "5.33.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.32.0  NO_MODULE)
+find_package(ECM 5.33.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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.32.0/autotests/proxymodeltestsuite/modeltest.cpp 
new/kitemmodels-5.33.0/autotests/proxymodeltestsuite/modeltest.cpp
--- old/kitemmodels-5.32.0/autotests/proxymodeltestsuite/modeltest.cpp  
2017-03-03 13:58:08.0 +0100
+++ new/kitemmodels-5.33.0/autotests/proxymodeltestsuite/modeltest.cpp  
2017-04-01 19:35:01.0 +0200
@@ -460,7 +460,7 @@
 // Check that the alignment is one we know about
 QVariant textAlignmentVariant = model->data ( model->index ( 0, 0 ), 
Qt::TextAlignmentRole );
 if ( textAlignmentVariant.isValid() ) {
-int alignment = textAlignmentVariant.toInt();
+const auto alignment = textAlignmentVariant.toUInt();
 QCOMPARE( alignment, ( alignment & ( Qt::AlignHorizontal_Mask | 
Qt::AlignVertical_Mask ) ) );
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.32.0/src/kdescendantsproxymodel.h 
new/kitemmodels-5.33.0/src/kdescendantsproxymodel.h
--- old/kitemmodels-5.32.0/src/kdescendantsproxymodel.h 2017-03-03 
13:58:08.0 +0100
+++ new/kitemmodels-5.33.0/src/kdescendantsproxymodel.h 2017-04-01 
19:35:01.0 +0200
@@ -55,7 +55,7 @@
 
 //  This is new
 descProxy->setDisplayAncestorData(true);
-descProxy->setDisplayAncestorSeparator(QString(" / "));
+descProxy->setAncestorSeparator(QString(" / "));
 
 view->setModel(descProxy);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit kitemmodels for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-03-28 15:10:50

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Tue Mar 28 15:10:50 2017 rev:39 rq:481520 version:5.32.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-03-03 
16:58:57.679755920 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-03-28 15:10:52.078062528 +0200
@@ -1,0 +2,11 @@
+Sun Mar 19 14:50:48 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.32.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.32.0.php
+- Changes since 5.31.0:
+  * Upgrade ECM and KF5 version requirements for 5.32.0 release.
+  * Upgrade KF5 version to 5.32.0.
+
+---

Old:

  kitemmodels-5.31.0.tar.xz

New:

  kitemmodels-5.32.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.6UDb3v/_old  2017-03-28 15:10:52.721971309 +0200
+++ /var/tmp/diff_new_pack.6UDb3v/_new  2017-03-28 15:10:52.729970175 +0200
@@ -19,9 +19,9 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.31
+%define _tar_path 5.32
 Name:   kitemmodels
-Version:5.31.0
+Version:5.32.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.31.0.tar.xz -> kitemmodels-5.32.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.31.0/CMakeLists.txt 
new/kitemmodels-5.32.0/CMakeLists.txt
--- old/kitemmodels-5.31.0/CMakeLists.txt   2017-02-04 19:21:46.0 
+0100
+++ new/kitemmodels-5.32.0/CMakeLists.txt   2017-03-03 13:58:08.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.31.0") # handled by release scripts
+set(KF5_VERSION "5.32.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.31.0  NO_MODULE)
+find_package(ECM 5.32.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kitemmodels for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-03-03 16:58:56

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Fri Mar  3 16:58:56 2017 rev:38 rq:461435 version:5.31.0

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2017-02-03 
17:45:19.875902239 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-03-03 16:58:57.679755920 +0100
@@ -1,0 +2,7 @@
+Thu Feb  9 09:30:45 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.31.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.31.0.php
+
+---

Old:

  kitemmodels-5.30.0.tar.xz

New:

  kitemmodels-5.31.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.o82WxU/_old  2017-03-03 16:58:58.751604347 +0100
+++ /var/tmp/diff_new_pack.o82WxU/_new  2017-03-03 16:58:58.751604347 +0100
@@ -19,15 +19,15 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.30
+%define _tar_path 5.31
 Name:   kitemmodels
-Version:5.30.0
+Version:5.31.0
 Release:0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.5.0
+BuildRequires:  cmake(Qt5Core) >= 5.6.0
 %if %{with python}
 BuildRequires:  python-clang
 BuildRequires:  python-devel
@@ -59,7 +59,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   cmake(Qt5Core) >= 5.5.0
+Requires:   cmake(Qt5Core) >= 5.6.0
 
 %description devel
 KItemModels provides a set of item models extending the Qt model-view 
framework.

++ kitemmodels-5.30.0.tar.xz -> kitemmodels-5.31.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.30.0/CMakeLists.txt 
new/kitemmodels-5.31.0/CMakeLists.txt
--- old/kitemmodels-5.30.0/CMakeLists.txt   2017-01-08 16:33:09.0 
+0100
+++ new/kitemmodels-5.31.0/CMakeLists.txt   2017-02-04 19:21:46.0 
+0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.30.0") # handled by release scripts
+set(KF5_VERSION "5.31.0") # handled by release scripts
 project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.30.0  NO_MODULE)
+find_package(ECM 5.31.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -15,7 +15,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.5.0)
+set(REQUIRED_QT_VERSION 5.6.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.30.0/autotests/kdescendantsproxymodel_smoketest.cpp 
new/kitemmodels-5.31.0/autotests/kdescendantsproxymodel_smoketest.cpp
--- old/kitemmodels-5.30.0/autotests/kdescendantsproxymodel_smoketest.cpp   
2017-01-08 16:33:09.0 +0100
+++ new/kitemmodels-5.31.0/autotests/kdescendantsproxymodel_smoketest.cpp   
2017-02-04 19:21:46.0 +0100
@@ -29,7 +29,7 @@
 {
 Q_OBJECT
 public:
-TestData(ProxyModelTest *parent = 0)
+TestData(ProxyModelTest *parent = nullptr)
 : ProxyModelTestData(parent)
 {
 
@@ -216,7 +216,7 @@
 {
 Q_OBJECT
 public:
-DescendantsProxyModelTest(QObject *parent = 0)
+DescendantsProxyModelTest(QObject *parent = nullptr)
 : ProxyModelTest(parent)
 {
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.30.0/autotests/kextracolumnsproxymodeltest.cpp 
new/kitemmodels-5.31.0/autotests/kextracolumnsproxymodeltest.cpp
--- old/kitemmodels-5.30.0/autotests/kextracolumnsproxymodeltest.cpp
2017-01-08 16:33:09.0 +0100
+++ new/kitemmodels-5.31.0/autotests/kextracolumnsproxymodeltest.cpp
2017-02-04 19:21:46.0 +0100
@@ -395,7 +395,7 @@
 QCOMPARE(QModelIndex(persistentIndex), 
proxy.mapFromSource(sourcePersistentIndex));
 });
 
-ModelMoveLayoutChangeCommand layoutChangeCommand(, 0);
+ModelMoveLayoutChangeCommand layoutChangeCommand(, nullptr);
 
 

commit kitemmodels for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2017-01-31 12:03:42

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-12-17 
11:10:01.126595160 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2017-02-03 17:45:19.875902239 +0100
@@ -1,0 +2,7 @@
+Sun Jan  8 23:41:58 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.30.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.30.0.php
+
+---

Old:

  kitemmodels-5.29.0.tar.xz

New:

  kitemmodels-5.30.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.xDJIXo/_old  2017-02-03 17:45:20.355834308 +0100
+++ /var/tmp/diff_new_pack.xDJIXo/_new  2017-02-03 17:45:20.359833742 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,11 +19,11 @@
 %bcond_with python
 %define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.29
+%define _tar_path 5.30
 Name:   kitemmodels
-Version:5.29.0
+Version:5.30.0
 Release:0
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem

++ kitemmodels-5.29.0.tar.xz -> kitemmodels-5.30.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.29.0/CMakeLists.txt 
new/kitemmodels-5.30.0/CMakeLists.txt
--- old/kitemmodels-5.29.0/CMakeLists.txt   2016-12-03 11:25:43.0 
+0100
+++ new/kitemmodels-5.30.0/CMakeLists.txt   2017-01-08 16:33:09.0 
+0100
@@ -1,9 +1,10 @@
-cmake_minimum_required(VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.0)
 
-project(KItemModels)
+set(KF5_VERSION "5.30.0") # handled by release scripts
+project(KItemModels VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.29.0  NO_MODULE)
+find_package(ECM 5.30.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,9 +24,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.29.0") # handled by release scripts
-
-ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
+ecm_setup_version(PROJECT VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake"
 SOVERSION 5)
@@ -41,9 +40,9 @@
 # create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5ItemModels")
 
-include(ECMPackageConfigHelpers)
+include(CMakePackageConfigHelpers)
 
-ecm_configure_package_config_file(
+configure_package_config_file(
   "${CMAKE_CURRENT_SOURCE_DIR}/KF5ItemModelsConfig.cmake.in"
   "${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfig.cmake"
   INSTALL_DESTINATION  ${CMAKECONFIG_INSTALL_DIR}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.29.0/KF5ItemModelsConfig.cmake.in 
new/kitemmodels-5.30.0/KF5ItemModelsConfig.cmake.in
--- old/kitemmodels-5.29.0/KF5ItemModelsConfig.cmake.in 2016-12-03 
11:25:43.0 +0100
+++ new/kitemmodels-5.30.0/KF5ItemModelsConfig.cmake.in 2017-01-08 
16:33:09.0 +0100
@@ -1,5 +1,6 @@
 @PACKAGE_INIT@
 
+include(CMakeFindDependencyMacro)
 find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.29.0/autotests/CMakeLists.txt 
new/kitemmodels-5.30.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.29.0/autotests/CMakeLists.txt 2016-12-03 
11:25:43.0 +0100
+++ new/kitemmodels-5.30.0/autotests/CMakeLists.txt 2017-01-08 
16:33:09.0 +0100
@@ -33,11 +33,3 @@
   TEST_NAME "kselectionproxymodel_smoketest"
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 

commit kitemmodels for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-11-17 12:33:02

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-10-28 
12:21:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-11-17 12:33:04.0 +0100
@@ -1,0 +2,8 @@
+Sat Nov  5 22:07:11 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.28.0
+  * Add python bindings
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.28.0.php
+
+---

Old:

  kitemmodels-5.27.0.tar.xz

New:

  kitemmodels-5.28.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.fHVr5V/_old  2016-11-17 12:33:05.0 +0100
+++ /var/tmp/diff_new_pack.fHVr5V/_new  2016-11-17 12:33:05.0 +0100
@@ -16,16 +16,25 @@
 #
 
 
+%bcond_with python
+%define clang_sonum 3.8
 %define lname   libKF5ItemModels5
-%define _tar_path 5.27
+%define _tar_path 5.28
 Name:   kitemmodels
-Version:5.27.0
+Version:5.28.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core) >= 5.5.0
+%if %{with python}
+BuildRequires:  python-clang
+BuildRequires:  python-devel
+BuildRequires:  python-qt5-devel
+BuildRequires:  python-qt5-utils
+BuildRequires:  python-sip-devel
+%endif
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -56,11 +65,23 @@
 KItemModels provides a set of item models extending the Qt model-view 
framework.
 Development files.
 
+%if %{with python}
+%package -n python-%{name}
+Summary:Set of item models extending the Qt model-view framework
+Group:  Development/Libraries/KDE
+Requires:   %lname = %{version}
+%requires_python_sip_api
+
+%description -n python-%{name}
+KItemModels provides a set of item models extending the Qt model-view 
framework.
+Python bindings.
+%endif
+
 %prep
 %setup -q
 
 %build
-  %cmake_kf5 -d build
+  %cmake_kf5 -d build -- 
-Dlibclang_LIBRARY=%{_libdir}/libclang.so.%{clang_sonum}
   %make_jobs
 
 %install
@@ -83,4 +104,11 @@
 %{_kf5_includedir}/
 %{_kf5_mkspecsdir}/qt_KItemModels.pri
 
+%if %{with python}
+%files -n python-%{name}
+%defattr(-,root,root)
+%{py_libdir}/dist-packages/PyKF5
+%{_datadir}/sip/PyKF5/
+%endif
+
 %changelog

++ kitemmodels-5.27.0.tar.xz -> kitemmodels-5.28.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.27.0/CMakeLists.txt 
new/kitemmodels-5.28.0/CMakeLists.txt
--- old/kitemmodels-5.27.0/CMakeLists.txt   2016-10-02 10:02:34.0 
+0200
+++ new/kitemmodels-5.28.0/CMakeLists.txt   2016-11-05 12:03:58.0 
+0100
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.27.0  NO_MODULE)
+find_package(ECM 5.28.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.27.0") # handled by release scripts
+set(KF5_VERSION "5.28.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.27.0/autotests/CMakeLists.txt 
new/kitemmodels-5.28.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.27.0/autotests/CMakeLists.txt 2016-10-02 
10:02:34.0 +0200
+++ new/kitemmodels-5.28.0/autotests/CMakeLists.txt 2016-11-05 
12:03:58.0 +0100
@@ -34,3 +34,10 @@
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 )
 
+if (PythonModuleGeneration_FOUND AND EXISTS 
${CMAKE_BINARY_DIR}/prefix/lib/python2.7/dist-packages)
+  add_test(NAME Py2${name} COMMAND python2 ${pythontest} 
${CMAKE_BINARY_DIR}/prefix/lib/python2.7/dist-packages)
+endif()
+
+if (PythonModuleGeneration_FOUND AND EXISTS 
${CMAKE_BINARY_DIR}/prefix/lib/python3.5/dist-packages)
+  add_test(NAME Py3${name} COMMAND python3 ${pythontest} 

commit kitemmodels for openSUSE:Factory

2016-10-28 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-10-28 12:21:11

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-09-14 
23:24:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-10-28 12:21:12.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct  2 12:56:35 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.27.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.27.0.php
+
+---

Old:

  kitemmodels-5.26.0.tar.xz

New:

  kitemmodels-5.27.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Uj1jph/_old  2016-10-28 12:21:13.0 +0200
+++ /var/tmp/diff_new_pack.Uj1jph/_new  2016-10-28 12:21:13.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.26
+%define _tar_path 5.27
 Name:   kitemmodels
-Version:5.26.0
+Version:5.27.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.26.0.tar.xz -> kitemmodels-5.27.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.26.0/CMakeLists.txt 
new/kitemmodels-5.27.0/CMakeLists.txt
--- old/kitemmodels-5.26.0/CMakeLists.txt   2016-09-06 00:36:46.0 
+0200
+++ new/kitemmodels-5.27.0/CMakeLists.txt   2016-10-02 10:02:34.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.26.0  NO_MODULE)
+find_package(ECM 5.27.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_VERSION "5.27.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.26.0/autotests/klinkitemselectionmodeltest.cpp 
new/kitemmodels-5.27.0/autotests/klinkitemselectionmodeltest.cpp
--- old/kitemmodels-5.26.0/autotests/klinkitemselectionmodeltest.cpp
2016-09-06 00:36:46.0 +0200
+++ new/kitemmodels-5.27.0/autotests/klinkitemselectionmodeltest.cpp
2016-10-02 10:02:34.0 +0200
@@ -108,7 +108,6 @@
 
 void KLinkItemSelectionModelTest::testChangeModel()
 {
-#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
 QVERIFY(m_mainSelectionModel->selection().isEmpty());
 
 {
@@ -130,12 +129,10 @@
 
 QVERIFY(m_mainSelectionModel->selection().isEmpty());
 QVERIFY(m_subSelectionModel->selection().isEmpty());
-#endif
 }
 
 void KLinkItemSelectionModelTest::testChangeModelOfExternal()
 {
-#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
 QVERIFY(m_mainSelectionModel->selection().isEmpty());
 
 {
@@ -157,7 +154,6 @@
 
 QVERIFY(m_mainSelectionModel->selection().isEmpty());
 QVERIFY(m_subSelectionModel->selection().isEmpty());
-#endif
 }
 
 void KLinkItemSelectionModelTest::testChangeLinkedSelectionModel()
@@ -190,7 +186,6 @@
 
 void KLinkItemSelectionModelTest::testAdditionalLink()
 {
-#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
 {
 auto idx = m_mainModel->index(6, 0);
 m_mainSelectionModel->select(idx, QItemSelectionModel::Select);
@@ -229,7 +224,6 @@
 QVERIFY(!m_subSelectionModel->selection().isEmpty());
 QCOMPARE(m_mainSelectionModel->selection().indexes().first().row(), 7);
 QCOMPARE(m_subSelectionModel->selection().indexes().first().row(), 2);
-#endif
 }
 
 void KLinkItemSelectionModelTest::testClearSelection()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.26.0/autotests/kselectionproxymodeltest.cpp 
new/kitemmodels-5.27.0/autotests/kselectionproxymodeltest.cpp
--- old/kitemmodels-5.26.0/autotests/kselectionproxymodeltest.cpp   
2016-09-06 00:36:46.0 +0200
+++ new/kitemmodels-5.27.0/autotests/kselectionproxymodeltest.cpp   
2016-10-02 10:02:34.0 +0200
@@ -54,11 +54,9 @@
   void removeRows_data();
   void removeRows();
 
-#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
   void 

commit kitemmodels for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-09-14 23:24:50

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-08-29 
15:05:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-09-14 23:24:52.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:51:08 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kitemmodels-5.25.0.tar.xz

New:

  kitemmodels-5.26.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.rLxnfC/_old  2016-09-14 23:24:53.0 +0200
+++ /var/tmp/diff_new_pack.rLxnfC/_new  2016-09-14 23:24:53.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kitemmodels
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.25.0.tar.xz -> kitemmodels-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.25.0/CMakeLists.txt 
new/kitemmodels-5.26.0/CMakeLists.txt
--- old/kitemmodels-5.25.0/CMakeLists.txt   2016-08-07 13:02:02.0 
+0200
+++ new/kitemmodels-5.26.0/CMakeLists.txt   2016-09-06 00:36:46.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.25.0/autotests/kdescendantsproxymodeltest.cpp 
new/kitemmodels-5.26.0/autotests/kdescendantsproxymodeltest.cpp
--- old/kitemmodels-5.25.0/autotests/kdescendantsproxymodeltest.cpp 
2016-08-07 13:02:02.0 +0200
+++ new/kitemmodels-5.26.0/autotests/kdescendantsproxymodeltest.cpp 
2016-09-06 00:36:46.0 +0200
@@ -21,6 +21,7 @@
 
 #include 
 #include 
+#include 
 
 class tst_KDescendantProxyModel : public QObject
 {
@@ -42,6 +43,9 @@
 }
 private Q_SLOTS:
 void testResetModelContent();
+void testChangeSeparator();
+void testChangeInvisibleSeparator();
+void testRemoveSeparator();
 };
 
 /// Tests that replacing the source model results in data getting changed
@@ -85,6 +89,132 @@
 delete model1;
 }
 
+/// tests that change separator works, as well as emits the relevant data 
changed signals
+void tst_KDescendantProxyModel::testChangeSeparator()
+{
+auto model1 = createTree("FirstModel");
+KDescendantsProxyModel proxy;
+proxy.setSourceModel(model1);
+proxy.setDisplayAncestorData(true);
+QSignalSpy dataChangedSpy(, ::dataChanged);
+QCOMPARE(proxy.rowCount(), 6);
+{
+QStringList results = QStringList()
+  << "FirstModel0"
+  << "FirstModel0 / FirstModel0-0"
+  << "FirstModel0 / FirstModel0-1"
+  << "FirstModel1"
+  << "FirstModel1 / FirstModel1-0"
+  << "FirstModel1 / FirstModel1-1";
+QCOMPARE(proxy.rowCount(), results.count());
+for (int i  = 0 ; i < proxy.rowCount() ; i++) {
+QCOMPARE(proxy.index(i, 0).data(Qt::DisplayRole).toString(), 
results[i]);
+}
+}
+proxy.setAncestorSeparator("LOL");
+QCOMPARE(dataChangedSpy.count(),1);
+{
+QStringList results = QStringList()
+  << "FirstModel0"
+  << "FirstModel0LOLFirstModel0-0"
+  << "FirstModel0LOLFirstModel0-1"
+  << "FirstModel1"
+  << 

commit kitemmodels for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-08-29 15:05:25

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-07-15 
12:36:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-08-29 15:05:52.0 +0200
@@ -1,0 +2,15 @@
+Sun Aug  7 21:54:21 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.25.0
+  * Qt >= 5.5 is now required
+  * KRearrangeColumnsProxyModel: fix assert in index(0, 0)
+on empty model
+  * Fix KDescendantsProxyModel::setSourceModel() not
+clearing internal caches
+  * KRecursiveFilterProxyModel: fix QSFPM corruption due to
+filtering out rowsRemoved signal (kde#349789)
+  * KExtraColumnsProxyModel: implement hasChildren()
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.25.0.php
+
+---

Old:

  kitemmodels-5.24.0.tar.xz

New:

  kitemmodels-5.25.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Q7LFyX/_old  2016-08-29 15:05:55.0 +0200
+++ /var/tmp/diff_new_pack.Q7LFyX/_new  2016-08-29 15:05:55.0 +0200
@@ -17,15 +17,15 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.24
+%define _tar_path 5.25
 Name:   kitemmodels
-Version:5.24.0
+Version:5.25.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.5.0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -50,7 +50,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   cmake(Qt5Core) >= 5.4.0
+Requires:   cmake(Qt5Core) >= 5.5.0
 
 %description devel
 KItemModels provides a set of item models extending the Qt model-view 
framework.

++ kitemmodels-5.24.0.tar.xz -> kitemmodels-5.25.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.24.0/CMakeLists.txt 
new/kitemmodels-5.25.0/CMakeLists.txt
--- old/kitemmodels-5.24.0/CMakeLists.txt   2016-07-03 11:49:44.0 
+0200
+++ new/kitemmodels-5.25.0/CMakeLists.txt   2016-08-07 13:02:02.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.24.0  NO_MODULE)
+find_package(ECM 5.25.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -14,7 +14,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.4.0)
+set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.24.0") # handled by release scripts
+set(KF5_VERSION "5.25.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.24.0/autotests/CMakeLists.txt 
new/kitemmodels-5.25.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.24.0/autotests/CMakeLists.txt 2016-07-03 
11:49:44.0 +0200
+++ new/kitemmodels-5.25.0/autotests/CMakeLists.txt 2016-08-07 
13:02:02.0 +0200
@@ -17,6 +17,7 @@
 ecm_add_tests(
   kconcatenaterowsproxymodeltest.cpp
   kdescendantsproxymodel_smoketest.cpp
+  kdescendantsproxymodeltest.cpp
   kextracolumnsproxymodeltest.cpp
   klinkitemselectionmodeltest.cpp
   testmodelqueuedconnections.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.24.0/autotests/kdescendantsproxymodeltest.cpp 
new/kitemmodels-5.25.0/autotests/kdescendantsproxymodeltest.cpp
--- old/kitemmodels-5.24.0/autotests/kdescendantsproxymodeltest.cpp 
1970-01-01 01:00:00.0 +0100
+++ new/kitemmodels-5.25.0/autotests/kdescendantsproxymodeltest.cpp 
2016-08-07 13:02:02.0 +0200
@@ -0,0 +1,91 @@
+/*
+

commit kitemmodels for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-07-15 12:36:01

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-07-03 
12:23:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-07-15 12:36:03.0 +0200
@@ -1,0 +2,9 @@
+Wed Jul  6 15:04:44 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.24.0
+  * Add KExtraColumnsProxyModel::removeExtraColumn,
+will be needed by StatisticsProxyModel
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.24.0.php
+
+---

Old:

  kitemmodels-5.23.0.tar.xz

New:

  kitemmodels-5.24.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.eMYemi/_old  2016-07-15 12:36:04.0 +0200
+++ /var/tmp/diff_new_pack.eMYemi/_new  2016-07-15 12:36:04.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.23
+%define _tar_path 5.24
 Name:   kitemmodels
-Version:5.23.0
+Version:5.24.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.23.0.tar.xz -> kitemmodels-5.24.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.23.0/CMakeLists.txt 
new/kitemmodels-5.24.0/CMakeLists.txt
--- old/kitemmodels-5.23.0/CMakeLists.txt   2016-06-06 11:32:01.0 
+0200
+++ new/kitemmodels-5.24.0/CMakeLists.txt   2016-07-03 11:49:44.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.23.0  NO_MODULE)
+find_package(ECM 5.24.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.23.0") # handled by release scripts
+set(KF5_VERSION "5.24.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.23.0/autotests/kextracolumnsproxymodeltest.cpp 
new/kitemmodels-5.24.0/autotests/kextracolumnsproxymodeltest.cpp
--- old/kitemmodels-5.23.0/autotests/kextracolumnsproxymodeltest.cpp
2016-06-06 11:32:01.0 +0200
+++ new/kitemmodels-5.24.0/autotests/kextracolumnsproxymodeltest.cpp
2016-07-03 11:49:44.0 +0200
@@ -52,7 +52,9 @@
 TwoExtraColumnsProxyModel() : KExtraColumnsProxyModel(), 
m_extraColumnData('Z')
 {
 appendColumn(QStringLiteral("H5"));
+appendColumn(QStringLiteral("WRONG")); // removed two lines below, 
just to test removeColumn
 appendColumn(QStringLiteral("H6"));
+removeExtraColumn(1);
 }
 QVariant extraColumnData(const QModelIndex &, int row, int 
extraColumn, int role) const Q_DECL_OVERRIDE
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.23.0/metainfo.yaml 
new/kitemmodels-5.24.0/metainfo.yaml
--- old/kitemmodels-5.23.0/metainfo.yaml2016-06-06 11:32:01.0 
+0200
+++ new/kitemmodels-5.24.0/metainfo.yaml2016-07-03 11:49:44.0 
+0200
@@ -3,7 +3,10 @@
 tier: 1
 type: functional
 platforms:
-- name: All
+- name: Linux
+- name: Windows
+- name: MacOSX
+- name: Android
 portingAid: false
 deprecated: false
 release: true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.23.0/src/kextracolumnsproxymodel.cpp 
new/kitemmodels-5.24.0/src/kextracolumnsproxymodel.cpp
--- old/kitemmodels-5.23.0/src/kextracolumnsproxymodel.cpp  2016-06-06 
11:32:01.0 +0200
+++ new/kitemmodels-5.24.0/src/kextracolumnsproxymodel.cpp  2016-07-03 
11:49:44.0 +0200
@@ -61,6 +61,12 @@
 d->m_extraHeaders.append(header);
 }
 
+void KExtraColumnsProxyModel::removeExtraColumn(int idx)
+{
+Q_D(KExtraColumnsProxyModel);
+d->m_extraHeaders.remove(idx);
+}
+
 bool KExtraColumnsProxyModel::setExtraColumnData(const QModelIndex , 
int row, int extraColumn, const 

commit kitemmodels for openSUSE:Factory

2016-07-03 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-07-03 12:23:10

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-05-19 
12:08:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-07-03 12:23:11.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun  6 21:26:10 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.23.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.23.0.php
+
+---

Old:

  kitemmodels-5.22.0.tar.xz

New:

  kitemmodels-5.23.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.1yBrGS/_old  2016-07-03 12:23:12.0 +0200
+++ /var/tmp/diff_new_pack.1yBrGS/_new  2016-07-03 12:23:12.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.22
+%define _tar_path 5.23
 Name:   kitemmodels
-Version:5.22.0
+Version:5.23.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.22.0.tar.xz -> kitemmodels-5.23.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.22.0/CMakeLists.txt 
new/kitemmodels-5.23.0/CMakeLists.txt
--- old/kitemmodels-5.22.0/CMakeLists.txt   2016-05-06 21:38:43.0 
+0200
+++ new/kitemmodels-5.23.0/CMakeLists.txt   2016-06-06 11:32:01.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.22.0  NO_MODULE)
+find_package(ECM 5.23.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.22.0") # handled by release scripts
+set(KF5_VERSION "5.23.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.22.0/metainfo.yaml 
new/kitemmodels-5.23.0/metainfo.yaml
--- old/kitemmodels-5.22.0/metainfo.yaml2016-05-06 21:38:43.0 
+0200
+++ new/kitemmodels-5.23.0/metainfo.yaml2016-06-06 11:32:01.0 
+0200
@@ -11,3 +11,7 @@
  - qmake: KItemModels
cmake: "KF5::ItemModels"
 cmakename: KF5ItemModels
+
+public_lib: true
+group: Frameworks
+subgroup: Tier 1




commit kitemmodels for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-05-19 12:08:13

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-04-12 
19:20:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-05-19 12:08:14.0 +0200
@@ -1,0 +2,9 @@
+Sat May  7 18:32:28 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.22.0 (boo#980066)
+  * Fix template syntax for test case generation
+  * Fix linking with Qt 5.4 (wrongly placed #endif)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.22.0.php
+
+---

Old:

  kitemmodels-5.21.0.tar.xz

New:

  kitemmodels-5.22.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.L5GpX4/_old  2016-05-19 12:08:14.0 +0200
+++ /var/tmp/diff_new_pack.L5GpX4/_new  2016-05-19 12:08:14.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.21
+%define _tar_path 5.22
 Name:   kitemmodels
-Version:5.21.0
+Version:5.22.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.21.0.tar.xz -> kitemmodels-5.22.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.21.0/CMakeLists.txt 
new/kitemmodels-5.22.0/CMakeLists.txt
--- old/kitemmodels-5.21.0/CMakeLists.txt   2016-04-03 22:34:03.0 
+0200
+++ new/kitemmodels-5.22.0/CMakeLists.txt   2016-05-06 21:38:43.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.21.0  NO_MODULE)
+find_package(ECM 5.22.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.21.0") # handled by release scripts
+set(KF5_VERSION "5.22.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.21.0/autotests/kselectionproxymodeltest.cpp 
new/kitemmodels-5.22.0/autotests/kselectionproxymodeltest.cpp
--- old/kitemmodels-5.21.0/autotests/kselectionproxymodeltest.cpp   
2016-04-03 22:34:03.0 +0200
+++ new/kitemmodels-5.22.0/autotests/kselectionproxymodeltest.cpp   
2016-05-06 21:38:43.0 +0200
@@ -382,6 +382,8 @@
 QCOMPARE(proxy.rowCount(), expectedRowCountAfter);
 }
 
+#endif
+
 void KSelectionProxyModelTest::removeRows_data()
 {
   QTest::addColumn("kspm_mode");
@@ -840,7 +842,11 @@
 );
 resetCommand.doCommand();
 
+#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
 QItemSelectionModel selectionModel;
+#else
+QItemSelectionModel selectionModel();
+#endif
 
 if (emulateSingleSelectionMode)
 {
@@ -860,13 +866,19 @@
 
proxy.setFilterBehavior(static_cast(kspm_mode));
 
 if (connectSelectionModelFirst) {
+#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
 selectionModel.setModel();
+#endif
 proxy.setSourceModel();
 proxy.setSelectionModel();
 } else {
 proxy.setSourceModel();
 proxy.setSelectionModel();
+#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
 selectionModel.setModel();
+#else
+QSKIP("No QItemSelectionModel::setModel in Qt 5.4", SkipSingle);
+#endif
 }
 
 QSignalSpy beforeSpy(, 
SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
@@ -906,8 +918,6 @@
 QCOMPARE(proxy.rowCount(), expectedRowCountAfter);
 }
 
-#endif
-
 void KSelectionProxyModelTest::selectionMapping()
 {
 QStringListModel strings(days);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.21.0/autotests/proxymodeltestsuite/templates/datachanged.cpp 
new/kitemmodels-5.22.0/autotests/proxymodeltestsuite/templates/datachanged.cpp
--- 
old/kitemmodels-5.21.0/autotests/proxymodeltestsuite/templates/datachanged.cpp  
2016-04-03 22:34:03.0 +0200
+++ 
new/kitemmodels-5.22.0/autotests/proxymodeltestsuite/templates/datachanged.cpp  
2016-05-06 

commit kitemmodels for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-04-12 19:20:18

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-03-16 
10:30:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-04-12 19:20:20.0 +0200
@@ -1,0 +2,16 @@
+Mon Apr  4 14:21:11 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.21.0 (boo#974793)
+  * KSelectionProxyModel: Simplify row removal handling,
+simplify deselection logic
+  * KSelectionProxyModel: Recreate mapping on removal only if needed
+(kde#352369)
+  * KSelectionProxyModel: Only clear firstChild mappings for top-level
+  * KSelectionProxyModel: Ensure proper signalling when
+removing last selected
+  * Make DynamicTreeModel searchable by display role
+  * Upgrade Qt version requirement to 5.4.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.21.0.php
+
+---

Old:

  kitemmodels-5.20.0.tar.xz

New:

  kitemmodels-5.21.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.YFEx91/_old  2016-04-12 19:20:21.0 +0200
+++ /var/tmp/diff_new_pack.YFEx91/_new  2016-04-12 19:20:21.0 +0200
@@ -17,15 +17,15 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.20
+%define _tar_path 5.21
 Name:   kitemmodels
-Version:5.20.0
+Version:5.21.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.3.0
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -50,7 +50,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   cmake(Qt5Core) >= 5.3.0
+Requires:   cmake(Qt5Core) >= 5.4.0
 
 %description devel
 KItemModels provides a set of item models extending the Qt model-view 
framework.

++ kitemmodels-5.20.0.tar.xz -> kitemmodels-5.21.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.20.0/CMakeLists.txt 
new/kitemmodels-5.21.0/CMakeLists.txt
--- old/kitemmodels-5.20.0/CMakeLists.txt   2016-03-04 23:18:50.0 
+0100
+++ new/kitemmodels-5.21.0/CMakeLists.txt   2016-04-03 22:34:03.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.20.0  NO_MODULE)
+find_package(ECM 5.21.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -14,7 +14,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.3.0)
+set(REQUIRED_QT_VERSION 5.4.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.20.0") # handled by release scripts
+set(KF5_VERSION "5.21.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.20.0/autotests/kselectionproxymodeltest.cpp 
new/kitemmodels-5.21.0/autotests/kselectionproxymodeltest.cpp
--- old/kitemmodels-5.20.0/autotests/kselectionproxymodeltest.cpp   
2016-03-04 23:18:50.0 +0100
+++ new/kitemmodels-5.21.0/autotests/kselectionproxymodeltest.cpp   
2016-04-03 22:34:03.0 +0200
@@ -26,6 +26,9 @@
 #include 
 #include 
 
+#include "modeltest.h"
+#include "dynamictreemodel.h"
+
 #include "test_model_helpers.h"
 using namespace TestModelHelpers;
 
@@ -48,9 +51,13 @@
   void columnCountShouldBeStable();
   void selectOnSourceReset();
   void selectionMapping();
+  void removeRows_data();
+  void removeRows();
 
 #if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
   void selectionModelModelChange();
+  void deselection_data();
+  void deselection();
 #endif
 
 private:
@@ -169,6 +176,736 @@
   QCOMPARE(proxy.rowCount(), 1);
   QCOMPARE(proxy.index(0, 

commit kitemmodels for openSUSE:Factory

2016-03-16 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-03-16 10:30:12

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-02-24 
18:55:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-03-16 10:30:13.0 +0100
@@ -1,0 +2,18 @@
+Sun Mar  6 09:59:36 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.20.0 (boo#970856)
+  * KLinkItemSelectionModel: Add new default constructor
+  * KLinkItemSelectionModel: Make the linked selection
+model settable
+  * KLinkItemSelectionModel: Handle changes to the
+selectionModel model
+  * KLinkItemSelectionModel: Don't store model locally
+  * KSelectionProxyModel: Fix iteration bug
+  * Reset KSelectionProxyModel state when needed
+  * Add a property indicating whether the models form a
+connected chain
+  * KModelIndexProxyMapper: Simplify logic of connected check
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.20.0.php
+
+---

Old:

  kitemmodels-5.19.0.tar.xz

New:

  kitemmodels-5.20.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.4xarMF/_old  2016-03-16 10:30:14.0 +0100
+++ /var/tmp/diff_new_pack.4xarMF/_new  2016-03-16 10:30:14.0 +0100
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.19
+%define _tar_path 5.20
 Name:   kitemmodels
-Version:5.19.0
+Version:5.20.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.19.0.tar.xz -> kitemmodels-5.20.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.19.0/CMakeLists.txt 
new/kitemmodels-5.20.0/CMakeLists.txt
--- old/kitemmodels-5.19.0/CMakeLists.txt   2016-02-06 10:38:41.0 
+0100
+++ new/kitemmodels-5.20.0/CMakeLists.txt   2016-03-04 23:18:50.0 
+0100
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.19.0  NO_MODULE)
+find_package(ECM 5.20.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.19.0") # handled by release scripts
+set(KF5_VERSION "5.20.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.19.0/autotests/CMakeLists.txt 
new/kitemmodels-5.20.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.19.0/autotests/CMakeLists.txt 2016-02-06 
10:38:41.0 +0100
+++ new/kitemmodels-5.20.0/autotests/CMakeLists.txt 2016-03-04 
23:18:50.0 +0100
@@ -21,6 +21,7 @@
   klinkitemselectionmodeltest.cpp
   testmodelqueuedconnections.cpp
   kselectionproxymodeltest.cpp
+  kmodelindexproxymappertest.cpp
   krecursivefilterproxymodeltest.cpp
   krearrangecolumnsproxymodeltest.cpp
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.19.0/autotests/klinkitemselectionmodeltest.cpp 
new/kitemmodels-5.20.0/autotests/klinkitemselectionmodeltest.cpp
--- old/kitemmodels-5.19.0/autotests/klinkitemselectionmodeltest.cpp
2016-02-06 10:38:41.0 +0100
+++ new/kitemmodels-5.20.0/autotests/klinkitemselectionmodeltest.cpp
2016-03-04 23:18:50.0 +0100
@@ -23,6 +23,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -105,5 +106,166 @@
 QCOMPARE(mainIndex, m_mainModel->index(m_mainModel->rowCount() - 1, 0));
 }
 
+void KLinkItemSelectionModelTest::testChangeModel()
+{
+#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
+QVERIFY(m_mainSelectionModel->selection().isEmpty());
+
+{
+auto idx = m_mainModel->index(6, 0);
+m_mainSelectionModel->select(idx, QItemSelectionModel::Select);
+}
+
+QVERIFY(!m_mainSelectionModel->selection().isEmpty());
+QVERIFY(!m_subSelectionModel->selection().isEmpty());
+

commit kitemmodels for openSUSE:Factory

2016-02-24 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-02-24 18:55:48

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2016-01-20 
09:46:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-02-24 18:55:49.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb  6 18:04:28 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.19.0 (boo#967668)
+  * KRecursiveFilterProxyModel::match: Fix crash
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.19.0.php
+
+---

Old:

  kitemmodels-5.18.0.tar.xz

New:

  kitemmodels-5.19.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.NIsbrf/_old  2016-02-24 18:55:50.0 +0100
+++ /var/tmp/diff_new_pack.NIsbrf/_new  2016-02-24 18:55:50.0 +0100
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.18
+%define _tar_path 5.19
 Name:   kitemmodels
-Version:5.18.0
+Version:5.19.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.18.0.tar.xz -> kitemmodels-5.19.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.18.0/CMakeLists.txt 
new/kitemmodels-5.19.0/CMakeLists.txt
--- old/kitemmodels-5.18.0/CMakeLists.txt   2016-01-01 20:59:11.0 
+0100
+++ new/kitemmodels-5.19.0/CMakeLists.txt   2016-02-06 10:38:41.0 
+0100
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.18.0  NO_MODULE)
+find_package(ECM 5.19.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -11,7 +11,7 @@
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(KDEInstallDirs)
-include(KDEFrameworkCompilerSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
 set(REQUIRED_QT_VERSION 5.3.0)
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.18.0") # handled by release scripts
+set(KF5_VERSION "5.19.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.18.0/autotests/kconcatenaterowsproxymodeltest.cpp 
new/kitemmodels-5.19.0/autotests/kconcatenaterowsproxymodeltest.cpp
--- old/kitemmodels-5.18.0/autotests/kconcatenaterowsproxymodeltest.cpp 
2016-01-01 20:59:11.0 +0100
+++ new/kitemmodels-5.19.0/autotests/kconcatenaterowsproxymodeltest.cpp 
2016-02-06 10:38:41.0 +0100
@@ -46,15 +46,15 @@
 
 // Then the proxy should show 2 rows
 QCOMPARE(pm.rowCount(), 2);
-QCOMPARE(extractRowTexts(, 0), QString("ABC"));
-QCOMPARE(extractRowTexts(, 1), QString("DEF"));
+QCOMPARE(extractRowTexts(, 0), QStringLiteral("ABC"));
+QCOMPARE(extractRowTexts(, 1), QStringLiteral("DEF"));
 
 // ... and correct headers
-QCOMPARE(pm.headerData(0, Qt::Horizontal).toString(), QString("H1"));
-QCOMPARE(pm.headerData(1, Qt::Horizontal).toString(), QString("H2"));
-QCOMPARE(pm.headerData(2, Qt::Horizontal).toString(), QString("H3"));
-QCOMPARE(pm.headerData(0, Qt::Vertical).toString(), QString("One"));
-QCOMPARE(pm.headerData(1, Qt::Vertical).toString(), QString("Two"));
+QCOMPARE(pm.headerData(0, Qt::Horizontal).toString(), 
QStringLiteral("H1"));
+QCOMPARE(pm.headerData(1, Qt::Horizontal).toString(), 
QStringLiteral("H2"));
+QCOMPARE(pm.headerData(2, Qt::Horizontal).toString(), 
QStringLiteral("H3"));
+QCOMPARE(pm.headerData(0, Qt::Vertical).toString(), 
QStringLiteral("One"));
+QCOMPARE(pm.headerData(1, Qt::Vertical).toString(), 
QStringLiteral("Two"));
 
 QVERIFY(!pm.canFetchMore(QModelIndex()));
 }
@@ -108,15 +108,15 @@
 
 // Then the proxy should show 2 rows
 QCOMPARE(pm.rowCount(), 2);
-QCOMPARE(extractRowTexts(, 0), QString("ABC"));
-QCOMPARE(extractRowTexts(, 1), QString("DEF"));
+

commit kitemmodels for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2016-01-20 09:46:08

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-12-29 
12:53:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2016-01-20 09:46:09.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  2 17:44:03 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.18.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.18.0.php
+
+---

Old:

  kitemmodels-5.17.0.tar.xz

New:

  kitemmodels-5.18.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.KagkRA/_old  2016-01-20 09:46:11.0 +0100
+++ /var/tmp/diff_new_pack.KagkRA/_new  2016-01-20 09:46:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.17
+%define _tar_path 5.18
 Name:   kitemmodels
-Version:5.17.0
+Version:5.18.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.17.0.tar.xz -> kitemmodels-5.18.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.17.0/CMakeLists.txt 
new/kitemmodels-5.18.0/CMakeLists.txt
--- old/kitemmodels-5.17.0/CMakeLists.txt   2015-12-06 15:07:13.0 
+0100
+++ new/kitemmodels-5.18.0/CMakeLists.txt   2016-01-01 20:59:11.0 
+0100
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.17.0  NO_MODULE)
+find_package(ECM 5.18.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.17.0") # handled by release scripts
+set(KF5_VERSION "5.18.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"




commit kitemmodels for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-12-29 12:53:21

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-11-24 
22:24:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-12-29 12:53:22.0 +0100
@@ -1,0 +2,9 @@
+Thu Dec 10 23:07:35 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.17.0
+  * Fix KSelectionProxyModel usage in QTableView (kde#352369)
+  * Fix resetting or changing the source model of a KRecursiveFilterProxyModel.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.17.0.php
+
+---

Old:

  kitemmodels-5.16.0.tar.xz

New:

  kitemmodels-5.17.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.LtR5CD/_old  2015-12-29 12:53:23.0 +0100
+++ /var/tmp/diff_new_pack.LtR5CD/_new  2015-12-29 12:53:23.0 +0100
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.16
+%define _tar_path 5.17
 Name:   kitemmodels
-Version:5.16.0
+Version:5.17.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.16.0.tar.xz -> kitemmodels-5.17.0.tar.xz ++
 10619 lines of diff (skipped)




commit kitemmodels for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-11-24 22:24:02

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-10-19 
22:25:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-11-24 22:24:03.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  8 17:02:07 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.16.0 (boo#955067)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.16.0.php
+
+---

Old:

  kitemmodels-5.15.0.tar.xz

New:

  kitemmodels-5.16.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.qz3U58/_old  2015-11-24 22:24:04.0 +0100
+++ /var/tmp/diff_new_pack.qz3U58/_new  2015-11-24 22:24:04.0 +0100
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.15
+%define _tar_path 5.16
 Name:   kitemmodels
-Version:5.15.0
+Version:5.16.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.15.0.tar.xz -> kitemmodels-5.16.0.tar.xz ++
 2074 lines of diff (skipped)




commit kitemmodels for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-10-19 22:25:38

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-09-24 
07:12:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-10-19 22:25:39.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct  5 17:37:22 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.15.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.15.0.php
+
+---

Old:

  kitemmodels-5.14.0.tar.xz

New:

  kitemmodels-5.15.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.gxJXgx/_old  2015-10-19 22:25:40.0 +0200
+++ /var/tmp/diff_new_pack.gxJXgx/_new  2015-10-19 22:25:40.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.14
+%define _tar_path 5.15
 Name:   kitemmodels
-Version:5.14.0
+Version:5.15.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.14.0.tar.xz -> kitemmodels-5.15.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.14.0/CMakeLists.txt 
new/kitemmodels-5.15.0/CMakeLists.txt
--- old/kitemmodels-5.14.0/CMakeLists.txt   2015-09-04 22:14:38.0 
+0200
+++ new/kitemmodels-5.15.0/CMakeLists.txt   2015-10-03 12:24:49.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.14.0  NO_MODULE)
+find_package(ECM 5.15.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.14.0") # handled by release scripts
+set(KF5_VERSION "5.15.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"




commit kitemmodels for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-09-24 07:12:26

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-09-02 
07:46:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-09-24 07:12:27.0 +0200
@@ -1,0 +2,13 @@
+Tue Sep  8 17:13:15 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.14.0
+  * New proxymodel: KConcatenateRowsProxyModel
+  * KConcatenateRowsProxyModelPrivate: fix handling of
+layoutChanged.
+  * More checking on the selection after sorting.
+  * KExtraColumnsProxyModel: fix bug in sibling() which broke
+e.g. selections
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.14.0.php
+
+---

Old:

  kitemmodels-5.13.0.tar.xz

New:

  kitemmodels-5.14.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.hhXLO8/_old  2015-09-24 07:12:28.0 +0200
+++ /var/tmp/diff_new_pack.hhXLO8/_new  2015-09-24 07:12:28.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.13
+%define _tar_path 5.14
 Name:   kitemmodels
-Version:5.13.0
+Version:5.14.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemmodels-5.13.0.tar.xz -> kitemmodels-5.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.13.0/CMakeLists.txt 
new/kitemmodels-5.14.0/CMakeLists.txt
--- old/kitemmodels-5.13.0/CMakeLists.txt   2015-08-01 14:41:18.0 
+0200
+++ new/kitemmodels-5.14.0/CMakeLists.txt   2015-09-04 22:14:38.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.13.0  NO_MODULE)
+find_package(ECM 5.14.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.13.0") # handled by release scripts
+set(KF5_VERSION "5.14.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.13.0/README.md 
new/kitemmodels-5.14.0/README.md
--- old/kitemmodels-5.13.0/README.md2015-08-01 14:41:18.0 +0200
+++ new/kitemmodels-5.14.0/README.md2015-09-04 22:14:38.0 +0200
@@ -9,6 +9,7 @@
 * KBreadcrumbSelectionModel - Selects the parents of selected items to create
   breadcrumbs
 * KCheckableProxyModel - Adds a checkable capability to a source model
+* KConcatenateRowsProxyModel - Concatenates rows from multiple source models
 * KDescendantsProxyModel - Proxy Model for restructuring a Tree into a list
 * KExtraColumnsProxyModel - Adds columns after existing columns
 * KLinkItemSelectionModel - Share a selection in multiple views which do not
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.13.0/autotests/CMakeLists.txt 
new/kitemmodels-5.14.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.13.0/autotests/CMakeLists.txt 2015-08-01 
14:41:18.0 +0200
+++ new/kitemmodels-5.14.0/autotests/CMakeLists.txt 2015-09-04 
22:14:38.0 +0200
@@ -15,6 +15,7 @@
 include(ECMAddTests)
 
 ecm_add_tests(
+  kconcatenaterowsproxymodeltest.cpp
   kdescendantsproxymodel_smoketest.cpp
   kextracolumnsproxymodeltest.cpp
   klinkitemselectionmodeltest.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.13.0/autotests/kconcatenaterowsproxymodeltest.cpp 
new/kitemmodels-5.14.0/autotests/kconcatenaterowsproxymodeltest.cpp
--- old/kitemmodels-5.13.0/autotests/kconcatenaterowsproxymodeltest.cpp 
1970-01-01 01:00:00.0 +0100
+++ new/kitemmodels-5.14.0/autotests/kconcatenaterowsproxymodeltest.cpp 
2015-09-04 22:14:38.0 +0200
@@ -0,0 +1,425 @@
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include "test_model_helpers.h"
+using namespace TestModelHelpers;
+
+Q_DECLARE_METATYPE(QModelIndex)
+
+class 

commit kitemmodels for openSUSE:Factory

2015-09-01 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-09-02 07:46:39

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is "kitemmodels"

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-07-14 
17:28:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-09-02 07:46:40.0 +0200
@@ -1,0 +2,13 @@
+Tue Aug  4 19:20:32 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.13.0
+  * The Qt version requirement has been bumped from 5.2 to 5.3
+  * Debug output has been ported to categorized output, for less
+noise by default
+  * Docbook documentation has been reviewed and updated
+  * New proxy: KExtraColumnsProxyModel, allows to add columns to
+an existing model.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.13.0.php
+
+---

Old:

  kitemmodels-5.12.0.tar.xz

New:

  kitemmodels-5.13.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.WQKJtF/_old  2015-09-02 07:46:41.0 +0200
+++ /var/tmp/diff_new_pack.WQKJtF/_new  2015-09-02 07:46:41.0 +0200
@@ -17,15 +17,15 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.12
+%define _tar_path 5.13
 Name:   kitemmodels
-Version:5.12.0
+Version:5.13.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
+BuildRequires:  cmake(Qt5Core) >= 5.3.0
 Summary:Set of item models extending the Qt model-view framework
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -50,7 +50,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   pkgconfig(Qt5Core) >= 5.2.0
+Requires:   cmake(Qt5Core) >= 5.3.0
 
 %description devel
 KItemModels provides a set of item models extending the Qt model-view 
framework.

++ kitemmodels-5.12.0.tar.xz -> kitemmodels-5.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.12.0/CMakeLists.txt 
new/kitemmodels-5.13.0/CMakeLists.txt
--- old/kitemmodels-5.12.0/CMakeLists.txt   2015-07-04 22:37:34.0 
+0200
+++ new/kitemmodels-5.13.0/CMakeLists.txt   2015-08-01 14:41:18.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.12.0  NO_MODULE)
+find_package(ECM 5.13.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -14,7 +14,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.2.0)
+set(REQUIRED_QT_VERSION 5.3.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.12.0") # handled by release scripts
+set(KF5_VERSION "5.13.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.12.0/README.md 
new/kitemmodels-5.13.0/README.md
--- old/kitemmodels-5.12.0/README.md2015-07-04 22:37:34.0 +0200
+++ new/kitemmodels-5.13.0/README.md2015-08-01 14:41:18.0 +0200
@@ -10,6 +10,7 @@
   breadcrumbs
 * KCheckableProxyModel - Adds a checkable capability to a source model
 * KDescendantsProxyModel - Proxy Model for restructuring a Tree into a list
+* KExtraColumnsProxyModel - Adds columns after existing columns
 * KLinkItemSelectionModel - Share a selection in multiple views which do not
   have the same source model
 * KModelIndexProxyMapper - Mapping of indexes and selections through proxy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.12.0/autotests/CMakeLists.txt 
new/kitemmodels-5.13.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.12.0/autotests/CMakeLists.txt 2015-07-04 
22:37:34.0 +0200
+++ new/kitemmodels-5.13.0/autotests/CMakeLists.txt 2015-08-01 
14:41:18.0 +0200
@@ -16,6 +16,7 @@
 
 ecm_add_tests(
   

commit kitemmodels for openSUSE:Factory

2015-07-14 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-07-14 17:28:09

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-06-23 
12:09:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-07-14 17:28:10.0 +0200
@@ -1,0 +2,9 @@
+Sun Jul  5 18:45:12 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.12.0
+  * New proxy model: KRearrangeColumnsProxyModel. It supports
+reordering and hiding columns from the source model.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.12.0.php
+
+---

Old:

  kitemmodels-5.11.0.tar.xz

New:

  kitemmodels-5.12.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.jlUGCH/_old  2015-07-14 17:28:10.0 +0200
+++ /var/tmp/diff_new_pack.jlUGCH/_new  2015-07-14 17:28:10.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.11
+%define _tar_path 5.12
 Name:   kitemmodels
-Version:5.11.0
+Version:5.12.0
 Release:0
 BuildRequires:  cmake = 2.8.12
 BuildRequires:  extra-cmake-modules = %{_tar_path}

++ kitemmodels-5.11.0.tar.xz - kitemmodels-5.12.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.11.0/CMakeLists.txt 
new/kitemmodels-5.12.0/CMakeLists.txt
--- old/kitemmodels-5.11.0/CMakeLists.txt   2015-06-06 11:29:02.0 
+0200
+++ new/kitemmodels-5.12.0/CMakeLists.txt   2015-07-04 22:37:34.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemModels)
 
 include(FeatureSummary)
-find_package(ECM 5.11.0  NO_MODULE)
+find_package(ECM 5.12.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION Extra CMake 
Modules. URL 
https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.11.0) # handled by release scripts
+set(KF5_VERSION 5.12.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.11.0/README.md 
new/kitemmodels-5.12.0/README.md
--- old/kitemmodels-5.11.0/README.md2015-06-06 11:29:02.0 +0200
+++ new/kitemmodels-5.12.0/README.md2015-07-04 22:37:34.0 +0200
@@ -14,7 +14,9 @@
   have the same source model
 * KModelIndexProxyMapper - Mapping of indexes and selections through proxy
   models
+* KRearrangeColumnsProxyModel - Can reorder and hide columns from the source 
model
 * KRecursiveFilterProxyModel - Recursive filtering of models
 * KSelectionProxyModel - A Proxy Model which presents a subset of its source
   model to observers
 
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.11.0/autotests/CMakeLists.txt 
new/kitemmodels-5.12.0/autotests/CMakeLists.txt
--- old/kitemmodels-5.11.0/autotests/CMakeLists.txt 2015-06-06 
11:29:02.0 +0200
+++ new/kitemmodels-5.12.0/autotests/CMakeLists.txt 2015-07-04 
22:37:34.0 +0200
@@ -20,6 +20,7 @@
   testmodelqueuedconnections.cpp
   kselectionproxymodeltest.cpp
   krecursivefilterproxymodeltest.cpp
+  krearrangecolumnsproxymodeltest.cpp
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.11.0/autotests/krearrangecolumnsproxymodeltest.cpp 
new/kitemmodels-5.12.0/autotests/krearrangecolumnsproxymodeltest.cpp
--- old/kitemmodels-5.11.0/autotests/krearrangecolumnsproxymodeltest.cpp
1970-01-01 01:00:00.0 +0100
+++ new/kitemmodels-5.12.0/autotests/krearrangecolumnsproxymodeltest.cpp
2015-07-04 22:37:34.0 +0200
@@ -0,0 +1,209 @@
+/*
+Copyright (c) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, 
i...@kdab.com
+Authors: David Faure david.fa...@kdab.com
+
+This library is free software; you can redistribute it and/or modify it
+under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+

commit kitemmodels for openSUSE:Factory

2015-06-23 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-06-23 12:09:21

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-05-11 
19:48:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-06-23 12:09:23.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun  7 19:07:43 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.11.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.11.0.php
+
+---

Old:

  kitemmodels-5.10.0.tar.xz

New:

  kitemmodels-5.11.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.DfSkwW/_old  2015-06-23 12:09:23.0 +0200
+++ /var/tmp/diff_new_pack.DfSkwW/_new  2015-06-23 12:09:23.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.10
+%define _tar_path 5.11
 Name:   kitemmodels
-Version:5.10.0
+Version:5.11.0
 Release:0
 BuildRequires:  cmake = 2.8.12
 BuildRequires:  extra-cmake-modules = %{_tar_path}

++ kitemmodels-5.10.0.tar.xz - kitemmodels-5.11.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.10.0/CMakeLists.txt 
new/kitemmodels-5.11.0/CMakeLists.txt
--- old/kitemmodels-5.10.0/CMakeLists.txt   2015-05-01 17:18:27.0 
+0200
+++ new/kitemmodels-5.11.0/CMakeLists.txt   2015-06-06 11:29:02.0 
+0200
@@ -2,7 +2,11 @@
 
 project(KItemModels)
 
-find_package(ECM 5.10.0 REQUIRED NO_MODULE)
+include(FeatureSummary)
+find_package(ECM 5.11.0  NO_MODULE)
+set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION Extra CMake 
Modules. URL 
https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
+feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
+
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -13,13 +17,13 @@
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
-include(FeatureSummary)
+
 include(GenerateExportHeader)
 
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.10.0) # handled by release scripts
+set(KF5_VERSION 5.11.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.10.0/src/kselectionproxymodel.cpp 
new/kitemmodels-5.11.0/src/kselectionproxymodel.cpp
--- old/kitemmodels-5.10.0/src/kselectionproxymodel.cpp 2015-05-01 
17:18:27.0 +0200
+++ new/kitemmodels-5.11.0/src/kselectionproxymodel.cpp 2015-06-06 
11:29:02.0 +0200
@@ -2497,8 +2497,8 @@
 }
 };
 #if QT_VERSION = QT_VERSION_CHECK(5, 5, 0)
-connect(d-m_selectionModel, QItemSelectionModel::modelChanged,
-handleSelectionModelModel);
+connect(d-m_selectionModel.data(), 
QItemSelectionModel::modelChanged,
+this, handleSelectionModelModel);
 #endif
 handleSelectionModelModel();
 }




commit kitemmodels for openSUSE:Factory

2015-05-11 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-05-11 19:37:22

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-04-13 
20:27:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-05-11 19:48:23.0 +0200
@@ -1,0 +2,7 @@
+Sun May  3 19:50:18 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.10.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.10.0.php
+
+---

Old:

  kitemmodels-5.9.0.tar.xz

New:

  kitemmodels-5.10.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.T2omD4/_old  2015-05-11 19:48:24.0 +0200
+++ /var/tmp/diff_new_pack.T2omD4/_new  2015-05-11 19:48:24.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.9
+%define _tar_path 5.10
 Name:   kitemmodels
-Version:5.9.0
+Version:5.10.0
 Release:0
 BuildRequires:  cmake = 2.8.12
 BuildRequires:  extra-cmake-modules = %{_tar_path}

++ kitemmodels-5.9.0.tar.xz - kitemmodels-5.10.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.9.0/CMakeLists.txt 
new/kitemmodels-5.10.0/CMakeLists.txt
--- old/kitemmodels-5.9.0/CMakeLists.txt2015-04-04 13:49:09.0 
+0200
+++ new/kitemmodels-5.10.0/CMakeLists.txt   2015-05-01 17:18:27.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 5.9.0 REQUIRED NO_MODULE)
+find_package(ECM 5.10.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_VERSION 5.10.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.9.0/src/krecursivefilterproxymodel.cpp 
new/kitemmodels-5.10.0/src/krecursivefilterproxymodel.cpp
--- old/kitemmodels-5.9.0/src/krecursivefilterproxymodel.cpp2015-04-04 
13:49:09.0 +0200
+++ new/kitemmodels-5.10.0/src/krecursivefilterproxymodel.cpp   2015-05-01 
17:18:27.0 +0200
@@ -301,7 +301,7 @@
 Q_ASSERT(source_index.isValid());
 bool accepted = false;
 
-for (int row = 0; row  sourceModel()-rowCount(source_index); ++row) {
+for (int row = 0, rows = sourceModel()-rowCount(source_index); row  
rows; ++row) {
 if (filterAcceptsRow(row, source_index)) {
 accepted = true;
 break;




commit kitemmodels for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-04-13 20:27:42

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-03-16 
09:34:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-04-13 20:27:43.0 +0200
@@ -1,0 +2,14 @@
+Sat Apr  4 14:40:59 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * KRecursiveFilterProxyModel: reworked to emit the right
+signals at the right time
+  * KDescendantsProxyModel: Handle moves reported by the source model.
+  * KDescendantsProxyModel: Fix behavior when a selection is
+made while resetting.
+  * KDescendantsProxyModel: Allow constructing and using
+KSelectionProxyModel from QML.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kitemmodels-5.8.0.tar.xz

New:

  kitemmodels-5.9.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.GHTKGV/_old  2015-04-13 20:27:43.0 +0200
+++ /var/tmp/diff_new_pack.GHTKGV/_new  2015-04-13 20:27:43.0 +0200
@@ -17,12 +17,12 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kitemmodels
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -65,7 +65,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ kitemmodels-5.8.0.tar.xz - kitemmodels-5.9.0.tar.xz ++
 4471 lines of diff (skipped)




commit kitemmodels for openSUSE:Factory

2015-03-16 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-03-16 09:34:41

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-02-16 
17:31:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-03-16 09:34:42.0 +0100
@@ -1,0 +2,7 @@
+Sat Mar  7 16:58:59 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.8.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.8.0.php
+
+---

Old:

  kitemmodels-5.7.0.tar.xz

New:

  kitemmodels-5.8.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.dkEKII/_old  2015-03-16 09:34:43.0 +0100
+++ /var/tmp/diff_new_pack.dkEKII/_new  2015-03-16 09:34:43.0 +0100
@@ -17,12 +17,12 @@
 
 
 %define lname   libKF5ItemModels5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:   kitemmodels
 Version:%{_tar_path}.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.7.0
+BuildRequires:  extra-cmake-modules = 1.8.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ kitemmodels-5.7.0.tar.xz - kitemmodels-5.8.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.7.0/CMakeLists.txt 
new/kitemmodels-5.8.0/CMakeLists.txt
--- old/kitemmodels-5.7.0/CMakeLists.txt2015-01-23 21:40:52.0 
+0100
+++ new/kitemmodels-5.8.0/CMakeLists.txt2015-02-25 15:20:38.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.7.0 REQUIRED NO_MODULE)
+find_package(ECM 1.8.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.7.0) # handled by release scripts
+set(KF5_VERSION 5.8.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-5.7.0/autotests/kdescendantsproxymodeltest.cpp 
new/kitemmodels-5.8.0/autotests/kdescendantsproxymodeltest.cpp
--- old/kitemmodels-5.7.0/autotests/kdescendantsproxymodeltest.cpp  
2015-01-23 21:40:52.0 +0100
+++ new/kitemmodels-5.8.0/autotests/kdescendantsproxymodeltest.cpp  
2015-02-25 15:20:38.0 +0100
@@ -36,7 +36,7 @@
 }
 
 public Q_SLOTS:
-void testInsertWhenEmptyData()
+void testInsertWhenEmptyData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ -63,7 +63,7 @@
 // QTest::newRow(insert03)  signalList  persistentList;
 }
 
-void testInsertInRootData()
+void testInsertInRootData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ -90,7 +90,7 @@
 skipTestData(insert18);
 }
 
-void testInsertInTopLevelData()
+void testInsertInTopLevelData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ -117,7 +117,7 @@
 skipTestData(insert18);
 }
 
-void testInsertInSecondLevelData()
+void testInsertInSecondLevelData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ -144,7 +144,7 @@
 skipTestData(insert18);
 }
 
-void testRemoveFromRootData()
+void testRemoveFromRootData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ -156,7 +156,7 @@
 newRemoveTest(remove03, indexFinder, 42, 42, 43);
 }
 
-void testRemoveFromTopLevelData()
+void testRemoveFromTopLevelData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ -168,7 +168,7 @@
 newRemoveTest(remove03, indexFinder, 36, 36, 43);
 }
 
-void testRemoveFromSecondLevelData()
+void testRemoveFromSecondLevelData() Q_DECL_OVERRIDE
 {
 QTest::addColumnSignalList(signalList);
 QTest::addColumnPersistentChangeList(changeList);
@@ 

commit kitemmodels for openSUSE:Factory

2015-02-16 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-02-16 15:07:04

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2015-01-29 
12:53:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-02-16 17:31:40.0 +0100
@@ -1,0 +2,10 @@
+Sun Feb  8 18:15:36 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * Fixed KRecursiveFilterProxyModel for Qt 5.5.0+, due to
+QSortFilterProxyModel now using the roles parameter to the
+dataChanged signal
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.7.0.php
+
+---

Old:

  kitemmodels-5.6.0.tar.xz

New:

  kitemmodels-5.7.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Hecsae/_old  2015-02-16 17:31:41.0 +0100
+++ /var/tmp/diff_new_pack.Hecsae/_new  2015-02-16 17:31:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,11 +17,12 @@
 
 
 %define lname   libKF5ItemModels5
+%define _tar_path 5.7
 Name:   kitemmodels
-Version:5.6.0
+Version:%{_tar_path}.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.6.0
+BuildRequires:  extra-cmake-modules = 1.7.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -29,7 +30,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.6/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kitemmodels-5.6.0.tar.xz - kitemmodels-5.7.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.6.0/CMakeLists.txt 
new/kitemmodels-5.7.0/CMakeLists.txt
--- old/kitemmodels-5.6.0/CMakeLists.txt2014-12-31 15:23:58.0 
+0100
+++ new/kitemmodels-5.7.0/CMakeLists.txt2015-01-23 21:40:52.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.6.0 REQUIRED NO_MODULE)
+find_package(ECM 1.7.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.6.0) # handled by release scripts
+set(KF5_VERSION 5.7.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
@@ -34,7 +34,7 @@
 
 
 # create a Config.cmake and a ConfigVersion.cmake file and install them
-set(CMAKECONFIG_INSTALL_DIR ${CMAKECONFIG_INSTALL_PREFIX}/KF5ItemModels)
+set(CMAKECONFIG_INSTALL_DIR ${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5ItemModels)
 
 include(ECMPackageConfigHelpers)
 
@@ -55,7 +55,7 @@
 
 install(FILES
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
-  DESTINATION ${KF5_INCLUDE_INSTALL_DIR} COMPONENT Devel
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel
 )
 
 feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.6.0/src/CMakeLists.txt 
new/kitemmodels-5.7.0/src/CMakeLists.txt
--- old/kitemmodels-5.6.0/src/CMakeLists.txt2014-12-31 15:23:58.0 
+0100
+++ new/kitemmodels-5.7.0/src/CMakeLists.txt2015-01-23 21:40:52.0 
+0100
@@ -13,7 +13,7 @@
 generate_export_header(KF5ItemModels BASE_NAME KItemModels)
 add_library(KF5::ItemModels ALIAS KF5ItemModels)
 
-target_include_directories(KF5ItemModels INTERFACE 
$INSTALL_INTERFACE:${KF5_INCLUDE_INSTALL_DIR}/KItemModels)
+target_include_directories(KF5ItemModels INTERFACE 
$INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KItemModels)
 
 target_link_libraries(KF5ItemModels PUBLIC Qt5::Core)
 
@@ -40,9 +40,9 @@
 install(FILES
   ${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_export.h
   ${KItemModels_HEADERS}
-  DESTINATION ${KF5_INCLUDE_INSTALL_DIR}/KItemModels COMPONENT Devel

commit kitemmodels for openSUSE:Factory

2015-01-29 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2015-01-29 12:53:31

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-12-21 
11:59:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2015-01-29 12:53:33.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  3 18:03:32 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.6.0.php
+
+---

Old:

  kitemmodels-5.5.0.tar.xz

New:

  kitemmodels-5.6.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.Vo5aL9/_old  2015-01-29 12:53:34.0 +0100
+++ /var/tmp/diff_new_pack.Vo5aL9/_new  2015-01-29 12:53:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kitemmodels
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:5.5.0
+Version:5.6.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.5.0
+BuildRequires:  extra-cmake-modules = 1.6.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -29,7 +29,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.5/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.6/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kitemmodels-5.5.0.tar.xz - kitemmodels-5.6.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.5.0/CMakeLists.txt 
new/kitemmodels-5.6.0/CMakeLists.txt
--- old/kitemmodels-5.5.0/CMakeLists.txt2014-12-02 17:47:34.0 
+0100
+++ new/kitemmodels-5.6.0/CMakeLists.txt2014-12-31 15:23:58.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.5.0 REQUIRED NO_MODULE)
+find_package(ECM 1.6.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.5.0) # handled by release scripts
+set(KF5_VERSION 5.6.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-12-21 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-12-21 11:59:09

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-11-11 
01:10:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-12-21 11:59:03.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec  6 12:53:52 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.5.0.php
+
+---

Old:

  kitemmodels-5.4.0.tar.xz

New:

  kitemmodels-5.5.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.L4CVtW/_old  2014-12-21 11:59:04.0 +0100
+++ /var/tmp/diff_new_pack.L4CVtW/_new  2014-12-21 11:59:04.0 +0100
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:5.4.0
+Version:5.5.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.4.0
+BuildRequires:  extra-cmake-modules = 1.5.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -29,7 +29,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.4/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.5/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kitemmodels-5.4.0.tar.xz - kitemmodels-5.5.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.4.0/CMakeLists.txt 
new/kitemmodels-5.5.0/CMakeLists.txt
--- old/kitemmodels-5.4.0/CMakeLists.txt2014-10-31 21:18:06.0 
+0100
+++ new/kitemmodels-5.5.0/CMakeLists.txt2014-12-02 17:47:34.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.4.0 REQUIRED NO_MODULE)
+find_package(ECM 1.5.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.4.0) # handled by release scripts
+set(KF5_VERSION 5.5.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-11-10 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-11-11 01:10:06

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-10-07 
16:00:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-11-11 01:10:21.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  2 17:47:49 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.4.0.php
+
+---

Old:

  kitemmodels-5.3.0.tar.xz

New:

  kitemmodels-5.4.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.IVdNUZ/_old  2014-11-11 01:10:23.0 +0100
+++ /var/tmp/diff_new_pack.IVdNUZ/_new  2014-11-11 01:10:23.0 +0100
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:5.3.0
+Version:5.4.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.3.0
+BuildRequires:  extra-cmake-modules = 1.4.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -29,7 +29,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.4/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kitemmodels-5.3.0.tar.xz - kitemmodels-5.4.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.3.0/CMakeLists.txt 
new/kitemmodels-5.4.0/CMakeLists.txt
--- old/kitemmodels-5.3.0/CMakeLists.txt2014-10-03 19:55:55.0 
+0200
+++ new/kitemmodels-5.4.0/CMakeLists.txt2014-10-31 21:18:06.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.3.0 REQUIRED NO_MODULE)
+find_package(ECM 1.4.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.3.0) # handled by release scripts
+set(KF5_VERSION 5.4.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-10-07 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-10-07 16:00:01

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-09-12 
17:05:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-10-07 16:00:40.0 +0200
@@ -1,0 +2,7 @@
+Sat Oct  4 18:00:01 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.3.0.php
+
+---

Old:

  kitemmodels-5.2.0.tar.xz

New:

  kitemmodels-5.3.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.bN7sVI/_old  2014-10-07 16:00:41.0 +0200
+++ /var/tmp/diff_new_pack.bN7sVI/_new  2014-10-07 16:00:41.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:5.2.0
+Version:5.3.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.2.0
+BuildRequires:  extra-cmake-modules = 1.3.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ kitemmodels-5.2.0.tar.xz - kitemmodels-5.3.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.2.0/CMakeLists.txt 
new/kitemmodels-5.3.0/CMakeLists.txt
--- old/kitemmodels-5.2.0/CMakeLists.txt2014-09-08 01:26:00.0 
+0200
+++ new/kitemmodels-5.3.0/CMakeLists.txt2014-10-03 19:55:55.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.2.0 REQUIRED NO_MODULE)
+find_package(ECM 1.3.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.2.0) # handled by release scripts
+set(KF5_VERSION 5.3.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-09-12 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-09-12 17:03:48

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-08-16 
15:43:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-09-12 17:05:16.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  9 09:49:39 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.2.0
+  * For more details please see:
+http://kde.org/announcements/kde-frameworks-5.2.php
+
+---

Old:

  kitemmodels-5.1.0.tar.xz

New:

  kitemmodels-5.2.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.spqgpV/_old  2014-09-12 17:05:18.0 +0200
+++ /var/tmp/diff_new_pack.spqgpV/_new  2014-09-12 17:05:18.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:5.1.0
+Version:5.2.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.1.0
+BuildRequires:  extra-cmake-modules = 1.2.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ kitemmodels-5.1.0.tar.xz - kitemmodels-5.2.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.1.0/CMakeLists.txt 
new/kitemmodels-5.2.0/CMakeLists.txt
--- old/kitemmodels-5.1.0/CMakeLists.txt2014-08-02 10:19:39.0 
+0200
+++ new/kitemmodels-5.2.0/CMakeLists.txt2014-09-08 01:26:00.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.1.0 REQUIRED NO_MODULE)
+find_package(ECM 1.2.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.1.0) # handled by release scripts
+set(KF5_VERSION 5.2.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.1.0/README.md 
new/kitemmodels-5.2.0/README.md
--- old/kitemmodels-5.1.0/README.md 2014-08-02 10:19:39.0 +0200
+++ new/kitemmodels-5.2.0/README.md 2014-09-08 01:26:00.0 +0200
@@ -18,9 +18,3 @@
 * KSelectionProxyModel - A Proxy Model which presents a subset of its source
   model to observers
 
-## Links
-
-- Home page: https://projects.kde.org/projects/frameworks/kitemmodels
-- Mailing list: https://mail.kde.org/mailman/listinfo/kde-frameworks-devel
-- IRC channel: #kde-devel on Freenode
-- Git repository: 
https://projects.kde.org/projects/frameworks/kitemmodels/repository
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.1.0/metainfo.yaml 
new/kitemmodels-5.2.0/metainfo.yaml
--- old/kitemmodels-5.1.0/metainfo.yaml 2014-08-02 10:19:39.0 +0200
+++ new/kitemmodels-5.2.0/metainfo.yaml 2014-09-08 01:26:00.0 +0200
@@ -7,3 +7,7 @@
 portingAid: false
 deprecated: false
 release: true
+libraries:
+ - qmake: KItemModels
+   cmake: KF5::ItemModels
+cmakename: KF5ItemModels

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-08-16 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-08-16 15:42:15

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-07-10 
09:31:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-08-16 15:43:02.0 +0200
@@ -1,0 +2,8 @@
+Sat Aug  2 10:20:22 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.1.0
+  * For more details please see:
+http://www.kde.org/announcements/kde-frameworks-5.1.php
+- Harden required Qt5 libs versions
+
+---

Old:

  kitemmodels-5.0.0.tar.xz

New:

  kitemmodels-5.1.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.L519bM/_old  2014-08-16 15:43:02.0 +0200
+++ /var/tmp/diff_new_pack.L519bM/_new  2014-08-16 15:43:02.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:5.0.0
+Version:5.1.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.0.0
+BuildRequires:  extra-cmake-modules = 1.1.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -39,6 +39,7 @@
 %package -n %lname
 Summary:Set of item models extending the Qt model-view framework
 Group:  System/GUI/KDE
+%requires_ge libQt5Core5
 
 %description -n %lname
 KItemModels provides a set of item models extending the Qt model-view 
framework.
@@ -78,9 +79,7 @@
 %defattr(-,root,root)
 %{_kf5_libdir}/libKF5ItemModels.so
 %{_kf5_libdir}/cmake/KF5ItemModels/
-%{_kf5_includedir}/*.h
-%dir %{_kf5_includedir}/*/
-%{_kf5_includedir}/*/
+%{_kf5_includedir}/
 %{_kf5_mkspecsdir}/qt_KItemModels.pri
 
 %changelog

++ kitemmodels-5.0.0.tar.xz - kitemmodels-5.1.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-5.0.0/CMakeLists.txt 
new/kitemmodels-5.1.0/CMakeLists.txt
--- old/kitemmodels-5.0.0/CMakeLists.txt2014-07-01 20:16:47.0 
+0200
+++ new/kitemmodels-5.1.0/CMakeLists.txt2014-08-02 10:19:39.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 1.0.0 REQUIRED NO_MODULE)
+find_package(ECM 1.1.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.0.0) # handled by release scripts
+set(KF5_VERSION 5.1.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-07-10 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-07-10 08:18:13

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-06-10 
14:37:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-07-10 09:31:44.0 +0200
@@ -1,0 +2,10 @@
+Tue Jul  1 21:36:10 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.0.0
+  * Final release of KDE Frameworks 5
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/kde-frameworks-5.0.php
+
+---

Old:

  kitemmodels-4.100.0.tar.xz

New:

  kitemmodels-5.0.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.nZdsQV/_old  2014-07-10 09:31:44.0 +0200
+++ /var/tmp/diff_new_pack.nZdsQV/_new  2014-07-10 09:31:44.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:4.100.0
+Version:5.0.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 0.0.14
+BuildRequires:  extra-cmake-modules = 1.0.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -29,7 +29,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{version}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kitemmodels-4.100.0.tar.xz - kitemmodels-5.0.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.100.0/CMakeLists.txt 
new/kitemmodels-5.0.0/CMakeLists.txt
--- old/kitemmodels-4.100.0/CMakeLists.txt  2014-06-01 12:41:00.0 
+0200
+++ new/kitemmodels-5.0.0/CMakeLists.txt2014-07-01 20:16:47.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 0.0.14 REQUIRED NO_MODULE)
+find_package(ECM 1.0.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.100.0) # handled by release scripts
+set(KF5_VERSION 5.0.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.100.0/autotests/CMakeLists.txt 
new/kitemmodels-5.0.0/autotests/CMakeLists.txt
--- old/kitemmodels-4.100.0/autotests/CMakeLists.txt2014-06-01 
12:41:00.0 +0200
+++ new/kitemmodels-5.0.0/autotests/CMakeLists.txt  2014-07-01 
20:16:47.0 +0200
@@ -18,13 +18,12 @@
   kdescendantsproxymodeltest.cpp
   klinkitemselectionmodeltest.cpp
   testmodelqueuedconnections.cpp
-  NAME_PREFIX kitemmodels-
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 )
 
 #we need additional sources for this test, can't use it in ecm_add_tests
 ecm_add_test(kselectionproxymodeltest.cpp ${proxyModelTestSources}
-  TEST_NAME kitemmodels-kselectionproxymodeltest
+  TEST_NAME kselectionproxymodeltest
   LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 )
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-06-10 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-06-10 14:36:54

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-05-14 
20:27:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-06-10 14:37:23.0 +0200
@@ -1,0 +2,10 @@
+Sun Jun  1 18:02:42 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.100.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-beta3.php
+- Add baselibs.conf
+
+---

Old:

  kitemmodels-4.99.0.tar.xz

New:

  baselibs.conf
  kitemmodels-4.100.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.4GpecY/_old  2014-06-10 14:37:24.0 +0200
+++ /var/tmp/diff_new_pack.4GpecY/_new  2014-06-10 14:37:24.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:4.99.0
+Version:4.100.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 0.0.13
+BuildRequires:  extra-cmake-modules = 0.0.14
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -29,7 +29,8 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:kitemmodels-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ baselibs.conf ++
libKF5ItemModels5
kitemmodels-devel
requires libKF5ItemModels5-targettype = version
++ kitemmodels-4.99.0.tar.xz - kitemmodels-4.100.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.99.0/CMakeLists.txt 
new/kitemmodels-4.100.0/CMakeLists.txt
--- old/kitemmodels-4.99.0/CMakeLists.txt   2014-05-04 20:59:51.0 
+0200
+++ new/kitemmodels-4.100.0/CMakeLists.txt  2014-06-01 12:41:00.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 0.0.13 REQUIRED NO_MODULE)
+find_package(ECM 0.0.14 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.99.0) # handled by release scripts
+set(KF5_VERSION 4.100.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.99.0/autotests/CMakeLists.txt 
new/kitemmodels-4.100.0/autotests/CMakeLists.txt
--- old/kitemmodels-4.99.0/autotests/CMakeLists.txt 2014-05-04 
20:59:51.0 +0200
+++ new/kitemmodels-4.100.0/autotests/CMakeLists.txt2014-06-01 
12:41:00.0 +0200
@@ -12,23 +12,20 @@
 
 add_subdirectory(proxymodeltestsuite)
 
-include(ECMMarkAsTest)
-
-macro(kitemmodels_proxymodel_tests)
-foreach(_testname ${ARGN})
-add_executable(${_testname} ${_testname}.cpp ${proxyModelTestSources} )
-add_test(kitemmodels-${_testname} ${_testname})
-ecm_mark_as_test(${_testname})
-target_link_libraries(${_testname} KF5::ItemModels Qt5::Test 
Qt5::Widgets proxymodeltestsuite )
-endforeach(_testname)
-endmacro()
+include(ECMAddTests)
 
+ecm_add_tests(
+  kdescendantsproxymodeltest.cpp
+  klinkitemselectionmodeltest.cpp
+  testmodelqueuedconnections.cpp
+  NAME_PREFIX kitemmodels-
+  LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
+)
 
-kitemmodels_proxymodel_tests(
-  kdescendantsproxymodeltest
-  klinkitemselectionmodeltest
-  kselectionproxymodeltest
-  testmodelqueuedconnections
+#we need additional sources for this test, can't use it in ecm_add_tests
+ecm_add_test(kselectionproxymodeltest.cpp ${proxyModelTestSources}
+  TEST_NAME kitemmodels-kselectionproxymodeltest
+  LINK_LIBRARIES KF5::ItemModels Qt5::Test Qt5::Widgets proxymodeltestsuite
 )
 
 if (Qt5Script_FOUND)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kitemmodels for openSUSE:Factory

2014-05-14 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-05-14 20:26:56

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-04-02 
17:22:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-05-14 20:27:29.0 +0200
@@ -1,0 +2,9 @@
+Sun May  4 01:41:15 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.99.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-beta2.php
+
+---

Old:

  kitemmodels-4.98.0.tar.xz

New:

  kitemmodels-4.99.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.6oDwLu/_old  2014-05-14 20:27:30.0 +0200
+++ /var/tmp/diff_new_pack.6oDwLu/_new  2014-05-14 20:27:30.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:4.98.0
+Version:4.99.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 0.0.12
+BuildRequires:  extra-cmake-modules = 0.0.13
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ kitemmodels-4.98.0.tar.xz - kitemmodels-4.99.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.98.0/CMakeLists.txt 
new/kitemmodels-4.99.0/CMakeLists.txt
--- old/kitemmodels-4.98.0/CMakeLists.txt   2014-03-28 19:35:13.0 
+0100
+++ new/kitemmodels-4.99.0/CMakeLists.txt   2014-05-04 20:59:51.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 0.0.12 REQUIRED NO_MODULE)
+find_package(ECM 0.0.13 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.98.0)
+set(KF5_VERSION 4.99.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
@@ -55,9 +55,7 @@
 
 install(FILES
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
-  DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel
+  DESTINATION ${KF5_INCLUDE_INSTALL_DIR} COMPONENT Devel
 )
 
-if (${CMAKE_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR})
-  feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
-endif()
+feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.98.0/autotests/CMakeLists.txt 
new/kitemmodels-4.99.0/autotests/CMakeLists.txt
--- old/kitemmodels-4.98.0/autotests/CMakeLists.txt 2014-03-28 
19:35:13.0 +0100
+++ new/kitemmodels-4.99.0/autotests/CMakeLists.txt 2014-05-04 
20:59:51.0 +0200
@@ -27,11 +27,7 @@
 kitemmodels_proxymodel_tests(
   kdescendantsproxymodeltest
   klinkitemselectionmodeltest
-  # TODO fix this test - or the code that it tests!
-  # FAIL!  : SelectionProxyModelTest::testMoveFromRoot(move01) 
'signalList.isEmpty()' returned FALSE. ()
-  #  Loc: 
[/srv/jenkins/workspace/kitemmodels_master_qt5/autotests/proxymodeltestsuite/proxymodeltest.cpp(569)]
-  #  QFATAL : SelectionProxyModelTest::testMoveFromRoot(move02) ASSERT: 
m_unchangedIndexes.isEmpty() in file proxymodeltestsuite/modelspy.cpp, line 
253
-  #kselectionproxymodeltest
+  kselectionproxymodeltest
   testmodelqueuedconnections
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-4.98.0/autotests/proxymodeltestsuite/modeltest.cpp 
new/kitemmodels-4.99.0/autotests/proxymodeltestsuite/modeltest.cpp
--- old/kitemmodels-4.98.0/autotests/proxymodeltestsuite/modeltest.cpp  
2014-03-28 19:35:13.0 +0100
+++ new/kitemmodels-4.99.0/autotests/proxymodeltestsuite/modeltest.cpp  
2014-05-04 20:59:51.0 +0200
@@ -1,6 +1,7 @@
 /
 **
 ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2010 Stephen Kelly steve...@gmail.com
 ** Contact: http://www.qt-project.org/legal
 **
 ** This file is part of the test suite of the Qt Toolkit.
@@ -23,7 +24,30 @@
 /*!
 Connect to all of the models signals.  Whenever anything happens recheck 
everything.
 */
-ModelTest::ModelTest ( QAbstractItemModel *_model, QObject 

commit kitemmodels for openSUSE:Factory

2014-04-02 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-04-02 17:22:10

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-03-10 
12:17:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-04-02 17:22:22.0 +0200
@@ -1,0 +2,9 @@
+Sat Mar 29 19:47:43 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.98.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-beta1.php
+
+---

Old:

  kitemmodels-4.97.0.tar.xz

New:

  kitemmodels-4.98.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.IsrBoR/_old  2014-04-02 17:22:22.0 +0200
+++ /var/tmp/diff_new_pack.IsrBoR/_new  2014-04-02 17:22:22.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:4.97.0
+Version:4.98.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 0.0.11
+BuildRequires:  extra-cmake-modules = 0.0.12
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ kitemmodels-4.97.0.tar.xz - kitemmodels-4.98.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.97.0/CMakeLists.txt 
new/kitemmodels-4.98.0/CMakeLists.txt
--- old/kitemmodels-4.97.0/CMakeLists.txt   2014-03-01 12:51:06.0 
+0100
+++ new/kitemmodels-4.98.0/CMakeLists.txt   2014-03-28 19:35:13.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 0.0.11 REQUIRED NO_MODULE)
+find_package(ECM 0.0.12 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.97.0)
+set(KF5_VERSION 4.98.0)
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
@@ -28,8 +28,9 @@
 
 
 add_subdirectory(src)
-# TODO re-enable, after grantlee is ported to Qt5
-#add_subdirectory(autotests)
+if (BUILD_TESTING)
+add_subdirectory(autotests)
+endif()
 
 
 # create a Config.cmake and a ConfigVersion.cmake file and install them
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.97.0/autotests/CMakeLists.txt 
new/kitemmodels-4.98.0/autotests/CMakeLists.txt
--- old/kitemmodels-4.97.0/autotests/CMakeLists.txt 2014-03-01 
12:51:06.0 +0100
+++ new/kitemmodels-4.98.0/autotests/CMakeLists.txt 2014-03-28 
19:35:13.0 +0100
@@ -27,7 +27,11 @@
 kitemmodels_proxymodel_tests(
   kdescendantsproxymodeltest
   klinkitemselectionmodeltest
-  kselectionproxymodeltest
+  # TODO fix this test - or the code that it tests!
+  # FAIL!  : SelectionProxyModelTest::testMoveFromRoot(move01) 
'signalList.isEmpty()' returned FALSE. ()
+  #  Loc: 
[/srv/jenkins/workspace/kitemmodels_master_qt5/autotests/proxymodeltestsuite/proxymodeltest.cpp(569)]
+  #  QFATAL : SelectionProxyModelTest::testMoveFromRoot(move02) ASSERT: 
m_unchangedIndexes.isEmpty() in file proxymodeltestsuite/modelspy.cpp, line 
253
+  #kselectionproxymodeltest
   testmodelqueuedconnections
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.97.0/autotests/bihash/CMakeLists.txt 
new/kitemmodels-4.98.0/autotests/bihash/CMakeLists.txt
--- old/kitemmodels-4.97.0/autotests/bihash/CMakeLists.txt  2014-03-01 
12:51:06.0 +0100
+++ new/kitemmodels-4.98.0/autotests/bihash/CMakeLists.txt  2014-03-28 
19:35:13.0 +0100
@@ -2,10 +2,6 @@
 
 cmake_minimum_required(VERSION 2.8.12)
 
-find_package(Qt4)
-
-include(${QT_USE_FILE})
-
 set(functionalitytest_srcs
   functionalitytest.cpp
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-4.97.0/autotests/klinkitemselectionmodeltest.cpp 
new/kitemmodels-4.98.0/autotests/klinkitemselectionmodeltest.cpp
--- old/kitemmodels-4.97.0/autotests/klinkitemselectionmodeltest.cpp
2014-03-01 12:51:06.0 +0100
+++ new/kitemmodels-4.98.0/autotests/klinkitemselectionmodeltest.cpp
2014-03-28 19:35:13.0 +0100
@@ -20,14 +20,13 @@
 #include klinkitemselectionmodeltest.h
 
 #include klinkitemselectionmodel.h
-#include 

commit kitemmodels for openSUSE:Factory

2014-03-10 Thread h_root
Hello community,

here is the log from the commit of package kitemmodels for openSUSE:Factory 
checked in at 2014-03-10 12:17:18

Comparing /work/SRC/openSUSE:Factory/kitemmodels (Old)
 and  /work/SRC/openSUSE:Factory/.kitemmodels.new (New)


Package is kitemmodels

Changes:

--- /work/SRC/openSUSE:Factory/kitemmodels/kitemmodels.changes  2014-02-28 
16:21:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemmodels.new/kitemmodels.changes 
2014-03-10 12:17:19.0 +0100
@@ -1,0 +2,8 @@
+Tue Mar  4 16:35:50 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 4.97.0:
+  * Buildsystem fixes
+  * For more details please see:
+http://www.kde.org/announcements/announce-frameworks5-alpha2.php
+
+---

Old:

  kitemmodels-4.96.0.tar.xz

New:

  kitemmodels-4.97.0.tar.xz



Other differences:
--
++ kitemmodels.spec ++
--- /var/tmp/diff_new_pack.i641Qw/_old  2014-03-10 12:17:20.0 +0100
+++ /var/tmp/diff_new_pack.i641Qw/_new  2014-03-10 12:17:20.0 +0100
@@ -16,12 +16,12 @@
 #
 
 
-%define lname   libKF5ItemModels4
+%define lname   libKF5ItemModels5
 Name:   kitemmodels
-Version:4.96.0
+Version:4.97.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 0.0.10
+BuildRequires:  extra-cmake-modules = 0.0.11
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0

++ kitemmodels-4.96.0.tar.xz - kitemmodels-4.97.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.96.0/CMakeLists.txt 
new/kitemmodels-4.97.0/CMakeLists.txt
--- old/kitemmodels-4.96.0/CMakeLists.txt   2014-02-05 00:02:37.0 
+0100
+++ new/kitemmodels-4.97.0/CMakeLists.txt   2014-03-01 12:51:06.0 
+0100
@@ -2,7 +2,7 @@
 
 project(KItemModels)
 
-find_package(ECM 0.0.10 REQUIRED NO_MODULE)
+find_package(ECM 0.0.11 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,11 +19,12 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 4.96.0)
+set(KF5_VERSION 4.97.0)
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMMODELS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemmodels_version.h
-PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake)
+PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfigVersion.cmake
+SOVERSION 5)
 
 
 add_subdirectory(src)
@@ -34,9 +35,9 @@
 # create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR ${CMAKECONFIG_INSTALL_PREFIX}/KF5ItemModels)
 
-include(CMakePackageConfigHelpers)
+include(ECMPackageConfigHelpers)
 
-configure_package_config_file(
+ecm_configure_package_config_file(
   ${CMAKE_CURRENT_SOURCE_DIR}/KF5ItemModelsConfig.cmake.in
   ${CMAKE_CURRENT_BINARY_DIR}/KF5ItemModelsConfig.cmake
   INSTALL_DESTINATION  ${CMAKECONFIG_INSTALL_DIR}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-4.96.0/autotests/proxymodeltestsuite/modeltest.cpp 
new/kitemmodels-4.97.0/autotests/proxymodeltestsuite/modeltest.cpp
--- old/kitemmodels-4.96.0/autotests/proxymodeltestsuite/modeltest.cpp  
2014-02-05 00:02:37.0 +0100
+++ new/kitemmodels-4.97.0/autotests/proxymodeltestsuite/modeltest.cpp  
2014-03-01 12:51:06.0 +0100
@@ -1,6 +1,7 @@
 /
 **
 ** Copyright (C) 2007 Trolltech ASA. All rights reserved.
+** Copyright (C) 2010 Stephen Kelly steve...@gmail.com
 **
 ** This file is part of the Qt Concurrent project on Trolltech Labs.
 **
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitemmodels-4.96.0/autotests/proxymodeltestsuite/modeltest.h 
new/kitemmodels-4.97.0/autotests/proxymodeltestsuite/modeltest.h
--- old/kitemmodels-4.96.0/autotests/proxymodeltestsuite/modeltest.h
2014-02-05 00:02:37.0 +0100
+++ new/kitemmodels-4.97.0/autotests/proxymodeltestsuite/modeltest.h
2014-03-01 12:51:06.0 +0100
@@ -1,6 +1,7 @@
 /
 **
 ** Copyright (C) 2007 Trolltech ASA. All rights reserved.
+** Copyright (C) 2010 Stephen Kelly steve...@gmail.com
 **
 ** This file is part of the Qt Concurrent project on Trolltech Labs.
 **
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemmodels-4.96.0/src/CMakeLists.txt