commit kdelibs4support for openSUSE:Factory

2020-10-12 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-10-12 13:54:25

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


Package is "kdelibs4support"

Mon Oct 12 13:54:25 2020 rev:84 rq:840811 version:5.75.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-09-18 14:39:54.447922393 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.3486/kdelibs4support.changes
2020-10-12 13:55:50.562129297 +0200
@@ -1,0 +2,12 @@
+Mon Oct  5 08:33:05 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:
+  * FreeBSD: skip the last test that fails when /home contains a symlink.
+  * KStandardDirs: fix unit test
+  * KStandardDirs: always resolve symlinks for config files
+
+---

Old:

  kdelibs4support-5.74.0.tar.xz
  kdelibs4support-5.74.0.tar.xz.sig

New:

  kdelibs4support-5.75.0.tar.xz
  kdelibs4support-5.75.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.O9SfWG/_old  2020-10-12 13:55:51.146129535 +0200
+++ /var/tmp/diff_new_pack.O9SfWG/_new  2020-10-12 13:55:51.146129535 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.74.0
+Version:5.75.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.74.0.tar.xz -> kdelibs4support-5.75.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.74.0/CMakeLists.txt 
new/kdelibs4support-5.75.0/CMakeLists.txt
--- old/kdelibs4support-5.74.0/CMakeLists.txt   2020-09-06 12:20:51.0 
+0200
+++ new/kdelibs4support-5.75.0/CMakeLists.txt   2020-10-04 20:42:38.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.74.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.74.0") # handled by release scripts
+set(KF5_VERSION "5.75.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.75.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.74.0/autotests/kstandarddirstest.cpp 
new/kdelibs4support-5.75.0/autotests/kstandarddirstest.cpp
--- old/kdelibs4support-5.74.0/autotests/kstandarddirstest.cpp  2020-09-06 
12:20:51.0 +0200
+++ new/kdelibs4support-5.75.0/autotests/kstandarddirstest.cpp  2020-10-04 
20:42:38.0 +0200
@@ -62,10 +62,15 @@
 }
 }
 
-m_configHome = QDir::homePath() + 
QLatin1String("/.kde-unit-test/xdg/config");
+// canonicalPath() to resolve symlinks (e.g. on FreeBSD where /home is a 
symlink to /usr/home),
+// this matches what KGlobal::dirs()->realPath() would do, but we can't 
use it before setting
+// the env vars, it would mess up the unit test
+const QString homePath = QDir::home().canonicalPath();
+m_configHome = homePath + QLatin1String("/.kde-unit-test/xdg/config");
+
 qputenv("XDG_CONFIG_HOME", QFile::encodeName(m_configHome));
 
-m_dataHome = QDir::homePath() + QLatin1String("/.kde-unit-test/xdg/local");
+m_dataHome = homePath + QLatin1String("/.kde-unit-test/xdg/local");
 qputenv("XDG_DATA_HOME", QFile::encodeName(m_dataHome));
 
 const QString configDirs = QDir::currentPath() + "/xdg";
@@ -455,7 +460,9 @@
 // When setting XDG_DATA_DIRS this should still be true
 const QString localApps = m_dataHome + "/applications/";
 QVERIFY(KStandardDirs::makeDir(localApps));
-const QString customDataDir = QDir::homePath() + 
QLatin1String("/.kde-unit-test/xdg/global");
+
+// canonicalPath: see the comment in initTestCase
+

commit kdelibs4support for openSUSE:Factory

2020-09-18 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Fri Sep 18 14:39:04 2020 rev:83 rq:834396 version:5.74.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-08-12 12:27:30.272150792 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.4249/kdelibs4support.changes
2020-09-18 14:39:54.447922393 +0200
@@ -1,0 +2,9 @@
+Sun Sep  6 12:49:07 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
+- No code change since 5.73.0
+
+---

Old:

  kdelibs4support-5.73.0.tar.xz
  kdelibs4support-5.73.0.tar.xz.sig

New:

  kdelibs4support-5.74.0.tar.xz
  kdelibs4support-5.74.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.37RKxg/_old  2020-09-18 14:39:55.359923208 +0200
+++ /var/tmp/diff_new_pack.37RKxg/_new  2020-09-18 14:39:55.363923212 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.73.0
+Version:5.74.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.73.0.tar.xz -> kdelibs4support-5.74.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.73.0/CMakeLists.txt 
new/kdelibs4support-5.74.0/CMakeLists.txt
--- old/kdelibs4support-5.73.0/CMakeLists.txt   2020-08-01 21:44:17.0 
+0200
+++ new/kdelibs4support-5.74.0/CMakeLists.txt   2020-09-06 12:20:51.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.73.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.73.0") # handled by release scripts
+set(KF5_VERSION "5.74.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.74.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.73.0/po/az/kdelibs4support.po 
new/kdelibs4support-5.74.0/po/az/kdelibs4support.po
--- old/kdelibs4support-5.73.0/po/az/kdelibs4support.po 2020-08-01 
21:44:17.0 +0200
+++ new/kdelibs4support-5.74.0/po/az/kdelibs4support.po 2020-09-06 
12:20:51.0 +0200
@@ -7,15 +7,15 @@
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-12-03 02:53+0100\n"
-"PO-Revision-Date: 2020-07-24 09:41+0400\n"
-"Last-Translator: Xəyyam Qocayev \n"
+"PO-Revision-Date: 2020-08-18 16:53+0400\n"
+"Last-Translator: Kheyyam Gojayev \n"
 "Language-Team: Azerbaijani \n"
 "Language: az\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -12417,7 +12417,7 @@
 #, kde-format
 msgctxt "@action:button"
 msgid "Configure..."
-msgstr "Ayarlama..."
+msgstr "Tənzimləmə..."
 
 #: kio/kmetaprops.cpp:133
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.73.0/po/tg/kdelibs4support.po 
new/kdelibs4support-5.74.0/po/tg/kdelibs4support.po
--- old/kdelibs4support-5.73.0/po/tg/kdelibs4support.po 2020-08-01 
21:44:17.0 +0200
+++ new/kdelibs4support-5.74.0/po/tg/kdelibs4support.po 2020-09-06 
12:20:51.0 +0200
@@ -1,18 +1,18 @@
 # translation of kdelibs4support.po to Tajik Language
-# Victor Ibragimov , 2003, 2004, 2005, 2006, 2007, 
2008, 2019.
+# Victor Ibragimov , 2003, 2004, 2005, 2006, 2007, 
2008, 2019, 2020.
 msgid ""

commit kdelibs4support for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-08-12 12:23:43

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


Package is "kdelibs4support"

Wed Aug 12 12:23:43 2020 rev:82 rq:825069 version:5.73.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-07-14 07:53:17.792625333 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.3399/kdelibs4support.changes
2020-08-12 12:27:30.272150792 +0200
@@ -1,0 +2,9 @@
+Sun Aug  2 07:13:17 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
+- No code change since 5.72.0
+
+---

Old:

  kdelibs4support-5.72.0.tar.xz
  kdelibs4support-5.72.0.tar.xz.sig

New:

  kdelibs4support-5.73.0.tar.xz
  kdelibs4support-5.73.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.NQ5znH/_old  2020-08-12 12:27:30.988151252 +0200
+++ /var/tmp/diff_new_pack.NQ5znH/_new  2020-08-12 12:27:30.992151255 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.72.0
+Version:5.73.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.72.0.tar.xz -> kdelibs4support-5.73.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.72.0/CMakeLists.txt 
new/kdelibs4support-5.73.0/CMakeLists.txt
--- old/kdelibs4support-5.72.0/CMakeLists.txt   2020-07-04 15:09:50.0 
+0200
+++ new/kdelibs4support-5.73.0/CMakeLists.txt   2020-08-01 21:44:17.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.72.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.72.0") # handled by release scripts
+set(KF5_VERSION "5.73.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.73.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.72.0/po/az/kdelibs4support.po 
new/kdelibs4support-5.73.0/po/az/kdelibs4support.po
--- old/kdelibs4support-5.72.0/po/az/kdelibs4support.po 2020-07-04 
15:09:50.0 +0200
+++ new/kdelibs4support-5.73.0/po/az/kdelibs4support.po 2020-08-01 
21:44:17.0 +0200
@@ -7,15 +7,15 @@
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-12-03 02:53+0100\n"
-"PO-Revision-Date: 2020-04-13 20:20+0400\n"
-"Last-Translator: Xəyyam \n"
-"Language-Team: Azerbaijani\n"
+"PO-Revision-Date: 2020-07-24 09:41+0400\n"
+"Last-Translator: Xəyyam Qocayev \n"
+"Language-Team: Azerbaijani \n"
 "Language: az\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -2305,7 +2305,7 @@
 #: kdebugdialog/kdebugdialog.cpp:59
 #, kde-format
 msgid "Message Box"
-msgstr "Mesai Qutusu"
+msgstr "İsmarıc Qutusu"
 
 #: kdebugdialog/kdebugdialog.cpp:60
 #, kde-format
@@ -12120,12 +12120,12 @@
 #: kdeui/ksystemtrayicon.cpp:153
 #, kde-format
 msgid "Minimize"
-msgstr "Kiçiltmək"
+msgstr "Yığmaq"
 
 #: kdeui/ksystemtrayicon.cpp:205
 #, kde-format
 msgid ""
-msgstr "çiltmək"
+msgstr "ığmaq"
 
 #: kdeui/ksystemtrayicon.cpp:207
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.72.0/po/ca/kdelibs4support.po 
new/kdelibs4support-5.73.0/po/ca/kdelibs4support.po
--- old/kdelibs4support-5.72.0/po/ca/kdelibs4support.po 2020-07-04 

commit kdelibs4support for openSUSE:Factory

2020-07-13 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-07-14 07:52:28

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


Package is "kdelibs4support"

Tue Jul 14 07:52:28 2020 rev:81 rq:820356 version:5.72.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-06-16 13:42:43.829090632 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.3060/kdelibs4support.changes
2020-07-14 07:53:17.792625333 +0200
@@ -1,0 +2,9 @@
+Sun Jul  5 07:55:16 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
+- No code change since 5.71.0
+
+---

Old:

  kdelibs4support-5.71.0.tar.xz
  kdelibs4support-5.71.0.tar.xz.sig

New:

  kdelibs4support-5.72.0.tar.xz
  kdelibs4support-5.72.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.cicws8/_old  2020-07-14 07:53:18.496627612 +0200
+++ /var/tmp/diff_new_pack.cicws8/_new  2020-07-14 07:53:18.500627625 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.71.0
+Version:5.72.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
@@ -37,7 +37,6 @@
 %endif
 Source99:   baselibs.conf
 BuildRequires:  NetworkManager-devel
-BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem


++ kdelibs4support-5.71.0.tar.xz -> kdelibs4support-5.72.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.71.0/CMakeLists.txt 
new/kdelibs4support-5.72.0/CMakeLists.txt
--- old/kdelibs4support-5.71.0/CMakeLists.txt   2020-06-07 20:25:41.0 
+0200
+++ new/kdelibs4support-5.72.0/CMakeLists.txt   2020-07-04 15:09:50.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.71.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.71.0") # handled by release scripts
+set(KF5_VERSION "5.72.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.72.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.71.0/po/cs/kdelibs4support.po 
new/kdelibs4support-5.72.0/po/cs/kdelibs4support.po
--- old/kdelibs4support-5.71.0/po/cs/kdelibs4support.po 2020-06-07 
20:25:41.0 +0200
+++ new/kdelibs4support-5.72.0/po/cs/kdelibs4support.po 2020-07-04 
15:09:50.0 +0200
@@ -12,7 +12,7 @@
 "PO-Revision-Date: 2020-06-03 09:39+0200\n"
 "Last-Translator: Vit Pelcak \n"
 "Language-Team: Czech \n"
-"Language: en_US\n"
+"Language: cs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.71.0/po/es/kdelibs4support.po 
new/kdelibs4support-5.72.0/po/es/kdelibs4support.po
--- old/kdelibs4support-5.71.0/po/es/kdelibs4support.po 2020-06-07 
20:25:41.0 +0200
+++ new/kdelibs4support-5.72.0/po/es/kdelibs4support.po 2020-07-04 
15:09:50.0 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Eloy Cuadra , 2014, 2015.
+# Eloy Cuadra , 2014, 2015, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-12-03 02:53+0100\n"
-"PO-Revision-Date: 2015-12-01 14:01+0100\n"
+"PO-Revision-Date: 2020-07-02 16:43+0200\n"
 "Last-Translator: Eloy Cuadra \n"
 "Language-Team: Spanish \n"
 "Language: es\n"
@@ 

commit kdelibs4support for openSUSE:Factory

2020-06-16 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-06-16 13:41:55

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


Package is "kdelibs4support"

Tue Jun 16 13:41:55 2020 rev:80 rq:814351 version:5.71.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-05-11 13:29:00.123564042 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.3606/kdelibs4support.changes
2020-06-16 13:42:43.829090632 +0200
@@ -1,0 +2,9 @@
+Sun Jun  7 08:06:31 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
+- No code change since 5.70.0
+
+---

Old:

  kdelibs4support-5.70.0.tar.xz
  kdelibs4support-5.70.0.tar.xz.sig

New:

  kdelibs4support-5.71.0.tar.xz
  kdelibs4support-5.71.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.vggNU1/_old  2020-06-16 13:42:44.485093023 +0200
+++ /var/tmp/diff_new_pack.vggNU1/_new  2020-06-16 13:42:44.489093038 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.70.0
+Version:5.71.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.70.0.tar.xz -> kdelibs4support-5.71.0.tar.xz ++
 20507 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-05-11 13:27:46

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


Package is "kdelibs4support"

Mon May 11 13:27:46 2020 rev:79 rq:802077 version:5.70.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-04-15 20:02:37.369939300 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.2738/kdelibs4support.changes
2020-05-11 13:29:00.123564042 +0200
@@ -1,0 +2,9 @@
+Sun May  3 09:39:53 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:

  kdelibs4support-5.69.0.tar.xz
  kdelibs4support-5.69.0.tar.xz.sig

New:

  kdelibs4support-5.70.0.tar.xz
  kdelibs4support-5.70.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.3cbxmw/_old  2020-05-11 13:29:00.867565601 +0200
+++ /var/tmp/diff_new_pack.3cbxmw/_new  2020-05-11 13:29:00.871565609 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.69.0
+Version:5.70.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.69.0.tar.xz -> kdelibs4support-5.70.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.69.0/CMakeLists.txt 
new/kdelibs4support-5.70.0/CMakeLists.txt
--- old/kdelibs4support-5.69.0/CMakeLists.txt   2020-04-05 00:57:17.0 
+0200
+++ new/kdelibs4support-5.70.0/CMakeLists.txt   2020-05-03 00:16:55.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.69.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.69.0") # handled by release scripts
+set(KF5_VERSION "5.70.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.70.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.69.0/data/currency/aed.desktop 
new/kdelibs4support-5.70.0/data/currency/aed.desktop
--- old/kdelibs4support-5.69.0/data/currency/aed.desktop2020-04-05 
00:57:17.0 +0200
+++ new/kdelibs4support-5.70.0/data/currency/aed.desktop2020-05-03 
00:16:55.0 +0200
@@ -6,7 +6,7 @@
 Name[ar]=الدرهم الإماراتي
 Name[ast]=Dirham d'Emiratos Árabes Xuníos
 Name[bs]=Dirham Ujedinjenih Arapskih Emirata
-Name[ca]=Dírham de la Unió dels Emirats Àrabs
+Name[ca]=Dírham dels Emirats Àrabs Units
 Name[ca@valencia]=Dírham de la Unió dels Emirats Àrabs
 Name[cs]=Dirham Spojených arabských emirátů
 Name[da]=Forenende Arabiske Emirater dirham
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.69.0/data/currency/chf.desktop 
new/kdelibs4support-5.70.0/data/currency/chf.desktop
--- old/kdelibs4support-5.69.0/data/currency/chf.desktop2020-04-05 
00:57:17.0 +0200
+++ new/kdelibs4support-5.70.0/data/currency/chf.desktop2020-05-03 
00:16:55.0 +0200
@@ -49,7 +49,7 @@
 Name[nb]=Sveitiske franc
 Name[nds]=Swiezer Franken
 Name[nl]=Zwitserse Frank
-Name[nn]=Sveitisk franc
+Name[nn]=Sveitsisk franc
 Name[pa]=ਸਵਿੱਸ ਫਰੈਸ
 Name[pl]=Frank szwajcarski
 Name[pt]=Franco Suíço
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.69.0/data/currency/mkd.desktop 
new/kdelibs4support-5.70.0/data/currency/mkd.desktop
--- old/kdelibs4support-5.69.0/data/currency/mkd.desktop2020-04-05 
00:57:17.0 +0200
+++ new/kdelibs4support-5.70.0/data/currency/mkd.desktop2020-05-03 
00:16:55.0 +0200
@@ -25,7 +25,7 

commit kdelibs4support for openSUSE:Factory

2020-04-15 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Wed Apr 15 20:01:20 2020 rev:78 rq:793144 version:5.69.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-03-19 19:44:03.939979024 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.2738/kdelibs4support.changes
2020-04-15 20:02:37.369939300 +0200
@@ -1,0 +2,10 @@
+Sun Apr  5 19:45:28 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:
+  * Add missing include
+
+---

Old:

  kdelibs4support-5.68.0.tar.xz
  kdelibs4support-5.68.0.tar.xz.sig

New:

  kdelibs4support-5.69.0.tar.xz
  kdelibs4support-5.69.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.NZv7lQ/_old  2020-04-15 20:02:39.273940730 +0200
+++ /var/tmp/diff_new_pack.NZv7lQ/_new  2020-04-15 20:02:39.277940733 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.68.0
+Version:5.69.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.68.0.tar.xz -> kdelibs4support-5.69.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.68.0/CMakeLists.txt 
new/kdelibs4support-5.69.0/CMakeLists.txt
--- old/kdelibs4support-5.68.0/CMakeLists.txt   2020-03-07 10:39:30.0 
+0100
+++ new/kdelibs4support-5.69.0/CMakeLists.txt   2020-04-05 00:57:17.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.68.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.68.0") # handled by release scripts
+set(KF5_VERSION "5.69.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.69.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.68.0/docs/Doxyfile.local 
new/kdelibs4support-5.69.0/docs/Doxyfile.local
--- old/kdelibs4support-5.68.0/docs/Doxyfile.local  1970-01-01 
01:00:00.0 +0100
+++ new/kdelibs4support-5.69.0/docs/Doxyfile.local  2020-04-05 
00:57:17.0 +0200
@@ -0,0 +1,6 @@
+### KApiDox Project-specific Overrides File
+
+PREDEFINED += \
+KDELIBS4SUPPORT_DEPRECATED= \
+KDELIBS4SUPPORT_DEPRECATED_EXPORT= \
+KDELIBS4SUPPORT_EXPORT=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.68.0/po/ca/kdelibs4support.po 
new/kdelibs4support-5.69.0/po/ca/kdelibs4support.po
--- old/kdelibs4support-5.68.0/po/ca/kdelibs4support.po 2020-03-07 
10:39:30.0 +0100
+++ new/kdelibs4support-5.69.0/po/ca/kdelibs4support.po 2020-04-05 
00:57:17.0 +0200
@@ -3,15 +3,15 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer , 2014, 2015, 2016, 2017, 2018, 2019.
+# Josep Ma. Ferrer , 2014, 2015, 2016, 2017, 2018, 2019, 
2020.
 # Antoni Bella Pérez , 2014, 2015, 2017, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-12-03 02:53+0100\n"
-"PO-Revision-Date: 2020-02-19 18:05+0100\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-04-01 00:30+0100\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -19,7 +19,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 

commit kdelibs4support for openSUSE:Factory

2020-03-19 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Thu Mar 19 19:42:13 2020 rev:77 rq:785313 version:5.68.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-02-14 16:33:15.819448279 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.3160/kdelibs4support.changes
2020-03-19 19:44:03.939979024 +0100
@@ -1,0 +2,9 @@
+Sun Mar  8 09:17:42 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
+- No code change since 5.67.0
+
+---

Old:

  kdelibs4support-5.67.0.tar.xz
  kdelibs4support-5.67.0.tar.xz.sig

New:

  kdelibs4support-5.68.0.tar.xz
  kdelibs4support-5.68.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.9kxvnn/_old  2020-03-19 19:44:05.039979663 +0100
+++ /var/tmp/diff_new_pack.9kxvnn/_new  2020-03-19 19:44:05.043979665 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.67.0
+Version:5.68.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.67.0.tar.xz -> kdelibs4support-5.68.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.67.0/.gitignore 
new/kdelibs4support-5.68.0/.gitignore
--- old/kdelibs4support-5.67.0/.gitignore   2020-02-02 13:46:39.0 
+0100
+++ new/kdelibs4support-5.68.0/.gitignore   2020-03-07 10:39:30.0 
+0100
@@ -19,3 +19,4 @@
 /build*/
 CMakeLists.txt.user*
 *.unc-backup*
+.cmake/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.67.0/CMakeLists.txt 
new/kdelibs4support-5.68.0/CMakeLists.txt
--- old/kdelibs4support-5.67.0/CMakeLists.txt   2020-02-02 13:46:39.0 
+0100
+++ new/kdelibs4support-5.68.0/CMakeLists.txt   2020-03-07 10:39:30.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.67.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.67.0") # handled by release scripts
+set(KF5_VERSION "5.68.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.68.0") # handled by release scripts
 project(KDELibs4Support VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.67.0  NO_MODULE)
+find_package(ECM 5.68.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/kdelibs4support-5.67.0/po/ca/kdelibs4support.po 
new/kdelibs4support-5.68.0/po/ca/kdelibs4support.po
--- old/kdelibs4support-5.67.0/po/ca/kdelibs4support.po 2020-02-02 
13:46:39.0 +0100
+++ new/kdelibs4support-5.68.0/po/ca/kdelibs4support.po 2020-03-07 
10:39:30.0 +0100
@@ -1,16 +1,16 @@
 # Translation of kdelibs4support.po to Catalan
-# Copyright (C) 2014-2019 This_file_is_part_of_KDE
+# Copyright (C) 2014-2020 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Josep Ma. Ferrer , 2014, 2015, 2016, 2017, 2018, 2019.
-# Antoni Bella Pérez , 2014, 2015, 2017, 2019.
+# Antoni Bella Pérez , 2014, 2015, 2017, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-12-03 02:53+0100\n"
-"PO-Revision-Date: 2019-12-20 14:12+0100\n"
+"PO-Revision-Date: 2020-02-19 18:05+0100\n"
 "Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -12310,7 +12310,7 @@
 #: kio/kfiledialog.cpp:332
 #, kde-format
 msgid "All Supported Files"
-msgstr "Tots els fitxers acceptats"
+msgstr "Tots els fitxers admesos"
 
 #: 

commit kdelibs4support for openSUSE:Factory

2020-02-14 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-02-14 16:32:10

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


Package is "kdelibs4support"

Fri Feb 14 16:32:10 2020 rev:76 rq:773251 version:5.67.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2020-01-14 21:04:15.350678786 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.26092/kdelibs4support.changes   
2020-02-14 16:33:15.819448279 +0100
@@ -1,0 +2,14 @@
+Sun Feb  2 18:06:51 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+---
+Sun Feb  2 14:32:38 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
+- No code change since 5.66.0
+
+---

Old:

  kdelibs4support-5.66.0.tar.xz
  kdelibs4support-5.66.0.tar.xz.sig

New:

  kdelibs4support-5.67.0.tar.xz
  kdelibs4support-5.67.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.R0MJdX/_old  2020-02-14 16:33:16.383448594 +0100
+++ /var/tmp/diff_new_pack.R0MJdX/_new  2020-02-14 16:33:16.387448596 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.66.0
+Version:5.67.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
@@ -67,16 +67,16 @@
 BuildRequires:  cmake(KF5WidgetsAddons) >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(KF5WindowSystem) >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(KF5XmlGui) >= %{_kf5_bugfix_version}
-BuildRequires:  cmake(Qt5Concurrent) >= 5.11.0
-BuildRequires:  cmake(Qt5Core) >= 5.11.0
-BuildRequires:  cmake(Qt5DBus) >= 5.11.0
-BuildRequires:  cmake(Qt5Designer) >= 5.11.0
-BuildRequires:  cmake(Qt5Network) >= 5.11.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.11.0
-BuildRequires:  cmake(Qt5Svg) >= 5.11.0
-BuildRequires:  cmake(Qt5Test) >= 5.11.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
-BuildRequires:  cmake(Qt5X11Extras) >= 5.11.0
+BuildRequires:  cmake(Qt5Concurrent) >= 5.12.0
+BuildRequires:  cmake(Qt5Core) >= 5.12.0
+BuildRequires:  cmake(Qt5DBus) >= 5.12.0
+BuildRequires:  cmake(Qt5Designer) >= 5.12.0
+BuildRequires:  cmake(Qt5Network) >= 5.12.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.12.0
+BuildRequires:  cmake(Qt5Svg) >= 5.12.0
+BuildRequires:  cmake(Qt5Test) >= 5.12.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.12.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.12.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
@@ -168,10 +168,10 @@
 Requires:   cmake(KF5TextWidgets) >= %{_kf5_bugfix_version}
 Requires:   cmake(KF5UnitConversion) >= %{_kf5_bugfix_version}
 Requires:   cmake(KF5WindowSystem) >= %{_kf5_bugfix_version}
-Requires:   cmake(Qt5Core) >= 5.11.0
-Requires:   cmake(Qt5DBus) >= 5.11.0
-Requires:   cmake(Qt5PrintSupport) >= 5.11.0
-Requires:   cmake(Qt5Xml) >= 5.11.0
+Requires:   cmake(Qt5Core) >= 5.12.0
+Requires:   cmake(Qt5DBus) >= 5.12.0
+Requires:   cmake(Qt5PrintSupport) >= 5.12.0
+Requires:   cmake(Qt5Xml) >= 5.12.0
 Provides:   kde4support-devel = %{version}
 Obsoletes:  kde4support-devel < %{version}
 
@@ -198,7 +198,7 @@
 
 %build
   %cmake_kf5 -d build
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build


++ kdelibs4support-5.66.0.tar.xz -> kdelibs4support-5.67.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.66.0/CMakeLists.txt 
new/kdelibs4support-5.67.0/CMakeLists.txt
--- old/kdelibs4support-5.66.0/CMakeLists.txt   2020-01-04 11:06:19.0 
+0100
+++ new/kdelibs4support-5.67.0/CMakeLists.txt   2020-02-02 13:46:39.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.66.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.66.0") # handled by release scripts
+set(KF5_VERSION "5.67.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.67.0") # handled by release 

commit kdelibs4support for openSUSE:Factory

2020-01-14 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2020-01-14 21:00:35

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


Package is "kdelibs4support"

Tue Jan 14 21:00:35 2020 rev:75 rq:763450 version:5.66.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-12-18 14:42:32.937780281 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.6675/kdelibs4support.changes
2020-01-14 21:04:15.350678786 +0100
@@ -1,0 +2,10 @@
+Sun Jan  5 09:15:34 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:
+  * Update the obsolete projects.kde.org URL
+
+---

Old:

  kdelibs4support-5.65.0.tar.xz
  kdelibs4support-5.65.0.tar.xz.sig

New:

  kdelibs4support-5.66.0.tar.xz
  kdelibs4support-5.66.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.x9ZBWc/_old  2020-01-14 21:04:16.154679158 +0100
+++ /var/tmp/diff_new_pack.x9ZBWc/_new  2020-01-14 21:04:16.154679158 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.65.0
+Version:5.66.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.65.0.tar.xz -> kdelibs4support-5.66.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.65.0/CMakeLists.txt 
new/kdelibs4support-5.66.0/CMakeLists.txt
--- old/kdelibs4support-5.65.0/CMakeLists.txt   2019-12-07 22:41:43.0 
+0100
+++ new/kdelibs4support-5.66.0/CMakeLists.txt   2020-01-04 11:06:19.0 
+0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.65.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.65.0") # handled by release scripts
+set(KF5_VERSION "5.66.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.66.0") # handled by release scripts
 project(KDELibs4Support 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)
 
 
@@ -19,7 +19,7 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(REQUIRED_QT_VERSION 5.11.0)
+set(REQUIRED_QT_VERSION 5.12.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
 find_package(KF5Completion ${KF5_DEP_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.65.0/po/ca/kdelibs4support.po 
new/kdelibs4support-5.66.0/po/ca/kdelibs4support.po
--- old/kdelibs4support-5.65.0/po/ca/kdelibs4support.po 2019-12-07 
22:41:43.0 +0100
+++ new/kdelibs4support-5.66.0/po/ca/kdelibs4support.po 2020-01-04 
11:06:19.0 +0100
@@ -4,14 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Josep Ma. Ferrer , 2014, 2015, 2016, 2017, 2018, 2019.
-# Antoni Bella Pérez , 2014, 2015, 2017.
+# Antoni Bella Pérez , 2014, 2015, 2017, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-12-03 02:53+0100\n"
-"PO-Revision-Date: 2019-02-09 19:33+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2019-12-20 14:12+0100\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: 

commit kdelibs4support for openSUSE:Factory

2019-12-18 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-12-18 14:40:32

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


Package is "kdelibs4support"

Wed Dec 18 14:40:32 2019 rev:74 rq:757025 version:5.65.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-11-12 11:44:20.162657768 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.4691/kdelibs4support.changes
2019-12-18 14:42:32.937780281 +0100
@@ -1,0 +2,14 @@
+Sun Dec  8 11:18:28 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
+- Changes since 5.64.0:
+  * Don't use nullptr/0 as flag
+  * Fix build: remove include of no longer used & provided kgesturemap_p.h
+  * Document how to port away from Kdeprint::createPrintDialog
+  * remove unused kgesturemap from kaction
+  * Docs: KIO::file_copy() is a more direct path for porting upload()
+
+---

Old:

  kdelibs4support-5.64.0.tar.xz
  kdelibs4support-5.64.0.tar.xz.sig

New:

  kdelibs4support-5.65.0.tar.xz
  kdelibs4support-5.65.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Thp4xm/_old  2019-12-18 14:42:33.409780497 +0100
+++ /var/tmp/diff_new_pack.Thp4xm/_new  2019-12-18 14:42:33.409780497 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.64.0
+Version:5.65.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.64.0.tar.xz -> kdelibs4support-5.65.0.tar.xz ++
 2387 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2019-11-12 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Tue Nov 12 11:44:14 2019 rev:73 rq:747102 version:5.64.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-10-14 13:34:52.750433126 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.2990/kdelibs4support.changes
2019-11-12 11:44:20.162657768 +0100
@@ -1,0 +2,10 @@
+Sun Nov  3 15:46:56 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:
+  * KLocale api docs: make it easier to find how to port code away from it
+
+---

Old:

  kdelibs4support-5.63.0.tar.xz
  kdelibs4support-5.63.0.tar.xz.sig

New:

  kdelibs4support-5.64.0.tar.xz
  kdelibs4support-5.64.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.897Mx1/_old  2019-11-12 11:44:22.418660143 +0100
+++ /var/tmp/diff_new_pack.897Mx1/_new  2019-11-12 11:44:22.422660147 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.63.0
+Version:5.64.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later


++ kdelibs4support-5.63.0.tar.xz -> kdelibs4support-5.64.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.63.0/CMakeLists.txt 
new/kdelibs4support-5.64.0/CMakeLists.txt
--- old/kdelibs4support-5.63.0/CMakeLists.txt   2019-10-06 11:44:21.0 
+0200
+++ new/kdelibs4support-5.64.0/CMakeLists.txt   2019-11-02 13:54:23.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.63.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.63.0") # handled by release scripts
+set(KF5_VERSION "5.64.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.64.0") # handled by release scripts
 project(KDELibs4Support 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)
 
@@ -79,6 +79,8 @@
 # TODO: use QT_USE_QSTRINGBUILDER instead of deprecated & undocumented 
QT_USE_FAST_OPERATOR_PLUS
 add_definitions(-DQT_USE_FAST_OPERATOR_PLUS)
 
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0)
+
 # This one won't be needed when CMake 2.8.13 is depended on.
 add_definitions(
 -DKDELIBS4SUPPORT_DEPRECATED= # if KDELIBS4SUPPORT_DEPRECATED is already 
defined the other deprecated macros won't be defined
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.63.0/po/gl/kdelibs4support.po 
new/kdelibs4support-5.64.0/po/gl/kdelibs4support.po
--- old/kdelibs4support-5.63.0/po/gl/kdelibs4support.po 2019-10-06 
11:44:21.0 +0200
+++ new/kdelibs4support-5.64.0/po/gl/kdelibs4support.po 2019-11-02 
13:54:23.0 +0100
@@ -16,14 +16,15 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-09-18 02:51+0200\n"
-"PO-Revision-Date: 2019-03-23 11:59+0100\n"
+"PO-Revision-Date: 2019-10-19 22:28+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
-"Language-Team: Galician \n"
+"Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 19.11.70\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -7107,7 +7108,7 @@
 #: kdecore/kcmdlineargs.cpp:281
 #, kde-format
 msgid "Restore the application for the given 'sessionId'"
-msgstr "Restaurar o aplicativo do «sessionId» indicado"
+msgstr "Restaurar a aplicación do «sessionId» indicado"
 
 #: kdecore/kcmdlineargs.cpp:282
 

commit kdelibs4support for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-10-14 13:34:51

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


Package is "kdelibs4support"

Mon Oct 14 13:34:51 2019 rev:72 rq:738020 version:5.63.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-09-23 12:22:30.617756702 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.2352/kdelibs4support.changes
2019-10-14 13:34:52.750433126 +0200
@@ -1,0 +2,10 @@
+Sun Oct  6 13:26:27 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:
+  * Support NetworkManager 1.20 and do actually compile the NM backend
+
+---

Old:

  kdelibs4support-5.62.0.tar.xz
  kdelibs4support-5.62.0.tar.xz.sig

New:

  kdelibs4support-5.63.0.tar.xz
  kdelibs4support-5.63.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.WQ0PD4/_old  2019-10-14 13:34:53.374431499 +0200
+++ /var/tmp/diff_new_pack.WQ0PD4/_new  2019-10-14 13:34:53.378431489 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.62.0
+Version:5.63.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
@@ -67,16 +67,16 @@
 BuildRequires:  cmake(KF5WidgetsAddons) >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(KF5WindowSystem) >= %{_kf5_bugfix_version}
 BuildRequires:  cmake(KF5XmlGui) >= %{_kf5_bugfix_version}
-BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
-BuildRequires:  cmake(Qt5Core) >= 5.6.0
-BuildRequires:  cmake(Qt5DBus) >= 5.6.0
-BuildRequires:  cmake(Qt5Designer) >= 5.6.0
-BuildRequires:  cmake(Qt5Network) >= 5.6.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.6.0
-BuildRequires:  cmake(Qt5Svg) >= 5.6.0
-BuildRequires:  cmake(Qt5Test) >= 5.6.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
-BuildRequires:  cmake(Qt5X11Extras) >= 5.6.0
+BuildRequires:  cmake(Qt5Concurrent) >= 5.11.0
+BuildRequires:  cmake(Qt5Core) >= 5.11.0
+BuildRequires:  cmake(Qt5DBus) >= 5.11.0
+BuildRequires:  cmake(Qt5Designer) >= 5.11.0
+BuildRequires:  cmake(Qt5Network) >= 5.11.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.11.0
+BuildRequires:  cmake(Qt5Svg) >= 5.11.0
+BuildRequires:  cmake(Qt5Test) >= 5.11.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.11.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
@@ -168,10 +168,10 @@
 Requires:   cmake(KF5TextWidgets) >= %{_kf5_bugfix_version}
 Requires:   cmake(KF5UnitConversion) >= %{_kf5_bugfix_version}
 Requires:   cmake(KF5WindowSystem) >= %{_kf5_bugfix_version}
-Requires:   cmake(Qt5Core) >= 5.6.0
-Requires:   cmake(Qt5DBus) >= 5.6.0
-Requires:   cmake(Qt5PrintSupport) >= 5.6.0
-Requires:   cmake(Qt5Xml) >= 5.6.0
+Requires:   cmake(Qt5Core) >= 5.11.0
+Requires:   cmake(Qt5DBus) >= 5.11.0
+Requires:   cmake(Qt5PrintSupport) >= 5.11.0
+Requires:   cmake(Qt5Xml) >= 5.11.0
 Provides:   kde4support-devel = %{version}
 Obsoletes:  kde4support-devel < %{version}
 


++ kdelibs4support-5.62.0.tar.xz -> kdelibs4support-5.63.0.tar.xz ++
 19624 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-09-23 12:22:29

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


Package is "kdelibs4support"

Mon Sep 23 12:22:29 2019 rev:71 rq:730920 version:5.62.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-08-19 20:59:59.848944196 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.7948/kdelibs4support.changes
2019-09-23 12:22:30.617756702 +0200
@@ -1,0 +2,11 @@
+Sat Sep  7 20:36:39 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:
+  * kdelibs4support: port away from deprecated KWindowSystem API
+- Replace foo-devel with cmake(KF5Foo) in build requirements
+
+---

Old:

  kdelibs4support-5.61.0.tar.xz
  kdelibs4support-5.61.0.tar.xz.sig

New:

  kdelibs4support-5.62.0.tar.xz
  kdelibs4support-5.62.0.tar.xz.sig



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.mpmSK2/_old  2019-09-23 12:22:31.117756621 +0200
+++ /var/tmp/diff_new_pack.mpmSK2/_new  2019-09-23 12:22:31.121756620 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:   kdelibs4support
-Version:5.61.0
+Version:5.62.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
@@ -40,33 +40,33 @@
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kcrash-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kded-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kdesignerplugin-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kemoticons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
-BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
-BuildRequires:  knotifications-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kparts-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
-BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kunitconversion-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
-BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
 BuildRequires:  perl-URI
 BuildRequires:  pkgconfig
+BuildRequires:  cmake(KDED) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Bookmarks) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Completion) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Config) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5ConfigWidgets) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Crash) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5DBusAddons) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5DesignerPlugin) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5DocTools) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Emoticons) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5GlobalAccel) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5GuiAddons) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5I18n) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5IconThemes) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5ItemViews) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5KIO) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Notifications) >= %{_kf5_bugfix_version}
+BuildRequires:  cmake(KF5Parts) >= 

commit kdelibs4support for openSUSE:Factory

2019-08-19 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-08-19 20:59:51

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


Package is "kdelibs4support"

Mon Aug 19 20:59:51 2019 rev:70 rq:722433 version:5.61.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-07-26 12:12:31.970831955 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.22127/kdelibs4support.changes   
2019-08-19 20:59:59.848944196 +0200
@@ -1,0 +2,18 @@
+Wed Aug  7 17:51:18 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:
+  * Designer plugin: use consistently "KF5" in group names & texts 
+  * Remove explicit use of ECM_KDE_MODULE_DIR, is part of ECM_MODULE_PATH 
+  * Use non-deprecated suggestName 
+  * Don't advertise using KPassivePopup
+
+---
+Fri Jul 19 11:40:03 UTC 2019 - Wolfgang Bauer 
+
+- Don't lower minimum Qt version anymore, it requires 5.11 now
+
+---

Old:

  kdelibs4support-5.60.0.tar.xz

New:

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



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.upuaI9/_old  2019-08-19 21:00:01.888943865 +0200
+++ /var/tmp/diff_new_pack.upuaI9/_new  2019-08-19 21:00:01.912943862 +0200
@@ -17,21 +17,25 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.60.0
+Version:5.61.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 URL:https://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
-Source1:baselibs.conf
+Source: 
https://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz.sig
+Source2:frameworks.keyring
+%endif
+Source99:   baselibs.conf
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -87,7 +91,7 @@
 
 Code should aim to port away from this framework eventually.  The API
 documentation of the classes in this framework and the notes at
- should help with
+ should help with
 this.
 
 Note that some of the classes in this framework, especially
@@ -108,7 +112,7 @@
 
 Code should aim to port away from this framework eventually.  The API
 documentation of the classes in this framework and the notes at
- should help with
+ should help with
 this.
 
 Note that some of the classes in this framework, especially
@@ -130,7 +134,7 @@
 
 Code should aim to port away from this framework eventually.  The API
 documentation of the classes in this framework and the notes at
- should help with
+ should help with
 this.
 
 Note that some of the classes in this framework, especially
@@ -178,7 +182,7 @@
 
 Code should aim to port away from this framework eventually.  The API
 documentation of the classes in this framework and the notes at
- should help with
+ should help with
 this.
 
 Note that some of the classes in this framework, especially
@@ -191,9 +195,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

++ kdelibs4support-5.60.0.tar.xz -> kdelibs4support-5.61.0.tar.xz ++
 9829 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2019-07-26 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Fri Jul 26 12:12:26 2019 rev:69 rq:715869 version:5.60.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-06-22 11:10:34.424442714 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.4126/kdelibs4support.changes
2019-07-26 12:12:31.970831955 +0200
@@ -1,0 +2,9 @@
+Sun Jul 14 06:41:37 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
+- No code changes since 5.59.0
+
+---

Old:

  kdelibs4support-5.59.0.tar.xz

New:

  kdelibs4support-5.60.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.svDGGH/_old  2019-07-26 12:12:32.778831837 +0200
+++ /var/tmp/diff_new_pack.svDGGH/_new  2019-07-26 12:12:32.782831837 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.59.0
+Version:5.60.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.59.0.tar.xz -> kdelibs4support-5.60.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.59.0/CMakeLists.txt 
new/kdelibs4support-5.60.0/CMakeLists.txt
--- old/kdelibs4support-5.59.0/CMakeLists.txt   2019-06-01 18:54:35.0 
+0200
+++ new/kdelibs4support-5.60.0/CMakeLists.txt   2019-07-07 20:32:22.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.59.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.59.0") # handled by release scripts
+set(KF5_VERSION "5.60.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.60.0") # handled by release scripts
 project(KDELibs4Support 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)
 
@@ -19,7 +19,7 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(REQUIRED_QT_VERSION 5.10.0)
+set(REQUIRED_QT_VERSION 5.11.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
 find_package(KF5Completion ${KF5_DEP_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.59.0/po/id/kdelibs4support.po 
new/kdelibs4support-5.60.0/po/id/kdelibs4support.po
--- old/kdelibs4support-5.59.0/po/id/kdelibs4support.po 2019-06-01 
18:54:35.0 +0200
+++ new/kdelibs4support-5.60.0/po/id/kdelibs4support.po 2019-07-07 
20:32:22.0 +0200
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.04.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.59.0/po/nn/kdelibs4support.po 
new/kdelibs4support-5.60.0/po/nn/kdelibs4support.po
--- old/kdelibs4support-5.59.0/po/nn/kdelibs4support.po 2019-06-01 
18:54:35.0 +0200
+++ new/kdelibs4support-5.60.0/po/nn/kdelibs4support.po 2019-07-07 
20:32:22.0 +0200
@@ -9,14 +9,14 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 02:55+0200\n"
-"PO-Revision-Date: 2019-01-29 20:59+0100\n"
+"PO-Revision-Date: 2019-06-29 10:03+0200\n"
 "Last-Translator: Karl Ove Hufthammer \n"
 "Language-Team: Norwegian Nynorsk \n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 

commit kdelibs4support for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-06-22 11:09:47

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


Package is "kdelibs4support"

Sat Jun 22 11:09:47 2019 rev:68 rq:710731 version:5.59.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-05-21 10:27:15.407509149 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.4615/kdelibs4support.changes
2019-06-22 11:10:34.424442714 +0200
@@ -1,0 +2,11 @@
+Sun Jun 09 07:35:11 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
+- Changes since 5.58.0:
+  * Remove QApplication::setColorSpec (empty method)
+  * Port some deprecated method
+
+---

Old:

  kdelibs4support-5.58.0.tar.xz

New:

  kdelibs4support-5.59.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Scylsv/_old  2019-06-22 11:10:36.076445147 +0200
+++ /var/tmp/diff_new_pack.Scylsv/_new  2019-06-22 11:10:36.076445147 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.58.0
+Version:5.59.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.58.0.tar.xz -> kdelibs4support-5.59.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.58.0/CMakeLists.txt 
new/kdelibs4support-5.59.0/CMakeLists.txt
--- old/kdelibs4support-5.58.0/CMakeLists.txt   2019-05-07 13:21:01.0 
+0200
+++ new/kdelibs4support-5.59.0/CMakeLists.txt   2019-06-01 18:54:35.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.58.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.58.0") # handled by release scripts
+set(KF5_VERSION "5.59.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.59.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.58.0/data/currency/aoa.desktop 
new/kdelibs4support-5.59.0/data/currency/aoa.desktop
--- old/kdelibs4support-5.58.0/data/currency/aoa.desktop2019-05-07 
13:21:01.0 +0200
+++ new/kdelibs4support-5.59.0/data/currency/aoa.desktop2019-06-01 
18:54:35.0 +0200
@@ -9,7 +9,7 @@
 Name[ca@valencia]=Kwanza d'Angola
 Name[cs]=Angolská kwanza
 Name[da]=Angolsk kwanza
-Name[de]=Angolischer Kwanza
+Name[de]=Angolanischer Kwanza
 Name[en_GB]=Angolan Kwanza
 Name[es]=Kwanza angoleño
 Name[et]=Angola kwanza
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.58.0/po/af/kdelibs4support.po 
new/kdelibs4support-5.59.0/po/af/kdelibs4support.po
--- old/kdelibs4support-5.58.0/po/af/kdelibs4support.po 2019-05-07 
13:21:01.0 +0200
+++ new/kdelibs4support-5.59.0/po/af/kdelibs4support.po 2019-06-01 
18:54:35.0 +0200
@@ -2,8 +2,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4 stable\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2018-08-16 09:05+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n;
+"POT-Creation-Date: 2019-05-20 02:55+0200\n"
 "PO-Revision-Date: 2006-01-12 16:33+0200\n"
 "Last-Translator: JUANITA FRANZ \n"
 "Language-Team: AFRIKAANS \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.58.0/po/ar/kdelibs4support.po 
new/kdelibs4support-5.59.0/po/ar/kdelibs4support.po
--- old/kdelibs4support-5.58.0/po/ar/kdelibs4support.po 2019-05-07 
13:21:01.0 +0200
+++ new/kdelibs4support-5.59.0/po/ar/kdelibs4support.po 2019-06-01 

commit kdelibs4support for openSUSE:Factory

2019-05-21 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-05-21 10:27:12

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


Package is "kdelibs4support"

Tue May 21 10:27:12 2019 rev:67 rq:703342 version:5.58.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-04-19 21:22:26.091725271 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.5148/kdelibs4support.changes
2019-05-21 10:27:15.407509149 +0200
@@ -1,0 +2,9 @@
+Wed May 15 18:16:16 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:

  kdelibs4support-5.57.0.tar.xz

New:

  kdelibs4support-5.58.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.e4JhLN/_old  2019-05-21 10:27:16.851508594 +0200
+++ /var/tmp/diff_new_pack.e4JhLN/_new  2019-05-21 10:27:16.851508594 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.57.0
+Version:5.58.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.57.0.tar.xz -> kdelibs4support-5.58.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.57.0/CMakeLists.txt 
new/kdelibs4support-5.58.0/CMakeLists.txt
--- old/kdelibs4support-5.57.0/CMakeLists.txt   2019-04-07 09:26:30.0 
+0200
+++ new/kdelibs4support-5.58.0/CMakeLists.txt   2019-05-07 13:21:01.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.57.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.57.0") # handled by release scripts
+set(KF5_VERSION "5.58.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.58.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.57.0/po/ml/kdelibs4support.po 
new/kdelibs4support-5.58.0/po/ml/kdelibs4support.po
--- old/kdelibs4support-5.57.0/po/ml/kdelibs4support.po 2019-04-07 
09:26:30.0 +0200
+++ new/kdelibs4support-5.58.0/po/ml/kdelibs4support.po 2019-05-07 
13:21:01.0 +0200
@@ -2723,9 +2723,9 @@
 "org"
 msgstr ""
 "കെഡിഇ മലയാളം നിങ്ങള്‍ക്കായി അവതരിപ്പിക്കുന്നതു് സ്വതന്ത്ര മലയാളം 
കമ്പ്യൂട്ടിങ്ങ്പ്രവര്‍ത്തകരാണു്.സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് കൂട്ടായ്മയെപ്പറ്റി കൂടുതലറിയാനും മലയാളം 
കമ്പ്യൂട്ടിങ്ങ് "
-"പ്രവര്‍ത്തനങ്ങളില്‍ പങ്കുചേരാനും http://smc.org.in\;>http://smc.org.in  "
-"എന്ന വെബ്സൈറ്റ് സന്ദര്‍ശിയ്ക്കുക"
+"p>സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് കൂട്ടായ്മയെപ്പറ്റി കൂടുതലറിയാനും മലയാളം 
കമ്പ്യൂട്ടിങ്ങ് പ്രവര്‍"
+"ത്തനങ്ങളില്‍ പങ്കുചേരാനും http://smc.org.in\;>http://smc.org.in 
 എന്ന "
+"വെബ്സൈറ്റ് സന്ദര്‍ശിയ്ക്കുക"
 
 #: kdecore/kcalendarsystem.cpp:108
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.57.0/po/zh_CN/kdelibs4support.po 
new/kdelibs4support-5.58.0/po/zh_CN/kdelibs4support.po
--- old/kdelibs4support-5.57.0/po/zh_CN/kdelibs4support.po  2019-04-07 
09:26:30.0 +0200
+++ new/kdelibs4support-5.58.0/po/zh_CN/kdelibs4support.po  2019-05-07 
13:21:01.0 +0200
@@ -17,8 +17,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-08-16 09:05+0200\n"
-"PO-Revision-Date: 2019-03-07 09:22\n"
-"Last-Translator: guoyunhe \n"
+"PO-Revision-Date: 2019-05-05 22:21\n"
+"Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"




commit kdelibs4support for openSUSE:Factory

2019-04-19 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Fri Apr 19 21:21:48 2019 rev:66 rq:695213 version:5.57.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-03-21 09:44:45.686918812 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.5536/kdelibs4support.changes
2019-04-19 21:22:26.091725271 +0200
@@ -1,0 +2,11 @@
+Sun Apr 14 20:21:42 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:
+  * Remove find modules provided by ECM
+  * port to std::sort
+
+---

Old:

  kdelibs4support-5.56.0.tar.xz

New:

  kdelibs4support-5.57.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.vGf1ss/_old  2019-04-19 21:22:26.691726036 +0200
+++ /var/tmp/diff_new_pack.vGf1ss/_new  2019-04-19 21:22:26.695726040 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.56.0
+Version:5.57.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.56.0.tar.xz -> kdelibs4support-5.57.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.56.0/.gitignore 
new/kdelibs4support-5.57.0/.gitignore
--- old/kdelibs4support-5.56.0/.gitignore   1970-01-01 01:00:00.0 
+0100
+++ new/kdelibs4support-5.57.0/.gitignore   2019-04-07 09:26:30.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/kdelibs4support-5.56.0/CMakeLists.txt 
new/kdelibs4support-5.57.0/CMakeLists.txt
--- old/kdelibs4support-5.56.0/CMakeLists.txt   2019-03-02 14:37:23.0 
+0100
+++ new/kdelibs4support-5.57.0/CMakeLists.txt   2019-04-07 09:26:30.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.56.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.56.0") # handled by release scripts
+set(KF5_VERSION "5.57.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.57.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.56.0/autotests/kmimetypetest.cpp 
new/kdelibs4support-5.57.0/autotests/kmimetypetest.cpp
--- old/kdelibs4support-5.56.0/autotests/kmimetypetest.cpp  2019-03-02 
14:37:23.0 +0100
+++ new/kdelibs4support-5.57.0/autotests/kmimetypetest.cpp  2019-04-07 
09:26:30.0 +0200
@@ -864,7 +864,7 @@
 {
 QBENCHMARK {
 KMimeType::List sortedList = KMimeType::allMimeTypes();
-qSort(sortedList.begin(), sortedList.end(), LessMimeType_ByComment());
+std::sort(sortedList.begin(), sortedList.end(), 
LessMimeType_ByComment());
 }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.56.0/cmake/modules/CMakeLists.txt 
new/kdelibs4support-5.57.0/cmake/modules/CMakeLists.txt
--- old/kdelibs4support-5.56.0/cmake/modules/CMakeLists.txt 2019-03-02 
14:37:23.0 +0100
+++ new/kdelibs4support-5.57.0/cmake/modules/CMakeLists.txt 2019-04-07 
09:26:30.0 +0200
@@ -9,7 +9,6 @@
FindHUpnp.cmake
FindPolkitQt.cmake

commit kdelibs4support for openSUSE:Factory

2019-03-21 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Thu Mar 21 09:44:45 2019 rev:65 rq:686731 version:5.56.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-02-28 21:29:08.129818081 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.28833/kdelibs4support.changes   
2019-03-21 09:44:45.686918812 +0100
@@ -1,0 +2,10 @@
+Sun Mar 10 20:15:35 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:
+  * Port deprecated methods
+
+---

Old:

  kdelibs4support-5.55.0.tar.xz

New:

  kdelibs4support-5.56.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.R64jw9/_old  2019-03-21 09:44:46.174918700 +0100
+++ /var/tmp/diff_new_pack.R64jw9/_new  2019-03-21 09:44:46.178918699 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.55.0
+Version:5.56.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.55.0.tar.xz -> kdelibs4support-5.56.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.55.0/CMakeLists.txt 
new/kdelibs4support-5.56.0/CMakeLists.txt
--- old/kdelibs4support-5.55.0/CMakeLists.txt   2019-02-03 00:55:38.0 
+0100
+++ new/kdelibs4support-5.56.0/CMakeLists.txt   2019-03-02 14:37:23.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.55.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.55.0") # handled by release scripts
+set(KF5_VERSION "5.56.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.56.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.55.0/po/ca/kdelibs4support.po 
new/kdelibs4support-5.56.0/po/ca/kdelibs4support.po
--- old/kdelibs4support-5.55.0/po/ca/kdelibs4support.po 2019-02-03 
00:55:38.0 +0100
+++ new/kdelibs4support-5.56.0/po/ca/kdelibs4support.po 2019-03-02 
14:37:23.0 +0100
@@ -1,16 +1,16 @@
 # Translation of kdelibs4support.po to Catalan
-# Copyright (C) 2014-2018 This_file_is_part_of_KDE
+# Copyright (C) 2014-2019 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer , 2014, 2015, 2016, 2017, 2018.
+# Josep Ma. Ferrer , 2014, 2015, 2016, 2017, 2018, 2019.
 # Antoni Bella Pérez , 2014, 2015, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-08-16 09:05+0200\n"
-"PO-Revision-Date: 2018-01-07 00:01+0100\n"
+"PO-Revision-Date: 2019-02-09 19:33+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -4096,12 +4096,14 @@
 msgid "of Dec"
 msgstr "de des"
 
+# skip-rule: abbreviations-jan
 #: kdecore/kcalendarsystemgregorian.cpp:200
 #, kde-format
 msgctxt "Gregorian month 1 - KLocale::ShortName"
 msgid "Jan"
 msgstr "Gen"
 
+# skip-rule: abbreviations-feb
 #: kdecore/kcalendarsystemgregorian.cpp:202
 #, kde-format
 msgctxt "Gregorian month 2 - KLocale::ShortName"
@@ -4114,6 +4116,7 @@
 msgid "Mar"
 msgstr "Mar"
 
+# skip-rule: abbreviations-apr
 #: kdecore/kcalendarsystemgregorian.cpp:206
 #, kde-format
 msgctxt "Gregorian month 4 - KLocale::ShortName"
@@ -4132,6 +4135,7 @@
 msgid "Jun"
 msgstr "Jun"
 
+# skip-rule: abbreviations-jul
 

commit kdelibs4support for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-02-28 21:29:06

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


Package is "kdelibs4support"

Thu Feb 28 21:29:06 2019 rev:64 rq:678679 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-02-14 14:24:53.347887877 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.28833/kdelibs4support.changes   
2019-02-28 21:29:08.129818081 +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:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.stp0ks/_old  2019-02-28 21:29:08.925817814 +0100
+++ /var/tmp/diff_new_pack.stp0ks/_new  2019-02-28 21:29:08.925817814 +0100
@@ -191,6 +191,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




commit kdelibs4support for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-02-14 14:24:51

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


Package is "kdelibs4support"

Thu Feb 14 14:24:51 2019 rev:63 rq:674230 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2019-01-21 10:19:18.394138212 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.28833/kdelibs4support.changes   
2019-02-14 14:24:53.347887877 +0100
@@ -1,0 +2,13 @@
+Sun Feb 10 22:03:05 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:
+  * autotests: disable failing KTabWidget test, not worth debugging
+  * autotests: tab reordering is done with LMB these days, not MMB
+  * Fix some country flags to use all the pixmap
+  * Remove Qt version check
+
+---

Old:

  kdelibs4support-5.54.0.tar.xz

New:

  kdelibs4support-5.55.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.NbPDH6/_old  2019-02-14 14:24:53.867887633 +0100
+++ /var/tmp/diff_new_pack.NbPDH6/_new  2019-02-14 14:24:53.871887631 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.54.0
+Version:5.55.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.54.0.tar.xz -> kdelibs4support-5.55.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.54.0/CMakeLists.txt 
new/kdelibs4support-5.55.0/CMakeLists.txt
--- old/kdelibs4support-5.54.0/CMakeLists.txt   2019-01-06 21:20:34.0 
+0100
+++ new/kdelibs4support-5.55.0/CMakeLists.txt   2019-02-03 00:55:38.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.54.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.54.0") # handled by release scripts
+set(KF5_VERSION "5.55.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.55.0") # handled by release scripts
 project(KDELibs4Support 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)
 
@@ -19,7 +19,7 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(REQUIRED_QT_VERSION 5.9.0)
+set(REQUIRED_QT_VERSION 5.10.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
 find_package(KF5Completion ${KF5_DEP_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.54.0/autotests/ktabwidget_unittest.cpp 
new/kdelibs4support-5.55.0/autotests/ktabwidget_unittest.cpp
--- old/kdelibs4support-5.54.0/autotests/ktabwidget_unittest.cpp
2019-01-06 21:20:34.0 +0100
+++ new/kdelibs4support-5.55.0/autotests/ktabwidget_unittest.cpp
2019-02-03 00:55:38.0 +0100
@@ -136,7 +136,7 @@
 QVERIFY(w.isTabBarHidden());
 }
 #endif
-void testMiddleClickTabReordering();
+void testMouseButtonTabReordering();
 void testTabMoved();
 
 private Q_SLOTS:
@@ -162,8 +162,11 @@
 }
 };
 
-void KTabWidget_UnitTest::testMiddleClickTabReordering()
+void KTabWidget_UnitTest::testMouseButtonTabReordering()
 {
+// This test passes locally but fails on CI.
+// Tab reordering works, let's not spend time on this.
+#if 0
 MyTabWidget tabWidget;
 tabWidget.setMovable(true);
 
@@ -176,16 +179,16 @@
 QPoint pos0 = tabWidget.getTabBar()->tabRect(0).center();
 QPoint pos1 = tabWidget.getTabBar()->tabRect(1).center();
 
-// Press MMB
-QTest::mousePress(tabWidget.getTabBar(), Qt::MidButton, Qt::NoModifier, 
pos0);
+// Press LMB
+QTest::mousePress(tabWidget.getTabBar(), Qt::LeftButton, Qt::NoModifier, 

commit kdelibs4support for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2019-01-21 10:19:16

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


Package is "kdelibs4support"

Mon Jan 21 10:19:16 2019 rev:62 rq:665795 version:5.54.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-12-19 13:40:17.364052161 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.28833/kdelibs4support.changes   
2019-01-21 10:19:18.394138212 +0100
@@ -1,0 +2,10 @@
+Mon Jan 14 06:08:45 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:
+  * No code changes since 5.53.0
+
+---

Old:

  kdelibs4support-5.53.0.tar.xz

New:

  kdelibs4support-5.54.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.LTEECz/_old  2019-01-21 10:19:18.938137665 +0100
+++ /var/tmp/diff_new_pack.LTEECz/_new  2019-01-21 10:19:18.942137661 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.53.0
+Version:5.54.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.53.0.tar.xz -> kdelibs4support-5.54.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.53.0/CMakeLists.txt 
new/kdelibs4support-5.54.0/CMakeLists.txt
--- old/kdelibs4support-5.53.0/CMakeLists.txt   2018-12-01 15:54:09.0 
+0100
+++ new/kdelibs4support-5.54.0/CMakeLists.txt   2019-01-06 21:20:34.0 
+0100
@@ -1,11 +1,11 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.53.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.53.0") # handled by release scripts
+set(KF5_VERSION "5.54.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.54.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.53.0/data/currency/aud.desktop 
new/kdelibs4support-5.54.0/data/currency/aud.desktop
--- old/kdelibs4support-5.53.0/data/currency/aud.desktop2018-12-01 
15:54:09.0 +0100
+++ new/kdelibs4support-5.54.0/data/currency/aud.desktop2019-01-06 
21:20:34.0 +0100
@@ -48,7 +48,7 @@
 Name[tr]=Avusturalya Doları
 Name[uk]=Австралійський долар
 Name[x-test]=xxAustralian Dollarxx
-Name[zh_CN]=澳元
+Name[zh_CN]=澳大利亚元
 Name[zh_TW]=澳大利亞─澳元(Australian Dollar)
 CurrencyNameIso=Australian dollar
 CurrencyUnitSymbols=$,A$,AU$,AUD
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.53.0/data/currency/bbd.desktop 
new/kdelibs4support-5.54.0/data/currency/bbd.desktop
--- old/kdelibs4support-5.53.0/data/currency/bbd.desktop2018-12-01 
15:54:09.0 +0100
+++ new/kdelibs4support-5.54.0/data/currency/bbd.desktop2019-01-06 
21:20:34.0 +0100
@@ -48,7 +48,7 @@
 Name[tr]=Barbados Doları
 Name[uk]=Барбадоський долар
 Name[x-test]=xxBarbados Dollarxx
-Name[zh_CN]=巴巴多斯元
+Name[zh_CN]=巴巴多斯岛元
 Name[zh_TW]=巴貝多─元(Dollar)
 CurrencyNameIso=Barbados dollar
 CurrencyUnitSymbols=$,Bds$,BBD
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.53.0/data/currency/byr.desktop 

commit kdelibs4support for openSUSE:Factory

2018-12-19 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-12-19 13:40:15

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


Package is "kdelibs4support"

Wed Dec 19 13:40:15 2018 rev:61 rq:658555 version:5.53.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-11-14 14:33:22.807326866 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdelibs4support.new.28833/kdelibs4support.changes   
2018-12-19 13:40:17.364052161 +0100
@@ -1,0 +2,11 @@
+Sun Dec 09 19:43:43 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:
+  * Remove qt prefix include
+  * Fix normalize signal/slot
+
+---

Old:

  kdelibs4support-5.52.0.tar.xz

New:

  kdelibs4support-5.53.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.lZeUog/_old  2018-12-19 13:40:18.076051154 +0100
+++ /var/tmp/diff_new_pack.lZeUog/_new  2018-12-19 13:40:18.104051115 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.52.0
+Version:5.53.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.52.0.tar.xz -> kdelibs4support-5.53.0.tar.xz ++
 3850 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2018-11-14 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-11-14 14:33:10

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


Package is "kdelibs4support"

Wed Nov 14 14:33:10 2018 rev:60 rq:648506 version:5.52.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-10-22 11:10:38.879908598 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-11-14 14:33:22.807326866 +0100
@@ -1,0 +2,11 @@
+Sun Nov 11 19:48:04 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:
+  * Remove unused check
+  * Use directly qEnvironmentVariableIntValue
+
+---

Old:

  kdelibs4support-5.51.0.tar.xz

New:

  kdelibs4support-5.52.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.0fGglc/_old  2018-11-14 14:33:25.447324296 +0100
+++ /var/tmp/diff_new_pack.0fGglc/_new  2018-11-14 14:33:25.451324292 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.51.0
+Version:5.52.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.51.0.tar.xz -> kdelibs4support-5.52.0.tar.xz ++
 18981 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2018-10-22 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Mon Oct 22 11:10:35 2018 rev:59 rq:642309 version:5.51.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-10-01 08:05:29.130382653 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-10-22 11:10:38.879908598 +0200
@@ -1,0 +2,15 @@
+Tue Oct 16 08:02:02 UTC 2018 - Luca Beltrame 
+
+- Run spec-cleaner
+
+---
+Mon Oct 15 11:52:24 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 deprecated method
+
+---

Old:

  kdelibs4support-5.50.0.tar.xz

New:

  kdelibs4support-5.51.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.tG9rZX/_old  2018-10-22 11:10:40.059907640 +0200
+++ /var/tmp/diff_new_pack.tG9rZX/_new  2018-10-22 11:10:40.063907637 +0200
@@ -12,24 +12,24 @@
 # 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 lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.50.0
+Version:5.51.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 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}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.50.0.tar.xz -> kdelibs4support-5.51.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.50.0/CMakeLists.txt 
new/kdelibs4support-5.51.0/CMakeLists.txt
--- old/kdelibs4support-5.50.0/CMakeLists.txt   2018-09-02 21:17:40.0 
+0200
+++ new/kdelibs4support-5.51.0/CMakeLists.txt   2018-10-08 10:12:39.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.50.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.50.0") # handled by release scripts
+set(KF5_VERSION "5.51.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.51.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.50.0/autotests/k4timezonewidget_unittest.cpp 
new/kdelibs4support-5.51.0/autotests/k4timezonewidget_unittest.cpp
--- old/kdelibs4support-5.50.0/autotests/k4timezonewidget_unittest.cpp  
2018-09-02 21:17:40.0 +0200
+++ new/kdelibs4support-5.51.0/autotests/k4timezonewidget_unittest.cpp  
2018-10-08 10:12:39.0 +0200
@@ -110,7 +110,7 @@
 //TimeZoneTestData mTestData;
 };
 
-// Note: no QStandardPaths::enableTestMode(true) here.
+// Note: no QStandardPaths::setTestModeEnabled(true) here.
 // The kded module writes out a config file, but unit tests have
 // a different configuration directory so they don't see those config files.
 // Ideally unit tests should talk to their own kded instance,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.50.0/autotests/kdebug_qcoreapptest.cpp 
new/kdelibs4support-5.51.0/autotests/kdebug_qcoreapptest.cpp
--- old/kdelibs4support-5.50.0/autotests/kdebug_qcoreapptest.cpp
2018-09-02 21:17:40.0 +0200
+++ 

commit kdelibs4support for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-10-01 08:05:26

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


Package is "kdelibs4support"

Mon Oct  1 08:05:26 2018 rev:58 rq:635988 version:5.50.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-08-24 16:52:28.953246676 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-10-01 08:05:29.130382653 +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:
+  * Fix compilation without openssl headers
+
+---

Old:

  kdelibs4support-5.49.0.tar.xz

New:

  kdelibs4support-5.50.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.OfMWx0/_old  2018-10-01 08:05:29.630382385 +0200
+++ /var/tmp/diff_new_pack.OfMWx0/_new  2018-10-01 08:05:29.634382384 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.49.0
+Version:5.50.0
 Release:0
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later

++ kdelibs4support-5.49.0.tar.xz -> kdelibs4support-5.50.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.49.0/CMakeLists.txt 
new/kdelibs4support-5.50.0/CMakeLists.txt
--- old/kdelibs4support-5.49.0/CMakeLists.txt   2018-08-04 12:57:14.0 
+0200
+++ new/kdelibs4support-5.50.0/CMakeLists.txt   2018-09-02 21:17:40.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.49.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.49.0") # handled by release scripts
+set(KF5_VERSION "5.50.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.50.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.49.0/data/currency/pyg.desktop 
new/kdelibs4support-5.50.0/data/currency/pyg.desktop
--- old/kdelibs4support-5.49.0/data/currency/pyg.desktop2018-08-04 
12:57:14.0 +0200
+++ new/kdelibs4support-5.50.0/data/currency/pyg.desktop2018-09-02 
21:17:40.0 +0200
@@ -6,7 +6,7 @@
 Name[ar]=الغواراني الباراغواي
 Name[bs]=paragvajski guarani
 Name[ca]=Guaraní de Paraguai
-Name[ca@valencia]=Guaraní de Paraguay
+Name[ca@valencia]=Guaraní de Paraguai
 Name[cs]=Paraguayský guarani
 Name[da]=Paraguayansk guarani
 Name[de]=Paraguayischer Guaraní
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.49.0/data/currency/qar.desktop 
new/kdelibs4support-5.50.0/data/currency/qar.desktop
--- old/kdelibs4support-5.49.0/data/currency/qar.desktop2018-08-04 
12:57:14.0 +0200
+++ new/kdelibs4support-5.50.0/data/currency/qar.desktop2018-09-02 
21:17:40.0 +0200
@@ -8,7 +8,7 @@
 Name[bn]=কাতারী রিয়াল
 Name[bs]=katarski rijal
 Name[ca]=Rial de Qatar
-Name[ca@valencia]=Riyal de Qatar
+Name[ca@valencia]=Rial de Qatar
 Name[cs]=Katarský rial
 Name[csb]=Katarsczi Riyal
 Name[da]=Qatarsk rial
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.49.0/po/af/kdelibs4support.po 
new/kdelibs4support-5.50.0/po/af/kdelibs4support.po
--- old/kdelibs4support-5.49.0/po/af/kdelibs4support.po 2018-08-04 
12:57:14.0 +0200
+++ new/kdelibs4support-5.50.0/po/af/kdelibs4support.po 2018-09-02 
21:17:40.0 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: kdelibs4 stable\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;

commit kdelibs4support for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-08-24 16:52:25

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


Package is "kdelibs4support"

Fri Aug 24 16:52:25 2018 rev:57 rq:630599 version:5.49.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-07-21 10:12:03.379145098 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-08-24 16:52:28.953246676 +0200
@@ -1,0 +2,10 @@
+Sun Aug 19 09:52:35 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:
+  * Fix qtplugins in KStandardDirs
+
+---

Old:

  kdelibs4support-5.48.0.tar.xz

New:

  kdelibs4support-5.49.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.za2NSH/_old  2018-08-24 16:52:29.469247284 +0200
+++ /var/tmp/diff_new_pack.za2NSH/_new  2018-08-24 16:52:29.473247289 +0200
@@ -16,16 +16,22 @@
 #
 
 
-%bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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_without lang
 Name:   kdelibs4support
-Version:5.48.0
+Version:5.49.0
 Release:0
+Summary:Code and utilities to ease the transition to KDE Frameworks 5
+License:LGPL-2.1-or-later
+Group:  System/GUI/KDE
+URL:http://www.kde.org
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -56,6 +62,7 @@
 BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
 BuildRequires:  perl-URI
+BuildRequires:  pkgconfig
 BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
 BuildRequires:  cmake(Qt5Core) >= 5.6.0
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
@@ -72,13 +79,6 @@
 Recommends: %{name}-lang = %{version}
 Provides:   kde4support = %{version}
 Obsoletes:  kde4support < %{version}
-Summary:Code and utilities to ease the transition to KDE Frameworks 5
-License:LGPL-2.1-or-later
-Group:  System/GUI/KDE
-Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
-Source1:baselibs.conf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 This package includes CMake macros and C++
@@ -117,13 +117,13 @@
 location as KDELibs4Support, although it may be sufficient to set the
 KDEDIRS environment variable correctly.
 
-%package -n %lname
+%package -n %{lname}
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 Requires:   kded >= %{_kf5_bugfix_version}
 
-%description -n %lname
+%description -n %{lname}
 This package includes CMake macros and C++
 classes whose functionality has been replaced by code in CMake, Qt and
 other frameworks.
@@ -143,10 +143,8 @@
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/KDE
-Requires:   %lname = %{version}
+Requires:   %{lname} = %{version}
 Requires:   %{name} = %{version}
-Provides:   kde4support-devel = %{version}
-Obsoletes:  kde4support-devel < %{version}
 Requires:   extra-cmake-modules
 Requires:   karchive-devel >= %{_kf5_bugfix_version}
 Requires:   kauth-devel >= %{_kf5_bugfix_version}
@@ -170,6 +168,8 @@
 Requires:   cmake(Qt5DBus) >= 5.6.0
 Requires:   cmake(Qt5PrintSupport) >= 5.6.0
 Requires:   cmake(Qt5Xml) >= 5.6.0
+Provides:   kde4support-devel = %{version}
+Obsoletes:  kde4support-devel < %{version}
 
 %description devel
 This package includes CMake macros and C++
@@ -188,6 +188,7 @@
 KDEDIRS environment variable correctly. Development files.
 
 %lang_package
+
 %prep
 %setup -q
 
@@ -201,20 +202,19 @@
 
 %if %{with lang}
 %find_lang %{name} --with-man --all-name
-%kf5_find_htmldocs
+%{kf5_find_htmldocs}
 %endif
 
-%post -n 

commit kdelibs4support for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-07-21 10:12:03

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


Package is "kdelibs4support"

Sat Jul 21 10:12:03 2018 rev:56 rq:623273 version:5.48.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-06-22 13:19:35.773664657 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-07-21 10:12:03.379145098 +0200
@@ -1,0 +2,13 @@
+Mon Jul 16 04:37:38 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:
+  * Set QT_USE_FAST_OPERATOR_PLUS ourselves
+  * Don't export kf5-config to the CMake config file
+  * Remove unused entry X-KDE-DBus-ModuleName from the kded plugin metadata
+  * Use override
+
+---

Old:

  kdelibs4support-5.47.0.tar.xz

New:

  kdelibs4support-5.48.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.3QqjsE/_old  2018-07-21 10:12:03.927144971 +0200
+++ /var/tmp/diff_new_pack.3QqjsE/_new  2018-07-21 10:12:03.927144971 +0200
@@ -18,15 +18,14 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.47.0
+Version:5.48.0
 Release:0
-%define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}

++ kdelibs4support-5.47.0.tar.xz -> kdelibs4support-5.48.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.47.0/CMakeLists.txt 
new/kdelibs4support-5.48.0/CMakeLists.txt
--- old/kdelibs4support-5.47.0/CMakeLists.txt   2018-06-02 19:52:27.0 
+0200
+++ new/kdelibs4support-5.48.0/CMakeLists.txt   2018-07-08 00:30:03.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.47.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.47.0") # handled by release scripts
+set(KF5_VERSION "5.48.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.48.0") # handled by release scripts
 project(KDELibs4Support 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)
 
@@ -75,6 +75,8 @@
 remove_definitions(-DQT_NO_CAST_FROM_ASCII)
 remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY)
 remove_definitions(-DQT_USE_QSTRINGBUILDER)
+# TODO: use QT_USE_QSTRINGBUILDER instead of deprecated & undocumented 
QT_USE_FAST_OPERATOR_PLUS
+add_definitions(-DQT_USE_FAST_OPERATOR_PLUS)
 
 # This one won't be needed when CMake 2.8.13 is depended on.
 add_definitions(
@@ -91,7 +93,7 @@
 target_link_libraries(kf5-config KF5::CoreAddons KF5::I18n KF5::ConfigCore 
KF5::KDELibs4Support)
 target_include_directories(kf5-config PRIVATE 
"${CMAKE_CURRENT_BINARY_DIR}/../..")
 
-install(TARGETS kf5-config EXPORT KF5KDELibs4SupportTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS} ) # put this for now into the export set 
KDELibs4SupportTargets, so that it exists and is not empty
+install(TARGETS kf5-config ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
 
 # create a Config.cmake and a ConfigVersion.cmake file and install them
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.47.0/autotests/kfilemetainfotest.cpp 
new/kdelibs4support-5.48.0/autotests/kfilemetainfotest.cpp
--- old/kdelibs4support-5.47.0/autotests/kfilemetainfotest.cpp  2018-06-02 
19:52:27.0 +0200
+++ new/kdelibs4support-5.48.0/autotests/kfilemetainfotest.cpp  2018-07-08 
00:30:03.0 +0200
@@ -38,7 +38,7 @@
 KFileMetaInfoThread(const QString );
 
 protected:
-void run() Q_DECL_OVERRIDE;
+void run() override;
 
 private:
 QString m_fileName;
diff 

commit kdelibs4support for openSUSE:Factory

2018-06-22 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Fri Jun 22 13:19:06 2018 rev:55 rq:616751 version:5.47.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-05-18 14:20:31.306624339 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-06-22 13:19:35.773664657 +0200
@@ -1,0 +2,10 @@
+Tue Jun 12 21:26:03 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:
+  * Use override
+
+---

Old:

  kdelibs4support-5.46.0.tar.xz

New:

  kdelibs4support-5.47.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.dEAooo/_old  2018-06-22 13:19:36.345643449 +0200
+++ /var/tmp/diff_new_pack.dEAooo/_new  2018-06-22 13:19:36.349643300 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.46.0
+Version:5.47.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.46.0.tar.xz -> kdelibs4support-5.47.0.tar.xz ++
 2906 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2018-05-18 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-05-18 14:20:16

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


Package is "kdelibs4support"

Fri May 18 14:20:16 2018 rev:54 rq:607549 version:5.46.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-04-19 15:15:54.287943249 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-05-18 14:20:31.306624339 +0200
@@ -1,0 +2,10 @@
+Sun May 13 21:03:01 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:
+  * Fix file encoding
+
+---

Old:

  kdelibs4support-5.45.0.tar.xz

New:

  kdelibs4support-5.46.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.peKkKR/_old  2018-05-18 14:20:32.766570764 +0200
+++ /var/tmp/diff_new_pack.peKkKR/_new  2018-05-18 14:20:32.770570618 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.45.0
+Version:5.46.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.45.0.tar.xz -> kdelibs4support-5.46.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.45.0/CMakeLists.txt 
new/kdelibs4support-5.46.0/CMakeLists.txt
--- old/kdelibs4support-5.45.0/CMakeLists.txt   2018-04-07 21:34:21.0 
+0200
+++ new/kdelibs4support-5.46.0/CMakeLists.txt   2018-05-05 14:56:53.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.45.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.45.0") # handled by release scripts
+set(KF5_VERSION "5.46.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.46.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.45.0/po/gl/kdelibs4support.po 
new/kdelibs4support-5.46.0/po/gl/kdelibs4support.po
--- old/kdelibs4support-5.45.0/po/gl/kdelibs4support.po 2018-04-07 
21:34:21.0 +0200
+++ new/kdelibs4support-5.46.0/po/gl/kdelibs4support.po 2018-05-05 
14:56:53.0 +0200
@@ -16,8 +16,8 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-12-19 03:03+0100\n"
-"PO-Revision-Date: 2018-01-07 12:03+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) \n"
+"PO-Revision-Date: 2018-04-28 21:36+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -2322,7 +2322,7 @@
 #: kdebugdialog/kdebugdialog.cpp:60
 #, kde-format
 msgid "Shell"
-msgstr "Shell"
+msgstr "Intérprete de ordes"
 
 #: kdebugdialog/kdebugdialog.cpp:61
 #, kde-format
@@ -2506,7 +2506,7 @@
 #: kdecore/k3resolver.cpp:558
 #, kde-format
 msgid "request was canceled"
-msgstr "o pedido foi cancelado"
+msgstr "cancelouse a solicitude"
 
 #: kdecore/k3socketaddress.cpp:631
 #, kde-format
@@ -2530,7 +2530,7 @@
 #, kde-format
 msgctxt "Socket error code AddressInUse"
 msgid "address already in use"
-msgstr "o enderezo xa está a ser usado"
+msgstr "o enderezo xa está a usarse"
 
 #: kdecore/k3socketbase.cpp:230
 #, kde-format
@@ -2554,7 +2554,7 @@
 #, kde-format
 msgctxt "Socket error code NotCreated"
 msgid "socket has not been created"
-msgstr "o socket non foi creado"
+msgstr "o socket non se creou"
 
 #: kdecore/k3socketbase.cpp:250
 #, kde-format
@@ -2584,7 +2584,7 @@
 #, kde-format
 msgctxt "Socket error code NetFailure"
 msgid "network failure occurred"
-msgstr "aconteceu un fallo na rede"
+msgstr "ocorreu un fallo na 

commit kdelibs4support for openSUSE:Factory

2018-04-19 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Thu Apr 19 15:15:33 2018 rev:53 rq:596862 version:5.45.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-03-20 21:45:16.162283523 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-04-19 15:15:54.287943249 +0200
@@ -1,0 +2,11 @@
+Sat Apr 14 13:19:03 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:
+  * autotest: more debugging
+  * autotest: add info in case of CI failure (happens on FreeBSD)
+
+---

Old:

  kdelibs4support-5.44.0.tar.xz

New:

  kdelibs4support-5.45.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.AVRaCq/_old  2018-04-19 15:15:55.299903057 +0200
+++ /var/tmp/diff_new_pack.AVRaCq/_new  2018-04-19 15:15:55.303902898 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.44.0
+Version:5.45.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.44.0.tar.xz -> kdelibs4support-5.45.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.44.0/CMakeLists.txt 
new/kdelibs4support-5.45.0/CMakeLists.txt
--- old/kdelibs4support-5.44.0/CMakeLists.txt   2018-03-03 11:02:31.0 
+0100
+++ new/kdelibs4support-5.45.0/CMakeLists.txt   2018-04-07 21:34:21.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.44.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.44.0") # handled by release scripts
+set(KF5_VERSION "5.45.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.45.0") # handled by release scripts
 project(KDELibs4Support 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)
 
@@ -19,7 +19,7 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(REQUIRED_QT_VERSION 5.7.0)
+set(REQUIRED_QT_VERSION 5.8.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
 find_package(KF5Completion ${KF5_DEP_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.44.0/autotests/kstandarddirstest.cpp 
new/kdelibs4support-5.45.0/autotests/kstandarddirstest.cpp
--- old/kdelibs4support-5.44.0/autotests/kstandarddirstest.cpp  2018-03-03 
11:02:31.0 +0100
+++ new/kdelibs4support-5.45.0/autotests/kstandarddirstest.cpp  2018-04-07 
21:34:21.0 +0200
@@ -329,7 +329,7 @@
 const QString fromKStdDirs = KStandardDirs::realFilePath(cmd);
 QCOMPARE(fromKStdDirs, cmd);
 const QString fromQFileInfo = QFileInfo(cmd).canonicalFilePath();
-QVERIFY(fromQFileInfo.isEmpty()); // !! different result, since this 
doesn't exist as a file
+QVERIFY2(fromQFileInfo.isEmpty(), qPrintable(QString("QFileInfo(\"" + cmd 
+ "\").canonicalFilePath() returned \"" + fromQFileInfo + "\""))); // !! 
different result, since this doesn't exist as a file
 
 #ifdef Q_OS_UNIX
 // findExe with relative path
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.44.0/po/ca/docs/kf5-config/man-kf5-config.1.docbook 
new/kdelibs4support-5.45.0/po/ca/docs/kf5-config/man-kf5-config.1.docbook
--- old/kdelibs4support-5.44.0/po/ca/docs/kf5-config/man-kf5-config.1.docbook   
2018-03-03 11:02:31.0 +0100
+++ new/kdelibs4support-5.45.0/po/ca/docs/kf5-config/man-kf5-config.1.docbook   
2018-04-07 21:34:21.0 +0200
@@ -315,14 +315,14 @@
 > 
 
 Imprimeix a la pantalla el 

commit kdelibs4support for openSUSE:Factory

2018-03-20 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-03-20 21:44:26

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


Package is "kdelibs4support"

Tue Mar 20 21:44:26 2018 rev:52 rq:586819 version:5.44.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-02-16 21:29:39.987583080 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-03-20 21:45:16.162283523 +0100
@@ -1,0 +2,11 @@
+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:
+  * autotests: detect executables as shared libraries too
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+
+---

Old:

  kdelibs4support-5.43.0.tar.xz

New:

  kdelibs4support-5.44.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Q6LTIi/_old  2018-03-20 21:45:17.298242639 +0100
+++ /var/tmp/diff_new_pack.Q6LTIi/_new  2018-03-20 21:45:17.302242495 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.43.0
+Version:5.44.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -74,7 +74,7 @@
 Provides:   kde4support = %{version}
 Obsoletes:  kde4support < %{version}
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
-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}/portingAids/%{name}-%{version}.tar.xz
@@ -99,7 +99,7 @@
 
 %package -n kssl
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  System/GUI/KDE
 
 %description -n kssl
@@ -120,7 +120,7 @@
 
 %package -n %lname
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 Requires:   kded >= %{_kf5_bugfix_version}
 
@@ -142,7 +142,7 @@
 
 %package devel
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   %{name} = %{version}

++ kdelibs4support-5.43.0.tar.xz -> kdelibs4support-5.44.0.tar.xz ++
 3190 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2018-02-16 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-02-16 21:29:37

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


Package is "kdelibs4support"

Fri Feb 16 21:29:37 2018 rev:51 rq:576523 version:5.43.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-01-22 15:59:29.919327237 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-02-16 21:29:39.987583080 +0100
@@ -1,0 +2,14 @@
+Mon Feb 12 23:42:08 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:
+  * autotests: attempt to repair kmimetypetest on CI
+  * Add Windows notes for network related test applications
+  * Refactor Solid::NetworkingPrivate to have a shared and platform specific 
implementation
+  * Fix mingw compile error "src/kdeui/kapplication_win.cpp:212:22: error: 
'kill' was not declared in this scope"
+  * Fix kded dbus name in solid-networking howto
+
+---

Old:

  kdelibs4support-5.42.0.tar.xz

New:

  kdelibs4support-5.43.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Ox5POa/_old  2018-02-16 21:29:41.567526026 +0100
+++ /var/tmp/diff_new_pack.Ox5POa/_new  2018-02-16 21:29:41.567526026 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.42.0
+Version:5.43.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.42.0.tar.xz -> kdelibs4support-5.43.0.tar.xz ++
 3004 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-01-22 15:59:28

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


Package is "kdelibs4support"

Mon Jan 22 15:59:28 2018 rev:50 rq:59 version:5.42.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2018-01-09 14:41:42.668105198 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-01-22 15:59:29.919327237 +0100
@@ -1,0 +2,15 @@
+Tue Jan 16 22:50:16 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
+  * autotest: adapt to QUrl behaviour change
+  * Inform the user if the module can not be registered with org.kde.kded5 and 
exit with error
+  * Mingw32 compile fix
+  * Remove old check (we depend against qt5.7)
+  * Fix build with LibreSSL
+
+---

Old:

  kdelibs4support-5.41.0.tar.xz

New:

  kdelibs4support-5.42.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.wu1l1v/_old  2018-01-22 15:59:30.959278568 +0100
+++ /var/tmp/diff_new_pack.wu1l1v/_new  2018-01-22 15:59:30.963278380 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.41.0
+Version:5.42.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.41.0.tar.xz -> kdelibs4support-5.42.0.tar.xz ++
 3566 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2018-01-09 14:40:59

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


Package is "kdelibs4support"

Tue Jan  9 14:40:59 2018 rev:49 rq:559432 version:5.41.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-11-16 14:37:11.007004966 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2018-01-09 14:41:42.668105198 +0100
@@ -1,0 +2,10 @@
+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:
+  * None
+
+---

Old:

  kdelibs4support-5.40.0.tar.xz

New:

  kdelibs4support-5.41.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.W78DCY/_old  2018-01-09 14:41:43.236078560 +0100
+++ /var/tmp/diff_new_pack.W78DCY/_new  2018-01-09 14:41:43.240078373 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.40.0
+Version:5.41.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.40.0.tar.xz -> kdelibs4support-5.41.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.40.0/CMakeLists.txt 
new/kdelibs4support-5.41.0/CMakeLists.txt
--- old/kdelibs4support-5.40.0/CMakeLists.txt   2017-11-05 09:28:12.0 
+0100
+++ new/kdelibs4support-5.41.0/CMakeLists.txt   2017-12-02 21:03:43.0 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.40.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.40.0") # handled by release scripts
+set(KF5_VERSION "5.41.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.41.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.40.0/KF5KDE4SupportConfig.cmake.in 
new/kdelibs4support-5.41.0/KF5KDE4SupportConfig.cmake.in
--- old/kdelibs4support-5.40.0/KF5KDE4SupportConfig.cmake.in2017-11-05 
09:28:12.0 +0100
+++ new/kdelibs4support-5.41.0/KF5KDE4SupportConfig.cmake.in2017-12-02 
21:03:43.0 +0100
@@ -1,7 +1,7 @@
 @PACKAGE_INIT@
 
 include(CMakeFindDependencyMacro)
-find_dependency(KF5KDELibs4Support "@KF5_DEP_VERSION@")
+find_dependency(KF5KDELibs4Support "@KF5_VERSION@")
 
 if(NOT TARGET KF5::KDE4Support)
 add_library(KF5::KDE4Support @KDELibs4Support_LIB_TYPE@ IMPORTED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.40.0/data/currency/ang.desktop 
new/kdelibs4support-5.41.0/data/currency/ang.desktop
--- old/kdelibs4support-5.40.0/data/currency/ang.desktop2017-11-05 
09:28:12.0 +0100
+++ new/kdelibs4support-5.41.0/data/currency/ang.desktop2017-12-02 
21:03:43.0 +0100
@@ -6,8 +6,8 @@
 Name[ar]=غويلدر الأنتيل الهولندية
 Name[ast]=Florín antillanu
 Name[bs]=Gulden Holandskih Antila
-Name[ca]=Florí de les Antilles Holandeses
-Name[ca@valencia]=Florí de les Antilles Holandeses
+Name[ca]=Florí de les Antilles Neerlandeses
+Name[ca@valencia]=Florí de les Antilles Neerlandeses
 Name[cs]=Holandsko-antilský gulden
 Name[da]=Gylden, Hollandske Antiller 
 Name[de]=Niederländische-Antillen-Gulden
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.40.0/data/currency/ars.desktop 
new/kdelibs4support-5.41.0/data/currency/ars.desktop
--- old/kdelibs4support-5.40.0/data/currency/ars.desktop2017-11-05 
09:28:12.0 +0100
+++ new/kdelibs4support-5.41.0/data/currency/ars.desktop2017-12-02 

commit kdelibs4support for openSUSE:Factory

2017-11-16 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-11-16 14:37:08

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


Package is "kdelibs4support"

Thu Nov 16 14:37:08 2017 rev:48 rq:541649 version:5.40.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-10-27 13:54:24.847670237 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-11-16 14:37:11.007004966 +0100
@@ -1,0 +2,14 @@
+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:
+  * full docu for disableSessionManagement() replacement
+  * Make kssl compile against OpenSSL 1.1.0 (kde#370223)
+  * Add .arcconfig
+- Remove patches, now upstream:
+  * 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
+
+---

Old:

  0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
  kdelibs4support-5.39.0.tar.xz

New:

  kdelibs4support-5.40.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.RhaUW3/_old  2017-11-16 14:37:11.862973936 +0100
+++ /var/tmp/diff_new_pack.RhaUW3/_new  2017-11-16 14:37:11.866973791 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.39.0
+Version:5.40.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -79,8 +79,6 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM
-Patch1: 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -193,7 +191,6 @@
 %lang_package
 %prep
 %setup -q
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build

++ kdelibs4support-5.39.0.tar.xz -> kdelibs4support-5.40.0.tar.xz ++
 39365 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2017-10-27 Thread root
Hello community,

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

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


Package is "kdelibs4support"

Fri Oct 27 13:54:13 2017 rev:47 rq:536315 version:5.39.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-09-19 16:23:01.514468251 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-10-27 13:54:24.847670237 +0200
@@ -1,0 +2,10 @@
+Mon Oct 23 06:41:39 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:
+  * doc: validation not available in QInputDialog::getText
+
+---

Old:

  kdelibs4support-5.38.0.tar.xz

New:

  kdelibs4support-5.39.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.TE8EQD/_old  2017-10-27 13:54:25.607634715 +0200
+++ /var/tmp/diff_new_pack.TE8EQD/_new  2017-10-27 13:54:25.611634528 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.38.0
+Version:5.39.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.38.0.tar.xz -> kdelibs4support-5.39.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.38.0/CMakeLists.txt 
new/kdelibs4support-5.39.0/CMakeLists.txt
--- old/kdelibs4support-5.38.0/CMakeLists.txt   2017-09-03 10:03:58.0 
+0200
+++ new/kdelibs4support-5.39.0/CMakeLists.txt   2017-10-07 21:11:28.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.38.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.38.0") # handled by release scripts
+set(KF5_VERSION "5.39.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.39.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.38.0/po/gl/kdelibs4support.po 
new/kdelibs4support-5.39.0/po/gl/kdelibs4support.po
--- old/kdelibs4support-5.38.0/po/gl/kdelibs4support.po 2017-09-03 
10:03:58.0 +0200
+++ new/kdelibs4support-5.39.0/po/gl/kdelibs4support.po 2017-10-07 
21:11:28.0 +0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-02-27 03:55+0100\n"
-"PO-Revision-Date: 2017-08-20 14:27+0100\n"
+"PO-Revision-Date: 2017-10-04 21:06+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -7272,7 +7272,7 @@
 #: kdecore/kcmdlineargs.cpp:313
 #, kde-format
 msgid "Disable crash handler, to get core dumps"
-msgstr "Desactivar o xestor de peches inesperados, para obter envorcados"
+msgstr "Desactivar o xestor de quebras, para obter envorcados"
 
 #: kdecore/kcmdlineargs.cpp:315
 #, kde-format
@@ -7918,7 +7918,7 @@
 #: kdecore/ksavefile.cpp:280
 #, kde-format
 msgid "Error during rename."
-msgstr "Produciuse un erro ao cambiar o nome."
+msgstr "Produciuse un erro ao renomear."
 
 #: kdecore/ksocketfactory.cpp:92 kdecore/ksocketfactory.cpp:106
 #, kde-format
@@ -11952,12 +11952,12 @@
 "examined:\n"
 "%2"
 msgstr[0] ""
-"Non foi posíbel ler as cadeas das cores RGB de X11. Examinouse o seguinte "
-"lugar:\n"
+"Non foi posíbel ler as cadeas das cores RGB de X11. Examinouse a seguinte "
+"ruta de ficheiro:\n"
 "%2"
 msgstr[1] ""
-"Non foi posíbel ler as cadeas das cores RGB de X11. Examináronse os "
-"seguintes lugares:\n"
+"Non foi posíbel ler as cadeas das cores RGB de X11. Examináronse as "
+"seguintes rutas de ficheiro:\n"
 "%2"
 
 #: kdeui/kcolordialog.cpp:997
@@ 

commit kdelibs4support for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-09-19 16:22:59

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


Package is "kdelibs4support"

Tue Sep 19 16:22:59 2017 rev:46 rq:526638 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-09-08 20:43:32.201996574 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-09-19 16:23:01.514468251 +0200
@@ -1,0 +2,12 @@
+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:
+  * Fix typo, sorry
+  * kstandarddirstest: Stabilize test on CI
+  * Fix a few CMake warnings
+
+---

Old:

  kdelibs4support-5.37.0.tar.xz

New:

  kdelibs4support-5.38.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.xcWBvj/_old  2017-09-19 16:23:02.858278844 +0200
+++ /var/tmp/diff_new_pack.xcWBvj/_new  2017-09-19 16:23:02.862278280 +0200
@@ -18,40 +18,44 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%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:   kdelibs4support
-Version:5.37.0
+Version:5.38.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel >= %{_tar_path}
-BuildRequires:  kcompletion-devel >= %{_tar_path}
-BuildRequires:  kconfig-devel >= %{_tar_path}
-BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
-BuildRequires:  kcrash-devel >= %{_tar_path}
-BuildRequires:  kdbusaddons-devel >= %{_tar_path}
-BuildRequires:  kded-devel >= %{_tar_path}
-BuildRequires:  kdesignerplugin-devel >= %{_tar_path}
-BuildRequires:  kdoctools-devel >= %{_tar_path}
-BuildRequires:  kemoticons-devel >= %{_tar_path}
+BuildRequires:  kbookmarks-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcompletion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfig-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kconfigwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kcrash-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdbusaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kded-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdesignerplugin-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kdoctools-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kemoticons-devel >= %{_kf5_bugfix_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel >= %{_tar_path}
-BuildRequires:  kguiaddons-devel >= %{_tar_path}
-BuildRequires:  ki18n-devel >= %{_tar_path}
-BuildRequires:  kiconthemes-devel >= %{_tar_path}
-BuildRequires:  kio-devel >= %{_tar_path}
-BuildRequires:  kitemviews-devel >= %{_tar_path}
-BuildRequires:  knotifications-devel >= %{_tar_path}
-BuildRequires:  kparts-devel >= %{_tar_path}
-BuildRequires:  kservice-devel >= %{_tar_path}
-BuildRequires:  ktextwidgets-devel >= %{_tar_path}
-BuildRequires:  kunitconversion-devel >= %{_tar_path}
-BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
-BuildRequires:  kwindowsystem-devel >= %{_tar_path}
-BuildRequires:  kxmlgui-devel >= %{_tar_path}
+BuildRequires:  kglobalaccel-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kguiaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ki18n-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kiconthemes-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kio-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kitemviews-devel >= %{_kf5_bugfix_version}
+BuildRequires:  knotifications-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kparts-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kservice-devel >= %{_kf5_bugfix_version}
+BuildRequires:  ktextwidgets-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kunitconversion-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwidgetsaddons-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kwindowsystem-devel >= %{_kf5_bugfix_version}
+BuildRequires:  kxmlgui-devel >= %{_kf5_bugfix_version}
 BuildRequires:  perl-URI
 BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
 BuildRequires:  

commit kdelibs4support for openSUSE:Factory

2017-09-08 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-09-08 20:43:30

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


Package is "kdelibs4support"

Fri Sep  8 20:43:30 2017 rev:45 rq:519868 version:5.37.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-08-24 18:01:29.863531220 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-09-08 20:43:32.201996574 +0200
@@ -1,0 +2,6 @@
+Thu Aug 31 07:50:38 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to allow build with Qt5 built against openSSL 1.1 (boo#1055489):
+  * 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
+
+---

New:

  0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.97BAmU/_old  2017-09-08 20:43:32.925894793 +0200
+++ /var/tmp/diff_new_pack.97BAmU/_new  2017-09-08 20:43:32.929894230 +0200
@@ -66,9 +66,7 @@
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
-%if %{with lang}
 Recommends: %{name}-lang = %{version}
-%endif
 Provides:   kde4support = %{version}
 Obsoletes:  kde4support < %{version}
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
@@ -77,6 +75,8 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -189,6 +189,7 @@
 %lang_package
 %prep
 %setup -q
+%patch1 -p1
 
 %build
   %cmake_kf5 -d build

++ 0001-Make-kssl-compile-against-OpenSSL-1.1.0.patch ++
 1064 lines (skipped)




commit kdelibs4support for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-08-24 18:01:28

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


Package is "kdelibs4support"

Thu Aug 24 18:01:28 2017 rev:44 rq:516724 version:5.37.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-07-17 10:22:54.537453738 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-08-24 18:01:29.863531220 +0200
@@ -1,0 +2,14 @@
+Sun Aug 13 20:46:20 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 :
+  * Fix 'Deprecated hint for KUrl::path() is wrong on Windows' (kde#382242)
+  * Update kdelibs4support to use the target based support provided by kdewin
+  * Mark constructors as deprecated too
+  * Sync KDE4Defaults.cmake from kdelibs
+
+
+---

Old:

  kdelibs4support-5.36.0.tar.xz

New:

  kdelibs4support-5.37.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.FZWpQC/_old  2017-08-24 18:01:31.667277165 +0200
+++ /var/tmp/diff_new_pack.FZWpQC/_new  2017-08-24 18:01:31.679275475 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:   kdelibs4support
-Version:5.36.0
+Version:5.37.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -36,6 +36,7 @@
 BuildRequires:  kded-devel >= %{_tar_path}
 BuildRequires:  kdesignerplugin-devel >= %{_tar_path}
 BuildRequires:  kdoctools-devel >= %{_tar_path}
+BuildRequires:  kemoticons-devel >= %{_tar_path}
 BuildRequires:  kf5-filesystem
 BuildRequires:  kglobalaccel-devel >= %{_tar_path}
 BuildRequires:  kguiaddons-devel >= %{_tar_path}
@@ -51,7 +52,6 @@
 BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
 BuildRequires:  kwindowsystem-devel >= %{_tar_path}
 BuildRequires:  kxmlgui-devel >= %{_tar_path}
-BuildRequires:  kemoticons-devel >= %{_tar_path}
 BuildRequires:  perl-URI
 BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
 BuildRequires:  cmake(Qt5Core) >= 5.6.0

++ kdelibs4support-5.36.0.tar.xz -> kdelibs4support-5.37.0.tar.xz ++
 5549 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-07-17 10:22:47

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


Package is "kdelibs4support"

Mon Jul 17 10:22:47 2017 rev:43 rq:509896 version:5.36.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-07-05 23:49:45.569583378 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-07-17 10:22:54.537453738 +0200
@@ -1,0 +2,10 @@
+Wed Jul 12 07:14:00 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:
+  * Search for KEmoticons, which is a dependency per the CMake 
config.cmake.in. (kde#381839)
+
+---

Old:

  kdelibs4support-5.35.0.tar.xz

New:

  kdelibs4support-5.36.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.tWbyvw/_old  2017-07-17 10:22:55.281348871 +0200
+++ /var/tmp/diff_new_pack.tWbyvw/_new  2017-07-17 10:22:55.285348308 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.35
+%define _tar_path 5.36
 Name:   kdelibs4support
-Version:5.35.0
+Version:5.36.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -51,6 +51,7 @@
 BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
 BuildRequires:  kwindowsystem-devel >= %{_tar_path}
 BuildRequires:  kxmlgui-devel >= %{_tar_path}
+BuildRequires:  kemoticons-devel >= %{_tar_path}
 BuildRequires:  perl-URI
 BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
 BuildRequires:  cmake(Qt5Core) >= 5.6.0

++ kdelibs4support-5.35.0.tar.xz -> kdelibs4support-5.36.0.tar.xz ++
 18703 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2017-07-05 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-07-05 23:49:43

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


Package is "kdelibs4support"

Wed Jul  5 23:49:43 2017 rev:42 rq:502936 version:5.35.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-06-01 16:18:55.723925719 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-07-05 23:49:45.569583378 +0200
@@ -1,0 +2,13 @@
+Sun Jun 11 09:27:42 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:
+  * Register is deprecated
+  * tests: use right QProcess API in kmimetypetest
+  * Same treatment for the configure_file part of that statement too
+  * Handle having spaces in the path to CMAKE_SOURCE_DIR
+
+---

Old:

  kdelibs4support-5.34.0.tar.xz

New:

  kdelibs4support-5.35.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.W4HJhq/_old  2017-07-05 23:49:46.377469587 +0200
+++ /var/tmp/diff_new_pack.W4HJhq/_new  2017-07-05 23:49:46.381469024 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.34
+%define _tar_path 5.35
 Name:   kdelibs4support
-Version:5.34.0
+Version:5.35.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.34.0.tar.xz -> kdelibs4support-5.35.0.tar.xz ++
 19138 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-06-01 16:18:42

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


Package is "kdelibs4support"

Thu Jun  1 16:18:42 2017 rev:41 rq:495033 version:5.34.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-04-30 21:17:59.098722287 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-06-01 16:18:55.723925719 +0200
@@ -1,0 +2,11 @@
+Mon May 15 13:53:15 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
+- Use %find_lang %{name} --with-man --all-name
+
+---

Old:

  kdelibs4support-5.33.0.tar.xz

New:

  kdelibs4support-5.34.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.QdvOTW/_old  2017-06-01 16:18:56.327840559 +0200
+++ /var/tmp/diff_new_pack.QdvOTW/_new  2017-06-01 16:18:56.331839994 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.33
+%define _tar_path 5.34
 Name:   kdelibs4support
-Version:5.33.0
+Version:5.34.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -198,7 +198,8 @@
   %fdupes %{buildroot}
 
 %if %{with lang}
-%find_lang %{name}
+%find_lang %{name} --with-man --all-name
+%kf5_find_htmldocs
 %endif
 
 %post -n %lname -p /sbin/ldconfig
@@ -207,24 +208,6 @@
 
 %if %{with lang}
 %files lang -f %{name}.lang
-%doc %lang(ca) %{_kf5_mandir}/ca
-%doc %lang(de) %{_kf5_mandir}/de
-%doc %lang(es) %{_kf5_mandir}/es
-%doc %lang(it) %{_kf5_mandir}/it
-%doc %lang(nl) %{_kf5_mandir}/nl
-%doc %lang(pt_BR) %{_kf5_mandir}/pt_BR
-%doc %lang(sv) %{_kf5_mandir}/sv
-%doc %lang(uk) %{_kf5_mandir}/uk
-%doc %lang(ca) %{_kf5_htmldir}/ca
-%doc %lang(de) %{_kf5_htmldir}/de
-%doc %lang(es) %{_kf5_htmldir}/es
-%doc %lang(it) %{_kf5_htmldir}/it
-%doc %lang(nl) %{_kf5_htmldir}/nl
-%doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR
-%doc %lang(sr) %{_kf5_htmldir}/sr
-%doc %lang(sr@latin) %{_kf5_htmldir}/sr@latin
-%doc %lang(sv) %{_kf5_htmldir}/sv
-%doc %lang(uk) %{_kf5_htmldir}/uk
 %endif
 
 %files

++ kdelibs4support-5.33.0.tar.xz -> kdelibs4support-5.34.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.33.0/CMakeLists.txt 
new/kdelibs4support-5.34.0/CMakeLists.txt
--- old/kdelibs4support-5.33.0/CMakeLists.txt   2017-04-01 21:31:46.0 
+0200
+++ new/kdelibs4support-5.34.0/CMakeLists.txt   2017-05-06 13:48:14.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.33.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.33.0") # handled by release scripts
+set(KF5_VERSION "5.34.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.34.0") # handled by release scripts
 project(KDELibs4Support 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.33.0/po/bg/kdelibs4support.po 
new/kdelibs4support-5.34.0/po/bg/kdelibs4support.po
--- old/kdelibs4support-5.33.0/po/bg/kdelibs4support.po 2017-04-01 
21:31:46.0 +0200
+++ new/kdelibs4support-5.34.0/po/bg/kdelibs4support.po 2017-05-06 
13:48:14.0 +0200
@@ -1,8 +1,5 @@
-# translation of kdelibs4.po to Bulgarian
-# Bulgarian translation of KDE.
-# This file is licensed under the GPL.
-#
-# $Id:$
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
 #
 # Zlatko Popov , 2006, 2007, 2008, 2009.
 # Yasen Pramatarov , 2009, 2011.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.33.0/po/nb/kdelibs4support.po 
new/kdelibs4support-5.34.0/po/nb/kdelibs4support.po
--- old/kdelibs4support-5.33.0/po/nb/kdelibs4support.po 2017-04-01 
21:31:46.0 +0200
+++ new/kdelibs4support-5.34.0/po/nb/kdelibs4support.po 2017-05-06 
13:48:14.0 +0200
@@ -11,7 +11,7 @@
 

commit kdelibs4support for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-04-30 21:17:06

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


Package is "kdelibs4support"

Sun Apr 30 21:17:06 2017 rev:40 rq:492054 version:5.33.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-04-17 10:23:17.847823014 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-04-30 21:17:59.098722287 +0200
@@ -1,0 +2,11 @@
+Sat Apr 15 10:11:47 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.
+  * Upgrade KF5 version to 5.33.0.
+
+---

Old:

  kdelibs4support-5.32.0.tar.xz

New:

  kdelibs4support-5.33.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Bia3gS/_old  2017-04-30 21:17:59.854615707 +0200
+++ /var/tmp/diff_new_pack.Bia3gS/_new  2017-04-30 21:17:59.858615143 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.32
+%define _tar_path 5.33
 Name:   kdelibs4support
-Version:5.32.0
+Version:5.33.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.32.0.tar.xz -> kdelibs4support-5.33.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.32.0/CMakeLists.txt 
new/kdelibs4support-5.33.0/CMakeLists.txt
--- old/kdelibs4support-5.32.0/CMakeLists.txt   2017-03-04 17:10:46.0 
+0100
+++ new/kdelibs4support-5.33.0/CMakeLists.txt   2017-04-01 21:31:46.0 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.32.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.32.0") # handled by release scripts
+set(KF5_VERSION "5.33.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.33.0") # handled by release scripts
 project(KDELibs4Support 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/kdelibs4support-5.32.0/po/gl/kdelibs4support.po 
new/kdelibs4support-5.33.0/po/gl/kdelibs4support.po
--- old/kdelibs4support-5.32.0/po/gl/kdelibs4support.po 2017-03-04 
17:10:46.0 +0100
+++ new/kdelibs4support-5.33.0/po/gl/kdelibs4support.po 2017-04-01 
21:31:46.0 +0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-02-27 03:55+0100\n"
-"PO-Revision-Date: 2017-02-02 21:36+0100\n"
+"PO-Revision-Date: 2017-03-15 21:49+0100\n"
 "Last-Translator: Adrián Chaves Fernández (Gallaecio) \n"
 "Language-Team: Galician \n"
@@ -2732,7 +2732,7 @@
 "org"
 msgstr ""
 "KDE está traducido a moitas linguas grazas ao traballo dos equipos de "
-"tradución de todo o mundo.Para máis información acerca da "
+"tradución de todo o mundo.Para máis información sobre a "
 "internacionalización de KDE visite http://l10n.kde.org\;>http://;
 "l10n.kde.org ou http://www.trasno.net/"
 
@@ -7291,7 +7291,7 @@
 "format (usually WidthxHeight+XPos+YPos)"
 msgstr ""
 "estabelece a xeometría do cliente do trebello principal; consulte a axuda "
-"das X para o formato do argumento (polo xeral Largo×Alto+XPos+YPos)"
+"das X para o formato do argumento (polo xeral Anchura×Altura+XPos+YPos)"
 
 #: kdecore/kcmdlineargs.cpp:436
 #, kde-format
@@ -7346,7 +7346,7 @@
 #: kdecore/kcmdlineargs.cpp:924
 #, kde-format
 msgid "This application was written by somebody who wants to remain anonymous."
-msgstr "Este aplicativo foi escrito por alguén que quer quedar anónimo."
+msgstr "Este aplicativo foi escrito por alguén que quere quedar anónimo."
 
 #: kdecore/kcmdlineargs.cpp:929
 #, kde-format
@@ -7396,7 +7396,7 @@
 #: kdecore/kcmdlineargs.cpp:1127
 #, kde-format
 msgid "Show help about options"
-msgstr "Mostrar axuda acerca das opcións"
+msgstr "Mostrar axuda sobre as opcións"
 
 #: kdecore/kcmdlineargs.cpp:1133
 #, kde-format
@@ 

commit kdelibs4support for openSUSE:Factory

2017-04-17 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-04-17 10:23:12

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


Package is "kdelibs4support"

Mon Apr 17 10:23:12 2017 rev:39 rq:486732 version:5.32.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-03-28 15:09:17.747426211 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-04-17 10:23:17.847823014 +0200
@@ -1,0 +2,6 @@
+Fri Apr  7 11:16:04 UTC 2017 - wba...@tmo.at
+
+- Drop use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
+  as we don't build against Qt 5.5.1 any more
+
+---

Old:

  use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.sAu26I/_old  2017-04-17 10:23:19.239625905 +0200
+++ /var/tmp/diff_new_pack.sAu26I/_new  2017-04-17 10:23:19.239625905 +0200
@@ -76,9 +76,6 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM 
use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch -- We can enable 
usage of setFallbackSessionManagementEnabled function
-# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#95.310
-Patch0: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -191,9 +188,6 @@
 %lang_package
 %prep
 %setup -q
-%if 0%{?is_opensuse} || 0%{?suse_version} > 1315
-%patch0 -p1
-%endif
 
 %build
   %cmake_kf5 -d build




commit kdelibs4support for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-03-28 15:09:16

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


Package is "kdelibs4support"

Tue Mar 28 15:09:16 2017 rev:38 rq:481502 version:5.32.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-03-03 15:26:48.126489379 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-03-28 15:09:17.747426211 +0200
@@ -1,0 +2,14 @@
+Sun Mar 19 14:50:31 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:
+  * Commit translations from l10n-kf5
+  * Upgrade ECM and KF5 version requirements for 5.32.0 release.
+  * Fix bug in kfiledialog.cpp that causes crashing when native widgets are 
used.
+  * Port [i] to .at(i) to avoid unwanted detaching.
+  * Upgrade KF5 version to 5.32.0.
+
+---

Old:

  kdelibs4support-5.31.0.tar.xz

New:

  kdelibs4support-5.32.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.WJ73pq/_old  2017-03-28 15:09:18.783279460 +0200
+++ /var/tmp/diff_new_pack.WJ73pq/_new  2017-03-28 15:09:18.787278893 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.31
+%define _tar_path 5.32
 Name:   kdelibs4support
-Version:5.31.0
+Version:5.32.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.31.0.tar.xz -> kdelibs4support-5.32.0.tar.xz ++
 4704 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-03-03 15:26:46

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


Package is "kdelibs4support"

Fri Mar  3 15:26:46 2017 rev:37 rq:461414 version:5.31.0

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2017-02-03 17:44:24.823694518 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-03-03 15:26:48.126489379 +0100
@@ -1,0 +2,7 @@
+Thu Feb  9 09:25:59 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:

  kdelibs4support-5.30.0.tar.xz

New:

  kdelibs4support-5.31.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.s5Uytp/_old  2017-03-03 15:26:48.922376697 +0100
+++ /var/tmp/diff_new_pack.s5Uytp/_new  2017-03-03 15:26:48.926376131 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.30
+%define _tar_path 5.31
 Name:   kdelibs4support
-Version:5.30.0
+Version:5.31.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -52,16 +52,16 @@
 BuildRequires:  kwindowsystem-devel >= %{_tar_path}
 BuildRequires:  kxmlgui-devel >= %{_tar_path}
 BuildRequires:  perl-URI
-BuildRequires:  cmake(Qt5Concurrent) >= 5.5.0
-BuildRequires:  cmake(Qt5Core) >= 5.5.0
-BuildRequires:  cmake(Qt5DBus) >= 5.5.0
-BuildRequires:  cmake(Qt5Designer) >= 5.5.0
-BuildRequires:  cmake(Qt5Network) >= 5.5.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.5.0
-BuildRequires:  cmake(Qt5Svg) >= 5.5.0
-BuildRequires:  cmake(Qt5Test) >= 5.5.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.5.0
-BuildRequires:  cmake(Qt5X11Extras) >= 5.5.0
+BuildRequires:  cmake(Qt5Concurrent) >= 5.6.0
+BuildRequires:  cmake(Qt5Core) >= 5.6.0
+BuildRequires:  cmake(Qt5DBus) >= 5.6.0
+BuildRequires:  cmake(Qt5Designer) >= 5.6.0
+BuildRequires:  cmake(Qt5Network) >= 5.6.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.6.0
+BuildRequires:  cmake(Qt5Svg) >= 5.6.0
+BuildRequires:  cmake(Qt5Test) >= 5.6.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.6.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.6.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
@@ -77,7 +77,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM 
use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch -- We can enable 
usage of setFallbackSessionManagementEnabled function
-# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#95.300
+# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#95.310
 Patch0: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -167,10 +167,10 @@
 Requires:   ktextwidgets-devel >= %{_tar_path}
 Requires:   kunitconversion-devel >= %{_tar_path}
 Requires:   kwindowsystem-devel >= %{_tar_path}
-Requires:   cmake(Qt5Core) >= 5.5.0
-Requires:   cmake(Qt5DBus) >= 5.5.0
-Requires:   cmake(Qt5PrintSupport) >= 5.5.0
-Requires:   cmake(Qt5Xml) >= 5.5.0
+Requires:   cmake(Qt5Core) >= 5.6.0
+Requires:   cmake(Qt5DBus) >= 5.6.0
+Requires:   cmake(Qt5PrintSupport) >= 5.6.0
+Requires:   cmake(Qt5Xml) >= 5.6.0
 
 %description devel
 This package includes CMake macros and C++

++ kdelibs4support-5.30.0.tar.xz -> kdelibs4support-5.31.0.tar.xz ++
 11936 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2017-01-31 11:57:52

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-12-17 11:07:05.479529288 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2017-02-03 17:44:24.823694518 +0100
@@ -1,0 +2,7 @@
+Sun Jan  8 23:39:49 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:

  kdelibs4support-5.29.0.tar.xz

New:

  kdelibs4support-5.30.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.BurMrF/_old  2017-02-03 17:44:25.343620926 +0100
+++ /var/tmp/diff_new_pack.BurMrF/_new  2017-02-03 17:44:25.343620926 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.29
+%define _tar_path 5.30
 Name:   kdelibs4support
-Version:5.29.0
+Version:5.30.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel >= %{_tar_path}
@@ -77,7 +77,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM 
use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch -- We can enable 
usage of setFallbackSessionManagementEnabled function
-# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#95.290
+# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#95.300
 Patch0: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kdelibs4support-5.29.0.tar.xz -> kdelibs4support-5.30.0.tar.xz ++
 17127 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-11-17 12:29:46

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-10-28 12:18:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-11-17 12:29:47.0 +0100
@@ -1,0 +2,8 @@
+Sat Nov  5 20:31:29 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.28.0
+  * Make the France flag actually use all the pixmap
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.28.0.php
+
+---

Old:

  kdelibs4support-5.27.0.tar.xz

New:

  kdelibs4support-5.28.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.CuHLft/_old  2016-11-17 12:29:48.0 +0100
+++ /var/tmp/diff_new_pack.CuHLft/_new  2016-11-17 12:29:48.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.27
+%define _tar_path 5.28
 Name:   kdelibs4support
-Version:5.27.0
+Version:5.28.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -215,6 +215,7 @@
 %files lang -f %{name}.lang
 %doc %lang(ca) %{_kf5_mandir}/ca
 %doc %lang(de) %{_kf5_mandir}/de
+%doc %lang(es) %{_kf5_mandir}/es
 %doc %lang(it) %{_kf5_mandir}/it
 %doc %lang(nl) %{_kf5_mandir}/nl
 %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR
@@ -222,6 +223,7 @@
 %doc %lang(uk) %{_kf5_mandir}/uk
 %doc %lang(ca) %{_kf5_htmldir}/ca
 %doc %lang(de) %{_kf5_htmldir}/de
+%doc %lang(es) %{_kf5_htmldir}/es
 %doc %lang(it) %{_kf5_htmldir}/it
 %doc %lang(nl) %{_kf5_htmldir}/nl
 %doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR

++ kdelibs4support-5.27.0.tar.xz -> kdelibs4support-5.28.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.27.0/CMakeLists.txt 
new/kdelibs4support-5.28.0/CMakeLists.txt
--- old/kdelibs4support-5.27.0/CMakeLists.txt   2016-10-02 11:48:15.0 
+0200
+++ new/kdelibs4support-5.28.0/CMakeLists.txt   2016-11-05 15:46:34.0 
+0100
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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)
 
@@ -17,8 +17,8 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION "5.27.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.27.0") # handled by release scripts
+set(KF5_VERSION "5.28.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.28.0") # handled by release scripts
 set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.27.0/po/es/docs/kcontrol/kcm_ssl/index.docbook 
new/kdelibs4support-5.28.0/po/es/docs/kcontrol/kcm_ssl/index.docbook
--- old/kdelibs4support-5.27.0/po/es/docs/kcontrol/kcm_ssl/index.docbook
1970-01-01 01:00:00.0 +0100
+++ new/kdelibs4support-5.28.0/po/es/docs/kcontrol/kcm_ssl/index.docbook
2016-11-05 15:46:34.0 +0100
@@ -0,0 +1,210 @@
+
+
+  
+]>
+
+Versiones y certificados SSL
+
+
+Subhashish Pradhan
+ 
+ Rocío Gallego traduccio...@rociogallego.com Traducción EloyCuadraecua...@eloihr.netTraducción 
+
+
+2015-04-09
+Frameworks 5.9
+
+
+KDE
+Preferencias del sistema
+SSL
+certificados
+
+
+
+
+Introducción
+ proporciona una lista de todos los certificados X.509 usados por el 
sistema. Puede acceder a ellos en el módulo de las Preferencias de SSL de .
+
+Este módulo proporciona una lista por categorías de todas las versiones de 
SSL y sus certificados. Puede ver los detalles de cada certificado y añadir, 
borrar, desactivar o activar certificados.
+
+Los certificados están divididos en Certificados del sistema y Certificados añadidos por el usuario. Los Certificados del sistema disponen de más categorías según la organización que los emitió.
+
+
+El módulo de versiones y certificados SSL
+
+
+El módulo de versiones y certificados SSL.
+
+
+
+
+Ver los detalles de un certificado
+
+Seleccione un certificado perteneciente a una organización listada y 

commit kdelibs4support for openSUSE:Factory

2016-10-28 Thread h_root
Hello community,

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

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-09-14 23:21:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-10-28 12:18:11.0 +0200
@@ -1,0 +2,10 @@
+Sun Oct  2 12:52:31 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.27.0
+  * Cleanup. Do not install includes that point to non-existing
+includes and also remove those files
+  * Use more correct and with c++11 available std::remove_pointer
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.27.0.php
+
+---

Old:

  kdelibs4support-5.26.0.tar.xz

New:

  kdelibs4support-5.27.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.V7HOqi/_old  2016-10-28 12:18:12.0 +0200
+++ /var/tmp/diff_new_pack.V7HOqi/_new  2016-10-28 12:18:12.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.26
+%define _tar_path 5.27
 Name:   kdelibs4support
-Version:5.26.0
+Version:5.27.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.26.0.tar.xz -> kdelibs4support-5.27.0.tar.xz ++
 22491 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-09-14 23:21:35

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-08-29 15:01:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-09-14 23:21:38.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:48:34 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Fix Windows compilation error in kstyle.h
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdelibs4support-5.25.0.tar.xz

New:

  kdelibs4support-5.26.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.PEjOOB/_old  2016-09-14 23:21:39.0 +0200
+++ /var/tmp/diff_new_pack.PEjOOB/_new  2016-09-14 23:21:39.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdelibs4support
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.25.0.tar.xz -> kdelibs4support-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.25.0/CMakeLists.txt 
new/kdelibs4support-5.26.0/CMakeLists.txt
--- old/kdelibs4support-5.25.0/CMakeLists.txt   2016-08-07 15:45:35.0 
+0200
+++ new/kdelibs4support-5.26.0/CMakeLists.txt   2016-09-06 14:00:15.0 
+0200
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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)
 
@@ -17,8 +17,8 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.25.0/po/pl/kdelibs4support.po 
new/kdelibs4support-5.26.0/po/pl/kdelibs4support.po
--- old/kdelibs4support-5.25.0/po/pl/kdelibs4support.po 2016-08-07 
15:45:35.0 +0200
+++ new/kdelibs4support-5.26.0/po/pl/kdelibs4support.po 2016-09-06 
14:00:15.0 +0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdecalendarsystems\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-05-08 07:20+\n"
-"PO-Revision-Date: 2016-08-06 08:22+0100\n"
+"PO-Revision-Date: 2016-08-27 09:19+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -10206,7 +10206,7 @@
 #: kio/kdirselectdialog.cpp:135
 msgctxt "folder name"
 msgid "New Folder"
-msgstr "Nowy folder"
+msgstr "Nowy katalog"
 
 #: kio/kdirselectdialog.cpp:140
 msgctxt "@title:window"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.25.0/po/pt_BR/kdelibs4support.po 
new/kdelibs4support-5.26.0/po/pt_BR/kdelibs4support.po
--- old/kdelibs4support-5.25.0/po/pt_BR/kdelibs4support.po  2016-08-07 
15:45:35.0 +0200
+++ new/kdelibs4support-5.26.0/po/pt_BR/kdelibs4support.po  2016-09-06 
14:00:15.0 +0200
@@ -3,20 +3,21 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # André Marcelo Alvarenga , 2014, 2015.
+# Luiz Fernando Ranghetti , 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4support\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-05-08 07:20+\n"
-"PO-Revision-Date: 2015-11-30 20:37-0200\n"
-"Last-Translator: André Marcelo Alvarenga \n"
-"Language-Team: Brazilian Portuguese \n"
+"PO-Revision-Date: 2016-08-31 18:54-0300\n"
+"Last-Translator: Luiz Fernando Ranghetti \n"

commit kdelibs4support for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-08-29 15:01:24

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-07-15 12:33:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-08-29 15:01:37.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug  7 21:51:48 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.25.0
+  * Qt >= 5.5 is now required
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.25.0.php
+
+---

Old:

  kdelibs4support-5.24.0.tar.xz

New:

  kdelibs4support-5.25.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.SMj0dh/_old  2016-08-29 15:01:40.0 +0200
+++ /var/tmp/diff_new_pack.SMj0dh/_new  2016-08-29 15:01:40.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.24
+%define _tar_path 5.25
 Name:   kdelibs4support
-Version:5.24.0
+Version:5.25.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -52,16 +52,16 @@
 BuildRequires:  kwindowsystem-devel >= %{_tar_path}
 BuildRequires:  kxmlgui-devel >= %{_tar_path}
 BuildRequires:  perl-URI
-BuildRequires:  cmake(Qt5Concurrent) >= 5.4.0
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
-BuildRequires:  cmake(Qt5DBus) >= 5.4.0
-BuildRequires:  cmake(Qt5Designer) >= 5.4.0
-BuildRequires:  cmake(Qt5Network) >= 5.4.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.4.0
-BuildRequires:  cmake(Qt5Svg) >= 5.4.0
-BuildRequires:  cmake(Qt5Test) >= 5.4.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
-BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0
+BuildRequires:  cmake(Qt5Concurrent) >= 5.5.0
+BuildRequires:  cmake(Qt5Core) >= 5.5.0
+BuildRequires:  cmake(Qt5DBus) >= 5.5.0
+BuildRequires:  cmake(Qt5Designer) >= 5.5.0
+BuildRequires:  cmake(Qt5Network) >= 5.5.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.5.0
+BuildRequires:  cmake(Qt5Svg) >= 5.5.0
+BuildRequires:  cmake(Qt5Test) >= 5.5.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.5.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.5.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
@@ -167,10 +167,10 @@
 Requires:   ktextwidgets-devel >= %{_tar_path}
 Requires:   kunitconversion-devel >= %{_tar_path}
 Requires:   kwindowsystem-devel >= %{_tar_path}
-Requires:   cmake(Qt5Core) >= 5.4.0
-Requires:   cmake(Qt5DBus) >= 5.4.0
-Requires:   cmake(Qt5PrintSupport) >= 5.4.0
-Requires:   cmake(Qt5Xml) >= 5.4.0
+Requires:   cmake(Qt5Core) >= 5.5.0
+Requires:   cmake(Qt5DBus) >= 5.5.0
+Requires:   cmake(Qt5PrintSupport) >= 5.5.0
+Requires:   cmake(Qt5Xml) >= 5.5.0
 
 %description devel
 This package includes CMake macros and C++

++ kdelibs4support-5.24.0.tar.xz -> kdelibs4support-5.25.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.24.0/CMakeLists.txt 
new/kdelibs4support-5.25.0/CMakeLists.txt
--- old/kdelibs4support-5.24.0/CMakeLists.txt   2016-07-03 11:07:14.0 
+0200
+++ new/kdelibs4support-5.25.0/CMakeLists.txt   2016-08-07 15:45:35.0 
+0200
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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)
 
@@ -17,9 +17,9 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION "5.24.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.24.0") # handled by release scripts
-set(REQUIRED_QT_VERSION 5.4.0)
+set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
 find_package(KF5Completion ${KF5_DEP_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.24.0/data/currency/nlg.desktop 
new/kdelibs4support-5.25.0/data/currency/nlg.desktop
--- old/kdelibs4support-5.24.0/data/currency/nlg.desktop

commit kdelibs4support for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-07-15 12:33:26

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-07-03 12:21:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-07-15 12:33:28.0 +0200
@@ -1,0 +2,9 @@
+Wed Jul  6 15:02:56 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.24.0
+  * Remove KDETranslator class, there's no kdeqt.po anymore
+  * Document the replacement for use12Clock()
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.24.0.php
+
+---

Old:

  kdelibs4support-5.23.0.tar.xz

New:

  kdelibs4support-5.24.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.jKylPj/_old  2016-07-15 12:33:30.0 +0200
+++ /var/tmp/diff_new_pack.jKylPj/_new  2016-07-15 12:33:30.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.23
+%define _tar_path 5.24
 Name:   kdelibs4support
-Version:5.23.0
+Version:5.24.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.23.0.tar.xz -> kdelibs4support-5.24.0.tar.xz ++
 2256 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2016-07-03 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-07-03 12:21:13

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-05-19 12:06:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-07-03 12:21:15.0 +0200
@@ -1,0 +2,9 @@
+Mon Jun  6 21:24:33 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.23.0
+  * Warn about KDateTimeParser::parseDateUnicode not being implemented
+  * K4TimeZoneWidget: correct path for flag images
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.23.0.php
+
+---

Old:

  kdelibs4support-5.22.0.tar.xz

New:

  kdelibs4support-5.23.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.kvZK5s/_old  2016-07-03 12:21:16.0 +0200
+++ /var/tmp/diff_new_pack.kvZK5s/_new  2016-07-03 12:21:16.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.22
+%define _tar_path 5.23
 Name:   kdelibs4support
-Version:5.22.0
+Version:5.23.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.22.0.tar.xz -> kdelibs4support-5.23.0.tar.xz ++
 2665 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-05-19 12:06:42

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-04-12 19:14:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-05-19 12:06:43.0 +0200
@@ -1,0 +2,9 @@
+Sat May  7 18:30:56 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.22.0 (boo#980066)
+  * Provide a fallback MAXPATHLEN if not defined
+  * Fix KDateTime::isValid() for ClockTime values (kde#336738)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.22.0.php
+
+---

Old:

  kdelibs4support-5.21.0.tar.xz

New:

  kdelibs4support-5.22.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Bm9JV3/_old  2016-05-19 12:06:44.0 +0200
+++ /var/tmp/diff_new_pack.Bm9JV3/_new  2016-05-19 12:06:44.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.21
+%define _tar_path 5.22
 Name:   kdelibs4support
-Version:5.21.0
+Version:5.22.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.21.0.tar.xz -> kdelibs4support-5.22.0.tar.xz ++
 3420 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-04-12 19:14:17

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-03-16 10:28:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-04-12 19:14:19.0 +0200
@@ -1,0 +2,18 @@
+Wed Apr  6 08:42:28 UTC 2016 - alarr...@suse.com
+
+- Don't apply use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
+  in SLE12 since Qt 5.5.1 in SLE12 is not patched to support the new
+  session management API from 5.6.0 .
+
+---
+Mon Apr  4 14:19:48 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.21.0 (boo#974793)
+  * Fix obsolete link in kdebugdialog5 docbook
+  * Don't leak Qt5::Network as required lib for the rest of
+the ConfigureChecks
+  * 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:

  kdelibs4support-5.20.0.tar.xz

New:

  kdelibs4support-5.21.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.E2VrNp/_old  2016-04-12 19:14:20.0 +0200
+++ /var/tmp/diff_new_pack.E2VrNp/_new  2016-04-12 19:14:20.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.20
+%define _tar_path 5.21
 Name:   kdelibs4support
-Version:5.20.0
+Version:5.21.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -52,16 +52,16 @@
 BuildRequires:  kwindowsystem-devel >= %{_tar_path}
 BuildRequires:  kxmlgui-devel >= %{_tar_path}
 BuildRequires:  perl-URI
-BuildRequires:  cmake(Qt5Concurrent) >= 5.3.0
-BuildRequires:  cmake(Qt5Core) >= 5.3.0
-BuildRequires:  cmake(Qt5DBus) >= 5.3.0
-BuildRequires:  cmake(Qt5Designer) >= 5.3.0
-BuildRequires:  cmake(Qt5Network) >= 5.3.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.3.0
-BuildRequires:  cmake(Qt5Svg) >= 5.3.0
-BuildRequires:  cmake(Qt5Test) >= 5.3.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.3.0
-BuildRequires:  cmake(Qt5X11Extras) >= 5.3.0
+BuildRequires:  cmake(Qt5Concurrent) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5DBus) >= 5.4.0
+BuildRequires:  cmake(Qt5Designer) >= 5.4.0
+BuildRequires:  cmake(Qt5Network) >= 5.4.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.4.0
+BuildRequires:  cmake(Qt5Svg) >= 5.4.0
+BuildRequires:  cmake(Qt5Test) >= 5.4.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
@@ -167,10 +167,10 @@
 Requires:   ktextwidgets-devel >= %{_tar_path}
 Requires:   kunitconversion-devel >= %{_tar_path}
 Requires:   kwindowsystem-devel >= %{_tar_path}
-Requires:   cmake(Qt5Core) >= 5.3.0
-Requires:   cmake(Qt5DBus) >= 5.3.0
-Requires:   cmake(Qt5PrintSupport) >= 5.3.0
-Requires:   cmake(Qt5Xml) >= 5.3.0
+Requires:   cmake(Qt5Core) >= 5.4.0
+Requires:   cmake(Qt5DBus) >= 5.4.0
+Requires:   cmake(Qt5PrintSupport) >= 5.4.0
+Requires:   cmake(Qt5Xml) >= 5.4.0
 
 %description devel
 This package includes CMake macros and C++
@@ -191,7 +191,9 @@
 %lang_package
 %prep
 %setup -q
+%if 0%{?is_opensuse} || 0%{?suse_version} > 1315
 %patch0 -p1
+%endif
 
 %build
   %cmake_kf5 -d build
@@ -213,6 +215,7 @@
 %files lang -f %{name}.lang
 %doc %lang(ca) %{_kf5_mandir}/ca
 %doc %lang(de) %{_kf5_mandir}/de
+%doc %lang(it) %{_kf5_mandir}/it
 %doc %lang(nl) %{_kf5_mandir}/nl
 %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR
 %doc %lang(sv) %{_kf5_mandir}/sv

++ kdelibs4support-5.20.0.tar.xz -> kdelibs4support-5.21.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.20.0/CMakeLists.txt 
new/kdelibs4support-5.21.0/CMakeLists.txt
--- old/kdelibs4support-5.20.0/CMakeLists.txt   2016-03-05 19:52:37.0 
+0100
+++ new/kdelibs4support-5.21.0/CMakeLists.txt   2016-04-03 22:49:26.0 
+0200
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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;)
 

commit kdelibs4support for openSUSE:Factory

2016-03-16 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-03-16 10:28:39

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-03-02 14:20:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-03-16 10:28:40.0 +0100
@@ -1,0 +2,10 @@
+Sun Mar  6 09:56:08 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.20.0 (boo#970856)
+  * Fix session management for KApplication based applications
+(kde#354724, boo#955280)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.20.0.php
+- Drop upstreamed fix-session-saving.patch
+
+---

Old:

  fix-session-saving.patch
  kdelibs4support-5.19.0.tar.xz

New:

  kdelibs4support-5.20.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.1gEqWk/_old  2016-03-16 10:28:41.0 +0100
+++ /var/tmp/diff_new_pack.1gEqWk/_new  2016-03-16 10:28:41.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.19
+%define _tar_path 5.20
 Name:   kdelibs4support
-Version:5.19.0
+Version:5.20.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -76,11 +76,9 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM fix-session-saving.patch -- kde#354724, boo#955280
-Patch0: fix-session-saving.patch
 # PATCH-FIX-UPSTREAM 
use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch -- We can enable 
usage of setFallbackSessionManagementEnabled function
-# with Qt 5.5.1, as we have the qtbase patch backported. -- kde#354724, 
boo#955280
-Patch1: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
+# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#955280
+Patch0: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -194,7 +192,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build
@@ -222,6 +219,7 @@
 %doc %lang(uk) %{_kf5_mandir}/uk
 %doc %lang(ca) %{_kf5_htmldir}/ca
 %doc %lang(de) %{_kf5_htmldir}/de
+%doc %lang(it) %{_kf5_htmldir}/it
 %doc %lang(nl) %{_kf5_htmldir}/nl
 %doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR
 %doc %lang(sr) %{_kf5_htmldir}/sr

++ kdelibs4support-5.19.0.tar.xz -> kdelibs4support-5.20.0.tar.xz ++
 4133 lines of diff (skipped)

++ use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch ++
--- /var/tmp/diff_new_pack.1gEqWk/_old  2016-03-16 10:28:44.0 +0100
+++ /var/tmp/diff_new_pack.1gEqWk/_new  2016-03-16 10:28:44.0 +0100
@@ -5,7 +5,7 @@
 @@ -380,7 +380,7 @@ void KApplicationPrivate::init(bool GUIenabled)
  parseCommandLine();
  
- QApplication::setDesktopSettingsAware(false);
+ QGuiApplication::setDesktopSettingsAware(false);
 -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
 +#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 1)
  QGuiApplication::setFallbackSessionManagementEnabled(false);




commit kdelibs4support for openSUSE:Factory

2016-03-02 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-03-02 14:20:17

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-02-24 18:54:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-03-02 14:20:19.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 26 14:59:32 UTC 2016 - wba...@tmo.at
+
+- Enable use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
+  unconditionally, the updated libqt5-qtbase is in Tumbleweed now
+
+---



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.WW1Xd5/_old  2016-03-02 14:20:20.0 +0100
+++ /var/tmp/diff_new_pack.WW1Xd5/_new  2016-03-02 14:20:20.0 +0100
@@ -79,7 +79,7 @@
 # PATCH-FIX-UPSTREAM fix-session-saving.patch -- kde#354724, boo#955280
 Patch0: fix-session-saving.patch
 # PATCH-FIX-UPSTREAM 
use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch -- We can enable 
usage of setFallbackSessionManagementEnabled function
-# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#955280
+# with Qt 5.5.1, as we have the qtbase patch backported. -- kde#354724, 
boo#955280
 Patch1: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -194,9 +194,7 @@
 %prep
 %setup -q
 %patch0 -p1
-%if 0%{?suse_version} == 1315 && 0%{?is_opensuse}
 %patch1 -p1
-%endif
 
 %build
   %cmake_kf5 -d build




commit kdelibs4support for openSUSE:Factory

2016-02-24 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-02-24 18:54:15

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2016-01-20 09:42:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-02-24 18:54:16.0 +0100
@@ -1,0 +2,18 @@
+Mon Feb 22 16:16:03 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Add and enable use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
+  on 42.1 Leap only, for now (kde#354724, boo#955280)
+
+---
+Wed Feb 17 22:07:24 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Added fix-session-saving.patch (kde#354724, boo#955280)
+
+---
+Sat Feb  6 18:00:48 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.19.0 (boo#967668)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.19.0.php
+
+---

Old:

  kdelibs4support-5.18.0.tar.xz

New:

  fix-session-saving.patch
  kdelibs4support-5.19.0.tar.xz
  use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.mz8tds/_old  2016-02-24 18:54:17.0 +0100
+++ /var/tmp/diff_new_pack.mz8tds/_new  2016-02-24 18:54:17.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.18
+%define _tar_path 5.19
 Name:   kdelibs4support
-Version:5.18.0
+Version:5.19.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -76,6 +76,11 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-UPSTREAM fix-session-saving.patch -- kde#354724, boo#955280
+Patch0: fix-session-saving.patch
+# PATCH-FIX-UPSTREAM 
use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch -- We can enable 
usage of setFallbackSessionManagementEnabled function
+# with Qt 5.5.1, as we have the qtbase patch backported. For now only apppy 
patch on 42.1 Leap, as TW doesn't have that patch yet -- #354724, boo#955280
+Patch1: use-setFallbackSessionManagementEnabled-API-with-5.5.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -188,6 +193,10 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
+%if 0%{?suse_version} == 1315 && 0%{?is_opensuse}
+%patch1 -p1
+%endif
 
 %build
   %cmake_kf5 -d build

++ fix-session-saving.patch ++
>From 58e49487aece3de19aae90bbb9b80cd5aab94d04 Mon Sep 17 00:00:00 2001
From: Andreas Hartmetz 
Date: Fri, 19 Feb 2016 19:49:01 +0100
Subject: [PATCH 2/2] Fix session management for KApplication based
 applications.

- Call QGuiApplication::setFallbackSessionManagementEnabled(false)
  to prevent premature application exit
- Wire up the saveStateRequest() and  commitDataRequest() signals
  to the appropriate methods that had to be turned into slots first.
  Those methods were never even called, they were not ported properly.
- Cancel logout when the user decides to do that. A comment in the
  code was not sufficient to do that. (?!?!)

CCBUG: 354724
---
 src/kdeui/kapplication.cpp | 17 -
 src/kdeui/kapplication.h   | 29 +++--
 2 files changed, 31 insertions(+), 15 deletions(-)

diff --git a/src/kdeui/kapplication.cpp b/src/kdeui/kapplication.cpp
index d78212a..54fd1de 100644
--- a/src/kdeui/kapplication.cpp
+++ b/src/kdeui/kapplication.cpp
@@ -380,6 +380,9 @@ void KApplicationPrivate::init(bool GUIenabled)
 parseCommandLine();
 
 QApplication::setDesktopSettingsAware(false);
+#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
+QGuiApplication::setFallbackSessionManagementEnabled(false);
+#endif
 
 #if HAVE_X11
 isX11 = (QGuiApplication::platformName() == QStringLiteral("xcb"));
@@ -472,6 +475,12 @@ void KApplicationPrivate::init(bool GUIenabled)
 q->connect(KToolInvocation::self(), 
SIGNAL(kapplication_hook(QStringList&,QByteArray&)),
q, 
SLOT(_k_slot_KToolInvocation_hook(QStringList&,QByteArray&)));
 
+q->connect(q, SIGNAL(commitDataRequest(QSessionManager&)),
+   q, SLOT(commitData(QSessionManager&)));
+q->connect(q, SIGNAL(saveStateRequest(QSessionManager&)),
+   q, 

commit kdelibs4support for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2016-01-20 09:42:33

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-12-29 12:51:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2016-01-20 09:42:35.0 +0100
@@ -1,0 +2,10 @@
+Sat Jan  2 17:42:38 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.18.0
+  * kdelibs4support requires kded (for kdedmodule.desktop)
+  * Fix CMP0064 warning by setting policy CMP0054 to NEW
+  * Don't export symbols that also exist in KWidgetsAddons
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.18.0.php
+
+---

Old:

  kdelibs4support-5.17.0.tar.xz

New:

  kdelibs4support-5.18.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.13gabd/_old  2016-01-20 09:42:36.0 +0100
+++ /var/tmp/diff_new_pack.13gabd/_new  2016-01-20 09:42:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.17
+%define _tar_path 5.18
 Name:   kdelibs4support
-Version:5.17.0
+Version:5.18.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -33,6 +33,7 @@
 BuildRequires:  kconfigwidgets-devel >= %{_tar_path}
 BuildRequires:  kcrash-devel >= %{_tar_path}
 BuildRequires:  kdbusaddons-devel >= %{_tar_path}
+BuildRequires:  kded-devel >= %{_tar_path}
 BuildRequires:  kdesignerplugin-devel >= %{_tar_path}
 BuildRequires:  kdoctools-devel >= %{_tar_path}
 BuildRequires:  kf5-filesystem
@@ -198,18 +199,6 @@
 
 %if %{with lang}
 %find_lang %{name}
-echo "%doc %lang(ca) %{_kf5_mandir}/ca" >>%{name}.lang
-echo "%doc %lang(de) %{_kf5_mandir}/de" >>%{name}.lang
-echo "%doc %lang(nl) %{_kf5_mandir}/nl" >>%{name}.lang
-echo "%doc %lang(pt_BR) %{_kf5_mandir}/pt_BR" >>%{name}.lang
-echo "%doc %lang(sv) %{_kf5_mandir}/sv" >>%{name}.lang
-echo "%doc %lang(uk) %{_kf5_mandir}/uk" >>%{name}.lang
-echo "%doc %lang(ca) %{_kf5_htmldir}/ca" >>%{name}.lang
-echo "%doc %lang(de) %{_kf5_htmldir}/de" >>%{name}.lang
-echo "%doc %lang(nl) %{_kf5_htmldir}/nl" >>%{name}.lang
-echo "%doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR" >>%{name}.lang
-echo "%doc %lang(sv) %{_kf5_htmldir}/sv" >>%{name}.lang
-echo "%doc %lang(uk) %{_kf5_htmldir}/uk" >>%{name}.lang
 %endif
 
 %post -n %lname -p /sbin/ldconfig
@@ -218,6 +207,20 @@
 
 %if %{with lang}
 %files lang -f %{name}.lang
+%doc %lang(ca) %{_kf5_mandir}/ca
+%doc %lang(de) %{_kf5_mandir}/de
+%doc %lang(nl) %{_kf5_mandir}/nl
+%doc %lang(pt_BR) %{_kf5_mandir}/pt_BR
+%doc %lang(sv) %{_kf5_mandir}/sv
+%doc %lang(uk) %{_kf5_mandir}/uk
+%doc %lang(ca) %{_kf5_htmldir}/ca
+%doc %lang(de) %{_kf5_htmldir}/de
+%doc %lang(nl) %{_kf5_htmldir}/nl
+%doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR
+%doc %lang(sr) %{_kf5_htmldir}/sr
+%doc %lang(sr@latin) %{_kf5_htmldir}/sr@latin
+%doc %lang(sv) %{_kf5_htmldir}/sv
+%doc %lang(uk) %{_kf5_htmldir}/uk
 %endif
 
 %files

++ kdelibs4support-5.17.0.tar.xz -> kdelibs4support-5.18.0.tar.xz ++
 2530 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-12-29 12:51:45

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-11-24 22:22:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-12-29 12:51:46.0 +0100
@@ -1,0 +2,8 @@
+Thu Dec 10 23:04:13 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.17.0
+  * Fix some i18n calls.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.17.0.php
+
+---

Old:

  kdelibs4support-5.16.0.tar.xz

New:

  kdelibs4support-5.17.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.H4dBZJ/_old  2015-12-29 12:51:47.0 +0100
+++ /var/tmp/diff_new_pack.H4dBZJ/_new  2015-12-29 12:51:47.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.16
+%define _tar_path 5.17
 Name:   kdelibs4support
-Version:5.16.0
+Version:5.17.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.16.0.tar.xz -> kdelibs4support-5.17.0.tar.xz ++
 23793 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

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

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-10-19 22:23:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-11-24 22:22:57.0 +0100
@@ -1,0 +2,9 @@
+Sun Nov  8 16:58:58 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.16.0 (boo#955067)
+  * Don't try to store a QDateTime in mmap'ed memory
+  * Sync and adopt uriencode.cmake from kdoctools.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.16.0.php
+
+---

Old:

  kdelibs4support-5.15.0.tar.xz

New:

  kdelibs4support-5.16.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.xqaiFu/_old  2015-11-24 22:22:58.0 +0100
+++ /var/tmp/diff_new_pack.xqaiFu/_new  2015-11-24 22:22:58.0 +0100
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.15
+%define _tar_path 5.16
 Name:   kdelibs4support
-Version:5.15.0
+Version:5.16.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.15.0.tar.xz -> kdelibs4support-5.16.0.tar.xz ++
 7712 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-10-19 22:23:47

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-09-24 07:10:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-10-19 22:23:48.0 +0200
@@ -1,0 +2,11 @@
+Mon Oct  5 17:37:10 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.15.0
+  * Call newInstance from the child on first invocation
+  * Use kdewin defines.
+  * Don't try to find X11 on WIN32
+  * cmake: Fix taglib version check in FindTaglib.cmake.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.15.0.php
+
+---

Old:

  kdelibs4support-5.14.0.tar.xz

New:

  kdelibs4support-5.15.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.VetX6h/_old  2015-10-19 22:23:49.0 +0200
+++ /var/tmp/diff_new_pack.VetX6h/_new  2015-10-19 22:23:49.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.14
+%define _tar_path 5.15
 Name:   kdelibs4support
-Version:5.14.0
+Version:5.15.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.14.0.tar.xz -> kdelibs4support-5.15.0.tar.xz ++
 3963 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-09-24 07:10:55

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-09-02 07:45:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-09-24 07:10:56.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  8 17:12:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.14.0
+  * Port solid-networkstatus kded plugin to json metadata
+  * KPixmapCache: create dir if it doesn't exist
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.14.0.php
+
+---

Old:

  kdelibs4support-5.13.0.tar.xz

New:

  kdelibs4support-5.14.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.0dwSvc/_old  2015-09-24 07:10:57.0 +0200
+++ /var/tmp/diff_new_pack.0dwSvc/_new  2015-09-24 07:10:58.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.13
+%define _tar_path 5.14
 Name:   kdelibs4support
-Version:5.13.0
+Version:5.14.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.13.0.tar.xz -> kdelibs4support-5.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.13.0/CMakeLists.txt 
new/kdelibs4support-5.14.0/CMakeLists.txt
--- old/kdelibs4support-5.13.0/CMakeLists.txt   2015-08-04 12:52:18.0 
+0200
+++ new/kdelibs4support-5.14.0/CMakeLists.txt   2015-09-05 10:56:50.0 
+0200
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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)
 
@@ -17,8 +17,8 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION "5.13.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.13.0") # handled by release scripts
+set(KF5_VERSION "5.14.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.14.0") # handled by release scripts
 set(REQUIRED_QT_VERSION 5.3.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.13.0/autotests/kmimetypetest.cpp 
new/kdelibs4support-5.14.0/autotests/kmimetypetest.cpp
--- old/kdelibs4support-5.13.0/autotests/kmimetypetest.cpp  2015-08-04 
12:52:18.0 +0200
+++ new/kdelibs4support-5.14.0/autotests/kmimetypetest.cpp  2015-09-05 
10:56:50.0 +0200
@@ -40,10 +40,13 @@
 
 #include 
 
-int initializeLang()
+extern KSERVICE_EXPORT bool kservice_require_kded;
+
+static int initializeLang()
 {
 qputenv("LC_ALL", "en_US");
 qputenv("LANG", "en_US");
+kservice_require_kded = false;
 return 0;
 }
 
@@ -510,6 +513,7 @@
 && name != "application/x-x509-ca-cert"
 && name != "application/x-vnd.kde.kexi" // due to 
/usr/share/mime/packages/kde.xml from KDE4
 && name != "application/x-kexiproject-sqlite" // due to 
/usr/share/mime/packages/kde.xml from KDE4
+&& name != "application/vnd.sun.xml.base" // libreoffice.xml 
messing things up yet again
) {
 QCOMPARE(lookedupMime->name(), name);
 // if this fails, you have an alias defined as a real mimetype too!
@@ -900,4 +904,4 @@
 QVERIFY(ptr.isNull());
 ptr = KMimeType::mimeType(QStringLiteral("image/jpeg"));
 QVERIFY(!ptr.isNull());
-}
\ No newline at end of file
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdelibs4support-5.13.0/po/ca/docs/kdebugdialog5/index.docbook 
new/kdelibs4support-5.14.0/po/ca/docs/kdebugdialog5/index.docbook
--- old/kdelibs4support-5.13.0/po/ca/docs/kdebugdialog5/index.docbook   
2015-08-04 12:52:18.0 +0200
+++ new/kdelibs4support-5.14.0/po/ca/docs/kdebugdialog5/index.docbook   
2015-09-05 10:56:50.0 +0200
@@ -23,9 +23,9 @@
 
 
 20-12-2011
+>31-07-2015
 1.0  4.8
+>Frameworks 5.13
 
 
  és un diàleg per a gestionar missatges de diagnosi en temps 

commit kdelibs4support for openSUSE:Factory

2015-09-01 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-09-02 07:44:58

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


Package is "kdelibs4support"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-07-14 17:23:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-09-02 07:45:00.0 +0200
@@ -1,0 +2,15 @@
+Tue Aug  4 19:20:21 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
+  * kconfig_compiler_kf5 moved to libexec, use kreadconfig5 instead
+for the findExe test
+  * Document the (suboptimal) replacements for
+KApplication::disableSessionManagement
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.13.0.php
+
+---

Old:

  kdelibs4support-5.12.0.tar.xz

New:

  kdelibs4support-5.13.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.0B2Nqt/_old  2015-09-02 07:45:01.0 +0200
+++ /var/tmp/diff_new_pack.0B2Nqt/_new  2015-09-02 07:45:01.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.12
+%define _tar_path 5.13
 Name:   kdelibs4support
-Version:5.12.0
+Version:5.13.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -51,16 +51,16 @@
 BuildRequires:  kwindowsystem-devel >= %{_tar_path}
 BuildRequires:  kxmlgui-devel >= %{_tar_path}
 BuildRequires:  perl-URI
-BuildRequires:  pkgconfig(Qt5Concurrent) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5DBus) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Designer) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Network) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5PrintSupport) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Svg) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5X11Extras) >= 5.2.0
+BuildRequires:  cmake(Qt5Concurrent) >= 5.3.0
+BuildRequires:  cmake(Qt5Core) >= 5.3.0
+BuildRequires:  cmake(Qt5DBus) >= 5.3.0
+BuildRequires:  cmake(Qt5Designer) >= 5.3.0
+BuildRequires:  cmake(Qt5Network) >= 5.3.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.3.0
+BuildRequires:  cmake(Qt5Svg) >= 5.3.0
+BuildRequires:  cmake(Qt5Test) >= 5.3.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.3.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.3.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
@@ -163,10 +163,10 @@
 Requires:   ktextwidgets-devel >= %{_tar_path}
 Requires:   kunitconversion-devel >= %{_tar_path}
 Requires:   kwindowsystem-devel >= %{_tar_path}
-Requires:   pkgconfig(Qt5Core) >= 5.2.0
-Requires:   pkgconfig(Qt5DBus) >= 5.2.0
-Requires:   pkgconfig(Qt5PrintSupport) >= 5.2.0
-Requires:   pkgconfig(Qt5Xml) >= 5.2.0
+Requires:   cmake(Qt5Core) >= 5.3.0
+Requires:   cmake(Qt5DBus) >= 5.3.0
+Requires:   cmake(Qt5PrintSupport) >= 5.3.0
+Requires:   cmake(Qt5Xml) >= 5.3.0
 
 %description devel
 This package includes CMake macros and C++

++ kdelibs4support-5.12.0.tar.xz -> kdelibs4support-5.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.12.0/CMakeLists.txt 
new/kdelibs4support-5.13.0/CMakeLists.txt
--- old/kdelibs4support-5.12.0/CMakeLists.txt   2015-07-05 10:57:10.0 
+0200
+++ new/kdelibs4support-5.13.0/CMakeLists.txt   2015-08-04 12:52:18.0 
+0200
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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)
 
@@ -17,9 +17,9 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION "5.12.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.12.0") # handled by release scripts
-set(REQUIRED_QT_VERSION 5.2.0)
+set(KF5_VERSION "5.13.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.13.0") # handled by release scripts
+set(REQUIRED_QT_VERSION 5.3.0)
 

commit kdelibs4support for openSUSE:Factory

2015-07-14 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-07-14 17:23:13

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-06-23 12:07:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-07-14 17:23:15.0 +0200
@@ -1,0 +2,13 @@
+Sun Jul  5 18:44:56 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.12.0
+  * Fix KMimeType::Ptr::isNull implementation.
+  * Reenable support for KDateTime streaming to kDebug/qDebug,
+for more SC
+  * Load correct translation catalog for kdebugdialog
+  * Don't skip documenting deprecated methods, so that people can
+read the porting hints
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.12.0.php
+
+---

Old:

  kdelibs4support-5.11.0.tar.xz

New:

  kdelibs4support-5.12.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.wU3o7b/_old  2015-07-14 17:23:16.0 +0200
+++ /var/tmp/diff_new_pack.wU3o7b/_new  2015-07-14 17:23:16.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.11
+%define _tar_path 5.12
 Name:   kdelibs4support
-Version:5.11.0
+Version:5.12.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.11.0.tar.xz - kdelibs4support-5.12.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.11.0/CMakeLists.txt 
new/kdelibs4support-5.12.0/CMakeLists.txt
--- old/kdelibs4support-5.11.0/CMakeLists.txt   2015-06-06 23:13:20.0 
+0200
+++ new/kdelibs4support-5.12.0/CMakeLists.txt   2015-07-05 10:57:10.0 
+0200
@@ -3,7 +3,7 @@
 project(KDELibs4Support)
 
 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)
 
@@ -17,8 +17,8 @@
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION 5.11.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.11.0) # handled by release scripts
+set(KF5_VERSION 5.12.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.12.0) # handled by release scripts
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.11.0/autotests/kmimetypetest.cpp 
new/kdelibs4support-5.12.0/autotests/kmimetypetest.cpp
--- old/kdelibs4support-5.11.0/autotests/kmimetypetest.cpp  2015-06-06 
23:13:20.0 +0200
+++ new/kdelibs4support-5.12.0/autotests/kmimetypetest.cpp  2015-07-05 
10:57:10.0 +0200
@@ -894,3 +894,10 @@
 #endif
 }
 
+void KMimeTypeTest::testIsNull()
+{
+KMimeType::Ptr ptr;
+QVERIFY(ptr.isNull());
+ptr = KMimeType::mimeType(QStringLiteral(image/jpeg));
+QVERIFY(!ptr.isNull());
+}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.11.0/autotests/kmimetypetest.h 
new/kdelibs4support-5.12.0/autotests/kmimetypetest.h
--- old/kdelibs4support-5.11.0/autotests/kmimetypetest.h2015-06-06 
23:13:20.0 +0200
+++ new/kdelibs4support-5.12.0/autotests/kmimetypetest.h2015-07-05 
10:57:10.0 +0200
@@ -59,6 +59,7 @@
 void testFromThread();
 void testThreads();
 void testProperties();
+void testIsNull();
 private:
 QString m_nonKdeApp;
 QString m_textPlainApp;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.11.0/data/currency/pen.desktop 
new/kdelibs4support-5.12.0/data/currency/pen.desktop
--- old/kdelibs4support-5.11.0/data/currency/pen.desktop2015-06-06 
23:13:20.0 +0200
+++ new/kdelibs4support-5.12.0/data/currency/pen.desktop2015-07-05 
10:57:10.0 +0200
@@ -7,7 +7,7 @@
 Name[bg]=Нов перуански сол
 Name[bn]=পেরুর নুয়েভো সোল
 Name[bs]=peruanski novi sol
-Name[ca]=Nuevo Sol de Perú
+Name[ca]=Nuevo Sol del Perú
 Name[ca@valencia]=Nuevo Sol de Perú
 

commit kdelibs4support for openSUSE:Factory

2015-06-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-06-23 12:07:30

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-05-11 19:48:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-06-23 12:07:31.0 +0200
@@ -1,0 +2,8 @@
+Sun Jun  7 19:07:18 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.11.0
+  * Use QTemporaryFile instead of hardcoding a temporary file.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.11.0.php
+
+---

Old:

  kdelibs4support-5.10.0.tar.xz

New:

  kdelibs4support-5.11.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.0QpOLw/_old  2015-06-23 12:07:32.0 +0200
+++ /var/tmp/diff_new_pack.0QpOLw/_new  2015-06-23 12:07:32.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.10
+%define _tar_path 5.11
 Name:   kdelibs4support
-Version:5.10.0
+Version:5.11.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel

++ kdelibs4support-5.10.0.tar.xz - kdelibs4support-5.11.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.10.0/CMakeLists.txt 
new/kdelibs4support-5.11.0/CMakeLists.txt
--- old/kdelibs4support-5.10.0/CMakeLists.txt   2015-05-03 17:09:10.0 
+0200
+++ new/kdelibs4support-5.11.0/CMakeLists.txt   2015-06-06 23:13:20.0 
+0200
@@ -2,19 +2,23 @@
 
 project(KDELibs4Support)
 
-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} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules )
 
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
-include(FeatureSummary)
+
 include(GenerateExportHeader)
 include(CMakeFindFrameworks)
 
-set(KF5_VERSION 5.10.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.10.0) # handled by release scripts
+set(KF5_VERSION 5.11.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.11.0) # handled by release scripts
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network Widgets DBus 
Test Svg PrintSupport Designer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.10.0/data/currency/zwd.desktop 
new/kdelibs4support-5.11.0/data/currency/zwd.desktop
--- old/kdelibs4support-5.10.0/data/currency/zwd.desktop2015-05-03 
17:09:10.0 +0200
+++ new/kdelibs4support-5.11.0/data/currency/zwd.desktop2015-06-06 
23:13:20.0 +0200
@@ -6,7 +6,7 @@
 Name[ar]=الدولار الزمبابوي (حتّى 2006)
 Name[bg]=Зимбабвийски долар (до 06г.)
 Name[bs]=zimbabveanski dolar p.06
-Name[ca]=Dòlar de Zimbabwe A/06
+Name[ca]=Dòlar de Zimbàbue A/06
 Name[ca@valencia]=Dòlar de Zimbabwe A/06
 Name[cs]=Zimbabwský dolar A/06
 Name[csb]=Zimbawijsczi Dolar A/06
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.10.0/data/currency/zwl.desktop 
new/kdelibs4support-5.11.0/data/currency/zwl.desktop
--- old/kdelibs4support-5.10.0/data/currency/zwl.desktop2015-05-03 
17:09:10.0 +0200
+++ new/kdelibs4support-5.11.0/data/currency/zwl.desktop2015-06-06 
23:13:20.0 +0200
@@ -5,7 +5,7 @@
 Name=Zimbabwean Dollar
 Name[ar]=الدولار الزمبابوي
 Name[bs]=zimbabveanski dolar
-Name[ca]=Dòlar de Zimbabwe
+Name[ca]=Dòlar de Zimbàbue
 Name[cs]=Zimbabwský dolar
 Name[da]=Zimbabwisk dollar
 Name[de]=Simbabwe-Dollar
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdelibs4support-5.10.0/po/ca/kdelibs4support.po 
new/kdelibs4support-5.11.0/po/ca/kdelibs4support.po
--- old/kdelibs4support-5.10.0/po/ca/kdelibs4support.po 2015-05-03 
17:09:10.0 +0200
+++ new/kdelibs4support-5.11.0/po/ca/kdelibs4support.po 2015-06-06 
23:13:20.0 +0200
@@ -10,7 +10,7 @@
 Project-Id-Version: kdelibs4support\n
 

commit kdelibs4support for openSUSE:Factory

2015-05-11 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-04-21 10:53:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-05-11 19:48:31.0 +0200
@@ -1,0 +2,7 @@
+Sun May  3 19:52:27 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:

  kdelibs4support-5.9.0.tar.xz

New:

  kdelibs4support-5.10.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.iTarp9/_old  2015-05-11 19:48:32.0 +0200
+++ /var/tmp/diff_new_pack.iTarp9/_new  2015-05-11 19:48:32.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.9
+%define _tar_path 5.10
 Name:   kdelibs4support
-Version:5.9.0
+Version:5.10.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
@@ -198,11 +198,13 @@
 
 %if %{with lang}
 %find_lang %{name}
+echo %doc %lang(ca) %{_kf5_mandir}/ca %{name}.lang
 echo %doc %lang(de) %{_kf5_mandir}/de %{name}.lang
 echo %doc %lang(nl) %{_kf5_mandir}/nl %{name}.lang
 echo %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR %{name}.lang
 echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}.lang
 echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}.lang
+echo %doc %lang(ca) %{_kf5_htmldir}/ca %{name}.lang
 echo %doc %lang(de) %{_kf5_htmldir}/de %{name}.lang
 echo %doc %lang(nl) %{_kf5_htmldir}/nl %{name}.lang
 echo %doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR %{name}.lang

++ kdelibs4support-5.9.0.tar.xz - kdelibs4support-5.10.0.tar.xz ++
 23158 lines of diff (skipped)




commit kdelibs4support for openSUSE:Factory

2015-04-21 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-04-21 10:53:16

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-04-13 20:28:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-04-21 10:53:34.0 +0200
@@ -1,0 +2,7 @@
+Sun Apr 19 15:56:20 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add Requires on kded, which is a runtime requirement (needed for
+  Applications used outside Plasma 5, as it is not pulled in by
+  other packages in that case)
+
+---



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.SRWqT7/_old  2015-04-21 10:53:34.0 +0200
+++ /var/tmp/diff_new_pack.SRWqT7/_new  2015-04-21 10:53:34.0 +0200
@@ -118,6 +118,7 @@
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1+
 Group:  System/GUI/KDE
+Requires:   kded = %{_tar_path}
 
 %description -n %lname
 This package includes CMake macros and C++




commit kdelibs4support for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-04-13 20:28:21

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-03-16 09:35:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-04-13 20:28:23.0 +0200
@@ -1,0 +2,13 @@
+Sat Apr  4 14:41:05 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---
+Mon Mar 16 11:52:05 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add explicit kdbusaddons-devel and karchive-devel to
+  devel package requires
+
+---

Old:

  kdelibs4support-5.8.0.tar.xz

New:

  kdelibs4support-5.9.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.LydbCC/_old  2015-04-13 20:28:24.0 +0200
+++ /var/tmp/diff_new_pack.LydbCC/_new  2015-04-13 20:28:24.0 +0200
@@ -16,39 +16,40 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kdelibs4support
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel = %{kf5_version}
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdesignerplugin-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcrash-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdesignerplugin-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel = %{kf5_version}
-BuildRequires:  kguiaddons-devel = %{kf5_version}
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  knotifications-devel = %{kf5_version}
-BuildRequires:  kparts-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kunitconversion-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  kglobalaccel-devel = %{_tar_path}
+BuildRequires:  kguiaddons-devel = %{_tar_path}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  knotifications-devel = %{_tar_path}
+BuildRequires:  kparts-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kunitconversion-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  perl-URI
 BuildRequires:  pkgconfig(Qt5Concurrent) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -63,7 +64,9 @@
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Provides:   kde4support = %{version}
 Obsoletes:  kde4support  %{version}
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
@@ -141,22 +144,24 @@
 Provides:   kde4support-devel = %{version}
 Obsoletes:  kde4support-devel  %{version}
 Requires:   extra-cmake-modules
-Requires:   kauth-devel = %{kf5_version}
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   kcoreaddons-devel = 

commit kdelibs4support for openSUSE:Factory

2015-03-16 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-03-16 09:35:46

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-02-16 17:30:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-03-16 09:35:47.0 +0100
@@ -1,0 +2,8 @@
+Sat Mar  7 16:59:03 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
+- Added perl-URI buildrequires
+
+---

Old:

  kdelibs4support-5.7.0.tar.xz

New:

  kdelibs4support-5.8.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.cCTxWJ/_old  2015-03-16 09:35:48.0 +0100
+++ /var/tmp/diff_new_pack.cCTxWJ/_new  2015-03-16 09:35:48.0 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:   kdelibs4support
 Version:%{_tar_path}.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.7.0
+BuildRequires:  extra-cmake-modules = 1.8.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}
@@ -49,6 +49,7 @@
 BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
 BuildRequires:  kwindowsystem-devel = %{kf5_version}
 BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  perl-URI
 BuildRequires:  pkgconfig(Qt5Concurrent) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0

++ kdelibs4support-5.7.0.tar.xz - kdelibs4support-5.8.0.tar.xz ++
 5874 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2015-02-16 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2015-01-29 12:54:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-02-16 17:30:47.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb  8 18:15:40 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.7.0.php
+
+---

Old:

  kdelibs4support-5.6.0.tar.xz

New:

  kdelibs4support-5.7.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.smaodL/_old  2015-02-16 17:30:48.0 +0100
+++ /var/tmp/diff_new_pack.smaodL/_new  2015-02-16 17:30:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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,13 +17,14 @@
 
 
 %define lname   libKF5KDELibs4Support5
+%define _tar_path 5.7
 Name:   kdelibs4support
-Version:5.6.0
+Version:%{_tar_path}.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.6.0
+BuildRequires:  extra-cmake-modules = 1.7.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}
@@ -68,7 +69,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.6/portingAids/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kdelibs4support-5.6.0.tar.xz - kdelibs4support-5.7.0.tar.xz ++
 78504 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2015-01-29 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2015-01-29 12:54:02

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-12-21 11:59:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2015-01-29 12:54:05.0 +0100
@@ -1,0 +2,8 @@
+Sat Jan  3 18:03:36 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.0
+  * Add Lithuania to the list of Euro countries
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.6.0.php
+
+---

Old:

  kdelibs4support-5.5.0.tar.xz

New:

  kdelibs4support-5.6.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.UbmrMI/_old  2015-01-29 12:54:05.0 +0100
+++ /var/tmp/diff_new_pack.UbmrMI/_new  2015-01-29 12:54:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs4support
 #
-# 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,12 +18,12 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:5.5.0
+Version:5.6.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.5.0
+BuildRequires:  extra-cmake-modules = 1.6.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}
@@ -68,7 +68,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.5/portingAids/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.6/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kdelibs4support-5.5.0.tar.xz - kdelibs4support-5.6.0.tar.xz ++
 20148 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2014-12-21 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-11-11 01:10:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-12-21 11:59:18.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec  6 12:53:55 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:

  kdelibs4support-5.4.0.tar.xz

New:

  kdelibs4support-5.5.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.FUVhZx/_old  2014-12-21 11:59:19.0 +0100
+++ /var/tmp/diff_new_pack.FUVhZx/_new  2014-12-21 11:59:19.0 +0100
@@ -18,12 +18,12 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:5.4.0
+Version:5.5.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.4.0
+BuildRequires:  extra-cmake-modules = 1.5.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}
@@ -68,7 +68,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/5.4/portingAids/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.5/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ kdelibs4support-5.4.0.tar.xz - kdelibs4support-5.5.0.tar.xz ++
 4948 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2014-11-10 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-10-07 16:00:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-11-11 01:10:36.0 +0100
@@ -1,0 +2,10 @@
+Sun Nov  2 17:47:52 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
+- Added NetworkManager-devel BuildRequires in order to build
+  deprecated Solid's networkstatus kded module (for software that
+  didn't migrate to QNetworkConfigurationManager)
+
+---

Old:

  kdelibs4support-5.3.0.tar.xz

New:

  kdelibs4support-5.4.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Mzsoux/_old  2014-11-11 01:10:39.0 +0100
+++ /var/tmp/diff_new_pack.Mzsoux/_new  2014-11-11 01:10:39.0 +0100
@@ -18,11 +18,12 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:5.3.0
+Version:5.4.0
 Release:0
 %define kf5_version %{version}
+BuildRequires:  NetworkManager-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.3.0
+BuildRequires:  extra-cmake-modules = 1.4.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}
@@ -67,7 +68,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{version}/portingAids/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/5.4/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -194,6 +195,17 @@
 %postun -n %lname -p /sbin/ldconfig
 
 %files lang -f %{name}.lang
+%defattr(-,root,root)
+%doc %lang(de) %{_kf5_mandir}/de
+%doc %lang(nl) %{_kf5_mandir}/nl
+%doc %lang(pt_BR) %{_kf5_mandir}/pt_BR
+%doc %lang(sv) %{_kf5_mandir}/sv
+%doc %lang(uk) %{_kf5_mandir}/uk
+%doc %lang(de) %{_kf5_htmldir}/de
+%doc %lang(nl) %{_kf5_htmldir}/nl
+%doc %lang(pt_BR) %{_kf5_htmldir}/pt_BR
+%doc %lang(sv) %{_kf5_htmldir}/sv
+%doc %lang(uk) %{_kf5_htmldir}/uk
 
 %files
 %defattr(-,root,root)
@@ -215,8 +227,10 @@
 %{_kf5_datadir}/widgets/
 %{_kf5_sharedir}/locale/kf5_all_languages
 %{_kf5_datadir}/locale/
-%{_kf5_mandir}/man1/kf5-config.*
-%doc %{_kf5_htmldir}/
+%doc %lang(en) %{_kf5_mandir}/*/kf5-config.*
+%dir %{_kf5_htmldir}/en
+%dir %{_kf5_htmldir}
+%doc %lang(en) %{_kf5_htmldir}/en/*/
 
 %files -n kssl
 %defattr(-,root,root)

++ kdelibs4support-5.3.0.tar.xz - kdelibs4support-5.4.0.tar.xz ++
 10489 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2014-10-07 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-09-12 17:05:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-10-07 16:00:57.0 +0200
@@ -1,0 +2,7 @@
+Sat Oct  4 18:00:07 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:

  kdelibs4support-5.2.0.tar.xz

New:

  kdelibs4support-5.3.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.7a8isn/_old  2014-10-07 16:00:58.0 +0200
+++ /var/tmp/diff_new_pack.7a8isn/_new  2014-10-07 16:00:58.0 +0200
@@ -18,11 +18,11 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:5.2.0
+Version:5.3.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.2.0
+BuildRequires:  extra-cmake-modules = 1.3.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}
@@ -60,6 +60,7 @@
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
+Recommends: %{name}-lang = %{version}
 Provides:   kde4support = %{version}
 Obsoletes:  kde4support  %{version}
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
@@ -174,6 +175,7 @@
 location as KDELibs4Support, although it may be sufficient to set the
 KDEDIRS environment variable correctly. Development files.
 
+%lang_package
 %prep
 %setup -q
 
@@ -185,10 +187,14 @@
   %kf5_makeinstall -C build
   %fdupes -s %{buildroot}
 
+  %find_lang %{name}
+
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%files lang -f %{name}.lang
+
 %files
 %defattr(-,root,root)
 %doc COPYING* README*
@@ -207,7 +213,7 @@
 %{_kf5_servicetypesdir}/
 %{_kf5_datadir}/kdoctools/
 %{_kf5_datadir}/widgets/
-%{_kf5_sharedir}/locale/
+%{_kf5_sharedir}/locale/kf5_all_languages
 %{_kf5_datadir}/locale/
 %{_kf5_mandir}/man1/kf5-config.*
 %doc %{_kf5_htmldir}/

++ kdelibs4support-5.2.0.tar.xz - kdelibs4support-5.3.0.tar.xz ++
 1153697 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2014-09-12 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-08-16 15:43:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-09-12 17:05:33.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  9 09:49:42 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:

  kdelibs4support-5.1.0.tar.xz

New:

  kdelibs4support-5.2.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.Ng3msk/_old  2014-09-12 17:05:35.0 +0200
+++ /var/tmp/diff_new_pack.Ng3msk/_new  2014-09-12 17:05:35.0 +0200
@@ -18,11 +18,11 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:5.1.0
+Version:5.2.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.1.0
+BuildRequires:  extra-cmake-modules = 1.2.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}

++ kdelibs4support-5.1.0.tar.xz - kdelibs4support-5.2.0.tar.xz ++
 6011 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2014-08-16 Thread h_root
Hello community,

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

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-07-18 16:50:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-08-16 15:43:16.0 +0200
@@ -1,0 +2,7 @@
+Sat Aug  2 10:20:26 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
+
+---

Old:

  kdelibs4support-5.0.0.tar.xz

New:

  kdelibs4support-5.1.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.l9zbQd/_old  2014-08-16 15:43:16.0 +0200
+++ /var/tmp/diff_new_pack.l9zbQd/_new  2014-08-16 15:43:16.0 +0200
@@ -18,11 +18,11 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:5.0.0
+Version:5.1.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.0.0
+BuildRequires:  extra-cmake-modules = 1.1.0
 BuildRequires:  fdupes
 BuildRequires:  kbookmarks-devel = %{kf5_version}
 BuildRequires:  kcompletion-devel = %{kf5_version}

++ kdelibs4support-5.0.0.tar.xz - kdelibs4support-5.1.0.tar.xz ++
 12429 lines of diff (skipped)

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



commit kdelibs4support for openSUSE:Factory

2014-07-18 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2014-07-18 16:50:04

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-06-10 14:37:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-07-18 16:50:05.0 +0200
@@ -1,0 +2,15 @@
+Fri Jul 11 09:48:40 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Define kf5_version within package
+
+---
+Tue Jul  1 21:36:13 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:

  kdelibs4support-4.100.0.tar.xz

New:

  kdelibs4support-5.0.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.zNjQ0Q/_old  2014-07-18 16:50:07.0 +0200
+++ /var/tmp/diff_new_pack.zNjQ0Q/_new  2014-07-18 16:50:07.0 +0200
@@ -18,34 +18,35 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-Version:4.100.0
+Version:5.0.0
 Release:0
+%define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 0.0.14
+BuildRequires:  extra-cmake-modules = 1.0.0
 BuildRequires:  fdupes
-BuildRequires:  kbookmarks-devel = %{_kf5_version}
-BuildRequires:  kcompletion-devel = %{_kf5_version}
-BuildRequires:  kconfig-devel = %{_kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{_kf5_version}
-BuildRequires:  kcrash-devel = %{_kf5_version}
-BuildRequires:  kdbusaddons-devel = %{_kf5_version}
-BuildRequires:  kdesignerplugin-devel = %{_kf5_version}
-BuildRequires:  kdoctools-devel = %{_kf5_version}
+BuildRequires:  kbookmarks-devel = %{kf5_version}
+BuildRequires:  kcompletion-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{kf5_version}
+BuildRequires:  kconfigwidgets-devel = %{kf5_version}
+BuildRequires:  kcrash-devel = %{kf5_version}
+BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  kdesignerplugin-devel = %{kf5_version}
+BuildRequires:  kdoctools-devel = %{kf5_version}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel = %{_kf5_version}
-BuildRequires:  kguiaddons-devel = %{_kf5_version}
-BuildRequires:  ki18n-devel = %{_kf5_version}
-BuildRequires:  kiconthemes-devel = %{_kf5_version}
-BuildRequires:  kio-devel = %{_kf5_version}
-BuildRequires:  kitemviews-devel = %{_kf5_version}
-BuildRequires:  knotifications-devel = %{_kf5_version}
-BuildRequires:  kparts-devel = %{_kf5_version}
-BuildRequires:  kservice-devel = %{_kf5_version}
-BuildRequires:  ktextwidgets-devel = %{_kf5_version}
-BuildRequires:  kunitconversion-devel = %{_kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{_kf5_version}
-BuildRequires:  kwindowsystem-devel = %{_kf5_version}
-BuildRequires:  kxmlgui-devel = %{_kf5_version}
+BuildRequires:  kglobalaccel-devel = %{kf5_version}
+BuildRequires:  kguiaddons-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{kf5_version}
+BuildRequires:  kiconthemes-devel = %{kf5_version}
+BuildRequires:  kio-devel = %{kf5_version}
+BuildRequires:  kitemviews-devel = %{kf5_version}
+BuildRequires:  knotifications-devel = %{kf5_version}
+BuildRequires:  kparts-devel = %{kf5_version}
+BuildRequires:  kservice-devel = %{kf5_version}
+BuildRequires:  ktextwidgets-devel = %{kf5_version}
+BuildRequires:  kunitconversion-devel = %{kf5_version}
+BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  kxmlgui-devel = %{kf5_version}
 BuildRequires:  pkgconfig(Qt5Concurrent) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
@@ -65,7 +66,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/frameworks/%{version}/portingAids/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{version}/portingAids/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -136,22 +137,22 @@
 Provides:   kde4support-devel = %{version}
 Obsoletes:  kde4support-devel  %{version}
 Requires:   extra-cmake-modules
-Requires:   kauth-devel = %{_kf5_version}
-Requires: 

commit kdelibs4support for openSUSE:Factory

2014-06-10 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4support for openSUSE:Factory 
checked in at 2014-06-10 14:37:03

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


Package is kdelibs4support

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4support/kdelibs4support.changes  
2014-05-14 20:28:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4support.new/kdelibs4support.changes 
2014-06-10 14:37:33.0 +0200
@@ -1,0 +2,10 @@
+Sun Jun  1 18:02:45 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:

  kdelibs4support-4.99.0.tar.xz

New:

  baselibs.conf
  kdelibs4support-4.100.0.tar.xz



Other differences:
--
++ kdelibs4support.spec ++
--- /var/tmp/diff_new_pack.P2y14L/_old  2014-06-10 14:37:34.0 +0200
+++ /var/tmp/diff_new_pack.P2y14L/_new  2014-06-10 14:37:34.0 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5KDELibs4Support5
 Name:   kdelibs4support
-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:  kbookmarks-devel = %{_kf5_version}
 BuildRequires:  kcompletion-devel = %{_kf5_version}
@@ -56,16 +56,17 @@
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5X11Extras) = 5.2.0
-BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(sm)
+BuildRequires:  pkgconfig(x11)
 Provides:   kde4support = %{version}
 Obsoletes:  kde4support  %{version}
 Summary:Code and utilities to ease the transition to KDE Frameworks 5
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Source0:kdelibs4support-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/frameworks/%{version}/portingAids/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -198,7 +199,9 @@
 %{_kf5_libexecdir}/filesharelist
 %{_kf5_libexecdir}/fileshareset
 %{_kf5_plugindir}/designer/kdedeprecated.so
-%{_kf5_plugindir}/kio_metainfo.so
+%dir %{_kf5_plugindir}/kf5
+%dir %{_kf5_plugindir}/kf5/kio
+%{_kf5_plugindir}/kf5/kio/metainfo.so
 %{_kf5_plugindir}/kded_networkstatus.so
 %{_kf5_servicesdir}/metainfo.protocol
 %{_kf5_servicesdir}/qimageioplugins/

++ baselibs.conf ++
libKF5KDELibs4Support5
kdelibs4support
kdelibs4support-devel
requires kdelibs4support-targettype = version
requires libKF5KDELibs4Support5-targettype = version
++ kdelibs4support-4.99.0.tar.xz - kdelibs4support-4.100.0.tar.xz ++
 15085 lines of diff (skipped)

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