commit kpty for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kpty

Changes:

--- /work/SRC/openSUSE:Factory/kpty/kpty.changes2015-03-16 
09:34:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.kpty.new/kpty.changes   2015-04-13 
20:27:51.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:41:00 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Expose to world whether KPty has been built with utempter library
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Drop no longer needed ki18n-devel Requires of the devel subpackage
+
+---

Old:

  kpty-5.8.0.tar.xz

New:

  kpty-5.9.0.tar.xz



Other differences:
--
++ kpty.spec ++
--- /var/tmp/diff_new_pack.VLIFKr/_old  2015-04-13 20:27:52.0 +0200
+++ /var/tmp/diff_new_pack.VLIFKr/_new  2015-04-13 20:27:52.0 +0200
@@ -16,18 +16,19 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Pty5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kpty
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
 BuildRequires:  utempter-devel
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -47,7 +48,9 @@
 %package -n %lname
 Summary:Interfacing with pseudo terminal devices
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 This library provides primitives to interface with pseudo terminal devices
@@ -59,8 +62,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcoreaddons-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
+Requires:   kcoreaddons-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Core) = 5.2.0
 
 %description devel
@@ -78,15 +80,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kpty-5.8.0.tar.xz - kpty-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.8.0/CMakeLists.txt 
new/kpty-5.9.0/CMakeLists.txt
--- old/kpty-5.8.0/CMakeLists.txt   2015-03-07 15:49:01.0 +0100
+++ new/kpty-5.9.0/CMakeLists.txt   2015-04-04 14:11:31.0 +0200
@@ -2,12 +2,13 @@
 
 project(KPty)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 set(REQUIRED_QT_VERSION 5.2)
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
+include(FeatureSummary)
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
@@ -18,6 +19,16 @@
   find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
 endif()
 
+if (UNIX)
+  find_package(UTEMPTER)
+  set_package_properties(UTEMPTER PROPERTIES
+  TYPE OPTIONAL
+  PURPOSE Required by KPty for managing UTMP entries
+)
+
+  set(HAVE_UTEMPTER ${UTEMPTER_FOUND})
+endif()
+
 # create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR ${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5Pty)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.8.0/KF5PtyConfig.cmake.in 
new/kpty-5.9.0/KF5PtyConfig.cmake.in
--- old/kpty-5.8.0/KF5PtyConfig.cmake.in2015-03-07 15:49:01.0 
+0100
+++ new/kpty-5.9.0/KF5PtyConfig.cmake.in2015-04-04 14:11:31.0 
+0200
@@ -1,7 +1,8 @@
 @PACKAGE_INIT@
 
 find_dependency(KF5CoreAddons @KF5_DEP_VERSION@)

commit kpackage for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kpackage

Changes:

--- /work/SRC/openSUSE:Factory/kpackage/kpackage.changes2015-03-16 
09:34:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.kpackage.new/kpackage.changes   2015-04-13 
20:27:56.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:41:01 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
+
+---

Old:

  kpackage-5.8.0.tar.xz

New:

  kpackage-5.9.0.tar.xz



Other differences:
--
++ kpackage.spec ++
--- /var/tmp/diff_new_pack.moJcus/_old  2015-04-13 20:27:57.0 +0200
+++ /var/tmp/diff_new_pack.moJcus/_new  2015-04-13 20:27:57.0 +0200
@@ -16,23 +16,26 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kpackage
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang
+%endif
 Summary:Manage user installable packages of non-binary assets
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -49,7 +52,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcoreaddons-devel = %{kf5_version}
+Requires:   kcoreaddons-devel = %{_tar_path}
 
 %description devel
 This framework lets applications to manage user installable packages of 
non-binary assets.
@@ -66,19 +69,22 @@
 %install
   %kf5_makeinstall -C build
 
-  %find_lang lib%{name}5 %{name}5.lang
+%if %{with lang}
+%find_lang lib%{name}5 %{name}5.lang
+echo %doc %lang(de) %{_kf5_mandir}/de %{name}5.lang
+echo %doc %lang(nl) %{_kf5_mandir}/nl %{name}5.lang
+echo %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR %{name}5.lang
+echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}5.lang
+echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}5.lang
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files lang -f %{name}5.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
+%endif
 
 %files
 %defattr(-,root,root)

++ kpackage-5.8.0.tar.xz - kpackage-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.8.0/CMakeLists.txt 
new/kpackage-5.9.0/CMakeLists.txt
--- old/kpackage-5.8.0/CMakeLists.txt   2015-03-07 15:48:07.0 +0100
+++ new/kpackage-5.9.0/CMakeLists.txt   2015-04-04 14:10:41.0 +0200
@@ -3,7 +3,7 @@
 project(Package)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -16,8 +16,8 @@
 include(ECMSetupVersion)
 include(KDEFrameworkCompilerSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX PACKAGE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.8.0/KF5PackageConfig.cmake.in 
new/kpackage-5.9.0/KF5PackageConfig.cmake.in
--- old/kpackage-5.8.0/KF5PackageConfig.cmake.in2015-03-07 
15:48:07.0 +0100
+++ new/kpackage-5.9.0/KF5PackageConfig.cmake.in2015-04-04 
14:10:41.0 +0200
@@ -9,4 +9,6 @@
 
 set(Package_LIBRARIES KF5::Package)
 
+find_dependency(KF5CoreAddons 

commit kglobalaccel for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kglobalaccel

Changes:

--- /work/SRC/openSUSE:Factory/kglobalaccel/kglobalaccel.changes
2015-03-16 09:35:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.kglobalaccel.new/kglobalaccel.changes   
2015-04-13 20:28:29.0 +0200
@@ -1,0 +2,7 @@
+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
+
+---

Old:

  kglobalaccel-5.8.0.tar.xz

New:

  kglobalaccel-5.9.0.tar.xz



Other differences:
--
++ kglobalaccel.spec ++
--- /var/tmp/diff_new_pack.OM5nPi/_old  2015-04-13 20:28:29.0 +0200
+++ /var/tmp/diff_new_pack.OM5nPi/_new  2015-04-13 20:28:29.0 +0200
@@ -16,23 +16,26 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5GlobalAccel5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kglobalaccel
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kcrash-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  libxcb-devel
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -56,7 +59,9 @@
 %package -n %lname
 Summary:Global desktop keyboard shortcuts
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 Recommends: kglobalaccel5
 %requires_ge libQt5Widgets5
 %requires_ge libQt5DBus5
@@ -99,9 +104,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
@@ -111,7 +118,9 @@
 
 %postun -n kglobalaccel5 -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kglobalaccel-5.8.0.tar.xz - kglobalaccel-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kglobalaccel-5.8.0/CMakeLists.txt 
new/kglobalaccel-5.9.0/CMakeLists.txt
--- old/kglobalaccel-5.8.0/CMakeLists.txt   2015-03-07 15:43:05.0 
+0100
+++ new/kglobalaccel-5.9.0/CMakeLists.txt   2015-04-04 14:05:12.0 
+0200
@@ -3,7 +3,7 @@
 project(KGlobalAccel)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -14,8 +14,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KGLOBALACCEL
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kglobalaccel_version.h
@@ -40,7 +40,7 @@
 
 # no X11 stuff on mac
 if (NOT APPLE)
-find_package(XCB MODULE COMPONENTS XCB KEYSYMS)
+find_package(XCB MODULE COMPONENTS XCB KEYSYMS XTEST)
 set_package_properties(XCB PROPERTIES DESCRIPTION X protocol C-language 
Binding
URL http://xcb.freedesktop.org;
TYPE OPTIONAL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kglobalaccel-5.8.0/autotests/CMakeLists.txt 
new/kglobalaccel-5.9.0/autotests/CMakeLists.txt
--- old/kglobalaccel-5.8.0/autotests/CMakeLists.txt 2015-03-07 
15:43:05.0 +0100
+++ new/kglobalaccel-5.9.0/autotests/CMakeLists.txt 

commit kross for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kross

Changes:

--- /work/SRC/openSUSE:Factory/kross/kross.changes  2015-03-16 
09:36:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.kross.new/kross.changes 2015-04-13 
20:28:40.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:41:07 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
+
+---

Old:

  kross-5.8.0.tar.xz

New:

  kross-5.9.0.tar.xz



Other differences:
--
++ kross.spec ++
--- /var/tmp/diff_new_pack.mn96l9/_old  2015-04-13 20:28:40.0 +0200
+++ /var/tmp/diff_new_pack.mn96l9/_new  2015-04-13 20:28:40.0 +0200
@@ -16,30 +16,33 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kross
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kparts-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kparts-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Script) = 5.2.0
 BuildRequires:  pkgconfig(Qt5UiTools) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Obsoletes:  libKF5KrossCore4
 Obsoletes:  libKF5KrossUi4
 Summary:Embedding of scripting into applications
@@ -59,11 +62,11 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
-Requires:   kio-devel = %{kf5_version}
-Requires:   kparts-devel = %{kf5_version}
-Requires:   kwidgetsaddons-devel = %{kf5_version}
+Requires:   ki18n-devel = %{_tar_path}
+Requires:   kiconthemes-devel = %{_tar_path}
+Requires:   kio-devel = %{_tar_path}
+Requires:   kparts-devel = %{_tar_path}
+Requires:   kwidgetsaddons-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Core) = 5.2.0
 Requires:   pkgconfig(Qt5Script) = 5.2.0
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
@@ -84,15 +87,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files lang -f %{name}5.lang
+%endif
 
 %files
 %defattr(-,root,root)

++ kross-5.8.0.tar.xz - kross-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.8.0/CMakeLists.txt 
new/kross-5.9.0/CMakeLists.txt
--- old/kross-5.8.0/CMakeLists.txt  2015-03-07 15:49:23.0 +0100
+++ new/kross-5.9.0/CMakeLists.txt  2015-04-04 14:11:49.0 +0200
@@ -2,7 +2,7 @@
 
 project(Kross)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -16,8 +16,8 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KROSS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kross_version.h

commit kwindowsystem for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kwindowsystem

Changes:

--- /work/SRC/openSUSE:Factory/kwindowsystem/kwindowsystem.changes  
2015-03-16 09:34:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.kwindowsystem.new/kwindowsystem.changes 
2015-04-13 20:27:13.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:56 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Add a dummy Wayland implementation for KWindowSystemPrivate
+  * KWindowSystem::icon with NETWinInfo not bound to platform X11.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kwindowsystem-5.8.0.tar.xz

New:

  kwindowsystem-5.9.0.tar.xz



Other differences:
--
++ kwindowsystem.spec ++
--- /var/tmp/diff_new_pack.ng8HEO/_old  2015-04-13 20:27:13.0 +0200
+++ /var/tmp/diff_new_pack.ng8HEO/_new  2015-04-13 20:27:13.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5WindowSystem5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kwindowsystem
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5X11Extras) = 5.2.0
@@ -52,7 +55,9 @@
 %package -n %lname
 Summary:KDE Access to window manager
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 %requires_ge libQt5Widgets5
 %requires_ge libQt5X11Extras5
 
@@ -91,15 +96,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kwindowsystem-5.8.0.tar.xz - kwindowsystem-5.9.0.tar.xz ++
 1684 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is sonnet

Changes:

--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes2015-03-16 
09:34:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2015-04-13 
20:27:19.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:57 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
+
+---

Old:

  sonnet-5.8.0.tar.xz

New:

  sonnet-5.9.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.PAAnbu/_old  2015-04-13 20:27:20.0 +0200
+++ /var/tmp/diff_new_pack.PAAnbu/_new  2015-04-13 20:27:20.0 +0200
@@ -16,19 +16,22 @@
 #
 
 
+%bcond_without lang
 %define sonum   5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   sonnet
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake = 2.8.12
 # Enchant plugin is currently disabled upstream
 #BuildRequires:  enchant-devel
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -52,7 +55,9 @@
 Summary:KDE spell checking library
 Group:  System/GUI/KDE
 Obsoletes:  libKF5SonnetCore4
+%if %{with lang}
 Recommends: libKF5SonnetCore%sonum-lang = %{version}
+%endif
 %requires_ge libQt5Core5
 
 %description -n libKF5SonnetCore%sonum
@@ -96,9 +101,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n libKF5SonnetCore%sonum -p /sbin/ldconfig
 
@@ -108,7 +115,9 @@
 
 %postun -n libKF5SonnetUi%sonum -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n libKF5SonnetCore%sonum-lang -f %{name}5.lang
+%endif
 
 %files -n libKF5SonnetCore%sonum
 %defattr(-,root,root)

++ sonnet-5.8.0.tar.xz - sonnet-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.8.0/CMakeLists.txt 
new/sonnet-5.9.0/CMakeLists.txt
--- old/sonnet-5.8.0/CMakeLists.txt 2015-03-07 15:54:06.0 +0100
+++ new/sonnet-5.9.0/CMakeLists.txt 2015-04-04 14:16:01.0 +0200
@@ -3,7 +3,7 @@
 
 project(Sonnet)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
@@ -22,7 +22,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SONNET
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/sonnet_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.8.0/po/fr/sonnet5_qt.po 
new/sonnet-5.9.0/po/fr/sonnet5_qt.po
--- old/sonnet-5.8.0/po/fr/sonnet5_qt.po2015-03-07 15:54:06.0 
+0100
+++ new/sonnet-5.9.0/po/fr/sonnet5_qt.po2015-04-04 14:16:01.0 
+0200
@@ -24,10 +24,10 @@
 PO-Revision-Date: 2014-06-29 22:06+0200\n
 Last-Translator: Sebastien Renard ren...@kde.org\n
 Language-Team: French kde-francoph...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n




commit kxmlgui for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kxmlgui

Changes:

--- /work/SRC/openSUSE:Factory/kxmlgui/kxmlgui.changes  2015-03-16 
09:35:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.kxmlgui.new/kxmlgui.changes 2015-04-13 
20:28:01.0 +0200
@@ -1,0 +2,14 @@
+Sat Apr  4 14:41:01 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Preserve translation domain when merging .rc files
+  * Fix runtime warning QWidget::setWindowModified:
+The window title does not contain a '[*]' placeholder
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Drop no longer needed Requires of the devel subpackage:
+  attica-qt5-devel, kglobalaccel-devel, ki18n-devel, kiconthemes-devel,
+  kitemviews-devel, ktextwidgets-devel, kwidgetsaddons-devel and
+  kwindowsystem-devel
+
+---

Old:

  kxmlgui-5.8.0.tar.xz

New:

  kxmlgui-5.9.0.tar.xz



Other differences:
--
++ kxmlgui.spec ++
--- /var/tmp/diff_new_pack.NQ0nvv/_old  2015-04-13 20:28:02.0 +0200
+++ /var/tmp/diff_new_pack.NQ0nvv/_new  2015-04-13 20:28:02.0 +0200
@@ -16,26 +16,27 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5XmlGui5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kxmlgui
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
-BuildRequires:  attica-qt5-devel = %{kf5_version}
+BuildRequires:  attica-qt5-devel = %{_tar_path}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel = %{kf5_version}
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  kglobalaccel-devel = %{_tar_path}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Network) = 5.2.0
@@ -62,7 +63,9 @@
 Summary:Framework for managing menu and toolbar actions
 Group:  System/GUI/KDE
 Obsoletes:  libKF5XmlGui4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 libkxmlgui provides a framework for managing menu and toolbar actions in an
@@ -74,18 +77,11 @@
 Summary:Framework for managing menu and toolbar actions
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
-Requires:   attica-qt5-devel = %{kf5_version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel = %{kf5_version}
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   kglobalaccel-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
-Requires:   kitemviews-devel = %{kf5_version}
-Requires:   ktextwidgets-devel = %{kf5_version}
-Requires:   kwidgetsaddons-devel = %{kf5_version}
-Requires:   kwindowsystem-devel = %{kf5_version}
+Requires:   kconfig-devel = %{_tar_path}
+Requires:   kconfigwidgets-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5DBus) = 5.2.0
+Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 Requires:   pkgconfig(Qt5Xml) = 5.2.0
 
 %description devel
@@ -104,17 +100,21 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
   mkdir -p %{buildroot}%{_kf5_sharedir}/kxmlgui5/
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kxmlgui-5.8.0.tar.xz - kxmlgui-5.9.0.tar.xz ++
 

commit kded for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kded

Changes:

--- /work/SRC/openSUSE:Factory/kded/kded.changes2015-03-16 
09:34:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.kded.new/kded.changes   2015-04-13 
20:27:33.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:40:58 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
+- Drop no longer needed Requires of the devel subpackage:
+  pkgconfig(Qt5DBus), pkgconfig(Qt5Network), pkgconfig(Qt5Widgets)
+  and pkgconfig(Qt5Xml)
+
+---

Old:

  kded-5.8.0.tar.xz

New:

  kded-5.9.0.tar.xz



Other differences:
--
++ kded.spec ++
--- /var/tmp/diff_new_pack.yzfZpM/_old  2015-04-13 20:27:34.0 +0200
+++ /var/tmp/diff_new_pack.yzfZpM/_new  2015-04-13 20:27:34.0 +0200
@@ -16,30 +16,33 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kded
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kcrash-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kinit-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kinit-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Network) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang
+%endif
 Summary:Central daemon of KDE workspaces
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -56,10 +59,6 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   pkgconfig(Qt5DBus) = 5.2.0
-Requires:   pkgconfig(Qt5Network) = 5.2.0
-Requires:   pkgconfig(Qt5Widgets) = 5.2.0
-Requires:   pkgconfig(Qt5Xml) = 5.2.0
 
 %description devel
 KDED runs in the background and performs a number of small tasks.
@@ -76,20 +75,25 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
+
+%if %{with lang}
+echo %doc %lang(it) %{_kf5_mandir}/it %{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(ru) %{_kf5_mandir}/ru %{name}.lang
+echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}.lang
+echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}.lang
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
-%files lang
+%if %{with lang}
+%files lang -f %{name}.lang
 %defattr(-,root,root)
-%doc %lang(it) %{_kf5_mandir}/it
-%doc %lang(nl) %{_kf5_mandir}/nl
-%doc %lang(pt_BR) %{_kf5_mandir}/pt_BR
-%doc %lang(ru) %{_kf5_mandir}/ru
-%doc %lang(sv) %{_kf5_mandir}/sv
-%doc %lang(uk) %{_kf5_mandir}/uk
+%endif
 
 %files
 %defattr(-,root,root)

++ kded-5.8.0.tar.xz - kded-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.8.0/CMakeLists.txt 
new/kded-5.9.0/CMakeLists.txt
--- old/kded-5.8.0/CMakeLists.txt   2015-03-07 15:40:35.0 +0100
+++ new/kded-5.9.0/CMakeLists.txt   2015-04-04 14:03:03.0 +0200
@@ -2,7 +2,7 @@
 
 project(KDED)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2)
@@ -12,8 +12,8 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release 

commit threadweaver for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is threadweaver

Changes:

--- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes
2015-03-16 09:35:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.threadweaver.new/threadweaver.changes   
2015-04-13 20:28:12.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:41:03 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
+
+---

Old:

  threadweaver-5.8.0.tar.xz

New:

  threadweaver-5.9.0.tar.xz



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

++ threadweaver-5.8.0.tar.xz - threadweaver-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.8.0/CMakeLists.txt 
new/threadweaver-5.9.0/CMakeLists.txt
--- old/threadweaver-5.8.0/CMakeLists.txt   2015-02-25 15:24:03.0 
+0100
+++ new/threadweaver-5.9.0/CMakeLists.txt   2015-04-04 13:51:28.0 
+0200
@@ -2,7 +2,7 @@
 
 project(ThreadWeaver)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -25,7 +25,7 @@
 ENDIF()
 
 # -- Maintained by scripty
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX THREADWEAVER
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/threadweaver_version.h




commit kdoctools for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdoctools for openSUSE:Factory 
checked in at 2015-04-13 20:24:56

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


Package is kdoctools

Changes:

--- /work/SRC/openSUSE:Factory/kdoctools/kdoctools.changes  2015-03-16 
09:30:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdoctools.new/kdoctools.changes 2015-04-13 
20:24:57.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:43 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
+
+---

Old:

  kdoctools-5.8.0.tar.xz

New:

  kdoctools-5.9.0.tar.xz



Other differences:
--
++ kdoctools.spec ++
--- /var/tmp/diff_new_pack.2chIbb/_old  2015-04-13 20:24:58.0 +0200
+++ /var/tmp/diff_new_pack.2chIbb/_new  2015-04-13 20:24:58.0 +0200
@@ -16,24 +16,27 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kdoctools
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook_4
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
 BuildRequires:  libxml2-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  perl-URI
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Summary:Create documentation from DocBook
 License:LGPL-2.1+ and MIT
 Group:  System/GUI/KDE
@@ -68,19 +71,22 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 %{name}.lang
+%if %{with lang}
+%find_lang %{name}5 %{name}.lang
+echo %doc %lang(de) %{_kf5_mandir}/de %{name}.lang
+echo %doc %lang(it) %{_kf5_mandir}/it %{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(ru) %{_kf5_mandir}/ru %{name}.lang
+echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}.lang
+echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}.lang
+%endif
 
+%if %{with lang}
 %files lang -f %{name}.lang
-%defattr(-,root,root)
-%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(ru) %{_kf5_mandir}/ru
-%doc %lang(sv) %{_kf5_mandir}/sv
-%doc %lang(uk) %{_kf5_mandir}/uk
+%endif
 
 %files
 %defattr(-,root,root)

++ kdoctools-5.8.0.tar.xz - kdoctools-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.8.0/CMakeLists.txt 
new/kdoctools-5.9.0/CMakeLists.txt
--- old/kdoctools-5.8.0/CMakeLists.txt  2015-03-07 15:42:36.0 +0100
+++ new/kdoctools-5.9.0/CMakeLists.txt  2015-04-04 14:04:49.0 +0200
@@ -3,7 +3,7 @@
 project(KDocTools)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -11,8 +11,8 @@
 include(ECMMarkNonGuiExecutable)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDOCTOOLS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kdoctools_version.h
 PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5DocToolsConfigVersion.cmake




commit knotifications for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package knotifications for openSUSE:Factory 
checked in at 2015-04-13 20:25:40

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


Package is knotifications

Changes:

--- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes
2015-03-16 09:32:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.knotifications.new/knotifications.changes   
2015-04-13 20:25:41.0 +0200
@@ -1,0 +2,13 @@
+Sat Apr  4 14:40:48 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Added an event() version that takes no icon and will
+use a default one
+  * Added an event() version that takes StandardEvent eventId
+and QString iconName
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Drop no longer needed kwindowsystem-devel Requires of the
+  devel subpackage
+
+---

Old:

  knotifications-5.8.0.tar.xz

New:

  knotifications-5.9.0.tar.xz



Other differences:
--
++ knotifications.spec ++
--- /var/tmp/diff_new_pack.fqlbYR/_old  2015-04-13 20:25:42.0 +0200
+++ /var/tmp/diff_new_pack.fqlbYR/_new  2015-04-13 20:25:42.0 +0200
@@ -16,23 +16,26 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Notifications5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   knotifications
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcodecs-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcodecs-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  phonon4qt5-devel
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -55,7 +58,9 @@
 %package -n %lname
 Summary:KDE Desktop notifications
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KNotification is used to notify the user of an event. It covers feedback and
@@ -66,7 +71,6 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kwindowsystem-devel = %{kf5_version}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 
 %description devel
@@ -83,15 +87,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ knotifications-5.8.0.tar.xz - knotifications-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.8.0/CMakeLists.txt 
new/knotifications-5.9.0/CMakeLists.txt
--- old/knotifications-5.8.0/CMakeLists.txt 2015-03-07 15:47:35.0 
+0100
+++ new/knotifications-5.9.0/CMakeLists.txt 2015-04-04 14:10:05.0 
+0200
@@ -3,7 +3,7 @@
 project(KNotifications)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -13,8 +13,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX KNOTIFICATIONS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.8.0/KF5NotificationsConfig.cmake.in 
new/knotifications-5.9.0/KF5NotificationsConfig.cmake.in
--- 

commit kcoreaddons for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kcoreaddons for openSUSE:Factory 
checked in at 2015-04-13 20:24:50

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


Package is kcoreaddons

Changes:

--- /work/SRC/openSUSE:Factory/kcoreaddons/kcoreaddons.changes  2015-03-16 
09:30:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcoreaddons.new/kcoreaddons.changes 
2015-04-13 20:24:52.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:43 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
+
+---

Old:

  kcoreaddons-5.8.0.tar.xz

New:

  kcoreaddons-5.9.0.tar.xz



Other differences:
--
++ kcoreaddons.spec ++
--- /var/tmp/diff_new_pack.pUz6p6/_old  2015-04-13 20:24:52.0 +0200
+++ /var/tmp/diff_new_pack.pUz6p6/_new  2015-04-13 20:24:52.0 +0200
@@ -16,20 +16,25 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5CoreAddons5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kcoreaddons
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  shared-mime-info
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 Requires:   shared-mime-info
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Summary:Utilities for core application functionality and accessing the 
OS
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -80,9 +85,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
@@ -94,7 +101,9 @@
 %postun
 %{_bindir}/update-mime-database %{_kf5_sharedir}/mime  /dev/null 21 || :
 
+%if %{with lang}
 %files lang -f %{name}5.lang
+%endif
 
 %files
 %defattr(-,root,root)

++ kcoreaddons-5.8.0.tar.xz - kcoreaddons-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcoreaddons-5.8.0/CMakeLists.txt 
new/kcoreaddons-5.9.0/CMakeLists.txt
--- old/kcoreaddons-5.8.0/CMakeLists.txt2015-03-07 15:39:54.0 
+0100
+++ new/kcoreaddons-5.9.0/CMakeLists.txt2015-04-04 14:02:19.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KCoreAddons)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
@@ -37,7 +37,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCOREADDONS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kcoreaddons_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcoreaddons-5.8.0/autotests/data/fakeplugin.desktop 
new/kcoreaddons-5.9.0/autotests/data/fakeplugin.desktop
--- old/kcoreaddons-5.8.0/autotests/data/fakeplugin.desktop 2015-03-07 
15:39:54.0 +0100
+++ new/kcoreaddons-5.9.0/autotests/data/fakeplugin.desktop 2015-04-04 
14:02:19.0 +0200
@@ -8,7 +8,9 @@
 Name[en_GB]=NSA Plugin
 Name[es]=Complemento NSA
 Name[fi]=NSA-liitännäinen
+Name[gl]=Complemento de NSA
 Name[hu]=NSA bővítmény
+Name[it]=Estensione NSA
 Name[ko]=NSA 플러그인
 Name[nl]=NSA-plug-in
 Name[pl]=Wtyczka NSA
@@ -36,7 +38,9 @@
 Comment[en_GB]=Test Plugin Spy
 Comment[es]=Probar espía de complementos
 Comment[fi]=Testivakoiluliitännäinen
+Comment[gl]=Complemento espía de proba
 Comment[hu]=Kémbővítmény tesztelése
+Comment[it]=Estensione di prova Spy
 Comment[ko]=테스트 플러그인 첩자
 Comment[nl]=Plug-in Spy testen
 Comment[pl]=Wypróbuj szpiega wtyczki
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kcoreaddons-5.8.0/autotests/data/hiddenplugin.desktop 
new/kcoreaddons-5.9.0/autotests/data/hiddenplugin.desktop
--- old/kcoreaddons-5.8.0/autotests/data/hiddenplugin.desktop   2015-03-07 
15:39:54.0 +0100
+++ new/kcoreaddons-5.9.0/autotests/data/hiddenplugin.desktop   2015-04-04 
14:02:19.0 +0200
@@ -8,7 +8,9 @@
 Name[en_GB]=NSA Plugin
 Name[es]=Complemento NSA
 Name[fi]=NSA-liitännäinen
+Name[gl]=Complemento 

commit kapidox for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kapidox for openSUSE:Factory checked 
in at 2015-04-13 20:25:52

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


Package is kapidox

Changes:

--- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes  2015-03-16 
09:32:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.kapidox.new/kapidox.changes 2015-04-13 
20:25:53.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:49 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
+
+---

Old:

  kapidox-5.8.0.tar.xz

New:

  kapidox-5.9.0.tar.xz



Other differences:
--
++ kapidox.spec ++
--- /var/tmp/diff_new_pack.7KtACB/_old  2015-04-13 20:25:54.0 +0200
+++ /var/tmp/diff_new_pack.7KtACB/_new  2015-04-13 20:25:54.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kapidox
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 Requires:   doxygen
 BuildRequires:  fdupes
@@ -50,7 +50,7 @@
 
 %install
   python setup.py install --prefix=%{_kf5_prefix} --root=%{buildroot}
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %files
 %defattr(-,root,root)

++ kapidox-5.8.0.tar.xz - kapidox-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.8.0/setup.py new/kapidox-5.9.0/setup.py
--- old/kapidox-5.8.0/setup.py  2015-02-15 23:32:07.0 +0100
+++ new/kapidox-5.9.0/setup.py  2015-04-04 09:56:11.0 +0200
@@ -5,7 +5,7 @@
 
 setup(
 name='kapidox',
-version='5.8.0',
+version='5.9.0',
 description='KDE API documentation generation tools',
 maintainer = 'Aurélien Gâteau',
 maintainer_email = 'agat...@kde.org',




commit kcrash for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kcrash

Changes:

--- /work/SRC/openSUSE:Factory/kcrash/kcrash.changes2015-03-16 
09:31:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcrash.new/kcrash.changes   2015-04-13 
20:25:26.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:46 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
+
+---

Old:

  kcrash-5.8.0.tar.xz

New:

  kcrash-5.9.0.tar.xz



Other differences:
--
++ kcrash.spec ++
--- /var/tmp/diff_new_pack.ztSQdB/_old  2015-04-13 20:25:27.0 +0200
+++ /var/tmp/diff_new_pack.ztSQdB/_new  2015-04-13 20:25:27.0 +0200
@@ -17,17 +17,17 @@
 
 
 %define lname   libKF5Crash5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kcrash
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5X11Extras) = 5.2.0
@@ -71,7 +71,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ kcrash-5.8.0.tar.xz - kcrash-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcrash-5.8.0/CMakeLists.txt 
new/kcrash-5.9.0/CMakeLists.txt
--- old/kcrash-5.8.0/CMakeLists.txt 2015-03-06 03:37:44.0 +0100
+++ new/kcrash-5.9.0/CMakeLists.txt 2015-04-04 13:47:32.0 +0200
@@ -2,7 +2,7 @@
 
 project(KCrash)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2.0)
@@ -22,8 +22,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCrash
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kcrash_version.h
 PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5CrashConfigVersion.cmake




commit knewstuff for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package knewstuff for openSUSE:Factory 
checked in at 2015-04-13 20:25:08

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


Package is knewstuff

Changes:

--- /work/SRC/openSUSE:Factory/knewstuff/knewstuff.changes  2015-03-16 
09:31:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.knewstuff.new/knewstuff.changes 2015-04-13 
20:25:09.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:44 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
+- Drop no longer needed Requires of the devel subpackage:
+  karchive-devel and kio-devel
+
+---

Old:

  knewstuff-5.8.0.tar.xz

New:

  knewstuff-5.9.0.tar.xz



Other differences:
--
++ knewstuff.spec ++
--- /var/tmp/diff_new_pack.3meM6t/_old  2015-04-13 20:25:10.0 +0200
+++ /var/tmp/diff_new_pack.3meM6t/_new  2015-04-13 20:25:10.0 +0200
@@ -16,28 +16,29 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5NewStuff5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   knewstuff
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
-BuildRequires:  attica-qt5-devel = %{kf5_version}
+BuildRequires:  attica-qt5-devel = %{_tar_path}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
@@ -58,7 +59,9 @@
 Summary:Framework for downloading and sharing additional application 
data
 Group:  System/GUI/KDE
 Obsoletes:  libKF5NewStuff4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 The KNewStuff library implements collaborative data sharing for
@@ -69,11 +72,9 @@
 Summary:Framework for downloading and sharing additional application 
data
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
-Requires:   attica-qt5-devel = %{kf5_version}
+Requires:   attica-qt5-devel = %{_tar_path}
 Requires:   extra-cmake-modules
-Requires:   karchive-devel = %{kf5_version}
-Requires:   kio-devel = %{kf5_version}
-Requires:   kxmlgui-devel = %{kf5_version}
+Requires:   kxmlgui-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 
 %description devel
@@ -91,15 +92,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ knewstuff-5.8.0.tar.xz - knewstuff-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knewstuff-5.8.0/CMakeLists.txt 
new/knewstuff-5.9.0/CMakeLists.txt
--- old/knewstuff-5.8.0/CMakeLists.txt  2015-03-07 15:47:12.0 +0100
+++ new/knewstuff-5.9.0/CMakeLists.txt  2015-04-04 14:09:45.0 +0200
@@ -2,7 +2,7 @@
 
 project(KNewStuff)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(KDEInstallDirs)
@@ -13,8 +13,8 @@
 

commit kidletime for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kidletime for openSUSE:Factory 
checked in at 2015-04-13 20:25:01

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


Package is kidletime

Changes:

--- /work/SRC/openSUSE:Factory/kidletime/kidletime.changes  2015-03-16 
09:30:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.kidletime.new/kidletime.changes 2015-04-13 
20:25:02.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:44 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
+
+---

Old:

  kidletime-5.8.0.tar.xz

New:

  kidletime-5.9.0.tar.xz



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

++ kidletime-5.8.0.tar.xz - kidletime-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.8.0/CMakeLists.txt 
new/kidletime-5.9.0/CMakeLists.txt
--- old/kidletime-5.8.0/CMakeLists.txt  2015-02-25 15:20:06.0 +0100
+++ new/kidletime-5.9.0/CMakeLists.txt  2015-04-04 13:48:47.0 +0200
@@ -3,7 +3,7 @@
 project(KIdleTime)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -13,7 +13,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KIDLETIME
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kidletime_version.h




commit rsnapshot for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is rsnapshot

Changes:

--- /work/SRC/openSUSE:Factory/rsnapshot/rsnapshot.changes  2014-12-30 
00:49:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.rsnapshot.new/rsnapshot.changes 2015-04-13 
20:30:44.0 +0200
@@ -1,0 +2,7 @@
+Sun Apr 12 12:33:07 UTC 2015 - mplus...@suse.com
+
+- Use url for source
+- Cleanup spec file with spec-cleaner
+- Update dependencies
+
+---

Old:

  rsnapshot-1.3.1.tar.bz2

New:

  rsnapshot-1.3.1.tar.gz



Other differences:
--
++ rsnapshot.spec ++
--- /var/tmp/diff_new_pack.ikKRQY/_old  2015-04-13 20:30:44.0 +0200
+++ /var/tmp/diff_new_pack.ikKRQY/_new  2015-04-13 20:30:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rsnapshot
 #
-# Copyright (c) 2014 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,22 +17,28 @@
 
 
 Name:   rsnapshot
-Url:http://www.rsnapshot.org/
 Version:1.3.1
 Release:0
 Summary:Backup program using hardlinks
 License:GPL-2.0+
 Group:  Productivity/Archiving/Backup
-Source: %name-%version.tar.bz2
+Url:http://www.rsnapshot.org/
+Source0:http://rsnapshot.org/downloads/%{name}-%{version}.tar.gz
 Patch1: rsnapshot-config.patch
 Patch2: rsnapshot-1.3.1-no_usr_local.patch
 Patch3: rsnapshot-1.3.1-perl5.18.patch
+BuildRequires:  openssh
 BuildRequires:  perl
 BuildRequires:  rsync
+Requires:   openssh
 Requires:   perl
 Requires:   rsync
-BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
+%if 0%{?suse_version} = 1320
+BuildRequires:  util-linux-systemd
+Requires:   util-linux-systemd
+%endif
 
 %description
 rsnapshot is a filesystem snapshot utility for making backups of local
@@ -45,16 +51,6 @@
 change, so once it's set up, you may never need to think about it
 again.
 
-
-
-Authors:
-
-Anthony Ettinger ch...@users.sourceforge.net
-David Keegel dj...@users.sourceforge.net
-David Cantrell drh...@users.sourceforge.net
-Nathan Rosenquist scubani...@users.sourceforge.net
-Teodor Zlatanov t...@users.sourceforge.net
-
 %prep
 %setup -q
 %patch1
@@ -63,16 +59,16 @@
 
 %build
 %configure
-%__make
+make %{?_smp_mflags}
 
 %check
-%__make test
+make %{?_smp_mflags} test
 
 %install
-%makeinstall
-%__install -d %{buildroot}/%{_sysconfdir}
-%__install -m 644 rsnapshot.conf.default 
%{buildroot}/%{_sysconfdir}/rsnapshot.conf.default
-%__install -m 600 rsnapshot.conf.default 
%{buildroot}/%{_sysconfdir}/rsnapshot.conf
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+install -d %{buildroot}/%{_sysconfdir}
+install -m 644 rsnapshot.conf.default 
%{buildroot}/%{_sysconfdir}/rsnapshot.conf.default
+install -m 600 rsnapshot.conf.default 
%{buildroot}/%{_sysconfdir}/rsnapshot.conf
 
 %files
 %defattr(-,root,root)




commit lbzip2 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package lbzip2 for openSUSE:Factory checked 
in at 2015-04-13 20:30:40

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


Package is lbzip2

Changes:

--- /work/SRC/openSUSE:Factory/lbzip2/lbzip2.changes2014-04-11 
13:36:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.lbzip2.new/lbzip2.changes   2015-04-13 
20:30:41.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 12 11:30:55 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+- Cleanup dependencies
+
+---

Old:

  lbzip2-2.5.tar.gz

New:

  lbzip2-2.5.tar.bz2



Other differences:
--
++ lbzip2.spec ++
--- /var/tmp/diff_new_pack.7FxhFe/_old  2015-04-13 20:30:42.0 +0200
+++ /var/tmp/diff_new_pack.7FxhFe/_new  2015-04-13 20:30:42.0 +0200
@@ -1,8 +1,7 @@
-# vim: set ts=4 sw=4 et:
 #
 # spec file for package lbzip2
 #
-# Copyright (c) 2014 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
@@ -23,16 +22,12 @@
 Summary:Parallel bzip2/bunzip2 Filter
 License:GPL-3.0+
 Group:  Productivity/Archiving/Compression
-Source: http://archive.lbzip2.org/lbzip2-%{version}.tar.gz
 Url:http://lbzip2.org/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Source: http://archive.lbzip2.org/lbzip2-%{version}.tar.bz2
 BuildRequires:  libbz2-devel
-BuildRequires:  bc
-BuildRequires:  gcc
-BuildRequires:  glibc-devel
-BuildRequires:  make
 Provides:   lbunzip2 = %{version}
 Obsoletes:  lbunzip2  %{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Lbzip2 is a Pthreads-based parallel bzip2/bunzip2 filter, passable to GNU tar
@@ -53,15 +48,15 @@
 %setup -q
 
 %build
-%configure --disable-silent-rules
+%configure
 
 make %{?_smp_mflags}
 
 %install
-%makeinstall
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
 
 %check
-make check
+make %{?_smp_mflags} check
 
 %files
 %defattr(-,root,root)

++ lbzip2-2.5.tar.gz - lbzip2-2.5.tar.bz2 ++




commit interbench for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is interbench

Changes:

New Changes file:

--- /dev/null   2015-03-12 01:14:30.992027505 +0100
+++ /work/SRC/openSUSE:Factory/.interbench.new/interbench.changes   
2015-04-13 20:30:14.0 +0200
@@ -0,0 +1,5 @@
+---
+Thu Apr  9 13:46:37 UTC 2015 - mplus...@suse.com
+
+- Initial package of version 0.31
+

New:

  interbench-0.31.tar.bz2
  interbench.changes
  interbench.spec



Other differences:
--
++ interbench.spec ++
#
# spec file for package interbench
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# 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/
#


Name:   interbench
Version:0.31
Release:0
Summary:Tool to benchmark interactivity in Linux
License:GPL-2.0
Group:  System/Benchmark
Url:http://users.on.net/~ckolivas/interbench/
Source0:
http://ck.kolivas.org/apps/interbench/interbench-%{version}.tar.bz2
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
This benchmark application is designed to benchmark interactivity in Linux. See
the included file readme.interactivity for a brief definition.

It is designed to measure the effect of changes in Linux kernel design or system
configuration changes such as cpu, I/O scheduler and filesystem changes and
options. With careful benchmarking, different hardware can be compared.

%prep
%setup -q

%build
make %{?_smp_mflags}

%install
install -D -m 0755 %{name} %{buildroot}%{_bindir}/%{name}
install -D -m 0644 %{name}.8 %{buildroot}%{_mandir}/man8/%{name}.8

%files
%defattr(-,root,root)
%doc COPYING readme readme.interactivity
%{_bindir}/%{name}
%{_mandir}/man8/%{name}.*

%changelog



commit rzip for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rzip for openSUSE:Factory checked in 
at 2015-04-13 20:30:44

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


Package is rzip

Changes:

--- /work/SRC/openSUSE:Factory/rzip/rzip.changes2011-09-23 
12:45:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.rzip.new/rzip.changes   2015-04-13 
20:30:44.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 12 12:40:58 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+- Use url for source
+
+---



Other differences:
--
++ rzip.spec ++
--- /var/tmp/diff_new_pack.7nSSkU/_old  2015-04-13 20:30:45.0 +0200
+++ /var/tmp/diff_new_pack.7nSSkU/_new  2015-04-13 20:30:45.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package rzip (Version 2.1)
+# spec file for package rzip
 #
-# Copyright (c) 2009 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
@@ -15,18 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   rzip
-BuildRequires:  libbz2-devel
-Summary:A large-file compression program
 Version:2.1
-Release:125
-Group:  Productivity/Archiving/Compression
+Release:0
+Summary:A large-file compression program
 License:GPL-2.0+
-Url:http://rzip.samba.org/
-Source: %{name}-%{version}.tar.gz
+Group:  Productivity/Archiving/Compression
+Url:https://rzip.samba.org
+Source: https://rzip.samba.org/ftp/rzip/%{name}-%{version}.tar.gz
+BuildRequires:  libbz2-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -35,24 +33,15 @@
 which can sometimes allow rzip to produce much better compression
 ratios than other programs.
 
-
-
-Authors:
-
-Andrew Tridgell http://samba.org/~tridge/
-
 %prep
 %setup -q
 
 %build
-./configure --prefix=/usr
-make CFLAGS=$RPM_OPT_FLAGS
+%configure
+make %{?_smp_mflags} CFLAGS=%{optflags}
 
 %install
-make install INSTALL_BIN=$RPM_BUILD_ROOT/%{_bindir} 
INSTALL_MAN=$RPM_BUILD_ROOT%{_mandir}
-
-%clean
-rm -fr $RPM_BUILD_ROOT
+make install INSTALL_BIN=%{buildroot}/%{_bindir} 
INSTALL_MAN=%{buildroot}%{_mandir}
 
 %files
 %defattr(-, root, root)




commit fcitx-qt5 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package fcitx-qt5 for openSUSE:Factory 
checked in at 2015-04-13 20:31:04

Comparing /work/SRC/openSUSE:Factory/fcitx-qt5 (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-qt5.new (New)


Package is fcitx-qt5

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-qt5/fcitx-qt5.changes  2014-12-16 
14:48:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-qt5.new/fcitx-qt5.changes 2015-04-13 
20:31:05.0 +0200
@@ -1,0 +2,18 @@
+Thu Apr  2 14:28:35 UTC 2015 - i...@marguerite.su
+
+- update version 1.0.1
+  * small fix against 1.0.0
+- changes from 0.1.3 to 1.0.0
+  * add COPYING
+  * use platform name to check x11
+  * access window function when context destructs is a bad thing
+  * reorganize fcitx-qt5 library
+- changes from 0.1.2 to 0.1.3
+  * remove debug message
+  * fix fcitx-qt5 display number resolution
+  * fix pkg-config file
+  * use filterEvent instead of x11FilterEvent
+  * update dbus support
+  * use new qt5 library name
+
+---

Old:

  fcitx-qt5-0.1.2.tar.xz

New:

  fcitx-qt5-1.0.1.tar.xz



Other differences:
--
++ fcitx-qt5.spec ++
--- /var/tmp/diff_new_pack.7fE8UK/_old  2015-04-13 20:31:05.0 +0200
+++ /var/tmp/diff_new_pack.7fE8UK/_new  2015-04-13 20:31:05.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-qt5
 #
-# Copyright (c) 2014 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,7 +17,7 @@
 
 
 Name:   fcitx-qt5
-Version:0.1.2
+Version:1.0.1
 Release:0
 Summary:Fcitx QT5 Input Context
 License:GPL-2.0+
@@ -26,7 +26,8 @@
 Source: http://download.fcitx-im.org/%{name}/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  cmake
-BuildRequires:  fcitx-devel = 4.2.3
+BuildRequires:  extra-cmake-modules
+BuildRequires:  fcitx-devel = 4.2.8.6
 BuildRequires:  gcc-c++
 BuildRequires:  libicu-devel
 BuildRequires:  libqt5-qtbase-devel
@@ -63,16 +64,17 @@
 
 %files
 %defattr(-,root,root)
-%{_libdir}/lib%{name}.so.0
-%{_libdir}/lib%{name}.so.0.1
+%doc COPYING
+%{_libdir}/libFcitxQt5*Addons.so.1
+%{_libdir}/libFcitxQt5*Addons.so.1.0
 %dir %{_libdir}/qt5/plugins/
 %dir %{_libdir}/qt5/plugins/platforminputcontexts/
 
%{_libdir}/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so
 
 %files devel
 %defattr(-,root,root)
-%{_includedir}/%{name}
-%{_libdir}/lib%{name}.so
-%{_libdir}/pkgconfig/%{name}.pc
+%{_includedir}/FcitxQt5
+%{_libdir}/libFcitxQt5*Addons.so
+%{_datadir}/cmake/FcitxQt5*Addons/
 
 %changelog

++ fcitx-qt5-0.1.2.tar.xz - fcitx-qt5-1.0.1.tar.xz ++
 25322 lines of diff (skipped)




commit rubygem-puma for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-puma for openSUSE:Factory 
checked in at 2015-04-13 20:30:24

Comparing /work/SRC/openSUSE:Factory/rubygem-puma (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-puma.new (New)


Package is rubygem-puma

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-puma/rubygem-puma.changes
2015-02-14 13:56:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-puma.new/rubygem-puma.changes   
2015-04-13 20:30:25.0 +0200
@@ -1,0 +2,24 @@
+Sun Apr 12 05:48:53 UTC 2015 - co...@suse.com
+
+- updated to version 2.11.2
+ * 2 minor features:
+   * Add `on_worker_fork` hook, which allows to mimic Unicorn's behavior
+   * Add shutdown_debug config option
+ 
+ * 4 bug fixes:
+   * Fix the Config constants not being available in the DSL. Fixes #683
+   * Ignore multiple port declarations
+   * Proper 'Connection' header handling compatible with HTTP 1.[01] protocols
+   * Use Puma instead of puma to reporting to New Relic
+ 
+ * 1 doc fixes:
+   * Add Gitter badge.
+ 
+ * 6 PRs merged:
+   * Merge pull request #657 from schneems/schneems/puma-once-port
+   * Merge pull request #658 from Tomohiro/newrelic-dispatcher-default-update
+   * Merge pull request #662 from basecrm/connection-compatibility
+   * Merge pull request #664 from fxposter/on-worker-fork
+   * Merge pull request #667 from JuanitoFatas/doc/gemspec
+
+---

Old:

  puma-2.11.1.gem

New:

  puma-2.11.2.gem



Other differences:
--
++ rubygem-puma.spec ++
--- /var/tmp/diff_new_pack.JJkjxU/_old  2015-04-13 20:30:25.0 +0200
+++ /var/tmp/diff_new_pack.JJkjxU/_new  2015-04-13 20:30:25.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-puma
-Version:2.11.1
+Version:2.11.2
 Release:0
 %define mod_name puma
 %define mod_full_name %{mod_name}-%{version}

++ puma-2.11.1.gem - puma-2.11.2.gem ++
 3636 lines of diff (skipped)




commit frameworkintegration for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package frameworkintegration for 
openSUSE:Factory checked in at 2015-04-13 20:24:45

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


Package is frameworkintegration

Changes:

--- 
/work/SRC/openSUSE:Factory/frameworkintegration/frameworkintegration.changes
2015-03-16 09:30:26.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.frameworkintegration.new/frameworkintegration.changes
   2015-04-13 20:24:46.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:40:42 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Fix possible crash when destroying a QSystemTrayIcon
+(triggered by e.g. Trojita), kde#343976
+  * Fix native modal file dialogs in QML, kde#334963
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  frameworkintegration-5.8.0.tar.xz

New:

  frameworkintegration-5.9.0.tar.xz



Other differences:
--
++ frameworkintegration.spec ++
--- /var/tmp/diff_new_pack.WeaUpS/_old  2015-04-13 20:24:47.0 +0200
+++ /var/tmp/diff_new_pack.WeaUpS/_new  2015-04-13 20:24:47.0 +0200
@@ -16,23 +16,24 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Style5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   frameworkintegration
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  knotifications-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  knotifications-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
 BuildRequires:  libQt5Gui-private-headers-devel = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -60,7 +61,9 @@
 Summary:Plugins responsible for better integration of Qt applications 
in KDE Workspace
 Group:  System/GUI/KDE
 Obsoletes:  libKF5Style4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 Framework Integration is a set of plugins responsible for better
@@ -87,8 +90,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
+Requires:   kconfigwidgets-devel = %{_tar_path}
+Requires:   kiconthemes-devel = %{_tar_path}
 
 %description devel
 Framework Integration is a set of plugins responsible for better
@@ -107,15 +110,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ frameworkintegration-5.8.0.tar.xz - frameworkintegration-5.9.0.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/frameworkintegration-5.8.0/CMakeLists.txt 
new/frameworkintegration-5.9.0/CMakeLists.txt
--- old/frameworkintegration-5.8.0/CMakeLists.txt   2015-03-07 
15:36:56.0 +0100
+++ new/frameworkintegration-5.9.0/CMakeLists.txt   2015-04-04 
13:58:07.0 +0200
@@ -2,7 +2,7 @@
 
 project(FrameworkIntegration)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,8 +19,8 @@
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 

commit ktextwidgets for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2015-04-13 20:24:40

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


Package is ktextwidgets

Changes:

--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets.changes
2015-03-16 09:30:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new/ktextwidgets.changes   
2015-04-13 20:24:41.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:40:42 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
+- Drop no longer needed Requires of the devel subpackage:
+  kcompletion-devel, kconfigwidgets-devel, kiconthemes-devel,
+  kservice-devel and kwindowsystem-devel
+
+---

Old:

  ktextwidgets-5.8.0.tar.xz

New:

  ktextwidgets-5.9.0.tar.xz



Other differences:
--
++ ktextwidgets.spec ++
--- /var/tmp/diff_new_pack.kMww2Y/_old  2015-04-13 20:24:42.0 +0200
+++ /var/tmp/diff_new_pack.kMww2Y/_new  2015-04-13 20:24:42.0 +0200
@@ -16,25 +16,26 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   ktextwidgets
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  sonnet-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  sonnet-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -55,7 +56,9 @@
 Summary:KDE Text editing widgets
 Group:  System/GUI/KDE
 Obsoletes:  libKF5TextWidgets4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KTextWidgets provides widgets for displaying and editing text. It supports
@@ -66,13 +69,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcompletion-devel = %{kf5_version}
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
-Requires:   kservice-devel = %{kf5_version}
-Requires:   kwindowsystem-devel = %{kf5_version}
-Requires:   sonnet-devel = %{kf5_version}
+Requires:   ki18n-devel = %{_tar_path}
+Requires:   sonnet-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 
 %description devel
@@ -89,15 +87,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ ktextwidgets-5.8.0.tar.xz - ktextwidgets-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.8.0/CMakeLists.txt 
new/ktextwidgets-5.9.0/CMakeLists.txt
--- old/ktextwidgets-5.8.0/CMakeLists.txt   2015-03-07 15:50:55.0 
+0100
+++ new/ktextwidgets-5.9.0/CMakeLists.txt   2015-04-04 14:13:12.0 
+0200
@@ -3,7 +3,7 @@
 project(KTextWidgets)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(KDEInstallDirs)
@@ -15,8 +15,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION 

commit kmediaplayer for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kmediaplayer for openSUSE:Factory 
checked in at 2015-04-13 20:24:34

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


Package is kmediaplayer

Changes:

--- /work/SRC/openSUSE:Factory/kmediaplayer/kmediaplayer.changes
2015-03-16 09:30:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.kmediaplayer.new/kmediaplayer.changes   
2015-04-13 20:24:35.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:41 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
+
+---

Old:

  kmediaplayer-5.8.0.tar.xz

New:

  kmediaplayer-5.9.0.tar.xz



Other differences:
--
++ kmediaplayer.spec ++
--- /var/tmp/diff_new_pack.w0fBxx/_old  2015-04-13 20:24:35.0 +0200
+++ /var/tmp/diff_new_pack.w0fBxx/_new  2015-04-13 20:24:35.0 +0200
@@ -17,32 +17,32 @@
 
 
 %define lname   libKF5MediaPlayer5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kmediaplayer
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 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:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-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:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
-BuildRequires:  solid-devel = %{kf5_version}
+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:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
+BuildRequires:  solid-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -72,8 +72,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kparts-devel = %{kf5_version}
+Requires:   ki18n-devel = %{_tar_path}
+Requires:   kparts-devel = %{_tar_path}
 
 %description devel
 KMediaPlayer builds on the KParts framework to provide a common interface for
@@ -88,7 +88,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ kmediaplayer-5.8.0.tar.xz - kmediaplayer-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmediaplayer-5.8.0/CMakeLists.txt 
new/kmediaplayer-5.9.0/CMakeLists.txt
--- old/kmediaplayer-5.8.0/CMakeLists.txt   2015-02-25 15:21:10.0 
+0100
+++ new/kmediaplayer-5.9.0/CMakeLists.txt   2015-04-04 13:49:31.0 
+0200
@@ -6,7 +6,7 @@
 #
 # CMake stuff from ECM
 #
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(KDEInstallDirs)
@@ -19,8 +19,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts

commit kdnssd-framework for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdnssd-framework for 
openSUSE:Factory checked in at 2015-04-13 20:24:23

Comparing /work/SRC/openSUSE:Factory/kdnssd-framework (Old)
 and  /work/SRC/openSUSE:Factory/.kdnssd-framework.new (New)


Package is kdnssd-framework

Changes:

--- /work/SRC/openSUSE:Factory/kdnssd-framework/kdnssd-framework.changes
2015-03-16 09:29:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdnssd-framework.new/kdnssd-framework.changes   
2015-04-13 20:24:24.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:40 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
+
+---

Old:

  kdnssd-5.8.0.tar.xz

New:

  kdnssd-5.9.0.tar.xz



Other differences:
--
++ kdnssd-framework.spec ++
--- /var/tmp/diff_new_pack.C9aXWp/_old  2015-04-13 20:24:24.0 +0200
+++ /var/tmp/diff_new_pack.C9aXWp/_new  2015-04-13 20:24:24.0 +0200
@@ -16,17 +16,20 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5DNSSD5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kdnssd-framework
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  avahi-compat-mDNSResponder-devel
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Network) = 5.2.0
 Summary:Network service discovery using Zeroconf
@@ -46,7 +49,9 @@
 %package -n %lname
 Summary:Network service discovery using Zeroconf
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 Recommends: nss-mdns
 %requires_ge libQt5Network5
 %requires_ge libQt5DBus5
@@ -80,15 +85,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang kdnssd5 --with-qt --without-mo
+%if %{with lang}
+%find_lang kdnssd5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f kdnssd5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kdnssd-5.8.0.tar.xz - kdnssd-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdnssd-5.8.0/CMakeLists.txt 
new/kdnssd-5.9.0/CMakeLists.txt
--- old/kdnssd-5.8.0/CMakeLists.txt 2015-03-07 15:42:23.0 +0100
+++ new/kdnssd-5.9.0/CMakeLists.txt 2015-04-04 14:04:35.0 +0200
@@ -2,7 +2,7 @@
 
 project(KDNSSD)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_SOURCE_DIR}/cmake/modules) #TODO: remove cmake/modules when 
extra-cmake-modules is done
 
 include(KDEInstallDirs)
@@ -11,7 +11,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdnssd-5.8.0/po/fr/kdnssd5_qt.po 
new/kdnssd-5.9.0/po/fr/kdnssd5_qt.po
--- old/kdnssd-5.8.0/po/fr/kdnssd5_qt.po2015-03-07 15:42:23.0 
+0100
+++ new/kdnssd-5.9.0/po/fr/kdnssd5_qt.po2015-04-04 14:04:35.0 
+0200
@@ -24,10 +24,10 @@
 PO-Revision-Date: 2014-03-16 18:32+0100\n
 Last-Translator: Sebastien Renard ren...@kde.org\n
 Language-Team: French kde-francoph...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n




commit kiconthemes for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kiconthemes for openSUSE:Factory 
checked in at 2015-04-13 20:24:29

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


Package is kiconthemes

Changes:

--- /work/SRC/openSUSE:Factory/kiconthemes/kiconthemes.changes  2015-03-16 
09:29:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiconthemes.new/kiconthemes.changes 
2015-04-13 20:24:30.0 +0200
@@ -1,0 +2,13 @@
+Sat Apr  4 14:40:40 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * KIconDialog can now be shown using the regular
+QDialog show() and exec() methods
+  * Fix KIconEngine::paint to handle different devicePixelRatios
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Drop no longer needed Requires of the devel subpackage:
+  kconfigwidgets-devel, ki18n-devel, kitemviews-devel and
+  kwidgetsaddons-devel
+
+---

Old:

  kiconthemes-5.8.0.tar.xz

New:

  kiconthemes-5.9.0.tar.xz



Other differences:
--
++ kiconthemes.spec ++
--- /var/tmp/diff_new_pack.8WWLsq/_old  2015-04-13 20:24:30.0 +0200
+++ /var/tmp/diff_new_pack.8WWLsq/_new  2015-04-13 20:24:30.0 +0200
@@ -16,20 +16,21 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5IconThemes5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kiconthemes
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Svg) = 5.2.0
@@ -61,10 +62,6 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kitemviews-devel = %{kf5_version}
-Requires:   kwidgetsaddons-devel = %{kf5_version}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 
 %description devel
@@ -81,15 +78,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kiconthemes-5.8.0.tar.xz - kiconthemes-5.9.0.tar.xz ++
 9542 lines of diff (skipped)




commit kdewebkit for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdewebkit for openSUSE:Factory 
checked in at 2015-04-13 20:23:50

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


Package is kdewebkit

Changes:

--- /work/SRC/openSUSE:Factory/kdewebkit/kdewebkit.changes  2015-03-16 
09:28:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdewebkit.new/kdewebkit.changes 2015-04-13 
20:23:51.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:37 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
+
+---

Old:

  kdewebkit-5.8.0.tar.xz

New:

  kdewebkit-5.9.0.tar.xz



Other differences:
--
++ kdewebkit.spec ++
--- /var/tmp/diff_new_pack.BkVmzw/_old  2015-04-13 20:23:52.0 +0200
+++ /var/tmp/diff_new_pack.BkVmzw/_new  2015-04-13 20:23:52.0 +0200
@@ -17,34 +17,34 @@
 
 
 %define lname   libKF5WebKit5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kdewebkit
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 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:  kconfigwidgets-devel =  %{kf5_version}
-BuildRequires:  kcoreaddons-devel =  %{kf5_version}
-BuildRequires:  kdbusaddons-devel =  %{kf5_version}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-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:  kwallet-framework-devel =  %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel =  %{kf5_version}
-BuildRequires:  kwindowsystem-devel =  %{kf5_version}
-BuildRequires:  kxmlgui-devel =  %{kf5_version}
-BuildRequires:  solid-devel =  %{kf5_version}
+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:  kwallet-framework-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
+BuildRequires:  solid-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Network) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -94,7 +94,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ kdewebkit-5.8.0.tar.xz - kdewebkit-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.8.0/CMakeLists.txt 
new/kdewebkit-5.9.0/CMakeLists.txt
--- old/kdewebkit-5.8.0/CMakeLists.txt  2015-02-25 15:19:01.0 +0100
+++ new/kdewebkit-5.9.0/CMakeLists.txt  2015-04-04 13:48:04.0 +0200
@@ -2,7 +2,7 @@
 
 project(KDEWebKit)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -18,8 +18,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDEWEBKIT
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kdewebkit_version.h
 PACKAGE_VERSION_FILE 

commit ki18n for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package ki18n for openSUSE:Factory checked 
in at 2015-04-13 20:23:55

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


Package is ki18n

Changes:

--- /work/SRC/openSUSE:Factory/ki18n/ki18n.changes  2015-03-16 
09:29:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.ki18n.new/ki18n.changes 2015-04-13 
20:23:56.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  4 14:40:37 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Reload the global Qt catalog when using i18n()
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  ki18n-5.8.0.tar.xz

New:

  ki18n-5.9.0.tar.xz



Other differences:
--
++ ki18n.spec ++
--- /var/tmp/diff_new_pack.YsHJiT/_old  2015-04-13 20:23:57.0 +0200
+++ /var/tmp/diff_new_pack.YsHJiT/_new  2015-04-13 20:23:57.0 +0200
@@ -16,13 +16,14 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5I18n5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   ki18n
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  gettext-runtime
 BuildRequires:  kf5-filesystem
@@ -51,7 +52,9 @@
 Summary:KDE Gettext-based UI text internationalization
 Group:  System/GUI/KDE
 Obsoletes:  libKF5I18n4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 %requires_ge libQt5Core5
 %requires_ge libQt5Script5
 
@@ -87,18 +90,21 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+echo %dir %{_kf5_sharedir}/locale/*/LC_SCRIPTS %{name}5.lang
+echo %{_kf5_sharedir}/locale/*/LC_SCRIPTS/ki18n5/ %{name}5.lang
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
-%defattr(-,root,root)
-%dir %{_kf5_sharedir}/locale/*/LC_SCRIPTS
-%{_kf5_sharedir}/locale/*/LC_SCRIPTS/ki18n5/
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ ki18n-5.8.0.tar.xz - ki18n-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.8.0/CMakeLists.txt 
new/ki18n-5.9.0/CMakeLists.txt
--- old/ki18n-5.8.0/CMakeLists.txt  2015-03-07 15:43:57.0 +0100
+++ new/ki18n-5.9.0/CMakeLists.txt  2015-04-04 14:05:57.0 +0200
@@ -3,7 +3,7 @@
 project(KI18n)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 include(FeatureSummary)
@@ -12,7 +12,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(
   ${KF5_VERSION}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.8.0/po/gl/ki18n5.po 
new/ki18n-5.9.0/po/gl/ki18n5.po
--- old/ki18n-5.8.0/po/gl/ki18n5.po 2015-03-07 15:43:57.0 +0100
+++ new/ki18n-5.9.0/po/gl/ki18n5.po 2015-04-04 14:05:57.0 +0200
@@ -9,13 +9,14 @@
 # Marce Villarino mvillar...@kde-espana.es, 2009, 2010, 2011, 2012.
 # Xosé xoseca...@gmail.com, 2010.
 # Marce Villarino mvillar...@kde-espana.es, 2011, 2012, 2013, 2014.
+# Adrián Chaves Fernández adriyeticha...@gmail.com, 2015.
 msgid 
 msgstr 
 Project-Id-Version: kdelibs4\n
 Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 POT-Creation-Date: 2015-01-26 07:50+\n
-PO-Revision-Date: 2014-05-13 23:05+0200\n
-Last-Translator: Marce Villarino mvillar...@kde-espana.org\n
+PO-Revision-Date: 2015-03-14 06:30+0100\n
+Last-Translator: Adrián Chaves Fernández adriyeticha...@gmail.com\n
 Language-Team: Galician kde-i18n-...@kde.org\n
 Language: gl\n
 MIME-Version: 1.0\n
@@ -246,92 +247,64 @@
 msgstr Win
 
 #: kuitmarkup.cpp:362
-#, fuzzy
-#| msgctxt keyboard-key-name
-#| msgid F%1
 msgctxt keyboard-key-name
 msgid F1
-msgstr F%1
+msgstr F1
 
 #: kuitmarkup.cpp:363
-#, fuzzy
-#| msgid 2
 msgctxt keyboard-key-name
 msgid F2
-msgstr 2
+msgstr F2
 
 #: kuitmarkup.cpp:364
-#, fuzzy
-#| msgid 3
 msgctxt keyboard-key-name
 msgid F3
-msgstr 3
+msgstr F3
 
 #: kuitmarkup.cpp:365
-#, fuzzy
-#| msgid 4
 msgctxt keyboard-key-name
 msgid F4
-msgstr 4
+msgstr F4
 
 #: kuitmarkup.cpp:366
-#, fuzzy
-#| msgid 5
 msgctxt keyboard-key-name
 msgid F5
-msgstr 

commit kdesu for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdesu for openSUSE:Factory checked 
in at 2015-04-13 20:23:19

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


Package is kdesu

Changes:

--- /work/SRC/openSUSE:Factory/kdesu/kdesu.changes  2015-03-16 
09:27:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdesu.new/kdesu.changes 2015-04-13 
20:23:20.0 +0200
@@ -1,0 +2,12 @@
+Sat Apr  4 14:40:34 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:50:36 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add explicit ki18n-devel BuildRequires
+
+---

Old:

  kdesu-5.8.0.tar.xz

New:

  kdesu-5.9.0.tar.xz



Other differences:
--
++ kdesu.spec ++
--- /var/tmp/diff_new_pack.8aMSUL/_old  2015-04-13 20:23:20.0 +0200
+++ /var/tmp/diff_new_pack.8aMSUL/_new  2015-04-13 20:23:20.0 +0200
@@ -16,19 +16,21 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Su5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kdesu
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kpty-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kpty-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(x11)
 Summary:User interface for running shell commands with root privileges
@@ -51,7 +53,9 @@
 Group:  System/GUI/KDE
 PreReq: permissions
 Obsoletes:  libKF5Su4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 libkdesu provides functionality for building GUI front ends for
@@ -63,8 +67,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kpty-devel = %{kf5_version}
-Requires:   kservice-devel = %{kf5_version}
+Requires:   kpty-devel = %{_tar_path}
+Requires:   kservice-devel = %{_tar_path}
 
 %description devel
 libkdesu provides functionality for building GUI front ends for
@@ -83,14 +87,16 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %if 0%{?suse_version} = 1310
 # we need this for older oS releases; only Factory/13.2 has the whitelist
 echo setBadness('permissions-file-setuid-bit', 0)  
$RPM_SOURCE_DIR/%name-rpmlintrc
 %endif
 
-  %find_lang kdesud5 %{name}.lang
+%if %{with lang}
+%find_lang kdesud5 %{name}.lang
+%endif
 
 %post -n %lname
 /sbin/ldconfig
@@ -101,7 +107,9 @@
 %verifyscript -n %lname
 %verify_permissions -e %{_kf5_libexecdir}/kdesud
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kdesu-5.8.0.tar.xz - kdesu-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdesu-5.8.0/CMakeLists.txt 
new/kdesu-5.9.0/CMakeLists.txt
--- old/kdesu-5.8.0/CMakeLists.txt  2015-03-07 15:41:59.0 +0100
+++ new/kdesu-5.9.0/CMakeLists.txt  2015-04-04 14:04:09.0 +0200
@@ -2,7 +2,7 @@
 
 project(KDESu)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -12,9 +12,10 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED)
+find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Service ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Pty ${KF5_DEP_VERSION} REQUIRED)
 




commit khtml for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package khtml for openSUSE:Factory checked 
in at 2015-04-13 20:23:24

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


Package is khtml

Changes:

--- /work/SRC/openSUSE:Factory/khtml/khtml.changes  2015-03-16 
09:27:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.khtml.new/khtml.changes 2015-04-13 
20:23:26.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:34 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
+
+---

Old:

  khtml-5.8.0.tar.xz

New:

  khtml-5.9.0.tar.xz



Other differences:
--
++ khtml.spec ++
--- /var/tmp/diff_new_pack.kXUYME/_old  2015-04-13 20:23:27.0 +0200
+++ /var/tmp/diff_new_pack.kXUYME/_new  2015-04-13 20:23:27.0 +0200
@@ -16,38 +16,39 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5KHtml5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   khtml
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  giflib-devel
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kcrash-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-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:  kinit-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  kjs-devel = %{kf5_version}
-BuildRequires:  knotifications-devel = %{kf5_version}
-BuildRequires:  kparts-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwallet-framework-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:  kinit-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  kjs-devel = %{_tar_path}
+BuildRequires:  knotifications-devel = %{_tar_path}
+BuildRequires:  kparts-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwallet-framework-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  libjpeg-devel
 BuildRequires:  libpng-devel
 BuildRequires:  phonon4qt5-devel
@@ -77,7 +78,9 @@
 Summary:HTML rendering engine
 Group:  System/GUI/KDE
 Obsoletes:  libKF5KHtml4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KHTML is a web rendering engine, based on the KParts
@@ -88,19 +91,19 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   karchive-devel = %{kf5_version}
-Requires:   kbookmarks-devel = %{kf5_version}
-Requires:   kglobalaccel-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
-Requires:   kio-devel = %{kf5_version}
-Requires:   kjs-devel = %{kf5_version}
-Requires:   knotifications-devel = %{kf5_version}
-Requires:   kparts-devel = %{kf5_version}
-Requires:   kwallet-framework-devel = %{kf5_version}
-Requires:   kwidgetsaddons-devel = %{kf5_version}
-Requires:   kwindowsystem-devel = %{kf5_version}
-Requires:   sonnet-devel = %{kf5_version}
+Requires:   karchive-devel = %{_tar_path}
+Requires:   kbookmarks-devel = 

commit kjs for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kjs for openSUSE:Factory checked in 
at 2015-04-13 20:23:30

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


Package is kjs

Changes:

--- /work/SRC/openSUSE:Factory/kjs/kjs.changes  2015-03-16 09:28:06.0 
+0100
+++ /work/SRC/openSUSE:Factory/.kjs.new/kjs.changes 2015-04-13 
20:23:31.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:35 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
+
+---

Old:

  kjs-5.8.0.tar.xz

New:

  kjs-5.9.0.tar.xz



Other differences:
--
++ kjs.spec ++
--- /var/tmp/diff_new_pack.rnI2gW/_old  2015-04-13 20:23:31.0 +0200
+++ /var/tmp/diff_new_pack.rnI2gW/_new  2015-04-13 20:23:31.0 +0200
@@ -17,15 +17,15 @@
 
 
 %define sonum   5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kjs
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
 BuildRequires:  pcre-devel
 BuildRequires:  perl
@@ -87,7 +87,7 @@
 %install
   %kf5_makeinstall -C build
   chmod +x %{buildroot}%{_kf5_datadir}/kjs/create_hash_table
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n libKF5JS%sonum -p /sbin/ldconfig
 

++ kjs-5.8.0.tar.xz - kjs-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.8.0/CMakeLists.txt new/kjs-5.9.0/CMakeLists.txt
--- old/kjs-5.8.0/CMakeLists.txt2015-02-28 14:27:50.0 +0100
+++ new/kjs-5.9.0/CMakeLists.txt2015-04-04 13:49:22.0 +0200
@@ -3,7 +3,7 @@
 project(KJS)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 include(FeatureSummary)
@@ -12,7 +12,7 @@
 include(ECMSetupVersion)
 include(ECMMarkNonGuiExecutable)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KJS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kjs_version.h




commit kjsembed for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kjsembed for openSUSE:Factory 
checked in at 2015-04-13 20:24:00

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


Package is kjsembed

Changes:

--- /work/SRC/openSUSE:Factory/kjsembed/kjsembed.changes2015-03-16 
09:29:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.kjsembed.new/kjsembed.changes   2015-04-13 
20:24:01.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:38 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
+
+---

Old:

  kjsembed-5.8.0.tar.xz

New:

  kjsembed-5.9.0.tar.xz



Other differences:
--
++ kjsembed.spec ++
--- /var/tmp/diff_new_pack.Zu194D/_old  2015-04-13 20:24:02.0 +0200
+++ /var/tmp/diff_new_pack.Zu194D/_new  2015-04-13 20:24:02.0 +0200
@@ -16,19 +16,20 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5JsEmbed5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kjsembed
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kjs-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kjs-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Svg) = 5.2.0
 BuildRequires:  pkgconfig(Qt5UiTools) = 5.2.0
@@ -49,7 +50,9 @@
 %package -n %lname
 Summary:Binding Javascript object to QObjects
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KSJEmbed provides a method of binding JavaScript objects to QObjects,
@@ -60,8 +63,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kjs-devel = %{kf5_version}
+Requires:   ki18n-devel = %{_tar_path}
+Requires:   kjs-devel = %{_tar_path}
 
 %description devel
 KSJEmbed provides a method of binding JavaScript objects to QObjects,
@@ -77,15 +80,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kjsembed-5.8.0.tar.xz - kjsembed-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-5.8.0/CMakeLists.txt 
new/kjsembed-5.9.0/CMakeLists.txt
--- old/kjsembed-5.8.0/CMakeLists.txt   2015-03-07 15:46:43.0 +0100
+++ new/kjsembed-5.9.0/CMakeLists.txt   2015-04-04 14:09:22.0 +0200
@@ -2,7 +2,7 @@
 
 project(KJsEmbed)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2)
@@ -17,8 +17,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KJSEMBED
#VERSION_HEADER ${CMAKE_CURRENT_BINARY_DIR}/kjsembed_version.h
 PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5JsEmbedConfigVersion.cmake




commit kcompletion for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kcompletion for openSUSE:Factory 
checked in at 2015-04-13 20:23:14

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


Package is kcompletion

Changes:

--- /work/SRC/openSUSE:Factory/kcompletion/kcompletion.changes  2015-03-16 
09:27:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcompletion.new/kcompletion.changes 
2015-04-13 20:23:15.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:33 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
+
+---

Old:

  kcompletion-5.8.0.tar.xz

New:

  kcompletion-5.9.0.tar.xz



Other differences:
--
++ kcompletion.spec ++
--- /var/tmp/diff_new_pack.dPpEOp/_old  2015-04-13 20:23:16.0 +0200
+++ /var/tmp/diff_new_pack.dPpEOp/_new  2015-04-13 20:23:16.0 +0200
@@ -16,19 +16,22 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Completion5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kcompletion
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 Summary:Provides widgets with advanced completion support
 License:LGPL-2.1+
@@ -45,7 +48,9 @@
 %package -n %lname
 Summary:Provides widgets with advanced completion support
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KCompletion provides widgets with advanced completion support as well as a
@@ -73,15 +78,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kcompletion-5.8.0.tar.xz - kcompletion-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.8.0/CMakeLists.txt 
new/kcompletion-5.9.0/CMakeLists.txt
--- old/kcompletion-5.8.0/CMakeLists.txt2015-03-07 15:38:59.0 
+0100
+++ new/kcompletion-5.9.0/CMakeLists.txt2015-04-04 14:01:26.0 
+0200
@@ -3,7 +3,7 @@
 project(KCompletion)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -17,8 +17,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCOMPLETION
   VERSION_HEADER ${CMAKE_CURRENT_BINARY_DIR}/kcompletion_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.8.0/po/fr/kcompletion5_qt.po 
new/kcompletion-5.9.0/po/fr/kcompletion5_qt.po
--- old/kcompletion-5.8.0/po/fr/kcompletion5_qt.po  2015-03-07 
15:38:59.0 +0100
+++ new/kcompletion-5.9.0/po/fr/kcompletion5_qt.po  2015-04-04 
14:01:26.0 +0200
@@ -24,10 +24,10 @@
 PO-Revision-Date: 2014-03-16 18:32+0100\n
 Last-Translator: Sebastien Renard ren...@kde.org\n
 Language-Team: French kde-francoph...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n




commit kconfigwidgets for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kconfigwidgets

Changes:

--- /work/SRC/openSUSE:Factory/kconfigwidgets/kconfigwidgets.changes
2015-03-16 09:29:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.kconfigwidgets.new/kconfigwidgets.changes   
2015-04-13 20:24:14.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  4 14:40:39 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
+- Drop kguiaddons-devel and ki18n-devel Requires from devel subpackage
+
+---

Old:

  kconfigwidgets-5.8.0.tar.xz

New:

  kconfigwidgets-5.9.0.tar.xz



Other differences:
--
++ kconfigwidgets.spec ++
--- /var/tmp/diff_new_pack.LzrjIY/_old  2015-04-13 20:24:14.0 +0200
+++ /var/tmp/diff_new_pack.LzrjIY/_new  2015-04-13 20:24:14.0 +0200
@@ -16,24 +16,25 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5ConfigWidgets5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kconfigwidgets
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kauth-devel = %{kf5_version}
-BuildRequires:  kcodecs-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kauth-devel = %{_tar_path}
+BuildRequires:  kcodecs-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel = %{kf5_version}
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  kguiaddons-devel = %{_tar_path}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -54,7 +55,9 @@
 Group:  System/GUI/KDE
 Obsoletes:  libKF5ConfigWidgets4
 Conflicts:  kdelibs4support  5.3.0
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KConfigWidgets provides easy-to-use classes to create configuration dialogs, as
@@ -65,12 +68,10 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules = 1.7.0
-Requires:   kauth-devel = %{kf5_version}
-Requires:   kcodecs-devel = %{kf5_version}
-Requires:   kconfig-devel = %{kf5_version}
-Requires:   kguiaddons-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kwidgetsaddons-devel = %{kf5_version}
+Requires:   kauth-devel = %{_tar_path}
+Requires:   kcodecs-devel = %{_tar_path}
+Requires:   kconfig-devel = %{_tar_path}
+Requires:   kwidgetsaddons-devel = %{_tar_path}
 
 %description devel
 KConfigWidgets provides easy-to-use classes to create configuration dialogs, as
@@ -86,15 +87,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kconfigwidgets-5.8.0.tar.xz - kconfigwidgets-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfigwidgets-5.8.0/CMakeLists.txt 
new/kconfigwidgets-5.9.0/CMakeLists.txt
--- old/kconfigwidgets-5.8.0/CMakeLists.txt 2015-03-07 15:39:32.0 
+0100
+++ new/kconfigwidgets-5.9.0/CMakeLists.txt 2015-04-04 14:02:00.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KConfigWidgets)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2.0)
@@ -15,8 +15,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts

commit ktexteditor for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package ktexteditor for openSUSE:Factory 
checked in at 2015-04-13 20:24:05

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


Package is ktexteditor

Changes:

--- /work/SRC/openSUSE:Factory/ktexteditor/ktexteditor.changes  2015-03-16 
09:29:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.ktexteditor.new/ktexteditor.changes 
2015-04-13 20:24:06.0 +0200
@@ -1,0 +2,15 @@
+Sat Apr  4 14:40:39 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Add kdesrc-buildrc highlighting file
+  * syntax: added support for binary integer literals in the PHP
+highlighting file
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---
+Thu Mar 19 01:55:17 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add explicit kiconthemes-devel BuildRequires
+
+---

Old:

  ktexteditor-5.8.0.tar.xz

New:

  ktexteditor-5.9.0.tar.xz



Other differences:
--
++ ktexteditor.spec ++
--- /var/tmp/diff_new_pack.7vFeIX/_old  2015-04-13 20:24:07.0 +0200
+++ /var/tmp/diff_new_pack.7vFeIX/_new  2015-04-13 20:24:07.0 +0200
@@ -16,23 +16,25 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   ktexteditor
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel = %{kf5_version}
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kparts-devel = %{kf5_version}
+BuildRequires:  kguiaddons-devel = %{_tar_path}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kparts-devel = %{_tar_path}
 BuildRequires:  libgit2-devel
-BuildRequires:  sonnet-devel = %{kf5_version}
+BuildRequires:  sonnet-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5PrintSupport) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Script) = 5.2.0
@@ -40,7 +42,9 @@
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
 BuildRequires:  pkgconfig(Qt5XmlPatterns) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Obsoletes:  libKF5TextEditor4
 Obsoletes:  libKF5TextEditor5
 Summary:Provides a powerful text editor component
@@ -60,7 +64,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   kparts-devel = %{kf5_version}
+Requires:   kparts-devel = %{_tar_path}
 
 %description devel
 KTextEditor provides a powerful text editor component that you can embed in 
your
@@ -77,15 +81,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %{name}-lang -f %{name}5.lang
+%endif
 
 %files
 %defattr(-,root,root)

++ ktexteditor-5.8.0.tar.xz - ktexteditor-5.9.0.tar.xz ++
 9246 lines of diff (skipped)




commit libKF5NetworkManagerQt for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is libKF5NetworkManagerQt

Changes:

--- 
/work/SRC/openSUSE:Factory/libKF5NetworkManagerQt/libKF5NetworkManagerQt.changes
2015-03-16 09:35:14.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new/libKF5NetworkManagerQt.changes
   2015-04-13 20:28:06.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:41:02 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
+- NetworkManager is a public dep, so add the correct requires to
+  devel package (pkgconfig(NetworkManager), pkgconfig(libnm-glib)
+  and pkgconfig(libnm-util))
+
+---

Old:

  networkmanager-qt-5.8.0.tar.xz

New:

  networkmanager-qt-5.9.0.tar.xz



Other differences:
--
++ libKF5NetworkManagerQt.spec ++
--- /var/tmp/diff_new_pack.WIo2vf/_old  2015-04-13 20:28:07.0 +0200
+++ /var/tmp/diff_new_pack.WIo2vf/_new  2015-04-13 20:28:07.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define soversion 6
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   libKF5NetworkManagerQt
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 Summary:A Qt wrapper for NetworkManager DBus API
 License:LGPL-2.1 or LGPL-3.0
@@ -28,7 +28,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/networkmanager-qt-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(NetworkManager) = 0.9.8.4
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -48,9 +48,12 @@
 Summary:A Qt wrapper for NetworkManager DBus API
 Group:  Development/Libraries/KDE
 Requires:   libKF5NetworkManagerQt%{soversion} = %{version}
+Requires:   pkgconfig(NetworkManager) = 0.9.8.4
 Requires:   pkgconfig(Qt5Core) = 5.2.0
 Requires:   pkgconfig(Qt5DBus) = 5.2.0
 Requires:   pkgconfig(Qt5Network) = 5.2.0
+Requires:   pkgconfig(libnm-glib) = 0.9.8.4
+Requires:   pkgconfig(libnm-util) = 0.9.8.4
 
 %description devel
 NetworkManagerQt provides access to all NetworkManager features

++ networkmanager-qt-5.8.0.tar.xz - networkmanager-qt-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/networkmanager-qt-5.8.0/CMakeLists.txt 
new/networkmanager-qt-5.9.0/CMakeLists.txt
--- old/networkmanager-qt-5.8.0/CMakeLists.txt  2015-03-06 16:13:35.0 
+0100
+++ new/networkmanager-qt-5.9.0/CMakeLists.txt  2015-04-04 13:51:08.0 
+0200
@@ -2,7 +2,7 @@
 
 project(NetworkManagerQt)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake 
${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -28,7 +28,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX NETWORKMANAGERQT
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/networkmanagerqt_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/networkmanager-qt-5.8.0/autotests/CMakeLists.txt 
new/networkmanager-qt-5.9.0/autotests/CMakeLists.txt
--- old/networkmanager-qt-5.8.0/autotests/CMakeLists.txt2015-03-06 
16:13:35.0 +0100
+++ new/networkmanager-qt-5.9.0/autotests/CMakeLists.txt2015-04-04 
13:51:08.0 +0200
@@ -11,7 +11,6 @@
 
 include_directories (
 ${CMAKE_SOURCE_DIR}/src/settings
-${CMAKE_SOURCE_DIR}/src/fakeNetwork
 )
 
 include(ECMAddTests)




commit kpeople5 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kpeople5

Changes:

--- /work/SRC/openSUSE:Factory/kpeople5/kpeople5.changes2015-03-18 
13:05:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.kpeople5.new/kpeople5.changes   2015-04-13 
20:28:45.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:41:07 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Allow extending action metadata by using predefined types
+  * Fix model not being properly updated after removing a contact
+from Person
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kpeople-5.8.0.tar.xz

New:

  kpeople-5.9.0.tar.xz



Other differences:
--
++ kpeople5.spec ++
--- /var/tmp/diff_new_pack.teFTo2/_old  2015-04-13 20:28:45.0 +0200
+++ /var/tmp/diff_new_pack.teFTo2/_new  2015-04-13 20:28:45.0 +0200
@@ -16,26 +16,29 @@
 #
 
 
+%bcond_without lang
 %define rname kpeople
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kpeople5
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
-BuildRequires:  extra-cmake-modules = 1.8.0
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  extra-cmake-modules = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Qml) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Sql) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang
+%endif
 Summary:Provides access to all contacts and the people who hold them
 License:LGPL-2.1+
 Group:  Development/Libraries/KDE
@@ -76,13 +79,17 @@
 %install
   %kf5_makeinstall -C build
 
-  %find_lang libkpeople %{name}.lang
+%if %{with lang}
+%find_lang libkpeople %{name}.lang
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files lang -f %{name}.lang
+%endif
 
 %files
 %defattr(-,root,root)

++ kpeople-5.8.0.tar.xz - kpeople-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.8.0/CMakeLists.txt 
new/kpeople-5.9.0/CMakeLists.txt
--- old/kpeople-5.8.0/CMakeLists.txt2015-03-13 09:07:30.0 +0100
+++ new/kpeople-5.9.0/CMakeLists.txt2015-04-04 14:11:09.0 +0200
@@ -2,11 +2,11 @@
 
 project (KPeople)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 set(REQUIRED_QT_VERSION 5.2.0)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.8.0/autotests/fakecontactsource.cpp 
new/kpeople-5.9.0/autotests/fakecontactsource.cpp
--- old/kpeople-5.8.0/autotests/fakecontactsource.cpp   2015-03-13 
09:07:30.0 +0100
+++ new/kpeople-5.9.0/autotests/fakecontactsource.cpp   2015-04-04 
14:11:09.0 +0200
@@ -62,6 +62,7 @@
 
 FakeAllContactsMonitor::FakeAllContactsMonitor()
 {
+emitInitialFetchComplete(true);
 }
 
 QMapQString, KPeople::AbstractContact::Ptr FakeAllContactsMonitor::contacts()
@@ -79,7 +80,7 @@
 
 {
 KPeople::AbstractContact::Ptr contact2(new FakeContact(QVariantMap 
{
-{ KPeople::AbstractContact::NameProperty, 
QStringLiteral(Person A) },
+{ KPeople::AbstractContact::NameProperty, 
QStringLiteral(Contact 2) },
 { KPeople::AbstractContact::EmailProperty, 
QStringLiteral(conta...@example.com) }
 }));
 contacts[QStringLiteral(fakesource://contact2)] = contact2;
@@ -87,11 +88,19 @@
 
 {
 KPeople::AbstractContact::Ptr 

commit kitemviews for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kitemviews

Changes:

--- /work/SRC/openSUSE:Factory/kitemviews/kitemviews.changes2015-03-16 
09:36:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.kitemviews.new/kitemviews.changes   
2015-04-13 20:28:34.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:41:06 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
+
+---

Old:

  kitemviews-5.8.0.tar.xz

New:

  kitemviews-5.9.0.tar.xz



Other differences:
--
++ kitemviews.spec ++
--- /var/tmp/diff_new_pack.zAr641/_old  2015-04-13 20:28:34.0 +0200
+++ /var/tmp/diff_new_pack.zAr641/_new  2015-04-13 20:28:34.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5ItemViews5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kitemviews
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 Summary:Set of item views extending the Qt model-view framework
@@ -44,7 +47,9 @@
 %package -n %lname
 Summary:Set of item views extending the Qt model-view framework
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 %requires_ge libQt5Widgets5
 
 %description -n %lname
@@ -74,15 +79,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kitemviews-5.8.0.tar.xz - kitemviews-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemviews-5.8.0/CMakeLists.txt 
new/kitemviews-5.9.0/CMakeLists.txt
--- old/kitemviews-5.8.0/CMakeLists.txt 2015-03-07 15:45:56.0 +0100
+++ new/kitemviews-5.9.0/CMakeLists.txt 2015-04-04 14:08:36.0 +0200
@@ -2,7 +2,7 @@
 
 project(KItemViews)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2.0)
@@ -18,7 +18,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMVIEWS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kitemviews_version.h
 PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5ItemViewsConfigVersion.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemviews-5.8.0/po/fr/kitemviews5_qt.po 
new/kitemviews-5.9.0/po/fr/kitemviews5_qt.po
--- old/kitemviews-5.8.0/po/fr/kitemviews5_qt.po2015-03-07 
15:45:56.0 +0100
+++ new/kitemviews-5.9.0/po/fr/kitemviews5_qt.po2015-04-04 
14:08:36.0 +0200
@@ -24,10 +24,10 @@
 PO-Revision-Date: 2014-03-16 18:32+0100\n
 Last-Translator: Sebastien Renard ren...@kde.org\n
 Language-Team: French kde-francoph...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemviews-5.8.0/src/kcategorizedview.cpp 
new/kitemviews-5.9.0/src/kcategorizedview.cpp
--- old/kitemviews-5.8.0/src/kcategorizedview.cpp   2015-03-07 
15:45:56.0 +0100
+++ new/kitemviews-5.9.0/src/kcategorizedview.cpp   2015-04-04 
14:08:36.0 +0200
@@ -724,16 +724,7 @@
 while (bottom = top) {
 const int middle = (bottom + top) / 2;
 const QModelIndex index = d-proxyModel-index(middle, modelColumn(), 
rootIndex());
-QRect rect = visualRect(index);
-   

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 plasma-framework for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

Comparing /work/SRC/openSUSE:Factory/plasma-framework (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-framework.new (New)


Package is plasma-framework

Changes:

--- /work/SRC/openSUSE:Factory/plasma-framework/plasma-framework.changes
2015-03-16 09:35:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-framework.new/plasma-framework.changes   
2015-04-13 20:28:17.0 +0200
@@ -1,0 +2,21 @@
+Sat Apr  4 14:41:04 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Fixed stray tooltips when temporary owner of tooltip
+disappeared or became empty
+  * Fix TabBar not properly laid out initially, which could
+be observed in eg. Kickoff
+  * PageStack transitions now use Animators for smoother animations
+  * TabGroup transitions now use Animators for smoother animations
+  * Make Svg,FrameSvg work qith QT_DEVICE_PIXELRATIO
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Added Use-KPluginLoader-to-load-dataengines.patch from upstream,
+  (kde#345209)
+
+---
+Mon Mar 16 15:25:06 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add explicit knotifications-devel BuildRequires
+
+---

Old:

  plasma-framework-5.8.0.tar.xz

New:

  Use-KPluginLoader-to-load-dataengines.patch
  plasma-framework-5.9.0.tar.xz



Other differences:
--
++ plasma-framework.spec ++
--- /var/tmp/diff_new_pack.AUSzKv/_old  2015-04-13 20:28:18.0 +0200
+++ /var/tmp/diff_new_pack.AUSzKv/_new  2015-04-13 20:28:18.0 +0200
@@ -16,9 +16,10 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   plasma-framework
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 Summary:Plasma library and runtime components based upon KF5 and Qt5
@@ -27,27 +28,30 @@
 Url:https://projects.kde.org/plasma-framework
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-BuildRequires:  extra-cmake-modules = 1.8.0
+# PATCH-FIX-UPSTREAM Use-KPluginLoader-to-load-dataengines.patch
+Patch0: Use-KPluginLoader-to-load-dataengines.patch
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kactivities5-devel = %{kf5_version}
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdeclarative-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kactivities5-devel = %{_tar_path}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdeclarative-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:  kpackage-devel = %{kf5_version}
-BuildRequires:  kparts-devel = %{kf5_version}
-BuildRequires:  kservice-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:  knotifications-devel = %{_tar_path}
+BuildRequires:  kpackage-devel = %{_tar_path}
+BuildRequires:  kparts-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  libxcb-devel
 BuildRequires:  xz
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
@@ -67,7 +71,9 @@
 %endif
 BuildRequires:  pkgconfig(x11)
 Recommends: libqt5-qtquickcontrols
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Recommends: %{name}-components = %{version}
 Recommends: %{name}-private = 

commit kcmutils for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kcmutils for openSUSE:Factory 
checked in at 2015-04-13 20:29:03

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


Package is kcmutils

Changes:

--- /work/SRC/openSUSE:Factory/kcmutils/kcmutils.changes2015-03-16 
09:35:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcmutils.new/kcmutils.changes   2015-04-13 
20:29:04.0 +0200
@@ -1,0 +2,17 @@
+Sat Apr  4 14:41:04 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Use new json-based plugin system. KCMs are searched under kcms/.
+  For now a desktop file still needs to be installed under
+  kservices5/ for compatibility
+  * Load and wrap the QML-only version of kcms if possible
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Added new BuildRequires: kpackage-devel, kdeclarative-devel,
+  pkgconfig(Qt5Qml) and pkgconfig(Qt5Quick)
+- Drop no longer needed Requires of the devel subpackage:
+  kiconthemes-devel, kitemviews-devel and kxmlgui-devel
+- Added kcmutils-use-susehelp.patch: Use susehelp wrapper, instead
+  of khelpcenter command (we use khelpcenter5)
+
+---

Old:

  kcmutils-5.8.0.tar.xz

New:

  kcmutils-5.9.0.tar.xz
  kcmutils-use-susehelp.patch



Other differences:
--
++ kcmutils.spec ++
--- /var/tmp/diff_new_pack.H5KvRN/_old  2015-04-13 20:29:05.0 +0200
+++ /var/tmp/diff_new_pack.H5KvRN/_new  2015-04-13 20:29:05.0 +0200
@@ -16,24 +16,29 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5KCMUtils5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kcmutils
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdeclarative-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  kpackage-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
+BuildRequires:  pkgconfig(Qt5Qml) = 5.2.0
+BuildRequires:  pkgconfig(Qt5Quick) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 Summary:Provides various classes to work with KCModules
 License:LGPL-2.1+
@@ -41,6 +46,8 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-OPENSUSE kcmutils-use-susehelp.patch -- Use susehelp wrapper, 
instead of khelpcenter command (we use khelpcenter5)
+Patch0: kcmutils-use-susehelp.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -51,7 +58,9 @@
 Summary:Provides various classes to work with KCModules
 Group:  System/GUI/KDE
 Obsoletes:  libKF5KCMUtils4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KCMUtils provides various classes to work with KCModules. KCModules can be
@@ -62,11 +71,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
-Requires:   kitemviews-devel = %{kf5_version}
-Requires:   kservice-devel = %{kf5_version}
-Requires:   kxmlgui-devel = %{kf5_version}
+Requires:   kconfigwidgets-devel = %{_tar_path}
+Requires:   kservice-devel = %{_tar_path}
 
 %description devel
 KCMUtils provides various classes to work with KCModules. KCModules can be
@@ -75,6 +81,7 @@
 %lang_package -n %lname
 %prep
 %setup -q
+%patch0 -p1
 
 %build
   %cmake_kf5 -d build
@@ -82,15 +89,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p 

commit kxmlrpcclient5 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kxmlrpcclient5

Changes:

--- /work/SRC/openSUSE:Factory/kxmlrpcclient5/kxmlrpcclient5.changes
2015-03-18 13:06:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new/kxmlrpcclient5.changes   
2015-04-13 20:28:51.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:41:08 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Install translations
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Add ki18n-devel BuildRequires
+
+---

Old:

  kxmlrpcclient-5.8.0.tar.xz

New:

  kxmlrpcclient-5.9.0.tar.xz



Other differences:
--
++ kxmlrpcclient5.spec ++
--- /var/tmp/diff_new_pack.e7SjNo/_old  2015-04-13 20:28:51.0 +0200
+++ /var/tmp/diff_new_pack.e7SjNo/_new  2015-04-13 20:28:52.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kxmlrpcclient5
 #
-# Copyright (c) 2014 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
@@ -16,10 +16,12 @@
 #
 
 
+%bcond_without lang
 %define rname kxmlrpcclient
-%define _tar_path 5.8
+%define lname libKF5XmlRpcClient5
+%define _tar_path 5.9
 Name:   kxmlrpcclient5
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 Summary:Library containing simple XML-RPC Client support
@@ -28,31 +30,36 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{rname}-%{version}.tar.xz
 Source1:baselibs.conf
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kio-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Library containing simple XML-RPC Client support.
 
-%package -n libKF5XmlRpcClient5
+%package -n %lname
 Summary:Library containing simple XML-RPC Client support
 Group:  Development/Libraries/KDE
+%if %{with lang}
+Recommends: %lname-lang = %{version}
+%endif
 
-%description  -n libKF5XmlRpcClient5
+%description  -n %lname
 Library containing simple XML-RPC Client support.
 
 %package devel
 Summary:Library containing simple XML-RPC Client support: Build 
Environment
 Group:  Development/Libraries/KDE
-Requires:   kio-devel = %{kf5_version}
-Requires:   libKF5XmlRpcClient5 = %{version}
+Requires:   %lname = %{version}
+Requires:   kio-devel = %{_tar_path}
 
 %description devel
 Library containing simple XML-RPC Client support. Development files.
 
+%lang_package -n %lname
 %prep
 %setup -q -n %{rname}-%{version}
 
@@ -63,11 +70,20 @@
 %install
   %kf5_makeinstall -C build
 
-%post -n libKF5XmlRpcClient5 -p /sbin/ldconfig
+%if %{with lang}
+%find_lang libkxmlrpcclient5 %{name}.lang
+%endif
 
-%postun -n libKF5XmlRpcClient5 -p /sbin/ldconfig
+%post -n %lname -p /sbin/ldconfig
 
-%files -n libKF5XmlRpcClient5
+%postun -n %lname -p /sbin/ldconfig
+
+%if %{with lang}
+%files -n %lname-lang -f %{name}.lang
+%defattr(-,root,root)
+%endif
+
+%files -n %lname
 %defattr(-,root,root)
 %doc COPYING*
 %{_kf5_libdir}/libKF5XmlRpcClient.so.*

++ kxmlrpcclient-5.8.0.tar.xz - kxmlrpcclient-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kxmlrpcclient-5.8.0/CMakeLists.txt 
new/kxmlrpcclient-5.9.0/CMakeLists.txt
--- old/kxmlrpcclient-5.8.0/CMakeLists.txt  2015-03-07 15:53:13.0 
+0100
+++ new/kxmlrpcclient-5.9.0/CMakeLists.txt  2015-04-04 14:15:05.0 
+0200
@@ -3,7 +3,7 @@
 project(KXmlRpcClient)
 
 # ECM setup
-find_package(ECM 1.7.0 CONFIG REQUIRED)
+find_package(ECM 5.9.0 CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
 include(GenerateExportHeader)
@@ -16,8 +16,8 @@
 include(KDECMakeSettings)
 include(KDEFrameworkCompilerSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.7.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 

commit npth for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package npth for openSUSE:Factory checked in 
at 2015-04-13 20:29:52

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


Package is npth

Changes:

--- /work/SRC/openSUSE:Factory/npth/npth.changes2014-11-04 
17:29:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.npth.new/npth.changes   2015-04-13 
20:29:53.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr 11 19:12:44 UTC 2015 - astie...@suse.com
+
+- npth 1.2:
+ * Fix possible clobbering of ERRNO.
+
+---

Old:

  npth-1.1.tar.bz2
  npth-1.1.tar.bz2.sig

New:

  npth-1.2.tar.bz2
  npth-1.2.tar.bz2.sig



Other differences:
--
++ npth.spec ++
--- /var/tmp/diff_new_pack.UvWipk/_old  2015-04-13 20:29:54.0 +0200
+++ /var/tmp/diff_new_pack.UvWipk/_new  2015-04-13 20:29:54.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package npth
 #
-# Copyright (c) 2014 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
@@ -18,7 +18,7 @@
 
 Name:   npth
 %define lname  libnpth0
-Version:1.1
+Version:1.2
 Release:0
 Summary:New GNU Portable Threads library
 License:LGPL-3.0+ or GPL-2.0+

++ npth-1.1.tar.bz2 - npth-1.2.tar.bz2 ++
 5735 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/npth-1.1/AUTHORS new/npth-1.2/AUTHORS
--- old/npth-1.1/AUTHORS2014-09-18 08:03:48.0 +0200
+++ new/npth-1.2/AUTHORS2015-04-11 13:57:35.0 +0200
@@ -15,7 +15,7 @@
 
 * Copyright
 
-  nPth is Copyright (C) 2011, 2012, 2014 g10 Code GmbH
+  nPth is Copyright (C) 2011, 2012, 2014, 2015 g10 Code GmbH
 
   nPth is free software; you can redistribute it and/or modify it
   under the terms of either
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/npth-1.1/ChangeLog new/npth-1.2/ChangeLog
--- old/npth-1.1/ChangeLog  2014-10-31 07:52:35.0 +0100
+++ new/npth-1.2/ChangeLog  2015-04-11 14:02:43.0 +0200
@@ -1,3 +1,29 @@
+2015-04-11  Werner Koch  w...@gnupg.org
+
+   Release 1.2.
+
+2015-02-03  Werner Koch  w...@gnupg.org
+
+   w32: Use -static-libgcc to avoid linking to libgcc_s_sjlj-1.dll.
+   * w32/Makefile.am: Remove non-Windows stuff.
+   (extra_ltoptions): New.
+   (libnpth_la_LDFLAGS): Use it.
+
+2015-01-28  Werner Koch  w...@gnupg.org
+
+   Switch to automake 1.14.
+   * Makefile.am (AUTOMAKE_OPTIONS): Move to ...
+   * configure.ac (AM_INIT_AUTOMAKE): here.  Add serial-tests.
+   * build-aux/compile: Add.
+   * build-aux/config.guess, build-aux/config.sub: Update.
+   * build-aux/depcomp: Update.
+   * build-aux/missing: Update.
+
+2014-12-18  Werner Koch  w...@gnupg.org
+
+   Don't get fooled by leave_npth changing ERRNO.
+   * src/npth.c: Save ERRNO.
+
 2014-10-31  Werner Koch  w...@gnupg.org
 
Release 1.1.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/npth-1.1/Makefile.am new/npth-1.2/Makefile.am
--- old/npth-1.1/Makefile.am2014-01-10 15:54:03.0 +0100
+++ new/npth-1.2/Makefile.am2015-01-28 11:27:00.0 +0100
@@ -19,7 +19,6 @@
 ## Process this file with automake to produce Makefile.in
 
 ACLOCAL_AMFLAGS = -I m4
-AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
 
 EXTRA_DIST = npth-config.in npth.m4 npth.spec.in autogen.sh autogen.rc HACKING
 bin_SCRIPTS = npth-config
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude 

commit rubygem-rspec-core for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rspec-core for 
openSUSE:Factory checked in at 2015-04-13 20:29:33

Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-core (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new (New)


Package is rubygem-rspec-core

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rspec-core/rubygem-rspec-core.changes
2015-03-25 21:03:30.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-core.new/rubygem-rspec-core.changes   
2015-04-13 20:29:35.0 +0200
@@ -1,0 +2,13 @@
+Sat Apr 11 06:04:47 UTC 2015 - co...@suse.com
+
+- updated to version 3.2.3
+ Bug Fixes:
+ 
+ * Fix how the DSL methods are defined so that RSpec is compatible with
+   gems that define methods of the same name on `Kernel` (such as
+   the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, #1907)
+ * Fix `before(:context) { skip }` so that it does not wrongly cause the
+   spec suite to exit with a non-zero status when no examples failed.
+   (Myron Marston, #1926)
+ 
+---

Old:

  rspec-core-3.2.2.gem

New:

  rspec-core-3.2.3.gem



Other differences:
--
++ rubygem-rspec-core.spec ++
--- /var/tmp/diff_new_pack.bfUGXd/_old  2015-04-13 20:29:35.0 +0200
+++ /var/tmp/diff_new_pack.bfUGXd/_new  2015-04-13 20:29:35.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rspec-core
-Version:3.2.2
+Version:3.2.3
 Release:0
 %define mod_name rspec-core
 %define mod_full_name %{mod_name}-%{version}

++ rspec-core-3.2.2.gem - rspec-core-3.2.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md2015-03-12 05:37:40.0 +0100
+++ new/Changelog.md2015-04-07 01:32:15.0 +0200
@@ -1,3 +1,15 @@
+### 3.2.3 / 2015-04-06
+[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.2...v3.2.3)
+
+Bug Fixes:
+
+* Fix how the DSL methods are defined so that RSpec is compatible with
+  gems that define methods of the same name on `Kernel` (such as
+  the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, #1907)
+* Fix `before(:context) { skip }` so that it does not wrongly cause the
+  spec suite to exit with a non-zero status when no examples failed.
+  (Myron Marston, #1926)
+
 ### 3.2.2 / 2015-03-11
 [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.1...v3.2.2)
 
@@ -61,6 +73,13 @@
 * Make `-I` option support multiple values when separated by
   `File::PATH_SEPARATOR`, such as `rspec -I foo:bar`. This matches
   the behavior of Ruby's `-I` option. (Fumiaki Matsushima, #1855).
+* Treat each example as having a singleton example group for the
+  purposes of applying metadata-based features that normally apply
+  to example groups to individually tagged examples. For example,
+  `RSpec.shared_context Uses redis, :uses_redis` will now apply
+  to individual examples tagged with `:uses_redis`, as will
+  `config.include RedisHelpers, :uses_redis`, and
+  `config.before(:context, :uses_redis) { }`, etc. (Myron Marston, #1749)
 
 Bug Fixes:
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/core/example_group.rb 
new/lib/rspec/core/example_group.rb
--- old/lib/rspec/core/example_group.rb 2015-03-12 05:37:40.0 +0100
+++ new/lib/rspec/core/example_group.rb 2015-04-07 01:32:15.0 +0200
@@ -35,7 +35,7 @@
   # @private
   def self.idempotently_define_singleton_method(name, definition)
 (class  self; self; end).module_exec do
-  remove_method(name) if method_defined?(name)
+  remove_method(name) if method_defined?(name)  
instance_method(name).owner == self
   define_method(name, definition)
 end
   end
@@ -514,6 +514,7 @@
   result_for_this_group  results_for_descendants
 rescue Pending::SkipDeclaredInExample = ex
   for_filtered_examples(reporter) { |example| 
example.skip_with_exception(reporter, ex) }
+  true
 rescue Exception = ex
   RSpec.world.wants_to_quit = true if fail_fast?
   for_filtered_examples(reporter) { |example| 
example.fail_with_exception(reporter, ex) }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/core/version.rb 
new/lib/rspec/core/version.rb
--- old/lib/rspec/core/version.rb   2015-03-12 05:37:40.0 +0100
+++ new/lib/rspec/core/version.rb   

commit patterns-openSUSE for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2015-04-13 20:29:39

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


Package is patterns-openSUSE

Changes:

--- /work/SRC/openSUSE:Factory/patterns-openSUSE/patterns-openSUSE.changes  
2015-04-10 09:50:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2015-04-13 20:29:40.0 +0200
@@ -12,0 +13,14 @@
+Sun Mar 29 12:10:27 UTC 2015 - t...@gmx.com
+
+- Add some changes in LXDE's pattern to lighten the desktop, reduce
+  the dependence on other desktops and improve user experience
+  * Removed duplicated Recommends: lxdm line
+  * Removed Suggests: moonlight-plugin
+  * Removed suggestion of libreoffice-gnome if arch is x86_64
+  * Recommend Atril instead of MuPDF
+  * Recommend HexChat instead of XChat
+  * Recommend lxpanel-plugin-power-manager
+  * Recommend Pidgin instead of Empathy
+  * Recommend pk-update-icon
+
+---



Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.t3CwXU/_old  2015-04-13 20:29:41.0 +0200
+++ /var/tmp/diff_new_pack.t3CwXU/_new  2015-04-13 20:29:41.0 +0200
@@ -3534,13 +3534,13 @@
 # from data/LXDE
 Recommends: lxappearance
 Recommends: lxdm
-Recommends: lxdm
 Recommends: lxde-common
 Recommends: lxde-common-branding-openSUSE
 Recommends: lxinput
 Recommends: lxmenu-data
 Recommends: lxmusic
 Recommends: lxpanel
+Recommends: lxpanel-plugin-power-manager
 Recommends: lxrandr
 Recommends: lxsession
 Recommends: lxtask
@@ -3559,8 +3559,8 @@
 Recommends: gmixer
 Recommends: parcellite
 Recommends: xscreensaver
-Recommends: empathy
-Recommends: xchat
+Recommends: pidgin
+Recommends: hexchat
 Recommends: claws-mail
 Recommends: uget
 Recommends: xdg-user-dirs-gtk
@@ -3579,6 +3579,7 @@
 Recommends: xdm
 # bnc#537362
 Recommends: gnome-packagekit
+Recommends:pk-update-icon
 # #404447
 Recommends: gtk2-engine-murrine
 # #440285
@@ -3613,8 +3614,6 @@
 Recommends: avahi
 # bnc#508120
 Recommends: xdg-user-dirs
-# bnc#598884
-Suggests:   moonlight-plugin
 
 # from data/COMMON-DESKTOP-OPT
 # packages a GTK application
@@ -3666,12 +3665,9 @@
 Requires:   pattern() = lxde
 # from data/LXDE-Office
 Recommends: abiword
-Recommends: mupdf
+Recommends: atril
 Recommends: gnumeric
 Recommends: goffice
-%ifarch %ix86 x86_64
-Suggests:   libreoffice-gnome
-%endif
 
 %description lxde_office
 LXDE Office




commit libKF5ModemManagerQt for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is libKF5ModemManagerQt

Changes:

--- 
/work/SRC/openSUSE:Factory/libKF5ModemManagerQt/libKF5ModemManagerQt.changes
2015-03-25 09:58:57.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.libKF5ModemManagerQt.new/libKF5ModemManagerQt.changes
   2015-04-13 20:28:59.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:41:08 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
+- Drop pkgconfig(Qt5Test) BuildRequires and pkgconfig(Qt5Network)
+  Requires from the devel subpackage
+- Bump minimal pkgconfig(ModemManager) BuildRequires to 1.0.0
+
+---

Old:

  libmm-qt-5.2.2.tar.xz

New:

  modemmanager-qt-5.9.0.tar.xz



Other differences:
--
++ libKF5ModemManagerQt.spec ++
--- /var/tmp/diff_new_pack.xfg1Ks/_old  2015-04-13 20:29:00.0 +0200
+++ /var/tmp/diff_new_pack.xfg1Ks/_new  2015-04-13 20:29:00.0 +0200
@@ -16,23 +16,22 @@
 #
 
 
-Url:http://www.kde.org
-%define soversion 5
-
+%define soversion 6
+%define _tar_path 5.9
 Name:   libKF5ModemManagerQt
-Version:5.2.2
+Version:5.9.0
 Release:0
 Summary:Qt wrapper for ModemManager DBus API
 License:LGPL-2.1 or LGPL-3.0
 Group:  System/GUI/KDE
-Source: libmm-qt-%{version}.tar.xz
+Url:http://www.kde.org
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/modemmanager-qt-%{version}.tar.xz
 BuildRequires:  cmake
-BuildRequires:  extra-cmake-modules = 1.0.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  pkgconfig(ModemManager)
+BuildRequires:  pkgconfig(ModemManager) = 1.0.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
-BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -43,10 +42,9 @@
 Summary:Development package for the libmm-qt library
 Group:  Development/Libraries/KDE
 Requires:   libKF5ModemManagerQt%{soversion} = %{version}
-Requires:   pkgconfig(ModemManager) = 0.8
+Requires:   pkgconfig(ModemManager) = 1.0.0
 Requires:   pkgconfig(Qt5Core) = 5.2.0
 Requires:   pkgconfig(Qt5DBus) = 5.2.0
-Requires:   pkgconfig(Qt5Network) = 5.2.0
 Requires:   pkgconfig(Qt5Xml) = 5.2.0
 
 %description devel
@@ -60,7 +58,7 @@
 Qt5 wrapper for ModemManager DBus API.
 
 %prep
-%setup -q -n libmm-qt-%{version}
+%setup -q -n modemmanager-qt-%{version}
 
 %build
   %cmake_kf5 -d build




commit gpg2 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package gpg2 for openSUSE:Factory checked in 
at 2015-04-13 20:29:46

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


Package is gpg2

Changes:

--- /work/SRC/openSUSE:Factory/gpg2/gpg2.changes2015-03-27 
09:38:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.gpg2.new/gpg2.changes   2015-04-13 
20:29:47.0 +0200
@@ -1,0 +2,30 @@
+Sat Apr 11 18:59:42 UTC 2015 - astie...@suse.com
+
+- update to 2.1.3:
+ * gpg: LDAP keyservers are now supported by 2.1.
+ * gpg: New option --with-icao-spelling.
+ * gpg: New option --print-pka-records.  Changed the PKA method to
+   use CERT records and hashed names.
+ * gpg: New command --list-gcrypt-config.  New parameter curve
+   for --list-config.
+ * gpg: Print a NEWSIG status line like gpgsm always did.
+ * gpg: Print MPI values with --list-packets and --verbose.
+ * gpg: Write correct MPI lengths with ECC keys.
+ * gpg: Skip legacy PGP-2 keys while searching.
+   (drop 0001-gpg-Skip-legacy-keys-while-searching-keyrings.patch
+now upstream)
+ * gpg: Improved searching for mail addresses when using a keybox.
+ * gpgsm: Changed default algos to AES-128 and SHA-256.
+ * gpgtar: Fixed extracting files with sizes of a multiple of 512.
+ * dirmngr: Fixed SNI handling for hkps pools.
+   (drop hkps-fix-host-name-verification-when-using-pools.patch
+now upstream)
+ * dirmngr: extra-certs and trusted-certs are now always loaded
+   from the sysconfig dir instead of the homedir.
+ * Fixed possible problems due to compiler optimization, two minor
+   regressions, and other bugs.
+- refreshed for context changes:
+  * gnupg-2.0.18-files-are-digests.patch
+  * gnupg-add_legacy_FIPS_mode_option.patch
+
+---

Old:

  0001-gpg-Skip-legacy-keys-while-searching-keyrings.patch
  gnupg-2.1.2.tar.bz2
  gnupg-2.1.2.tar.bz2.sig
  hkps-fix-host-name-verification-when-using-pools.patch

New:

  gnupg-2.1.3.tar.bz2
  gnupg-2.1.3.tar.bz2.sig



Other differences:
--
++ gpg2.spec ++
--- /var/tmp/diff_new_pack.aFFBcv/_old  2015-04-13 20:29:48.0 +0200
+++ /var/tmp/diff_new_pack.aFFBcv/_new  2015-04-13 20:29:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gpg2
-Version:2.1.2
+Version:2.1.3
 Release:0
 Summary:GnuPG 2
 License:GPL-3.0+
@@ -33,8 +33,6 @@
 Patch8: gnupg-set_umask_before_open_outfile.patch
 Patch9: gnupg-detect_FIPS_mode.patch
 Patch11:gnupg-add_legacy_FIPS_mode_option.patch
-Patch15:0001-gpg-Skip-legacy-keys-while-searching-keyrings.patch
-Patch16:hkps-fix-host-name-verification-when-using-pools.patch
 BuildRequires:  expect
 BuildRequires:  fdupes
 BuildRequires:  gnutls-devel = 3.0
@@ -82,8 +80,6 @@
 %patch8 -p1
 %patch9 -p1
 %patch11 -p1
-%patch15 -p1
-%patch16 -p1
 
 %build
 # build PIEs (position independent executables) for address space 
randomisation:

++ gnupg-2.0.18-files-are-digests.patch ++
--- /var/tmp/diff_new_pack.aFFBcv/_old  2015-04-13 20:29:48.0 +0200
+++ /var/tmp/diff_new_pack.aFFBcv/_new  2015-04-13 20:29:48.0 +0200
@@ -1,14 +1,14 @@
 ---
  g10/gpg.c |4 +++
  g10/options.h |1 
- g10/sign.c|   66 
+-
- 3 files changed, 66 insertions(+), 5 deletions(-)
+ g10/sign.c|   68 
--
+ 3 files changed, 67 insertions(+), 6 deletions(-)
 
-Index: gnupg-2.1.2/g10/gpg.c
+Index: gnupg-2.1.3/g10/gpg.c
 ===
 gnupg-2.1.2.orig/g10/gpg.c
-+++ gnupg-2.1.2/g10/gpg.c
-@@ -349,6 +349,7 @@ enum cmd_and_opt_values
+--- gnupg-2.1.3.orig/g10/gpg.c 2015-04-06 14:03:32.0 +0200
 gnupg-2.1.3/g10/gpg.c  2015-04-11 20:45:24.0 +0200
+@@ -352,6 +352,7 @@ enum cmd_and_opt_values
  oTTYtype,
  oLCctype,
  oLCmessages,
@@ -16,7 +16,7 @@
  oXauthority,
  oGroup,
  oUnGroup,
-@@ -730,6 +731,7 @@ static ARGPARSE_OPTS opts[] = {
+@@ -738,6 +739,7 @@ static ARGPARSE_OPTS opts[] = {
ARGPARSE_s_s (oPersonalCompressPreferences,
   personal-compress-preferences, 
@),
ARGPARSE_s_s (oFakedSystemTime, faked-system-time, @),
@@ -24,7 +24,7 @@
  
/* Aliases.  I constantly mistype these, and assume other people do
   as well. */
-@@ -2127,6 +2129,7 @@ main (int argc, char **argv)
+@@ -2148,6 +2150,7 @@ main (int argc, char **argv)
  opt.def_cert_expire = 0;
  set_homedir (default_homedir ());
  opt.passphrase_repeat = 1;
@@ -32,7 +32,7 @@
  

commit rubygem-rspec-expectations for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rspec-expectations for 
openSUSE:Factory checked in at 2015-04-13 20:29:27

Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-expectations (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-rspec-expectations.new (New)


Package is rubygem-rspec-expectations

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-rspec-expectations/rubygem-rspec-expectations.changes
2015-02-08 13:03:12.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-expectations.new/rubygem-rspec-expectations.changes
   2015-04-13 20:29:28.0 +0200
@@ -1,0 +2,11 @@
+Sat Apr 11 06:03:42 UTC 2015 - co...@suse.com
+
+- updated to version 3.2.1
+ Bug Fixes:
+ 
+ * Prevent `Range`s from being enumerated when generating matcher
+   descriptions. (Jon Rowe, #755)
+ * Ensure exception messages are compared as strings in the `raise_error`
+   matcher. (Jon Rowe, #755)
+ 
+---

Old:

  rspec-expectations-3.2.0.gem

New:

  rspec-expectations-3.2.1.gem



Other differences:
--
++ rubygem-rspec-expectations.spec ++
--- /var/tmp/diff_new_pack.pidlXU/_old  2015-04-13 20:29:28.0 +0200
+++ /var/tmp/diff_new_pack.pidlXU/_new  2015-04-13 20:29:28.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rspec-expectations
-Version:3.2.0
+Version:3.2.1
 Release:0
 %define mod_name rspec-expectations
 %define mod_full_name %{mod_name}-%{version}

++ rspec-expectations-3.2.0.gem - rspec-expectations-3.2.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md2015-02-03 16:33:35.0 +0100
+++ new/Changelog.md2015-04-07 01:35:55.0 +0200
@@ -1,3 +1,13 @@
+### 3.2.1 / 2015-04-06
+[Full 
Changelog](http://github.com/rspec/rspec-expectations/compare/v3.2.0...v3.2.1)
+
+Bug Fixes:
+
+* Prevent `Range`s from being enumerated when generating matcher
+  descriptions. (Jon Rowe, #755)
+* Ensure exception messages are compared as strings in the `raise_error`
+  matcher. (Jon Rowe, #755)
+
 ### 3.2.0 / 2015-02-03
 [Full 
Changelog](http://github.com/rspec/rspec-expectations/compare/v3.1.2...v3.2.0)
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/expectations/version.rb 
new/lib/rspec/expectations/version.rb
--- old/lib/rspec/expectations/version.rb   2015-02-03 16:33:35.0 
+0100
+++ new/lib/rspec/expectations/version.rb   2015-04-07 01:35:55.0 
+0200
@@ -2,7 +2,7 @@
   module Expectations
 # @private
 module Version
-  STRING = '3.2.0'
+  STRING = '3.2.1'
 end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/matchers/built_in/contain_exactly.rb 
new/lib/rspec/matchers/built_in/contain_exactly.rb
--- old/lib/rspec/matchers/built_in/contain_exactly.rb  2015-02-03 
16:33:35.0 +0100
+++ new/lib/rspec/matchers/built_in/contain_exactly.rb  2015-04-07 
01:35:55.0 +0200
@@ -50,7 +50,7 @@
 def convert_actual_to_an_array
   if actual.respond_to?(:to_ary)
 @actual = actual.to_ary
-  elsif enumerable?(actual)  actual.respond_to?(:to_a)
+  elsif should_enumerate?(actual)  actual.respond_to?(:to_a)
 @actual = actual.to_a
   else
 return false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/matchers/built_in/raise_error.rb 
new/lib/rspec/matchers/built_in/raise_error.rb
--- old/lib/rspec/matchers/built_in/raise_error.rb  2015-02-03 
16:33:35.0 +0100
+++ new/lib/rspec/matchers/built_in/raise_error.rb  2015-04-07 
01:35:55.0 +0200
@@ -115,7 +115,7 @@
 
 def verify_message
   return true if @expected_message.nil?
-  values_match?(@expected_message, @actual_error.message)
+  values_match?(@expected_message, @actual_error.message.to_s)
 end
 
 def prevent_invalid_expectations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/matchers/composable.rb 
new/lib/rspec/matchers/composable.rb
--- old/lib/rspec/matchers/composable.rb2015-02-03 16:33:35.0 
+0100
+++ new/lib/rspec/matchers/composable.rb2015-04-07 01:35:55.0 
+0200
@@ -103,7 +103,7 @@
   

commit deja-dup for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package deja-dup for openSUSE:Factory 
checked in at 2015-04-13 20:29:58

Comparing /work/SRC/openSUSE:Factory/deja-dup (Old)
 and  /work/SRC/openSUSE:Factory/.deja-dup.new (New)


Package is deja-dup

Changes:

--- /work/SRC/openSUSE:Factory/deja-dup/deja-dup.changes2014-09-28 
19:55:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.deja-dup.new/deja-dup.changes   2015-04-13 
20:29:59.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr 11 18:48:00 UTC 2015 - zai...@opensuse.org
+
+- Update to version 34.0:
+  + Support duplicity 0.6.25 and up.
+  + Support latest versions of appstream-util.
+  + Updated translations.
+
+---

Old:

  deja-dup-32.0.tar.xz

New:

  deja-dup-34.0.tar.xz



Other differences:
--
++ deja-dup.spec ++
--- /var/tmp/diff_new_pack.vCcYvj/_old  2015-04-13 20:30:00.0 +0200
+++ /var/tmp/diff_new_pack.vCcYvj/_new  2015-04-13 20:30:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package deja-dup
 #
-# Copyright (c) 2014 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,14 +17,14 @@
 
 
 Name:   deja-dup
-Version:32.0
+Version:34.0
 Release:0
 # FIXME: reenable make check in %%check, when lp#940110 is fixed
 Summary:Simple backup tool and frontend for duplicity
 License:GPL-3.0+
 Group:  Productivity/Archiving/Backup
 Url:https://launchpad.net/deja-dup
-Source0:
https://launchpad.net/deja-dup/32/%{version}/+download/%{name}-%{version}.tar.xz
+Source0:
https://launchpad.net/deja-dup/34/%{version}/+download/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE deja-dup-help2man_stderr.patch sfal...@opensuse.org -- 
fixes help2man failure in build
 Patch0: deja-dup-help2man_stderr.patch
 # For make check to work, we need dbus-launch
@@ -42,7 +42,7 @@
 BuildRequires:  pkgconfig(libnotify) = 0.7
 BuildRequires:  pkgconfig(libpeas-1.0)
 BuildRequires:  pkgconfig(libsecret-1)
-Requires:   duplicity = 0.6.23
+Requires:   duplicity = 0.6.25
 Recommends: %{name}-lang
 Recommends: python-boto
 Recommends: python-cloudfiles

++ deja-dup-32.0.tar.xz - deja-dup-34.0.tar.xz ++
 28906 lines of diff (skipped)




commit digikam for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is digikam

Changes:

--- /work/SRC/openSUSE:Factory/digikam/digikam.changes  2015-03-12 
16:37:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.digikam.new/digikam.changes 2015-04-13 
20:29:23.0 +0200
@@ -1,0 +2,55 @@
+Wed Apr  8 23:23:47 UTC 2015 - nico.kru...@gmail.com
+
+- update to 4.9.0
+  digikam:
+- kde#344484 - digiKam 4.8.0 compilation error : undefined
+   reference to `cv::Exception::Exception.
+- kde#203733 - Syncing EXIF Artist and Copyright fields with IPTC/XMP.
+- kde#338753 - Exif ImageDescription field is being used incorrectly.
+- kde#330224 - Add collection from network share is silently ignored.
+- kde#344699 - Maintenance is using the wrong face data management.
+- kde#342931 - Wrong apect ratio in item properties and in item view.
+- kde#344793 - Thumbnail-preview broken for tags and timeline.
+- kde#345025 - Wrong sql statement updating thumbnail modification date.
+- kde#327009 - Tags auto-completion suggestions list is cut off at
+   the right side.
+- kde#345168 - Crash when applying auto lens correction (chromatic
+   aberration).
+- kde#319383 - Crash while applying lensfun distortion correction.
+- kde#333540 - Random crashes on OpenSUSE 13.1.
+- kde#345387 - Lens auto-correction tools shows partial mathc for
+   canon 700d 18-135 is stm.
+- kde#345367 - The sideview containing the thumbnails is not updated
+   after deleting a photo.
+- kde#345187 - When naming unkown faces digikam only remembers typed
+   characters and not the selected name for the next face.
+- kde#326208 - When doing a face learning (erase data and rebuild),
+   Database is not erased and grow.
+- kde#323888 - Face recognition makes digikam fill all the available
+   memory (Qt SQlite plugin relevant).
+- kde#338176 - Face Recognition memory allocation crash application.
+- kde#339933 - ICONVIEW : Incorrect Image Aspect Ratio shown.
+- kde#344997 - 100% CPU - Hang for VERY long periods.
+- kde#344420 - Incomplete update of sidecar after renaming face tag.
+- kde#342788 - THUMBBAR : Sort order not in sync with pictures in
+  editor.
+- kde#337502 - THUMBBAR : no thumbs generated.
+- kde#345659 - Cannot shrink thumbnails panel.
+- kde#338230 - digiKam stops refreshing download progress after
+   de-selecting pictures.
+- kde#345648 - Progress bar disappeared while importing pictures
+   before importing finished.
+- kde#340139 - digiKam hangs after selecting folder with pictures.
+- kde#341772 - Re-read metadata when image file timestamp has changed.
+- kde#329433 - Manual adding of faces made easier.
+  kipi-plugins:
+- kde#310977 - Applying data (exif, iptc, xmp caption) in Edit all
+   Metadata window inconsistent - results in data loss.
+- kde#340330 - Deselecting Show tracks on map crashes the dialog.
+- kde#283504 - QJSon not optional.
+- kde#345802 - Html export does not longer export the description tag
+   to gallery.xml.
+- add digikam-4.8.0-libkgeomap-translations.tar.bz2 with libkgeomap
+  translations from 4.8.0 (missing in 4.9.0 tarball)
+
+---

Old:

  digikam-4.8.0.tar.bz2

New:

  digikam-4.8.0-libkgeomap-translations.tar.bz2
  digikam-4.9.0.tar.bz2



Other differences:
--
++ digikam.spec ++
--- /var/tmp/diff_new_pack.rWwwgt/_old  2015-04-13 20:29:25.0 +0200
+++ /var/tmp/diff_new_pack.rWwwgt/_new  2015-04-13 20:29:25.0 +0200
@@ -17,14 +17,16 @@
 
 
 Name:   digikam
-Version:4.8.0
+Version:4.9.0
 Release:0
-%define rversion 4.8.0
+%define rversion 4.9.0
 Summary:A KDE Photo Manager
 License:GPL-2.0+
 Group:  Productivity/Graphics/Viewers
 Url:http://www.digikam.org/
 Source0:
http://download.kde.org/stable/%{name}/%{name}-%{rversion}.tar.bz2
+# libkgeomap translations from the 4.8.0 tarball (Missing in 4.9.0)
+Source2:digikam-4.8.0-libkgeomap-translations.tar.bz2
 # PATCH-FIX-OPENSUSE digikam-buildtime.patch -- Remove build time references 
so build-compare can do its work
 Patch0: digikam-buildtime.patch
 # PATCH-FIX-OPENSUSE remove-gplv2-only.patch idoen...@suse.de 

commit kguiaddons for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kguiaddons for openSUSE:Factory 
checked in at 2015-04-13 20:29:10

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


Package is kguiaddons

Changes:

--- /work/SRC/openSUSE:Factory/kguiaddons/kguiaddons.changes2015-03-16 
09:27:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.kguiaddons.new/kguiaddons.changes   
2015-04-13 20:29:11.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:32 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
+- Added kguiaddons-use-susehelp.patch: Use susehelp wrapper, instead
+  of khelpcenter command (we use khelpcenter5)
+
+---

Old:

  kguiaddons-5.8.0.tar.xz

New:

  kguiaddons-5.9.0.tar.xz
  kguiaddons-use-susehelp.patch



Other differences:
--
++ kguiaddons.spec ++
--- /var/tmp/diff_new_pack.U53iEU/_old  2015-04-13 20:29:11.0 +0200
+++ /var/tmp/diff_new_pack.U53iEU/_new  2015-04-13 20:29:11.0 +0200
@@ -17,12 +17,12 @@
 
 
 %define lname   libKF5GuiAddons5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kguiaddons
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
@@ -38,6 +38,8 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-OPENSUSE kguiaddons-use-susehelp.patch -- Use susehelp wrapper, 
instead of khelpcenter command (we use khelpcenter5)
+Patch0: kguiaddons-use-susehelp.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -66,6 +68,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
   %cmake_kf5 -d build
@@ -73,7 +76,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ kguiaddons-5.8.0.tar.xz - kguiaddons-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kguiaddons-5.8.0/CMakeLists.txt 
new/kguiaddons-5.9.0/CMakeLists.txt
--- old/kguiaddons-5.8.0/CMakeLists.txt 2015-02-25 15:19:34.0 +0100
+++ new/kguiaddons-5.9.0/CMakeLists.txt 2015-04-04 13:48:28.0 +0200
@@ -2,7 +2,7 @@
 
 project(KGuiAddons)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -21,7 +21,7 @@
 include(GenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KGUIADDONS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kguiaddons_version.h

++ kguiaddons-use-susehelp.patch ++
diff --git a/src/util/urlhandler.cpp b/src/util/urlhandler.cpp
index 5b46be2..b9fb3c4 100644
--- a/src/util/urlhandler.cpp
+++ b/src/util/urlhandler.cpp
@@ -41,7 +41,7 @@ public Q_SLOTS:
 u.setPath(QCoreApplication::applicationName());
 }
 
-QString helpcenter = 
QStandardPaths::findExecutable(QLatin1String(khelpcenter));
+QString helpcenter = 
QStandardPaths::findExecutable(QLatin1String(susehelp));
 if (helpcenter.isEmpty()) {
 QDesktopServices::openUrl(u);
 } else {



commit kdesignerplugin for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdesignerplugin for openSUSE:Factory 
checked in at 2015-04-13 20:22:55

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


Package is kdesignerplugin

Changes:

--- /work/SRC/openSUSE:Factory/kdesignerplugin/kdesignerplugin.changes  
2015-03-16 09:26:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdesignerplugin.new/kdesignerplugin.changes 
2015-04-13 20:22:56.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:31 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
+
+---

Old:

  kdesignerplugin-5.8.0.tar.xz

New:

  kdesignerplugin-5.9.0.tar.xz



Other differences:
--
++ kdesignerplugin.spec ++
--- /var/tmp/diff_new_pack.PwPNRa/_old  2015-04-13 20:22:56.0 +0200
+++ /var/tmp/diff_new_pack.PwPNRa/_new  2015-04-13 20:22:56.0 +0200
@@ -16,35 +16,40 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kdesignerplugin
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
-BuildRequires:  kbookmarks-devel = %{kf5_version}
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdewebkit-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  extra-cmake-modules = %{_tar_path}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdewebkit-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-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:  kplotting-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+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:  kplotting-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Designer) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Summary:Integrating KDE frameworks widgets with Qt Designer
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -82,19 +87,22 @@
 %install
   %kf5_makeinstall -C build
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+echo %doc %lang(de) %{_kf5_mandir}/de %{name}5.lang
+echo %doc %lang(nl) %{_kf5_mandir}/nl %{name}5.lang
+echo %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR %{name}5.lang
+echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}5.lang
+echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}5.lang
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files lang -f %{name}5.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
+%endif
 
 %files
 %defattr(-,root,root)

++ kdesignerplugin-5.8.0.tar.xz - kdesignerplugin-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdesignerplugin-5.8.0/CMakeLists.txt 
new/kdesignerplugin-5.9.0/CMakeLists.txt
--- old/kdesignerplugin-5.8.0/CMakeLists.txt2015-03-07 15:41:49.0 
+0100
+++ new/kdesignerplugin-5.9.0/CMakeLists.txt2015-04-04 14:04:00.0 
+0200
@@ -2,7 +2,7 @@
 

commit kcodecs for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kcodecs for openSUSE:Factory checked 
in at 2015-04-13 20:22:49

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


Package is kcodecs

Changes:

--- /work/SRC/openSUSE:Factory/kcodecs/kcodecs.changes  2015-03-16 
09:26:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcodecs.new/kcodecs.changes 2015-04-13 
20:22:50.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:30 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
+
+---

Old:

  kcodecs-5.8.0.tar.xz

New:

  kcodecs-5.9.0.tar.xz



Other differences:
--
++ kcodecs.spec ++
--- /var/tmp/diff_new_pack.ArISQ2/_old  2015-04-13 20:22:51.0 +0200
+++ /var/tmp/diff_new_pack.ArISQ2/_new  2015-04-13 20:22:51.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Codecs5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kcodecs
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 Summary:Provides a collection of methods to manipulate strings using 
various encoding
 License:LGPL-2.1+
@@ -42,7 +45,9 @@
 %package -n %lname
 Summary:Provides a collection of methods to manipulate strings using 
various encoding
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 %requires_ge libQt5Core5
 
 %description -n %lname
@@ -70,15 +75,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kcodecs-5.8.0.tar.xz - kcodecs-5.9.0.tar.xz ++
 14862 lines of diff (skipped)




commit kservice for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kservice for openSUSE:Factory 
checked in at 2015-04-13 20:23:35

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


Package is kservice

Changes:

--- /work/SRC/openSUSE:Factory/kservice/kservice.changes2015-03-16 
09:28:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.kservice.new/kservice.changes   2015-04-13 
20:23:36.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:36 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
+- Drop no longer needed Requires of the devel subpackage:
+  kdbusaddons-devel and ki18n-devel
+
+---

Old:

  kservice-5.8.0.tar.xz

New:

  kservice-5.9.0.tar.xz



Other differences:
--
++ kservice.spec ++
--- /var/tmp/diff_new_pack.xrTnVB/_old  2015-04-13 20:23:37.0 +0200
+++ /var/tmp/diff_new_pack.xrTnVB/_new  2015-04-13 20:23:37.0 +0200
@@ -16,26 +16,29 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kservice
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kcrash-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Concurrent) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Obsoletes:  libKF5Service4
 Summary:Plugin framework for desktop services
 License:LGPL-2.1+
@@ -57,10 +60,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %{name} = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel = %{kf5_version}
-Requires:   kcoreaddons-devel = %{kf5_version}
-Requires:   kdbusaddons-devel = %{kf5_version}
-Requires:   ki18n-devel = %{kf5_version}
+Requires:   kconfig-devel = %{_tar_path}
+Requires:   kcoreaddons-devel = %{_tar_path}
 
 %description devel
 Provides a plugin framework for handling desktop services. Services can
@@ -78,21 +79,24 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+echo %doc %lang(it) %{_kf5_mandir}/it %{name}5.lang
+echo %doc %lang(nl) %{_kf5_mandir}/nl %{name}5.lang
+echo %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR %{name}5.lang
+echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}5.lang
+echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}5.lang
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files lang -f %{name}5.lang
-%defattr(-,root,root)
-%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
+%endif
 
 %files
 %defattr(-,root,root)

++ kservice-5.8.0.tar.xz - kservice-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kservice-5.8.0/CMakeLists.txt 
new/kservice-5.9.0/CMakeLists.txt
--- old/kservice-5.8.0/CMakeLists.txt   2015-03-07 15:49:54.0 +0100
+++ new/kservice-5.9.0/CMakeLists.txt   2015-04-04 14:12:17.0 +0200
@@ -4,7 +4,7 @@
 project(KService)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake )
 
 include(KDEInstallDirs)
@@ -15,8 +15,8 @@
 include(FeatureSummary)
 include(GenerateExportHeader)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 

commit kconfig for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kconfig for openSUSE:Factory checked 
in at 2015-04-13 20:23:44

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


Package is kconfig

Changes:

--- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes  2015-03-16 
09:28:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.kconfig.new/kconfig.changes 2015-04-13 
20:23:45.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:40:36 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Fix assert when using KSharedConfig in a global object destructor.
+  * kconfig_compiler: add support for CategoryLoggingName in *.kcfgc
+files, to generate qCDebug(category) calls.
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kconfig-5.8.0.tar.xz

New:

  kconfig-5.9.0.tar.xz



Other differences:
--
++ kconfig.spec ++
--- /var/tmp/diff_new_pack.oQg3o0/_old  2015-04-13 20:23:46.0 +0200
+++ /var/tmp/diff_new_pack.oQg3o0/_new  2015-04-13 20:23:46.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
+%bcond_without lang
 %define sonum   5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kconfig
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
@@ -58,7 +61,9 @@
 Summary:Provides access to the configuration files themselves
 Group:  System/GUI/KDE
 Recommends: kconf_update5 = %{version}
+%if %{with lang}
 Recommends: libKF5ConfigCore%sonum-lang = %{version}
+%endif
 %requires_ge libQt5Core5
 
 %description -n libKF5ConfigCore%sonum
@@ -126,9 +131,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n libKF5ConfigCore%sonum -p /sbin/ldconfig
 
@@ -138,7 +145,9 @@
 
 %postun -n libKF5ConfigGui%sonum -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n libKF5ConfigCore%sonum-lang -f %{name}5.lang
+%endif
 
 %files -n libKF5ConfigCore%sonum
 %defattr(-,root,root)

++ kconfig-5.8.0.tar.xz - kconfig-5.9.0.tar.xz ++
 3217 lines of diff (skipped)




commit extra-cmake-modules for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package extra-cmake-modules for 
openSUSE:Factory checked in at 2015-04-13 20:22:33

Comparing /work/SRC/openSUSE:Factory/extra-cmake-modules (Old)
 and  /work/SRC/openSUSE:Factory/.extra-cmake-modules.new (New)


Package is extra-cmake-modules

Changes:

--- /work/SRC/openSUSE:Factory/extra-cmake-modules/extra-cmake-modules.changes  
2015-03-16 09:26:35.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new/extra-cmake-modules.changes 
2015-04-13 20:22:35.0 +0200
@@ -1,0 +2,11 @@
+Sat Apr  4 14:40:29 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Extra CMake Modules (ECM) is now versioned like KDE Frameworks,
+therefore it is now 5.9, while it was 1.8 previously.
+  * Allow configuration of SHARE_INSTALL_DIR, to handle multi-arch
+layouts better
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  extra-cmake-modules-1.8.0.tar.xz

New:

  extra-cmake-modules-5.9.0.tar.xz



Other differences:
--
++ extra-cmake-modules.spec ++
--- /var/tmp/diff_new_pack.ihlfZu/_old  2015-04-13 20:22:36.0 +0200
+++ /var/tmp/diff_new_pack.ihlfZu/_new  2015-04-13 20:22:36.0 +0200
@@ -16,14 +16,15 @@
 #
 
 
+%define _tar_path 5.9
 Name:   extra-cmake-modules
 Summary:CMake modules
 License:BSD-3-Clause
 Group:  Development/Tools/Other
 Url:
https://projects.kde.org/projects/kdesupport/extra-cmake-modules
-Version:1.8.0
+Version:5.9.0
 Release:0
-Source: 
http://download.kde.org/stable/frameworks/5.8/%{name}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cmake = 2.8.12
 BuildRequires:  gcc-c++

++ extra-cmake-modules-1.8.0.tar.xz - extra-cmake-modules-5.9.0.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-1.8.0/CMakeLists.txt 
new/extra-cmake-modules-5.9.0/CMakeLists.txt
--- old/extra-cmake-modules-1.8.0/CMakeLists.txt2015-03-06 
12:14:56.0 +0100
+++ new/extra-cmake-modules-5.9.0/CMakeLists.txt2015-04-04 
10:52:03.0 +0200
@@ -2,8 +2,8 @@
 
 project(extra-cmake-modules NONE)
 
-set(ECM_MAJOR_VERSION 1)
-set(ECM_MINOR_VERSION 8)
+set(ECM_MAJOR_VERSION 5)
+set(ECM_MINOR_VERSION 9)
 set(ECM_PATCH_VERSION 0)
 
 set(ECM_VERSION ${ECM_MAJOR_VERSION}.${ECM_MINOR_VERSION}.${ECM_PATCH_VERSION})
@@ -14,7 +14,7 @@
 add_subdirectory(tests)
 endif()
 
-set(SHARE_INSTALL_DIR share)
+set(SHARE_INSTALL_DIR share CACHE PATH read-only architecture-independent 
data)
 set(TOOLCHAIN_MODULES_INSTALL_DIR ${SHARE_INSTALL_DIR}/ECM/toolchain/)
 set(MODULES_INSTALL_DIR ${SHARE_INSTALL_DIR}/ECM/modules/)
 set(KDE_MODULES_INSTALL_DIR ${SHARE_INSTALL_DIR}/ECM/kde-modules/)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-1.8.0/find-modules/FindEGL.cmake 
new/extra-cmake-modules-5.9.0/find-modules/FindEGL.cmake
--- old/extra-cmake-modules-1.8.0/find-modules/FindEGL.cmake2015-03-06 
12:14:56.0 +0100
+++ new/extra-cmake-modules-5.9.0/find-modules/FindEGL.cmake2015-04-04 
10:52:03.0 +0200
@@ -98,14 +98,14 @@
 # finding all these defines and selecting the highest numbered.
 file(READ ${EGL_INCLUDE_DIR}/egl.h _EGL_header_contents)
 string(REGEX MATCHALL
-[ \\t]EGL_VERSION_[0-9_]+
+[ \t]EGL_VERSION_[0-9_]+
 _EGL_version_lines
 ${_EGL_header_contents}
 )
 unset(_EGL_header_contents)
 foreach(_EGL_version_line ${_EGL_version_lines})
 string(REGEX REPLACE
-[ \\t]EGL_VERSION_([0-9_]+)
+[ \t]EGL_VERSION_([0-9_]+)
 \\1
 _version_candidate
 ${_EGL_version_line}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-1.8.0/find-modules/FindWayland.cmake 
new/extra-cmake-modules-5.9.0/find-modules/FindWayland.cmake
--- old/extra-cmake-modules-1.8.0/find-modules/FindWayland.cmake
2015-03-06 12:14:56.0 +0100
+++ new/extra-cmake-modules-5.9.0/find-modules/FindWayland.cmake
2015-04-04 10:52:03.0 +0200
@@ -117,7 +117,7 @@
 if(Wayland_VERSION_HEADER)
 file(READ ${Wayland_VERSION_HEADER} _wayland_version_header_contents)
 string(REGEX REPLACE
-^.*[ \\t]+WAYLAND_VERSION[ \\t]+\([0-9.]*)\.*$
+^.*[ 

commit attica-qt5 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

Comparing /work/SRC/openSUSE:Factory/attica-qt5 (Old)
 and  /work/SRC/openSUSE:Factory/.attica-qt5.new (New)


Package is attica-qt5

Changes:

--- /work/SRC/openSUSE:Factory/attica-qt5/attica-qt5.changes2015-03-16 
09:26:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.attica-qt5.new/attica-qt5.changes   
2015-04-13 20:22:43.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:30 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
+
+---

Old:

  attica-5.8.0.tar.xz

New:

  attica-5.9.0.tar.xz



Other differences:
--
++ attica-qt5.spec ++
--- /var/tmp/diff_new_pack.JEPmgh/_old  2015-04-13 20:22:44.0 +0200
+++ /var/tmp/diff_new_pack.JEPmgh/_new  2015-04-13 20:22:44.0 +0200
@@ -19,9 +19,9 @@
 %define sonum   5
 %define rname attica
 %define _libname KF5Attica
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   attica-qt5
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 Summary:Open Collaboration Service client library
 License:LGPL-2.1+
@@ -30,7 +30,7 @@
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{rname}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -67,7 +67,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n lib%{_libname}%{sonum} -p /sbin/ldconfig
 

++ attica-5.8.0.tar.xz - attica-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/attica-5.8.0/CMakeLists.txt 
new/attica-5.9.0/CMakeLists.txt
--- old/attica-5.8.0/CMakeLists.txt 2015-02-25 15:16:37.0 +0100
+++ new/attica-5.9.0/CMakeLists.txt 2015-04-04 12:47:42.0 +0200
@@ -3,7 +3,7 @@
 project(Attica)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -15,7 +15,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX ATTICA




commit krunner for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package krunner for openSUSE:Factory checked 
in at 2015-04-13 20:23:08

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


Package is krunner

Changes:

--- /work/SRC/openSUSE:Factory/krunner/krunner.changes  2015-03-16 
09:27:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.krunner.new/krunner.changes 2015-04-13 
20:23:09.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:33 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
+
+---

Old:

  krunner-5.8.0.tar.xz

New:

  krunner-5.9.0.tar.xz



Other differences:
--
++ krunner.spec ++
--- /var/tmp/diff_new_pack.mx9IRE/_old  2015-04-13 20:23:10.0 +0200
+++ /var/tmp/diff_new_pack.mx9IRE/_new  2015-04-13 20:23:10.0 +0200
@@ -17,23 +17,23 @@
 
 
 %define lname   libKF5Runner5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   krunner
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  plasma-framework-devel = %{kf5_version}
-BuildRequires:  solid-devel = %{kf5_version}
-BuildRequires:  threadweaver-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  plasma-framework-devel = %{_tar_path}
+BuildRequires:  solid-devel = %{_tar_path}
+BuildRequires:  threadweaver-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Quick) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -68,7 +68,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   plasma-framework-devel = %{kf5_version}
+Requires:   plasma-framework-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Core) = 5.2.0
 
 %description devel
@@ -87,7 +87,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ krunner-5.8.0.tar.xz - krunner-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.8.0/CMakeLists.txt 
new/krunner-5.9.0/CMakeLists.txt
--- old/krunner-5.8.0/CMakeLists.txt2015-03-07 15:49:33.0 +0100
+++ new/krunner-5.9.0/CMakeLists.txt2015-04-04 14:12:01.0 +0200
@@ -3,7 +3,7 @@
 project(KRunner)
 
 # ECM setup
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -15,8 +15,8 @@
 include(KDECompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX KRUNNER




commit kjobwidgets for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kjobwidgets for openSUSE:Factory 
checked in at 2015-04-13 20:23:00

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


Package is kjobwidgets

Changes:

--- /work/SRC/openSUSE:Factory/kjobwidgets/kjobwidgets.changes  2015-03-16 
09:27:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.kjobwidgets.new/kjobwidgets.changes 
2015-04-13 20:23:02.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  4 14:40:32 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Propagate error code to JobView DBus interface
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kjobwidgets-5.8.0.tar.xz

New:

  kjobwidgets-5.9.0.tar.xz



Other differences:
--
++ kjobwidgets.spec ++
--- /var/tmp/diff_new_pack.dfX5QK/_old  2015-04-13 20:23:03.0 +0200
+++ /var/tmp/diff_new_pack.dfX5QK/_new  2015-04-13 20:23:03.0 +0200
@@ -16,19 +16,22 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5JobWidgets5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kjobwidgets
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -48,7 +51,9 @@
 %package -n %lname
 Summary:Widgets for showing progress of asynchronous jobs
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KJobWIdgets provides widgets for showing progress of asynchronous jobs.
@@ -58,7 +63,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcoreaddons-devel = %{kf5_version}
+Requires:   kcoreaddons-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 
 %description devel
@@ -75,15 +80,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kjobwidgets-5.8.0.tar.xz - kjobwidgets-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjobwidgets-5.8.0/CMakeLists.txt 
new/kjobwidgets-5.9.0/CMakeLists.txt
--- old/kjobwidgets-5.8.0/CMakeLists.txt2015-03-07 15:46:16.0 
+0100
+++ new/kjobwidgets-5.9.0/CMakeLists.txt2015-04-04 14:08:56.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KJobWidgets)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -12,8 +12,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjobwidgets-5.8.0/po/fr/kjobwidgets5_qt.po 
new/kjobwidgets-5.9.0/po/fr/kjobwidgets5_qt.po
--- old/kjobwidgets-5.8.0/po/fr/kjobwidgets5_qt.po  2015-03-07 
15:46:16.0 +0100
+++ new/kjobwidgets-5.9.0/po/fr/kjobwidgets5_qt.po  2015-04-04 
14:08:56.0 +0200
@@ -24,10 +24,10 @@
 PO-Revision-Date: 2014-06-29 22:06+0200\n
 Last-Translator: Sebastien Renard ren...@kde.org\n
 Language-Team: French kde-francoph...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n
diff -urN '--exclude=CVS' 

commit rubygem-net-ssh-multi for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-net-ssh-multi for 
openSUSE:Factory checked in at 2015-04-13 20:30:28

Comparing /work/SRC/openSUSE:Factory/rubygem-net-ssh-multi (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-net-ssh-multi.new (New)


Package is rubygem-net-ssh-multi

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-net-ssh-multi/rubygem-net-ssh-multi.changes  
2013-06-05 13:12:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-net-ssh-multi.new/rubygem-net-ssh-multi.changes
 2015-04-13 20:30:30.0 +0200
@@ -1,0 +2,7 @@
+Sun Apr 12 05:52:33 UTC 2015 - co...@suse.com
+
+- updated to version 1.2.1
+ * Fix two problems with :concurrent_connections option (#4) [sersut]
+ * Replaced test-unit with minitest [juliandunn]
+
+---

Old:

  net-ssh-multi-1.2.0.gem

New:

  gem2rpm.yml
  net-ssh-multi-1.2.1.gem



Other differences:
--
++ rubygem-net-ssh-multi.spec ++
--- /var/tmp/diff_new_pack.PBuL6d/_old  2015-04-13 20:30:30.0 +0200
+++ /var/tmp/diff_new_pack.PBuL6d/_new  2015-04-13 20:30:30.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-net-ssh-multi
 #
-# Copyright (c) 2013 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
@@ -16,16 +16,25 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-net-ssh-multi
-Version:1.2.0
+Version:1.2.1
 Release:0
 %define mod_name net-ssh-multi
 %define mod_full_name %{mod_name}-%{version}
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros = 5
 Url:https://github.com/net-ssh/net-scp
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:Control multiple Net::SSH connections via a single interface
 License:MIT
 Group:  Development/Languages/Ruby
@@ -33,50 +42,15 @@
 %description
 Control multiple Net::SSH connections via a single interface.
 
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-Documentation generated at gem installation time.
-Usually in RDoc and RI formats.
-
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
-
 %prep
-#gem_unpack
-#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
-#gem_build
 
 %build
 
 %install
-%gem_install -f
-mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/CHANGES.txt 
%buildroot/%{_docdir}/%{name}/CHANGES.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
-
-%files
-%defattr(-,root,root,-)
-%{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
-
-%files doc
-%defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
-
-%files testsuite
-%defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%gem_install \
+  --doc-files=CHANGES.txt LICENSE.txt README.rdoc \
+  -f
+
+%gem_packages
 
 %changelog

++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch: 
# ## used by gem2rpm
:sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: ''
# ## used by 

commit latexila for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package latexila for openSUSE:Factory 
checked in at 2015-04-13 20:30:54

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


Package is latexila

Changes:

--- /work/SRC/openSUSE:Factory/latexila/latexila.changes2015-03-27 
09:40:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.latexila.new/latexila.changes   2015-04-13 
20:30:56.0 +0200
@@ -1,0 +2,7 @@
+Wed Mar 25 17:39:34 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.0:
+  + Various small improvements.
+  + Updated translations.
+
+---

Old:

  latexila-3.14.4.tar.xz

New:

  latexila-3.16.0.tar.xz



Other differences:
--
++ latexila.spec ++
--- /var/tmp/diff_new_pack.1Qf3AH/_old  2015-04-13 20:30:57.0 +0200
+++ /var/tmp/diff_new_pack.1Qf3AH/_new  2015-04-13 20:30:57.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   latexila
-Version:3.14.4
+Version:3.16.0
 Release:0
 Summary:Integrated LaTeX Environment for the GNOME desktop
 License:GPL-3.0+
 Group:  Productivity/Publishing/TeX/Frontends
 Url:http://projects.gnome.org/latexila/
-Source0:
http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.14/%{name}-%{version}.tar.xz
+Source0:
http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.16/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  gettext-tools
 BuildRequires:  gnome-desktop
@@ -35,11 +35,11 @@
 BuildRequires:  pkg-config
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
-BuildRequires:  vala = 0.25.4
+BuildRequires:  vala = 0.26.0
 BuildRequires:  pkgconfig(gee-0.8)
 BuildRequires:  pkgconfig(gio-2.0) = 2.40
 BuildRequires:  pkgconfig(gtk+-3.0) = 3.14.0
-BuildRequires:  pkgconfig(gtksourceview-3.0) = 3.14.3
+BuildRequires:  pkgconfig(gtksourceview-3.0) = 3.16.0
 BuildRequires:  pkgconfig(gtkspell3-3.0) = 3.0.4
 Requires:   gsettings-desktop-schemas
 Requires:   rubber
@@ -89,5 +89,7 @@
 %{_datadir}/glib-2.0/schemas/org.gnome.%{name}.gschema.xml
 %{_datadir}/appdata/latexila.appdata.xml
 %{_mandir}/man1/%{name}.1.*
+%dir %{_datadir}/gtk-doc/html/latexila/
+%{_datadir}/gtk-doc/html/latexila/*
 
 %changelog

++ latexila-3.14.4.tar.xz - latexila-3.16.0.tar.xz ++
 210784 lines of diff (skipped)




commit rubygem-execjs for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-execjs for openSUSE:Factory 
checked in at 2015-04-13 20:30:26

Comparing /work/SRC/openSUSE:Factory/rubygem-execjs (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-execjs.new (New)


Package is rubygem-execjs

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-execjs/rubygem-execjs.changes
2015-04-12 00:11:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-execjs.new/rubygem-execjs.changes   
2015-04-13 20:30:27.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 12 04:29:14 UTC 2015 - co...@suse.com
+
+- updated to version 2.5.2
+
+---

Old:

  execjs-2.5.0.gem

New:

  execjs-2.5.2.gem



Other differences:
--
++ rubygem-execjs.spec ++
--- /var/tmp/diff_new_pack.imvboU/_old  2015-04-13 20:30:28.0 +0200
+++ /var/tmp/diff_new_pack.imvboU/_new  2015-04-13 20:30:28.0 +0200
@@ -24,13 +24,13 @@
 #
 
 Name:   rubygem-execjs
-Version:2.5.0
+Version:2.5.2
 Release:0
 %define mod_name execjs
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{ruby = 1.9.3}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros = 5
 Url:https://github.com/rails/execjs
 Source: http://rubygems.org/gems/%{mod_full_name}.gem

++ execjs-2.5.0.gem - execjs-2.5.2.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/execjs/runtimes.rb new/lib/execjs/runtimes.rb
--- old/lib/execjs/runtimes.rb  2015-04-06 19:08:07.0 +0200
+++ new/lib/execjs/runtimes.rb  2015-04-09 17:58:38.0 +0200
@@ -55,15 +55,11 @@
 
 def self.from_environment
   if name = ENV[EXECJS_RUNTIME]
-if runtime = const_get(name)
-  if runtime.available?
-runtime if runtime.available?
-  else
-raise RuntimeUnavailable, #{runtime.name} runtime is not 
available on this system
-  end
-elsif !name.empty?
-  raise RuntimeUnavailable, #{name} runtime is not defined
-end
+raise RuntimeUnavailable, #{name} runtime is not defined unless 
const_defined?(name)
+runtime = const_get(name)
+
+raise RuntimeUnavailable, #{runtime.name} runtime is not available on 
this system unless runtime.available?
+runtime
   end
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/execjs/version.rb new/lib/execjs/version.rb
--- old/lib/execjs/version.rb   2015-04-06 19:08:07.0 +0200
+++ new/lib/execjs/version.rb   2015-04-09 17:58:38.0 +0200
@@ -1,3 +1,3 @@
 module ExecJS
-  VERSION = 2.5.0
+  VERSION = 2.5.2
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-04-06 19:08:07.0 +0200
+++ new/metadata2015-04-09 17:58:38.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: execjs
 version: !ruby/object:Gem::Version
-  version: 2.5.0
+  version: 2.5.2
 platform: ruby
 authors:
 - Sam Stephenson
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-04-06 00:00:00.0 Z
+date: 2015-04-09 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rake
@@ -63,7 +63,7 @@
   requirements:
   - - =
 - !ruby/object:Gem::Version
-  version: '0'
+  version: 1.9.3
 required_rubygems_version: !ruby/object:Gem::Requirement
   requirements:
   - - =
@@ -71,7 +71,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.2.2
+rubygems_version: 2.4.5
 signing_key: 
 specification_version: 4
 summary: Run JavaScript code from Ruby




commit python3-httplib2 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package python3-httplib2 for 
openSUSE:Factory checked in at 2015-04-13 20:30:20

Comparing /work/SRC/openSUSE:Factory/python3-httplib2 (Old)
 and  /work/SRC/openSUSE:Factory/.python3-httplib2.new (New)


Package is python3-httplib2

Changes:

--- /work/SRC/openSUSE:Factory/python3-httplib2/python3-httplib2.changes
2015-01-26 16:47:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-httplib2.new/python3-httplib2.changes   
2015-04-13 20:30:21.0 +0200
@@ -1,0 +2,9 @@
+Sun Apr 12 05:22:35 UTC 2015 - a...@gmx.de
+
+- update to version 0.9.1:
+  * #296: There was a problem with headers when a binary string is
+passed (like b'Authorization').
+  * #276: Default to doing DNS resolution through a proxy server if
+ present.
+
+---

Old:

  httplib2-0.9.tar.gz

New:

  httplib2-0.9.1.tar.gz



Other differences:
--
++ python3-httplib2.spec ++
--- /var/tmp/diff_new_pack.ltuKqd/_old  2015-04-13 20:30:22.0 +0200
+++ /var/tmp/diff_new_pack.ltuKqd/_new  2015-04-13 20:30:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-httplib2
 #
-# 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,7 +17,7 @@
 
 
 Name:   python3-httplib2
-Version:0.9
+Version:0.9.1
 Release:0
 Url:https://github.com/jcgregorio/httplib2
 Summary:A Python HTTP client library

++ httplib2-0.9.tar.gz - httplib2-0.9.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/httplib2-0.9/PKG-INFO new/httplib2-0.9.1/PKG-INFO
--- old/httplib2-0.9/PKG-INFO   2014-04-14 15:07:38.0 +0200
+++ new/httplib2-0.9.1/PKG-INFO 2015-04-11 15:56:57.0 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: httplib2
-Version: 0.9
+Version: 0.9.1
 Summary: A comprehensive HTTP client library.
-Home-page: http://code.google.com/p/httplib2/
+Home-page: https://github.com/jcgregorio/httplib2
 Author: Joe Gregorio
 Author-email: j...@bitworking.org
 License: MIT
-Download-URL: http://httplib2.googlecode.com/files/httplib2-0.9.tar.gz
 Description: 
 
 A comprehensive HTTP client library, ``httplib2`` supports many 
features left out of other HTTP libraries.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/httplib2-0.9/python2/httplib2/__init__.py 
new/httplib2-0.9.1/python2/httplib2/__init__.py
--- old/httplib2-0.9/python2/httplib2/__init__.py   2014-04-14 
14:52:57.0 +0200
+++ new/httplib2-0.9.1/python2/httplib2/__init__.py 2015-04-11 
15:56:56.0 +0200
@@ -22,7 +22,7 @@
 Sam Ruby,
 Louis Nyffenegger]
 __license__ = MIT
-__version__ = 0.9
+__version__ = 0.9.1
 
 import re
 import sys
@@ -749,12 +749,27 @@
 bypass_hosts = ()
 
 def __init__(self, proxy_type, proxy_host, proxy_port,
- proxy_rdns=None, proxy_user=None, proxy_pass=None):
-The parameter proxy_type must be set to one of socks.PROXY_TYPE_XXX
-constants. For example:
+ proxy_rdns=True, proxy_user=None, proxy_pass=None):
+
+Args:
+  proxy_type: The type of proxy server.  This must be set to one of
+  socks.PROXY_TYPE_XXX constants.  For example:
+
+p = ProxyInfo(proxy_type=socks.PROXY_TYPE_HTTP,
+  proxy_host='localhost', proxy_port=8000)
+
+  proxy_host: The hostname or IP address of the proxy server.
+
+  proxy_port: The port that the proxy server is running on.
 
-p = ProxyInfo(proxy_type=socks.PROXY_TYPE_HTTP,
-proxy_host='localhost', proxy_port=8000)
+  proxy_rdns: If True (default), DNS queries will not be performed
+  locally, and instead, handed to the proxy to resolve.  This is useful
+  if the network does not allow resolution of non-local names.  In
+  httplib2 0.9 and earlier, this defaulted to False.
+
+  proxy_user: The username used to authenticate with the proxy server.
+
+  proxy_pass: The password used to authenticate with the proxy server.
 
 self.proxy_type = proxy_type
 self.proxy_host = proxy_host
@@ -871,12 +886,12 @@
 if self.proxy_info and self.proxy_info.isgood():
 use_proxy = True
 proxy_type, proxy_host, proxy_port, proxy_rdns, proxy_user, 

commit unzix for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package unzix for openSUSE:Factory checked 
in at 2015-04-13 20:30:50

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


Package is unzix

Changes:

New Changes file:

--- /dev/null   2015-03-12 01:14:30.992027505 +0100
+++ /work/SRC/openSUSE:Factory/.unzix.new/unzix.changes 2015-04-13 
20:30:51.0 +0200
@@ -0,0 +1,14 @@
+---
+Sun Apr 12 13:18:56 UTC 2015 - mplus...@suse.com
+
+- Update to 0.4.0
+ * Add portable endianness macros so that the code compiles on some
+   older platforms.
+- Cleanup spec file with spec-cleaner
+- Correct license
+
+---
+Sat Jun 04 10:39:02 CET 2011 - pascal.ble...@opensuse.org
+
+- initial version (0.3.0)
+

New:

  unzix-0.4.0.tar.gz
  unzix.changes
  unzix.spec



Other differences:
--
++ unzix.spec ++
#
# spec file for package unzix
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# 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/
#


Name:   unzix
Version:0.4.0
Release:0
Summary:Command-Line Program to Extract WinZix Archives
License:BSD-3-Clause
Group:  Productivity/Archiving/Compression
Url:http://banu.com/unzix/
Source: https://download.banu.com/unzix/0.4/%{name}-%{version}.tar.gz
BuildRequires:  asciidoc
BuildRequires:  libxslt-devel
BuildRequires:  pkgconfig
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  pkgconfig(zlib)

%description
Unzix is a small command-line program for extracting files from the new WinZix
archive format.

%prep
%setup -q

%build
%configure
make %{?_smp_mflags}

%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}

%files
%defattr(-,root,root)
%doc AUTHORS LICENSE NEWS README
%{_bindir}/unzix
%doc %{_mandir}/man1/unzix.1*

%changelog



commit xar for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package xar for openSUSE:Factory checked in 
at 2015-04-13 20:30:19

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


Package is xar

Changes:

--- /work/SRC/openSUSE:Factory/xar/xar.changes  2015-03-03 11:15:48.0 
+0100
+++ /work/SRC/openSUSE:Factory/.xar.new/xar.changes 2015-04-13 
20:30:20.0 +0200
@@ -1,0 +2,65 @@
+Sat Apr 11 18:37:39 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.6.1
+  * Fix issues #75, #76
+  * Added NEWS file
+  * Stealth support for any available EVP_get_digestbyname hash (see man page)
+  * Support digests sha224, sha256, sha384 and sha512 provided the linked
+libcrypto supports them (OpenSSL 0.9.8 and later).  Note that using a
+--toc-cksum other than none, md5 or sha1 (the default) is NOT backwards
+compatible (requires extended binary header support), but using a
+--file-cksum other than none, md5 or sha1 is backwards compatible provided
+the recipient's libcrypto supports it.  Both --toc-cksum and --file-cksum
+must be specified to get them to be different.
+  * Do not attempt to extract attribute information to a non-file destination
+  * Handle 6 more flags bits including UF_HIDDEN and UF_COMPRESSED
+  * Fix xar_get_mode output to still include type when mode is unavailable
+(This also fixes alignment problems in -tv output when mode is missing)
+  * Fix archival of FinderCreateTime on 64 bit archs (extract was already okay)
+  * Add support for --recompress option to blindly recompress all files added
+to the archive not matched by a --no-compress option when a --compression
+type other than none is in effect.  All prior versions of xar always behave
+as though --recompress has been specified.
+  * Recognized already-compressed files will now just be stored as-is in the
+archive without a second compression.  The gzip, bzip2 and xz formats are
+currently recognized.  The --recompress option disables this behavior.
+The xar library itself now provides this support (XAR_OPT_RECOMPRESS).
+  * xar.h c++ compatibility added
+  * XAR_OPT_TOCCKSUM can now be set after adding signatures without causing
+archive corruption
+  * Update liblzma support to work with current liblzma versions
+  * Show additional information in --version output if --verbose given first
+  * Update man page and --help output to be current
+  * Allow --compression=xz whenever --compression=lzma is supported
+  * Now builds on cygwin
+  * A huge number of warnings were eliminated so compilations should be much
+cleaner on many platforms now
+  * Add support for --rfc6713 (see man page) (XAR_OPT_RFC6713FORMAT)
+  * Support compiling against an older libcrypto but running against a newer 
one
+  * Make extracted-checksum/archived-checksum use long hash name to match value
+used in toc checksum (backwards compatible)
+  * Add missing trailing 'Z' to creation-date in archive (backwards compatible)
+  * Help output (--help) now goes to standard output instead of standard error
+  * Reduce spew on command line argument error
+  * Support --directory (-C) during archive as well as extract
+  * Add support for --to-stdout (-O) (XAR_OPT_EXTRACTSTDOUT)
+  * Add support for --strip-components (XAR_OPT_STRIPCOMPONENTS)
+  * Command aliases added (--create, --extract, --list, --file, --directory,
+--verbose, --one-file-system, -V)
+  * The xar header version can now be easily #if tested using XAR_VERSION_NUM
+  * The xar library version can now be fetched with XAR_OPT_XARLIBVERSION
+  * xar_from_base64 no longer adds extra bytes to the decoded output
+  * Library now adds a signature-creation-time element which contains the
+%.1f formatted number of seconds since 2001-01-01T00:00:00Z when any
+signatures are present
+  * Rudimentary command line signature support (--sign/--replace-sign etc.)
+  * configure now defaults compiler options to -Wall -g -O2 for gcc
+  * Update Xcode projects
+  * Import into git (adding .gitignore and .gitattributes)
+  * Initial release from https://github.com/mackyle/xar project
+- Update project and download Urls
+- Add autoconf build require; needed to generate the configure script
+  from git
+- Update documentation files list when process %doc
+
+---

Old:

  xar-1.5.2.tar.gz

New:

  xar-1.6.1.tar.gz



Other differences:
--
++ xar.spec ++
--- /var/tmp/diff_new_pack.AgmTWm/_old  2015-04-13 20:30:21.0 +0200
+++ /var/tmp/diff_new_pack.AgmTWm/_new  2015-04-13 20:30:21.0 +0200
@@ -18,13 +18,14 @@
 
 %define soname 1
 Name:   xar
-Version:

commit youtube-dl for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package youtube-dl for openSUSE:Factory 
checked in at 2015-04-13 20:30:17

Comparing /work/SRC/openSUSE:Factory/youtube-dl (Old)
 and  /work/SRC/openSUSE:Factory/.youtube-dl.new (New)


Package is youtube-dl

Changes:

--- /work/SRC/openSUSE:Factory/youtube-dl/youtube-dl.changes2015-04-05 
02:04:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.youtube-dl.new/youtube-dl.changes   
2015-04-13 20:30:18.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr 11 15:46:40 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to new upstream release 2015.04.09:
+  * fix invalid warning about missing ssl certificates
+  * new handlers for Gamersyde, PornoVoisines, RadioJavan,
+SpankBang, UDNEmbed
+
+---

Old:

  youtube-dl-2015.04.03.tar.gz
  youtube-dl-2015.04.03.tar.gz.sig

New:

  youtube-dl-2015.04.09.tar.gz
  youtube-dl-2015.04.09.tar.gz.sig



Other differences:
--
++ youtube-dl.spec ++
--- /var/tmp/diff_new_pack.i7I0OD/_old  2015-04-13 20:30:19.0 +0200
+++ /var/tmp/diff_new_pack.i7I0OD/_new  2015-04-13 20:30:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   youtube-dl
-Version:2015.04.03
+Version:2015.04.09
 Release:0
 Summary:A tool for downloading from Youtube
 License:SUSE-Public-Domain and CC-BY-SA-3.0

++ youtube-dl-2015.04.03.tar.gz - youtube-dl-2015.04.09.tar.gz ++
 3230 lines of diff (skipped)




commit dds2tar for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package dds2tar for openSUSE:Factory checked 
in at 2015-04-13 20:30:32

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


Package is dds2tar

Changes:

--- /work/SRC/openSUSE:Factory/dds2tar/dds2tar.changes  2011-09-26 
10:03:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.dds2tar.new/dds2tar.changes 2015-04-13 
20:30:34.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 12 10:06:59 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+- Use url for source
+
+---

Old:

  dds2tar-2.5.2.tar.bz2

New:

  dds2tar-2.5.2.tar.gz



Other differences:
--
++ dds2tar.spec ++
--- /var/tmp/diff_new_pack.K8Pdwr/_old  2015-04-13 20:30:35.0 +0200
+++ /var/tmp/diff_new_pack.K8Pdwr/_new  2015-04-13 20:30:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dds2tar
 #
-# Copyright (c) 2011 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
@@ -16,16 +16,15 @@
 #
 
 
-
 Name:   dds2tar
-Url:http://www.eulesoft.de/
-License:GPL-2.0+
-Group:  Productivity/Archiving/Backup
 Version:2.5.2
-Release:1308
+Release:0
 Summary:DDS2 Tape Streamer Utilities
-Source: dds2tar-%{version}.tar.bz2
-Patch:  dds2tar-%{version}.dif
+License:GPL-2.0+
+Group:  Productivity/Archiving/Backup
+Url:http://www.eulesoft.de/
+Source: http://www.eulesoft.de/dds2tar-%{version}.tar.gz
+Patch0: dds2tar-%{version}.dif
 Patch1: %{name}-%{version}-without-kernel-header.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -34,20 +33,20 @@
 dds2tar can control data compression for HP DAT streamers.
 
 %prep
-%setup
-%patch
+%setup -q
+%patch0
 %patch1
 
 %build
-make CC=gcc $RPM_OPT_FLAGS -fno-strict-aliasing %{?_smp_mflags}
+make CC=cc %{optflags} -fno-strict-aliasing %{?_smp_mflags}
 
 %install
-make MANDIR=%{_mandir} DESTDIR=$RPM_BUILD_ROOT install
+make MANDIR=%{_mandir} DESTDIR=%{buildroot} install
 
 %files
 %defattr(-,root,root)
 %doc README COPYING Changes
-/usr/bin/*
+%{_bindir}/*
 %doc %{_mandir}/man1/*
 
 %changelog




commit kdeclarative for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdeclarative for openSUSE:Factory 
checked in at 2015-04-13 20:26:29

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


Package is kdeclarative

Changes:

--- /work/SRC/openSUSE:Factory/kdeclarative/kdeclarative.changes
2015-03-16 09:33:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdeclarative.new/kdeclarative.changes   
2015-04-13 20:26:30.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  4 14:40:53 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
+- Added kcoreaddons-devel Requires to devel subpackage
+
+---

Old:

  kdeclarative-5.8.0.tar.xz

New:

  kdeclarative-5.9.0.tar.xz



Other differences:
--
++ kdeclarative.spec ++
--- /var/tmp/diff_new_pack.EOADKU/_old  2015-04-13 20:26:31.0 +0200
+++ /var/tmp/diff_new_pack.EOADKU/_new  2015-04-13 20:26:31.0 +0200
@@ -16,26 +16,27 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Declarative5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kdeclarative
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-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:  kpackage-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-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:  kpackage-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
 BuildRequires:  libepoxy-devel
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
@@ -56,7 +57,9 @@
 %package -n %lname
 Summary:Integration of QML and KDE workspaces
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KDeclarative provides integration of QML and KDE workspaces.
@@ -88,8 +91,9 @@
 Requires:   %lname = %{version}
 Requires:   %{name}-components = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel = %{kf5_version}
-Requires:   kpackage-devel = %{kf5_version}
+Requires:   kconfig-devel = %{_tar_path}
+Requires:   kcoreaddons-devel = %{_tar_path}
+Requires:   kpackage-devel = %{_tar_path}
 Requires:   libKF5QuickAddons5 = %{version}
 Requires:   pkgconfig(Qt5Qml) = 5.2.0
 
@@ -107,9 +111,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
@@ -119,7 +125,9 @@
 
 %postun -n libKF5QuickAddons5 -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kdeclarative-5.8.0.tar.xz - kdeclarative-5.9.0.tar.xz ++
 1987 lines of diff (skipped)




commit kparts for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kparts for openSUSE:Factory checked 
in at 2015-04-13 20:26:46

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


Package is kparts

Changes:

--- /work/SRC/openSUSE:Factory/kparts/kparts.changes2015-03-16 
09:33:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.kparts.new/kparts.changes   2015-04-13 
20:26:47.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:54 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
+- Drop no longer needed knotifications-devel Requires of the
+  devel subpackage
+
+---

Old:

  kparts-5.8.0.tar.xz

New:

  kparts-5.9.0.tar.xz



Other differences:
--
++ kparts.spec ++
--- /var/tmp/diff_new_pack.G5axzz/_old  2015-04-13 20:26:47.0 +0200
+++ /var/tmp/diff_new_pack.G5axzz/_new  2015-04-13 20:26:47.0 +0200
@@ -16,32 +16,33 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Parts5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kparts
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 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:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-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:  kservice-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
-BuildRequires:  solid-devel = %{kf5_version}
+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:  kservice-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
+BuildRequires:  solid-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Network) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -64,7 +65,9 @@
 Summary:Plugin framework for user interface components
 Group:  System/GUI/KDE
 Obsoletes:  libKF5Parts4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 This library implements the framework for KDE parts, which are
@@ -76,10 +79,9 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kio-devel = %{kf5_version}
-Requires:   knotifications-devel = %{kf5_version}
-Requires:   ktextwidgets-devel = %{kf5_version}
-Requires:   kxmlgui-devel = %{kf5_version}
+Requires:   kio-devel = %{_tar_path}
+Requires:   ktextwidgets-devel = %{_tar_path}
+Requires:   kxmlgui-devel = %{_tar_path}
 
 %description devel
 This library implements the framework for KDE parts, which are
@@ -96,15 +98,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kparts-5.8.0.tar.xz - kparts-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.8.0/CMakeLists.txt 
new/kparts-5.9.0/CMakeLists.txt
--- old/kparts-5.8.0/CMakeLists.txt 2015-03-07 15:48:27.0 

commit solid for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package solid for openSUSE:Factory checked 
in at 2015-04-13 20:26:51

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


Package is solid

Changes:

--- /work/SRC/openSUSE:Factory/solid/solid.changes  2015-03-16 
09:33:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.solid.new/solid.changes 2015-04-13 
20:26:52.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  4 14:40:54 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Refresh the battery properties upon resume
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  solid-5.8.0.tar.xz

New:

  solid-5.9.0.tar.xz



Other differences:
--
++ solid.spec ++
--- /var/tmp/diff_new_pack.tsk41d/_old  2015-04-13 20:26:52.0 +0200
+++ /var/tmp/diff_new_pack.tsk41d/_new  2015-04-13 20:26:52.0 +0200
@@ -16,18 +16,21 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Solid5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   solid
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  bison
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Concurrent) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Qml) = 5.2.0
@@ -51,7 +54,9 @@
 Summary:KDE Desktop hardware abstraction
 Group:  System/GUI/KDE
 Obsoletes:  libKF5Solid4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 Recommends: %{name}-tools = %{version}
 Recommends: %{name}-imports = %{version}
 Requires:   media-player-info
@@ -105,9 +110,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
@@ -117,7 +124,9 @@
 
 %postun imports -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ solid-5.8.0.tar.xz - solid-5.9.0.tar.xz ++
 3666 lines of diff (skipped)




commit kwidgetsaddons for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kwidgetsaddons for openSUSE:Factory 
checked in at 2015-04-13 20:26:18

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


Package is kwidgetsaddons

Changes:

--- /work/SRC/openSUSE:Factory/kwidgetsaddons/kwidgetsaddons.changes
2015-03-16 09:33:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.kwidgetsaddons.new/kwidgetsaddons.changes   
2015-04-13 20:26:20.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  4 14:40:52 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Make KMessageWidget animation smooth with high Device Pixel Ratio
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kwidgetsaddons-5.8.0.tar.xz

New:

  kwidgetsaddons-5.9.0.tar.xz



Other differences:
--
++ kwidgetsaddons.spec ++
--- /var/tmp/diff_new_pack.yxhE9a/_old  2015-04-13 20:26:20.0 +0200
+++ /var/tmp/diff_new_pack.yxhE9a/_new  2015-04-13 20:26:20.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5WidgetsAddons5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kwidgetsaddons
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5UiTools) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -46,7 +49,9 @@
 Summary:Large set of desktop widgets
 Group:  System/GUI/KDE
 Obsoletes:  libKF5WidgetsAddons4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 %requires_ge libQt5Widgets5
 
 %description -n %lname
@@ -77,15 +82,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kwidgetsaddons-5.8.0.tar.xz - kwidgetsaddons-5.9.0.tar.xz ++
 4000 lines of diff (skipped)




commit knotifyconfig for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package knotifyconfig for openSUSE:Factory 
checked in at 2015-04-13 20:26:10

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


Package is knotifyconfig

Changes:

--- /work/SRC/openSUSE:Factory/knotifyconfig/knotifyconfig.changes  
2015-03-16 09:32:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.knotifyconfig.new/knotifyconfig.changes 
2015-04-13 20:26:12.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:51 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
+- Drop no longer needed Requires of the devel subpackage:
+  ki18n-devel and kio-devel
+
+---

Old:

  knotifyconfig-5.8.0.tar.xz

New:

  knotifyconfig-5.9.0.tar.xz



Other differences:
--
++ knotifyconfig.spec ++
--- /var/tmp/diff_new_pack.cT01gy/_old  2015-04-13 20:26:13.0 +0200
+++ /var/tmp/diff_new_pack.cT01gy/_new  2015-04-13 20:26:13.0 +0200
@@ -16,34 +16,35 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5NotifyConfig5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   knotifyconfig
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 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:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-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:  kservice-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+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:  kservice-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  phonon4qt5-devel
-BuildRequires:  solid-devel = %{kf5_version}
+BuildRequires:  solid-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -62,7 +63,9 @@
 %package -n %lname
 Summary:Configuration dialog for desktop notifications
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KNotifyConfig provides a configuration dialog for desktop notifications which
@@ -73,8 +76,6 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   ki18n-devel = %{kf5_version}
-Requires:   kio-devel = %{kf5_version}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 
 %description devel
@@ -91,15 +92,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ knotifyconfig-5.8.0.tar.xz - knotifyconfig-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.8.0/CMakeLists.txt 
new/knotifyconfig-5.9.0/CMakeLists.txt
--- old/knotifyconfig-5.8.0/CMakeLists.txt  2015-03-07 15:47:57.0 

commit kplotting for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kplotting

Changes:

--- /work/SRC/openSUSE:Factory/kplotting/kplotting.changes  2015-03-16 
09:34:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.kplotting.new/kplotting.changes 2015-04-13 
20:27:03.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:56 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
+
+---

Old:

  kplotting-5.8.0.tar.xz

New:

  kplotting-5.9.0.tar.xz



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

++ kplotting-5.8.0.tar.xz - kplotting-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.8.0/CMakeLists.txt 
new/kplotting-5.9.0/CMakeLists.txt
--- old/kplotting-5.8.0/CMakeLists.txt  2015-02-25 15:21:57.0 +0100
+++ new/kplotting-5.9.0/CMakeLists.txt  2015-04-04 13:50:04.0 +0200
@@ -2,7 +2,7 @@
 
 project(KPlotting)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -19,7 +19,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KPLOTTING
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kplotting_version.h




commit kio for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kio for openSUSE:Factory checked in 
at 2015-04-13 20:26:38

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


Package is kio

Changes:

--- /work/SRC/openSUSE:Factory/kio/kio.changes  2015-03-16 09:33:37.0 
+0100
+++ /work/SRC/openSUSE:Factory/.kio.new/kio.changes 2015-04-13 
20:26:39.0 +0200
@@ -1,0 +2,24 @@
+Sat Apr  4 14:40:53 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Enable KPropertiesDialog to show free space information of
+remote file systems as well (e.g. smb)
+  * Fix KUrlNavigator with high DPI pixmaps
+  * Make KFileItemDelegate handle non default devicePixelRatio
+in animations
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Split the core modules/daemons/libraries into core subpackage;
+  based on upstream KIOCORE_ONLY build option, which only concerns
+  the buildsystem, not the code (i.e. no ifdefs)
+- Add kio_help-fallback-to-kde4-docs.patch: allow kio_help to see
+  into kde4 documentation
+
+---
+Mon Mar 16 11:58:09 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add missing requires to devel subpackage: kcoreaddons-devel,
+  kconfig-devel and kitemviews-devel
+- Drop unneeded kcrash-devel BuildRequires
+
+---

Old:

  kio-5.8.0.tar.xz

New:

  kio-5.9.0.tar.xz
  kio_help-fallback-to-kde4-docs.patch



Other differences:
--
++ kio.spec ++
--- /var/tmp/diff_new_pack.hgfZoH/_old  2015-04-13 20:26:40.0 +0200
+++ /var/tmp/diff_new_pack.hgfZoH/_new  2015-04-13 20:26:40.0 +0200
@@ -16,39 +16,39 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kio
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kbookmarks-devel = %{kf5_version}
-BuildRequires:  kcompletion-devel = %{kf5_version}
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kbookmarks-devel = %{_tar_path}
+BuildRequires:  kcompletion-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kguiaddons-devel = %{kf5_version}
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kitemviews-devel = %{kf5_version}
-BuildRequires:  kjobwidgets-devel = %{kf5_version}
-BuildRequires:  knotifications-devel = %{kf5_version}
+BuildRequires:  kguiaddons-devel = %{_tar_path}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kitemviews-devel = %{_tar_path}
+BuildRequires:  kjobwidgets-devel = %{_tar_path}
+BuildRequires:  knotifications-devel = %{_tar_path}
 BuildRequires:  krb5-devel
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  ktextwidgets-devel = %{kf5_version}
-BuildRequires:  kwallet-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  ktextwidgets-devel = %{_tar_path}
+BuildRequires:  kwallet-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  libacl-devel
 BuildRequires:  libattr-devel
-BuildRequires:  solid-devel = %{kf5_version}
+BuildRequires:  solid-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Concurrent) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
@@ -60,7 +60,10 @@
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(x11)
+Requires:   %{name}-core = %{version}
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Recommends: kio-extras5
 # KIO/FileDialog uses 

commit karchive for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package karchive for openSUSE:Factory 
checked in at 2015-04-13 20:26:24

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


Package is karchive

Changes:

--- /work/SRC/openSUSE:Factory/karchive/karchive.changes2015-03-16 
09:33:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.karchive.new/karchive.changes   2015-04-13 
20:26:25.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:40:52 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Respect KZip::extraField setting also when writing
+central header entries
+  * Remove two erroneous asserts, happening when disk is full, kde#343214
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  karchive-5.8.0.tar.xz

New:

  karchive-5.9.0.tar.xz



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

++ karchive-5.8.0.tar.xz - karchive-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/karchive-5.8.0/CMakeLists.txt 
new/karchive-5.9.0/CMakeLists.txt
--- old/karchive-5.8.0/CMakeLists.txt   2015-02-25 15:17:06.0 +0100
+++ new/karchive-5.9.0/CMakeLists.txt   2015-04-04 13:46:49.0 +0200
@@ -2,7 +2,7 @@
 
 project(KArchive)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -45,7 +45,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX KARCHIVE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/karchive-5.8.0/src/kzip.cpp 
new/karchive-5.9.0/src/kzip.cpp
--- old/karchive-5.8.0/src/kzip.cpp 2015-02-25 15:17:06.0 +0100
+++ new/karchive-5.9.0/src/kzip.cpp 2015-04-04 13:46:49.0 +0200
@@ -861,8 +861,8 @@
 
 QByteArray path = QFile::encodeName(it.value()-path());
 
-const int extra_field_len = 9;
-int bufferSize = extra_field_len + path.length() + 46;
+const int extra_field_len = (d-m_extraField == ModificationTime) ? 9 
: 0;
+const int bufferSize = extra_field_len + path.length() + 46;
 char *buffer = new char[ bufferSize ];
 
 memset(buffer, 0, 46); // zero is a nice default for most header fields
@@ -920,19 +920,22 @@
 //qDebug()  closearchive length to write:   bufferSize;
 
 // extra field
-char *extfield = buffer + 46 + path.length();
-extfield[0] = 'U';
-extfield[1] = 'T';
-extfield[2] = 5;
-extfield[3] = 0;
-extfield[4] = 1 | 2 | 4;// specify flags from local field
-// (unless I misread the spec)
-// provide only modification time
-unsigned long time = (unsigned long)it.value()-date().toTime_t();
-extfield[5] = char(time);
-extfield[6] = char(time  8);
-extfield[7] = char(time  16);
-extfield[8] = char(time  24);
+if (d-m_extraField == ModificationTime) {
+char *extfield = buffer + 46 + path.length();
+// Extended timestamp header (0x5455)
+extfield[0] = 'U';
+extfield[1] = 'T';
+extfield[2] = 5; // data size
+extfield[3] = 0;
+extfield[4] = 1 | 2 | 4;// specify flags from local field
+// (unless I misread the spec)
+// provide only modification time
+unsigned long time = (unsigned long)it.value()-date().toTime_t();
+extfield[5] = char(time);
+extfield[6] = char(time  8);
+extfield[7] = char(time  16);
+extfield[8] = char(time  24);
+}
 
 crc = crc32(crc, 

commit kauth for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kauth for openSUSE:Factory checked 
in at 2015-04-13 20:26:56

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


Package is kauth

Changes:

--- /work/SRC/openSUSE:Factory/kauth/kauth.changes  2015-03-16 
09:34:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.kauth.new/kauth.changes 2015-04-13 
20:26:57.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:55 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
+
+---

Old:

  kauth-5.8.0.tar.xz

New:

  kauth-5.9.0.tar.xz



Other differences:
--
++ kauth.spec ++
--- /var/tmp/diff_new_pack.pqh7hp/_old  2015-04-13 20:26:57.0 +0200
+++ /var/tmp/diff_new_pack.pqh7hp/_new  2015-04-13 20:26:58.0 +0200
@@ -16,19 +16,22 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Auth5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kauth
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
 BuildRequires:  libpolkit-qt5-1-devel
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 Summary:Framework which lets applications perform actions as a 
privileged user
@@ -46,7 +49,9 @@
 Summary:Framework which lets applications perform actions as a 
privileged user
 Group:  System/GUI/KDE
 Obsoletes:  libKF5Auth4
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KAuth is a framework to let applications perform actions as a privileged user.
@@ -56,7 +61,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kcoreaddons-devel = %{kf5_version}
+Requires:   kcoreaddons-devel = %{_tar_path}
 
 %description devel
 KAuth is a framework to let applications perform actions as a privileged user.
@@ -72,9 +77,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %if 0%{?suse_version} = 1310
 # we need this for older oS releases; only Factory/13.2 has the whitelist
@@ -85,7 +92,9 @@
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kauth-5.8.0.tar.xz - kauth-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.8.0/CMakeLists.txt 
new/kauth-5.9.0/CMakeLists.txt
--- old/kauth-5.8.0/CMakeLists.txt  2015-03-07 15:37:37.0 +0100
+++ new/kauth-5.9.0/CMakeLists.txt  2015-04-04 14:00:23.0 +0200
@@ -2,7 +2,7 @@
 
 project(KAuth)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2.0)
@@ -20,8 +20,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KAUTH
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.8.0/cmake/COPYING-CMAKE-SCRIPTS 
new/kauth-5.9.0/cmake/COPYING-CMAKE-SCRIPTS
--- old/kauth-5.8.0/cmake/COPYING-CMAKE-SCRIPTS 1970-01-01 01:00:00.0 
+0100
+++ new/kauth-5.9.0/cmake/COPYING-CMAKE-SCRIPTS 2015-04-04 14:00:23.0 
+0200
@@ -0,0 +1,22 @@
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the copyright
+   notice, this list of conditions and the following 

commit kbookmarks for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kbookmarks

Changes:

--- /work/SRC/openSUSE:Factory/kbookmarks/kbookmarks.changes2015-03-16 
09:34:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.kbookmarks.new/kbookmarks.changes   
2015-04-13 20:27:28.0 +0200
@@ -1,0 +2,12 @@
+Sat Apr  4 14:40:58 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Fix build with Qt 5.5
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+- Added kconfig-devel and kcodecs-devel BuildRequires
+- Added kwidgetsaddons-devel Requires to devel subpackage
+- Drop no longer needed Requires of the devel subpackage:
+  kconfigwidgets-devel, kiconthemes-devel and kxmlgui-devel
+
+---

Old:

  kbookmarks-5.8.0.tar.xz

New:

  kbookmarks-5.9.0.tar.xz



Other differences:
--
++ kbookmarks.spec ++
--- /var/tmp/diff_new_pack.LR8BI8/_old  2015-04-13 20:27:28.0 +0200
+++ /var/tmp/diff_new_pack.LR8BI8/_new  2015-04-13 20:27:28.0 +0200
@@ -16,22 +16,27 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Bookmarks5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kbookmarks
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfigwidgets-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
+BuildRequires:  kcodecs-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kconfigwidgets-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 Requires:   pkgconfig(Qt5DBus) = 5.2.0
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 Requires:   pkgconfig(Qt5Xml) = 5.2.0
@@ -49,7 +54,9 @@
 %package -n %lname
 Summary:Lets you access and manipulate bookmarks stored using XBEL 
format
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 Framework which lets you access and manipulate bookmarks stored using XBEL 
format
@@ -59,9 +66,7 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfigwidgets-devel = %{kf5_version}
-Requires:   kiconthemes-devel = %{kf5_version}
-Requires:   kxmlgui-devel = %{kf5_version}
+Requires:   kwidgetsaddons-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Widgets) = 5.2.0
 Requires:   pkgconfig(Qt5Xml) = 5.2.0
 
@@ -79,15 +84,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kbookmarks-5.8.0.tar.xz - kbookmarks-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.8.0/CMakeLists.txt 
new/kbookmarks-5.9.0/CMakeLists.txt
--- old/kbookmarks-5.8.0/CMakeLists.txt 2015-03-07 15:37:53.0 +0100
+++ new/kbookmarks-5.9.0/CMakeLists.txt 2015-04-04 14:00:35.0 +0200
@@ -2,7 +2,7 @@
 
 project(KBookmarks)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -18,8 +18,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX KBOOKMARKS
@@ -32,8 +32,10 @@
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED 

commit kitemmodels for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kitemmodels

Changes:

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

Old:

  kitemmodels-5.8.0.tar.xz

New:

  kitemmodels-5.9.0.tar.xz



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

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




commit isapnp for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package isapnp for openSUSE:Factory checked 
in at 2015-04-13 20:52:47

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


Package is isapnp

Changes:

--- /work/SRC/openSUSE:Factory/isapnp/isapnp.changes2011-12-02 
13:21:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.isapnp.new/isapnp.changes   2015-04-13 
20:52:48.0 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 18:46:51 UTC 2015 - crrodrig...@opensuse.org
+
+- There is no isapnp support in x86_64 remove from Exclusivearch 
+
+---



Other differences:
--
++ isapnp.spec ++
--- /var/tmp/diff_new_pack.Tg09P3/_old  2015-04-13 20:52:49.0 +0200
+++ /var/tmp/diff_new_pack.Tg09P3/_new  2015-04-13 20:52:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package isapnp
 #
-# Copyright (c) 2011 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
@@ -15,15 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   isapnp
-License:GPL-2.0+
-Group:  Hardware/Other
 BuildRequires:  automake
 BuildRequires:  flex
 PreReq: %fillup_prereq %insserv_prereq
 Version:1.26
 Release:0
 Summary:An ISA Plug and Play Configuration Utility
+License:GPL-2.0+
+Group:  Hardware/Other
 Source: isapnptools-%{version}.tar.bz2
 Source1:boot.isapnp
 Source2:README.SuSE
@@ -32,7 +33,7 @@
 Patch3: isapnp-codecleanup.diff
 Patch4: isapnp-static_nonstatic_mix.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-ExclusiveArch:  %ix86 x86_64
+ExclusiveArch:  %ix86
 
 %description
 Two programs--one allows the dumping of resource data and generation of




commit kimageformats for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2015-04-13 20:25:35

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


Package is kimageformats

Changes:

--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes  
2015-03-16 09:31:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.kimageformats.new/kimageformats.changes 
2015-04-13 20:25:36.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:47 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
+
+---

Old:

  kimageformats-5.8.0.tar.xz

New:

  kimageformats-5.9.0.tar.xz



Other differences:
--
++ kimageformats.spec ++
--- /var/tmp/diff_new_pack.8yNLim/_old  2015-04-13 20:25:36.0 +0200
+++ /var/tmp/diff_new_pack.8yNLim/_new  2015-04-13 20:25:36.0 +0200
@@ -16,12 +16,12 @@
 #
 
 
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kimageformats
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  openexr
@@ -55,7 +55,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n kimageformats -p /sbin/ldconfig
 

++ kimageformats-5.8.0.tar.xz - kimageformats-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.8.0/CMakeLists.txt 
new/kimageformats-5.9.0/CMakeLists.txt
--- old/kimageformats-5.8.0/CMakeLists.txt  2015-02-27 19:03:29.0 
+0100
+++ new/kimageformats-5.9.0/CMakeLists.txt  2015-04-04 13:48:54.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KImageFormats)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.8.0/src/imageformats/ras.cpp 
new/kimageformats-5.9.0/src/imageformats/ras.cpp
--- old/kimageformats-5.8.0/src/imageformats/ras.cpp2015-02-27 
19:03:29.0 +0100
+++ new/kimageformats-5.9.0/src/imageformats/ras.cpp2015-04-04 
13:48:54.0 +0200
@@ -219,7 +219,7 @@
 }
 
 if (device-isSequential()) {
-qWarning(Reading ras files from sequential devices not supported);
+// qWarning(Reading ras files from sequential devices not supported);
 return false;
 }
 




commit kunitconversion for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is kunitconversion

Changes:

--- /work/SRC/openSUSE:Factory/kunitconversion/kunitconversion.changes  
2015-03-16 09:31:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.kunitconversion.new/kunitconversion.changes 
2015-04-13 20:25:14.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:45 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
+- Drop no longer needed Requires of the devel subpackage:
+  kconfig-devel and ki18n-devel
+
+---

Old:

  kunitconversion-5.8.0.tar.xz

New:

  kunitconversion-5.9.0.tar.xz



Other differences:
--
++ kunitconversion.spec ++
--- /var/tmp/diff_new_pack.5xJju9/_old  2015-04-13 20:25:14.0 +0200
+++ /var/tmp/diff_new_pack.5xJju9/_new  2015-04-13 20:25:14.0 +0200
@@ -16,14 +16,15 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5UnitConversion5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kunitconversion
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kconfig-devel = %{_kf5_version}
 BuildRequires:  kf5-filesystem
@@ -48,7 +49,9 @@
 %package -n %lname
 Summary:Converting physical units
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 KUnitConversion provides functions to convert values in different physical
@@ -60,8 +63,6 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel = %{_kf5_version}
-Requires:   ki18n-devel = %{_kf5_version}
 Requires:   pkgconfig(Qt5Core) = 5.2.0
 
 %description devel
@@ -80,15 +81,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kunitconversion-5.8.0.tar.xz - kunitconversion-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kunitconversion-5.8.0/CMakeLists.txt 
new/kunitconversion-5.9.0/CMakeLists.txt
--- old/kunitconversion-5.8.0/CMakeLists.txt2015-03-07 15:51:19.0 
+0100
+++ new/kunitconversion-5.9.0/CMakeLists.txt2015-04-04 14:13:33.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KUnitConversion)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -18,8 +18,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KUNITCONVERSION
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kunitconversion_version.h
 PACKAGE_VERSION_FILE 
${CMAKE_CURRENT_BINARY_DIR}/KF5UnitConversionConfigVersion.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kunitconversion-5.8.0/KF5UnitConversionConfig.cmake.in 
new/kunitconversion-5.9.0/KF5UnitConversionConfig.cmake.in
--- old/kunitconversion-5.8.0/KF5UnitConversionConfig.cmake.in  2015-03-07 
15:51:19.0 +0100
+++ new/kunitconversion-5.9.0/KF5UnitConversionConfig.cmake.in  2015-04-04 
14:13:33.0 +0200
@@ -1,8 +1,5 @@
 @PACKAGE_INIT@
 
-find_dependency(KF5Config @KF5_DEP_VERSION@)
-find_dependency(KF5I18n @KF5_DEP_VERSION@)
-
 find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
 
 




commit kdbusaddons for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kdbusaddons for openSUSE:Factory 
checked in at 2015-04-13 20:25:57

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


Package is kdbusaddons

Changes:

--- /work/SRC/openSUSE:Factory/kdbusaddons/kdbusaddons.changes  2015-03-16 
09:32:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdbusaddons.new/kdbusaddons.changes 
2015-04-13 20:25:59.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:50 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
+
+---

Old:

  kdbusaddons-5.8.0.tar.xz

New:

  kdbusaddons-5.9.0.tar.xz



Other differences:
--
++ kdbusaddons.spec ++
--- /var/tmp/diff_new_pack.vuUfCC/_old  2015-04-13 20:26:00.0 +0200
+++ /var/tmp/diff_new_pack.vuUfCC/_new  2015-04-13 20:26:00.0 +0200
@@ -16,16 +16,19 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5DBusAddons5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kdbusaddons
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+%if %{with lang}
 BuildRequires:  libqt5-linguist-devel = 5.2.0
+%endif
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5X11Extras) = 5.2.0
@@ -44,7 +47,9 @@
 %package -n %lname
 Summary:Convenience classes for QtDBus
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 Recommends: %{name}-tools = %{version}
 %requires_ge libQt5DBus5
 
@@ -81,15 +86,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes %{buildroot}%{_kf5_sharedir}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5 --with-qt --without-mo
+%if %{with lang}
+%find_lang %{name}5 --with-qt --without-mo
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}5.lang
+%endif
 
 %files -n %lname
 %defattr(-,root,root)

++ kdbusaddons-5.8.0.tar.xz - kdbusaddons-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdbusaddons-5.8.0/CMakeLists.txt 
new/kdbusaddons-5.9.0/CMakeLists.txt
--- old/kdbusaddons-5.8.0/CMakeLists.txt2015-03-07 15:40:10.0 
+0100
+++ new/kdbusaddons-5.9.0/CMakeLists.txt2015-04-04 14:02:40.0 
+0200
@@ -2,7 +2,7 @@
 
 project(KDBusAddons)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -23,7 +23,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDBUSADDONS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kdbusaddons_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdbusaddons-5.8.0/autotests/kdbusservicetest.cpp 
new/kdbusaddons-5.9.0/autotests/kdbusservicetest.cpp
--- old/kdbusaddons-5.8.0/autotests/kdbusservicetest.cpp2015-03-07 
15:40:10.0 +0100
+++ new/kdbusaddons-5.9.0/autotests/kdbusservicetest.cpp2015-04-04 
14:02:40.0 +0200
@@ -36,7 +36,7 @@
 Q_OBJECT
 public:
 TestObject(KDBusService *service)
-: m_callCount(0),
+: m_proc(0), m_callCount(0),
   m_service(service)
 {}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdbusaddons-5.8.0/po/fr/kdbusaddons5_qt.po 
new/kdbusaddons-5.9.0/po/fr/kdbusaddons5_qt.po
--- old/kdbusaddons-5.8.0/po/fr/kdbusaddons5_qt.po  2015-03-07 
15:40:10.0 +0100
+++ new/kdbusaddons-5.9.0/po/fr/kdbusaddons5_qt.po  2015-04-04 
14:02:40.0 +0200
@@ -11,10 +11,10 @@
 msgstr 
 Project-Id-Version: kquitapp\n
 Language-Team: French kde-i18n-...@kde.org\n
-Language: fr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Generator: Lokalize 1.5\n
 X-Environment: kde\n




commit kemoticons for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kemoticons for openSUSE:Factory 
checked in at 2015-04-13 20:25:30

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


Package is kemoticons

Changes:

--- /work/SRC/openSUSE:Factory/kemoticons/kemoticons.changes2015-03-16 
09:31:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.kemoticons.new/kemoticons.changes   
2015-04-13 20:25:31.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:47 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
+- Drop no longer needed karchive-devel Requires of the
+  devel subpackage
+
+---

Old:

  kemoticons-5.8.0.tar.xz

New:

  kemoticons-5.9.0.tar.xz



Other differences:
--
++ kemoticons.spec ++
--- /var/tmp/diff_new_pack.gMHVfD/_old  2015-04-13 20:25:32.0 +0200
+++ /var/tmp/diff_new_pack.gMHVfD/_new  2015-04-13 20:25:32.0 +0200
@@ -17,18 +17,18 @@
 
 
 %define lname   libKF5Emoticons5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kemoticons
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  karchive-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
+BuildRequires:  karchive-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kservice-devel = %{kf5_version}
+BuildRequires:  kservice-devel = %{_tar_path}
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
@@ -60,8 +60,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   karchive-devel = %{kf5_version}
-Requires:   kservice-devel = %{kf5_version}
+Requires:   karchive-devel = %{_tar_path}
+Requires:   kservice-devel = %{_tar_path}
 Requires:   pkgconfig(Qt5Gui) = 5.2.0
 
 %description devel
@@ -78,7 +78,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %post -n %lname -p /sbin/ldconfig
 

++ kemoticons-5.8.0.tar.xz - kemoticons-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.8.0/CMakeLists.txt 
new/kemoticons-5.9.0/CMakeLists.txt
--- old/kemoticons-5.8.0/CMakeLists.txt 2015-02-25 15:19:22.0 +0100
+++ new/kemoticons-5.9.0/CMakeLists.txt 2015-04-04 13:48:19.0 +0200
@@ -2,7 +2,7 @@
 
 project(KEmoticons)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
@@ -19,8 +19,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KEMOTICONS
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kemoticons_version.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.8.0/KF5EmoticonsConfig.cmake.in 
new/kemoticons-5.9.0/KF5EmoticonsConfig.cmake.in
--- old/kemoticons-5.8.0/KF5EmoticonsConfig.cmake.in2015-02-25 
15:19:22.0 +0100
+++ new/kemoticons-5.9.0/KF5EmoticonsConfig.cmake.in2015-04-04 
13:48:19.0 +0200
@@ -1,8 +1,7 @@
 @PACKAGE_INIT@
 
-find_dependency(KF5Archive @KF5_DEP_VERSION@)
-find_dependency(KF5Service @KF5_DEP_VERSION@)
-
 find_dependency(Qt5Gui @REQUIRED_QT_VERSION@)
 
+find_dependency(KF5Service @KF5_DEP_VERSION@)
+
 include(${CMAKE_CURRENT_LIST_DIR}/KF5EmoticonsTargets.cmake)




commit kinit for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kinit for openSUSE:Factory checked 
in at 2015-04-13 20:26:03

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


Package is kinit

Changes:

--- /work/SRC/openSUSE:Factory/kinit/kinit.changes  2015-03-16 
09:32:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.kinit.new/kinit.changes 2015-04-13 
20:26:04.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 14:40:51 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
+
+---

Old:

  kinit-5.8.0.tar.xz

New:

  kinit-5.9.0.tar.xz



Other differences:
--
++ kinit.spec ++
--- /var/tmp/diff_new_pack.EVvvAk/_old  2015-04-13 20:26:04.0 +0200
+++ /var/tmp/diff_new_pack.EVvvAk/_new  2015-04-13 20:26:04.0 +0200
@@ -16,21 +16,22 @@
 #
 
 
-%define _tar_path 5.8
+%bcond_without lang
+%define _tar_path 5.9
 Name:   kinit
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcrash-devel = %{kf5_version}
-BuildRequires:  kdoctools-devel = %{kf5_version}
+BuildRequires:  kcrash-devel = %{_tar_path}
+BuildRequires:  kdoctools-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
 BuildRequires:  libcap-devel
 BuildRequires:  libcap-progs
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -38,7 +39,9 @@
 BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(x11)
+%if %{with lang}
 Recommends: %{name}-lang = %{version}
+%endif
 Summary:Helper library to speed up start of applications on KDE 
workspaces
 License:LGPL-2.1+
 Group:  System/GUI/KDE
@@ -76,22 +79,25 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}5
+%if %{with lang}
+%find_lang %{name}5
+echo %doc %lang(de) %{_kf5_mandir}/de %{name}5.lang
+echo %doc %lang(it) %{_kf5_mandir}/it %{name}5.lang
+echo %doc %lang(nl) %{_kf5_mandir}/nl %{name}5.lang
+echo %doc %lang(pt_BR) %{_kf5_mandir}/pt_BR %{name}5.lang
+echo %doc %lang(sv) %{_kf5_mandir}/sv %{name}5.lang
+echo %doc %lang(uk) %{_kf5_mandir}/uk %{name}5.lang
+%endif
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
+%if %{with lang}
 %files lang -f %{name}5.lang
-%defattr(-,root,root)
-%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
-%doc %lang(uk) %{_kf5_mandir}/uk
+%endif
 
 %files
 %defattr(-,root,root)

++ kinit-5.8.0.tar.xz - kinit-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.8.0/CMakeLists.txt 
new/kinit-5.9.0/CMakeLists.txt
--- old/kinit-5.8.0/CMakeLists.txt  2015-03-07 15:44:49.0 +0100
+++ new/kinit-5.9.0/CMakeLists.txt  2015-04-04 14:06:40.0 +0200
@@ -2,7 +2,7 @@
 
 project(KInit)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 set(REQUIRED_QT_VERSION 5.2)
@@ -15,8 +15,8 @@
 include(ECMPackageConfigHelpers)
 include(ECMSetupVersion)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KINIT
 VERSION_HEADER 
${CMAKE_CURRENT_BINARY_DIR}/kinit_version.h
@@ -80,5 +80,6 @@
 
 install(FILES
 kde5init_dummy.cpp.in
-
 DESTINATION ${CMAKECONFIG_INSTALL_DIR} COMPONENT Devel)
+
+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)




commit kactivities5 for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kactivities5 for openSUSE:Factory 
checked in at 2015-04-13 20:25:19

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


Package is kactivities5

Changes:

--- /work/SRC/openSUSE:Factory/kactivities5/kactivities5.changes
2015-03-16 09:31:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.kactivities5.new/kactivities5.changes   
2015-04-13 20:25:20.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  4 14:40:46 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.9.0
+  * Implemented forgetting a resource
+  * Build fixes
+  * Added a plugin to register events for KRecentDocument notifications
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.9.0.php
+
+---

Old:

  kactivities-5.8.0.tar.xz

New:

  kactivities-5.9.0.tar.xz



Other differences:
--
++ kactivities5.spec ++
--- /var/tmp/diff_new_pack.UeSAG5/_old  2015-04-13 20:25:20.0 +0200
+++ /var/tmp/diff_new_pack.UeSAG5/_new  2015-04-13 20:25:20.0 +0200
@@ -16,10 +16,11 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Activities5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kactivities5
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 Summary:KDE Plasma Activities support
@@ -32,20 +33,20 @@
 Patch0: kamd-rename.patch
 BuildRequires:  boost-devel = 1.49.0
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kcmutils-devel = %{kf5_version}
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
-BuildRequires:  kdeclarative-devel = %{kf5_version}
+BuildRequires:  kcmutils-devel = %{_tar_path}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
+BuildRequires:  kdeclarative-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  kglobalaccel-devel = %{kf5_version}
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kio-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
-BuildRequires:  kxmlgui-devel = %{kf5_version}
+BuildRequires:  kglobalaccel-devel = %{_tar_path}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kio-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
+BuildRequires:  kxmlgui-devel = %{_tar_path}
 BuildRequires:  xz
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
@@ -66,7 +67,9 @@
 %package -n %lname
 Summary:Library for KDE's Plasma Activities support
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: %lname-lang = %{version}
+%endif
 
 %description -n %lname
 Kactivities provides an API for using and interacting with the Plasma 
Activities Manager.
@@ -105,15 +108,19 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang %{name}
+%if %{with lang}
+%find_lang %{name}
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
 %postun -n %lname -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n %lname-lang -f %{name}.lang
+%endif
 
 %files
 %defattr(-,root,root)

++ kactivities-5.8.0.tar.xz - kactivities-5.9.0.tar.xz ++
 10082 lines of diff (skipped)




commit kwallet for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package kwallet for openSUSE:Factory checked 
in at 2015-04-13 20:25:47

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


Package is kwallet

Changes:

--- /work/SRC/openSUSE:Factory/kwallet/kwallet.changes  2015-03-16 
09:32:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.kwallet.new/kwallet.changes 2015-04-13 
20:25:48.0 +0200
@@ -1,0 +2,9 @@
+Sat Apr  4 14:40:49 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
+- Drop no longer needed Requires of the devel subpackage:
+  kconfig-devel and kwindowsystem-devel
+
+---

Old:

  kwallet-5.8.0.tar.xz

New:

  kwallet-5.9.0.tar.xz



Other differences:
--
++ kwallet.spec ++
--- /var/tmp/diff_new_pack.lLceUJ/_old  2015-04-13 20:25:49.0 +0200
+++ /var/tmp/diff_new_pack.lLceUJ/_new  2015-04-13 20:25:49.0 +0200
@@ -16,25 +16,26 @@
 #
 
 
+%bcond_without lang
 %define lname   libKF5Wallet5
-%define _tar_path 5.8
+%define _tar_path 5.9
 Name:   kwallet
-Version:%{_tar_path}.0
+Version:5.9.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
-BuildRequires:  kconfig-devel = %{kf5_version}
-BuildRequires:  kcoreaddons-devel = %{kf5_version}
-BuildRequires:  kdbusaddons-devel = %{kf5_version}
+BuildRequires:  kconfig-devel = %{_tar_path}
+BuildRequires:  kcoreaddons-devel = %{_tar_path}
+BuildRequires:  kdbusaddons-devel = %{_tar_path}
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel = %{kf5_version}
-BuildRequires:  kiconthemes-devel = %{kf5_version}
-BuildRequires:  knotifications-devel = %{kf5_version}
-BuildRequires:  kservice-devel = %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel = %{kf5_version}
-BuildRequires:  kwindowsystem-devel = %{kf5_version}
+BuildRequires:  ki18n-devel = %{_tar_path}
+BuildRequires:  kiconthemes-devel = %{_tar_path}
+BuildRequires:  knotifications-devel = %{_tar_path}
+BuildRequires:  kservice-devel = %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel = %{_tar_path}
+BuildRequires:  kwindowsystem-devel = %{_tar_path}
 BuildRequires:  libgcrypt-devel = 1.5.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) = 5.2.0
@@ -73,7 +74,9 @@
 %package -n kwalletd5
 Summary:Safe desktop-wide storage for passwords
 Group:  System/GUI/KDE
+%if %{with lang}
 Recommends: kwalletd5-lang
+%endif
 
 %description -n kwalletd5
 This framework contains two main components:
@@ -85,10 +88,8 @@
 Group:  Development/Libraries/KDE
 Requires:   %lname = %{version}
 Requires:   extra-cmake-modules
-Requires:   kconfig-devel = %{kf5_version}
-Requires:   kwindowsystem-devel = %{kf5_version}
 Requires:   libkwalletbackend5-5 = %{version}
-Requires:   pkgconfig(Qt5Core) = 5.2.0
+Requires:   pkgconfig(Qt5Gui) = 5.2.0
 # Was shortly present in K:F5
 Obsoletes:  kwallet-framework-devel = %{version}
 Provides:   kwallet-framework-devel = %{version}
@@ -109,9 +110,11 @@
 
 %install
   %kf5_makeinstall -C build
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
-  %find_lang kwalletd5 kwalletd5.lang
+%if %{with lang}
+%find_lang kwalletd5 kwalletd5.lang
+%endif
 
 %post -n %lname -p /sbin/ldconfig
 
@@ -121,7 +124,9 @@
 
 %postun -n libkwalletbackend5-5 -p /sbin/ldconfig
 
+%if %{with lang}
 %files -n kwalletd5-lang -f kwalletd5.lang
+%endif
 
 %files -n kwalletd5
 %defattr(-,root,root)

++ kwallet-5.8.0.tar.xz - kwallet-5.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-5.8.0/CMakeLists.txt 
new/kwallet-5.9.0/CMakeLists.txt
--- old/kwallet-5.8.0/CMakeLists.txt2015-03-07 15:51:41.0 +0100
+++ new/kwallet-5.9.0/CMakeLists.txt2015-04-04 14:13:50.0 +0200
@@ -3,15 +3,15 @@
 project(KWallet)
 set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
 
-find_package(ECM 1.8.0 REQUIRED NO_MODULE)
+find_package(ECM 5.9.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 set(REQUIRED_QT_VERSION 5.2.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus)
 
-set(KF5_VERSION 5.8.0) # handled by release scripts
-set(KF5_DEP_VERSION 5.8.0) # handled by release scripts
+set(KF5_VERSION 5.9.0) # handled by release scripts
+set(KF5_DEP_VERSION 5.9.0) # handled by release scripts
 

commit gns3-converter for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package gns3-converter for openSUSE:Factory 
checked in at 2015-04-13 20:30:58

Comparing /work/SRC/openSUSE:Factory/gns3-converter (Old)
 and  /work/SRC/openSUSE:Factory/.gns3-converter.new (New)


Package is gns3-converter

Changes:

--- /work/SRC/openSUSE:Factory/gns3-converter/gns3-converter.changes
2014-12-10 23:45:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.gns3-converter.new/gns3-converter.changes   
2015-04-13 20:30:59.0 +0200
@@ -1,0 +2,14 @@
+Sun Apr 12 11:30:19 UTC 2015 - and...@opensuse.org
+
+- New upstream version 1.2.3
+  * Ensure the rotation of a shape is defined as a float, rather than string 
(Fixes #23)
+  * Correct the path used for multi-host VPCS configs Thanks to rednectar for 
spotting this.
+  * Fix running tests on Windows
+  * Fix copying of images when path in topology is relative (Fixes #22)
+  * Copy *.png to the base directory of the new project if exists (Fixes #20)
+  * Copy VPCS configs to the new multi-host vpcs directory (Fixes #21)
+  * Fix shapes and text losing their rotation (Fixes #19)
+  * Add default value for Qemu RAM
+-changed homepage
+
+---

Old:

  gns3-converter-1.2.0.tar.gz

New:

  gns3-converter-1.2.3.tar.gz



Other differences:
--
++ gns3-converter.spec ++
--- /var/tmp/diff_new_pack.JBuNfb/_old  2015-04-13 20:31:00.0 +0200
+++ /var/tmp/diff_new_pack.JBuNfb/_new  2015-04-13 20:31:00.0 +0200
@@ -20,9 +20,9 @@
 Summary:Convert old ini-style GNS3 topologies
 License:GPL-3.0+
 Group:  Productivity/Networking/Other
-Version:1.2.0
+Version:1.2.3
 Release:0
-Url:https://github.com/dlintott/gns3-converter
+Url:https://pypi.python.org/pypi/gns3-converter
 Source0:%{name}-%{version}.tar.gz
 BuildRequires:  python3-devel = 3.3
 BuildRequires:  python3-setuptools

++ gns3-converter-1.2.0.tar.gz - gns3-converter-1.2.3.tar.gz ++
 2187 lines of diff (skipped)




commit rubygem-coffee-script-source for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coffee-script-source for 
openSUSE:Factory checked in at 2015-04-13 20:31:17

Comparing /work/SRC/openSUSE:Factory/rubygem-coffee-script-source (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coffee-script-source.new (New)


Package is rubygem-coffee-script-source

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-coffee-script-source/rubygem-coffee-script-source.changes
2015-02-20 12:01:34.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-coffee-script-source.new/rubygem-coffee-script-source.changes
   2015-04-13 20:31:18.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr 13 04:28:55 UTC 2015 - co...@suse.com
+
+- updated to version 1.9.1.1
+
+---

Old:

  coffee-script-source-1.9.1.gem

New:

  coffee-script-source-1.9.1.1.gem



Other differences:
--
++ rubygem-coffee-script-source.spec ++
--- /var/tmp/diff_new_pack.VSVPXd/_old  2015-04-13 20:31:19.0 +0200
+++ /var/tmp/diff_new_pack.VSVPXd/_new  2015-04-13 20:31:19.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-coffee-script-source
-Version:1.9.1
+Version:1.9.1.1
 Release:0
 %define mod_name coffee-script-source
 %define mod_full_name %{mod_name}-%{version}

++ coffee-script-source-1.9.1.gem - coffee-script-source-1.9.1.1.gem ++
 6656 lines of diff (skipped)




commit python3-raven for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package python3-raven for openSUSE:Factory 
checked in at 2015-04-13 20:31:40

Comparing /work/SRC/openSUSE:Factory/python3-raven (Old)
 and  /work/SRC/openSUSE:Factory/.python3-raven.new (New)


Package is python3-raven

Changes:

New Changes file:

--- /dev/null   2015-03-12 01:14:30.992027505 +0100
+++ /work/SRC/openSUSE:Factory/.python3-raven.new/python3-raven.changes 
2015-04-13 20:31:40.0 +0200
@@ -0,0 +1,10 @@
+---
+Mon Apr 13 13:31:00 UTC 2015 - and...@opensuse.org
+
+- Fixed license tag
+
+---
+Wed Apr  1 16:57:21 UTC 2015 - and...@opensuse.org
+
+- New package 
+

New:

  python3-raven.changes
  python3-raven.spec
  raven-5.2.0.tar.gz



Other differences:
--
++ python3-raven.spec ++
#
# spec file for package python3-raven
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# 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/
#


Name:   python3-raven
Version:5.2.0
Release:0
Url:https://pypi.python.org/pypi/raven
Summary:A client for Sentry
License:BSD-3-Clause
Group:  Development/Languages/Python
Source: 
https://pypi.python.org/packages/source/r/raven/raven-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python3-devel
BuildRequires:  python3-setuptools
BuildRequires:  python3-aiohttp
Requires:   python3-aiohttp
Requires:   python3-certifi
BuildArch:  noarch

%description
Raven is a Python client for Sentry. It provides full out-of-the-box support 
for many
of the popular frameworks, including Django, Flask, and Pylons.
Raven also includes drop-in support for any WSGI-compatible web application.

%prep
%setup -q -n raven-%{version}

%build
python3 setup.py build

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
rm -rf %{buildroot}/%{python3_sitelib}/raven/data/cacert.pem
chmod +x %{buildroot}/%{python3_sitelib}/raven/contrib/zope/__init__.py

%files
%defattr(-,root,root,-)
%doc LICENSE README.rst
%{_bindir}/raven
%{python3_sitelib}/*

%changelog



commit gstreamer-plugins-vaapi for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-plugins-vaapi for 
openSUSE:Factory checked in at 2015-04-13 20:31:33

Comparing /work/SRC/openSUSE:Factory/gstreamer-plugins-vaapi (Old)
 and  /work/SRC/openSUSE:Factory/.gstreamer-plugins-vaapi.new (New)


Package is gstreamer-plugins-vaapi

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-vaapi/gstreamer-plugins-vaapi.changes
  2015-01-09 20:50:05.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-vaapi.new/gstreamer-plugins-vaapi.changes
 2015-04-13 20:31:36.0 +0200
@@ -1,0 +2,40 @@
+Sun Mar 29 15:36:38 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.5.10:
+  + Add support for DRM Render-Nodes for headless operation.
+  + Add support for VA surface buffer sharing with DMABUF and GEM
+handles.
+  + Add support for v4l2src with io-mode={dmabuf,dmabuf-import}.
+  + Drop support for VA/GLX specific APIs in libgstvaapi and
+vaapisink (bgo#736711).
+  + Improvements to H.264 codecs:
+- Fix profile limits for encoding.
+- Fix pixel-aspect-ratio in the encoded stream.
+- Add decoding support for interlaced streams with
+  repeat-first-field (RFF).
+   - Fix decoding of interlaced streams in top-field-first order
+ (TFF) (bgo#739291).
+   - Fix decoding of UK DVB-T2 streams (bgo#739291).
+  + Improvements to plugin elements:
+- Add support for dma_buf imports (Wind Yuan) (bgo#735362).
+- Allow for SW decoding fallbacks with unsupported profiles
+  (bgo#730997).
+- Make vaapipostproc work with SW elements (bgo#720174,
+  bgo#704078).
+- Allow vaapipostproc to integrate with GL downstream elements
+  (bgo#735231).
+- Add support for high-quality scaling to vaapipostproc
+  (scale-method=hq).
+- Fix advanced deinterlacing when it is the unique filter
+  applied.
+- Add GstColorBalance interface to vaapisink (bgo#722390).
+- Implement the GstNavigation interface into vaapisink
+  (bgo#711479).
+- Allow rescaling of X11 window for vaapisink (bgo#711478).
+- Optimizations to vaapidecode thread handling (bgo#734616).
+- Fix deinterlacing from non VA memory buffers (bgo#726270).
+- Fix clearing of subtitle overlay.
+- Fix clearing of vaapipostproc state during restart.
+- Bump soname following upstream changes.
+
+---

Old:

  gstreamer-vaapi-0.5.9.tar.bz2

New:

  gstreamer-vaapi-0.5.10.tar.bz2



Other differences:
--
++ gstreamer-plugins-vaapi.spec ++
--- /var/tmp/diff_new_pack.MZUH63/_old  2015-04-13 20:31:36.0 +0200
+++ /var/tmp/diff_new_pack.MZUH63/_new  2015-04-13 20:31:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gstreamer-plugins-vaapi
 #
-# Copyright (c) 2014 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
@@ -14,10 +14,9 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-# every machine even wihtout the specific hardware.
-#define SKIP_GSTPROVIDES 1
 
-%define package_version 0.5.9
+
+%define package_version 0.5.10
 
 %if 0%{suse_version}  1230
 %bcond_without wayland
@@ -27,23 +26,23 @@
 
 Name:   gstreamer-plugins-vaapi
 BuildRequires:  Mesa-devel
+BuildRequires:  gtk-doc
+BuildRequires:  libtool
+BuildRequires:  libva-devel
+BuildRequires:  pkgconfig
 BuildRequires:  yasm
 BuildRequires:  pkgconfig(gstreamer-1.0)
 BuildRequires:  pkgconfig(gstreamer-plugins-bad-1.0)
 BuildRequires:  pkgconfig(gstreamer-plugins-base-1.0)
-BuildRequires:  pkgconfig(xrender)
 BuildRequires:  pkgconfig(xrandr)
-BuildRequires:  gtk-doc
-BuildRequires:  libtool
-BuildRequires:  libva-devel
-BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(xrender)
 %if %{with wayland}
 BuildRequires:  pkgconfig(wayland-client) = 1.0.0
 %endif
 Summary:Gstreamer VA-API plugins
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Other
-Version:0.5.9
+Version:0.5.10
 Release:0
 Source0:gstreamer-vaapi-%{package_version}.tar.bz2
 Url:http://gitorious.org/vaapi/gstreamer-vaapi
@@ -58,18 +57,18 @@
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
 %if %{with wayland}
-Requires:   libgstvaapi-wayland-1_4-0 = %{version}
+Requires:   libgstvaapi-wayland-1_4-1 = %{version}
 %endif
 
 %description devel
 This package contains all necessary include files and libraries needed
 to develop applications that require these.
 
-%package -n 

commit python-sh for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

Comparing /work/SRC/openSUSE:Factory/python-sh (Old)
 and  /work/SRC/openSUSE:Factory/.python-sh.new (New)


Package is python-sh

Changes:

--- /work/SRC/openSUSE:Factory/python-sh/python-sh.changes  2015-02-05 
10:59:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-sh.new/python-sh.changes 2015-04-13 
20:31:43.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 10 10:05:57 UTC 2015 - apla...@suse.com
+
+- PATCH test-huge-piped-data-fix.patch
+  Partially disable test case
+
+---

New:

  test-huge-piped-data-fix.patch



Other differences:
--
++ python-sh.spec ++
--- /var/tmp/diff_new_pack.TK0ZKW/_old  2015-04-13 20:31:43.0 +0200
+++ /var/tmp/diff_new_pack.TK0ZKW/_new  2015-04-13 20:31:43.0 +0200
@@ -28,6 +28,8 @@
 Patch0: test-coding-fix.patch
 # PATCH-FIX-OPENSUSE test-multiple-pipes-fix.patch -- Partially disable test 
case
 Patch1: test-multiple-pipes-fix.patch
+# PATCH-FIX-OPENSUSE test-huge-piped-data-fix.patch -- Partially disable test 
case
+Patch2: test-huge-piped-data-fix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
@@ -51,6 +53,7 @@
 %setup -q -n sh-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 python setup.py build

++ test-huge-piped-data-fix.patch ++
Index: sh-1.11/test.py
===
--- sh-1.11.orig/test.py
+++ sh-1.11/test.py
@@ -1153,7 +1153,7 @@ for i in range(42):
 stdin.seek(0)
 
 out = tr(tr([:lower:], [:upper:], _in=data), [:upper:], 
[:lower:])
-self.assertTrue(out == data)
+# self.assertTrue(out == data)
 
 
 def test_tty_input(self):



commit orage for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2015-04-13 20:31:06

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


Package is orage

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2015-04-10 
10:20:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2015-04-13 
20:31:07.0 +0200
@@ -1,0 +2,8 @@
+Sun Apr 12 16:21:07 UTC 2015 - g...@opensuse.org
+
+- update to version 4.12.1
+  - bxo#11807: Wrong plugin module name
+  - bxo#11380: Error in manpage
+- drop obsolete orage-fix-plugin-filename.patch
+
+---

Old:

  orage-4.12.0.tar.bz2
  orage-fix-plugin-filename.patch

New:

  orage-4.12.1.tar.bz2



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.k2oGvz/_old  2015-04-13 20:31:08.0 +0200
+++ /var/tmp/diff_new_pack.k2oGvz/_new  2015-04-13 20:31:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   orage
-Version:4.12.0
+Version:4.12.1
 Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
 License:GPL-2.0+
@@ -27,8 +27,6 @@
 Source1:README.SUSE
 # PATCH-FIX-UPSTREAM orage-use-docdir.patch g...@opensuse.org -- Use docdir 
correctly
 Patch0: orage-use-docdir.patch
-# PATCH-FIX-UPSTREAM orage-fix-plugin-filename.patch bxo#11807 
g...@opensuse.org -- FIx plugin filename so that the plugin is found again
-Patch1: orage-fix-plugin-filename.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  perl
@@ -71,7 +69,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 cp %{SOURCE1} .
 sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 

++ orage-4.12.0.tar.bz2 - orage-4.12.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orage-4.12.0/configure new/orage-4.12.1/configure
--- old/orage-4.12.0/configure  2015-04-09 12:43:31.0 +0200
+++ new/orage-4.12.1/configure  2015-04-10 12:26:56.0 +0200
@@ -1,7 +1,7 @@
 #! /bin/sh
 # From configure.in Id.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for orage 4.12.0.
+# Generated by GNU Autoconf 2.69 for orage 4.12.1.
 #
 # Report bugs to xfce4-...@xfce.org.
 #
@@ -596,8 +596,8 @@
 # Identity of this package.
 PACKAGE_NAME='orage'
 PACKAGE_TARNAME='orage'
-PACKAGE_VERSION='4.12.0'
-PACKAGE_STRING='orage 4.12.0'
+PACKAGE_VERSION='4.12.1'
+PACKAGE_STRING='orage 4.12.1'
 PACKAGE_BUGREPORT='xfce4-...@xfce.org'
 PACKAGE_URL=''
 
@@ -1441,7 +1441,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures orage 4.12.0 to adapt to many kinds of systems.
+\`configure' configures orage 4.12.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1512,7 +1512,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of orage 4.12.0:;;
+ short | recursive ) echo Configuration of orage 4.12.1:;;
esac
   cat \_ACEOF
 
@@ -1655,7 +1655,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-orage configure 4.12.0
+orage configure 4.12.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2083,7 +2083,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by orage $as_me 4.12.0, which was
+It was created by orage $as_me 4.12.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2574,7 +2574,7 @@
 
 
 
-ORAGE_VERSION=4.12.0
+ORAGE_VERSION=4.12.1
 am__api_version='1.14'
 
 # Find a good install program.  We prefer a C program (faster),
@@ -16635,7 +16635,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by orage $as_me 4.12.0, which was
+This file was extended by orage $as_me 4.12.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -16701,7 +16701,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-orage config.status 4.12.0
+orage config.status 4.12.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\\$ac_cs_config\\
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit urfkill for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package urfkill for openSUSE:Factory checked 
in at 2015-04-13 20:31:14

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


Package is urfkill

Changes:

--- /work/SRC/openSUSE:Factory/urfkill/urfkill.changes  2014-01-07 
14:45:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.urfkill.new/urfkill.changes 2015-04-13 
20:31:15.0 +0200
@@ -1,0 +2,38 @@
+Wed Apr  8 02:02:44 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 0.5.0
+  * config: implement persistence via an ini file in /var/lib/urfkill 
+  * Implement flight mode 
+  * Add stubs for no session checking (breaks inhibit).
+  * Simplistic port of UrfSessionChecker and UrfSeat to logind
+  * Add new rfkill type: NFC 
+  * Use g_message() rather than g_info() for standard messages.
+  * Update log levels to only display relevant killswitch addition/removal
+and important warnings
+  * Enable logging to syslog, optionally with debug
+  * arbitrator: set newly found devices to the saved persistent state
+  * config: can't assume key_control to be enabled if there is no
+DMI information
+  * Update default config file for persistence.
+  * UrfArbitrator: apply review from lcp for flight mode
+  * UrfConfig: apply review from lcp for persistence
+  * main: handle SIGTERM
+  * arbitrator: save/restore per  *type killswitch state on startup, dispose.
+  * daemon: clean up UrfConfig later
+  * Add persist option to UrfConfig.
+  * Fix build for no session tracking.
+  * Propagate/notify device state changes to UrfKillswitch objects
+  * Fix errors/typos in LoginD port.
+  * Allow selecting the session tracking method at build time
+  * Fix include for UrfSeat
+  * Rename UrfConsolekit to UrfSessionChecker
+  * Rename urf  *seat and urf  *consolekit for generalization
+  * Check glib version for g_type_init()
+  * Add NFC to glib and docs
+  * Don't crash for missing DMI
+  * Add gcc warnings to urfkilld and adjust warning types
+- Use download Url as source
+- Remove urfkill-support-nfc-and-logind.patch; merged upstream
+- Remove redundant %clean section
+
+---

Old:

  urfkill-0.4.0.tar.xz
  urfkill-support-nfc-and-logind.patch

New:

  urfkill-0.5.0.tar.gz



Other differences:
--
++ urfkill.spec ++
--- /var/tmp/diff_new_pack.wHrkMv/_old  2015-04-13 20:31:15.0 +0200
+++ /var/tmp/diff_new_pack.wHrkMv/_new  2015-04-13 20:31:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package urfkill
 #
-# 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
@@ -17,16 +17,14 @@
 
 
 Name:   urfkill
-Version:0.4.0
+Version:0.5.0
 Release:0
 Url:http://github.com/lcp/urfkill
 Summary:A daemon to control radio killswitches
 License:GPL-2.0+
 Group:  System/Daemons
-Source: %{name}-%{version}.tar.xz
+Source: 
https://github.com/lcp/urfkill/archive/%{name}-%{version}.tar.gz
 Patch0: urfkill-change-default-user.patch
-# PATCH-FIX-UPSTREAM urfkill-support-nfc-and-logind.patch bnc#853492 
g...@suse.com -- Add logind support to the daemon
-Patch1: urfkill-support-nfc-and-logind.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -39,7 +37,6 @@
 BuildRequires:  libgudev-1_0-devel
 BuildRequires:  libtool
 BuildRequires:  polkit-devel
-BuildRequires:  xz
 Requires:   polkit
 
 %description
@@ -82,23 +79,18 @@
 http://freedesktop.org/wiki/Software/urfkill
 
 %prep
-%setup -n %{name}-%{version} -q
+%setup -n %{name}-%{name}-%{version} -q
 %patch0 -p1
-%if 0%{?suse_version}  1230
-%patch1 -p1
-%endif
 
 %build
-autoreconf -f
+NOCONFIGURE=1 ./autogen.sh
 %configure\
   --disable-static \
   --libexecdir=%{_libexecdir}/urfkill \
 %if 0%{?_crossbuild}
   --disable-introspection \
 %endif
-%if 0%{?suse_version}  1230
   --with-session-tracking=systemd \
-%endif
   --enable-gtk-doc
 make %{?jobs:-j%jobs}
 
@@ -106,9 +98,6 @@
 %makeinstall
 rm -f %{buildroot}%{_libdir}/*.la
 
-%clean
-rm -rf %{buildroot}
-
 %pre
 getent group urfkill /dev/null || groupadd -r urfkill
 getent passwd urfkill /dev/null || useradd -r -g urfkill -d /var/lib/urfkill 
-s /bin/false -c killswitch control daemon urfkill




commit calibre for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

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

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


Package is calibre

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2015-04-05 
02:04:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2015-04-13 
20:31:32.0 +0200
@@ -1,0 +2,47 @@
+Mon Apr 13 08:21:37 UTC 2015 - corne...@solcon.nl
+
+- Update to version 2.24.0:
+  * New features:
+- E-book viewer: Add an option to not save the bookmarks inside
+  EPUB files, under the Miscellaneous section of the viewer
+  preferences.
+- Manage User Categories: Allow restricting the visible items
+  to only those present in the current Virtual Library (if
+  any).
+- Book details panel: Allow copying full path to ebook files by
+  right clicking on the format link.
+  * Bug Fixes:
+- Edit Book: Fix GIF format images being corrupted when using
+  the builtin image editor to make changes to them.
+- Edit Book: When dragging and dropping files to re-order them
+  in the file browser, fix the final order being dependent on
+  the order the files were selected in.
+- Conversion: Fix error when converting a document that
+  contains an invalid function based CSS selector without
+  parentheses.
+- Edit Book: Fix regression that caused pressing Alt+X to type
+  unicode characters to not work.
+- Device view: Preserve position in list of books when deleting
+  books from the device view.
+- Make the context menu for the book details popup window work
+  the same way as for the book details panel.
+- Get Books: Update amazon store plugin for website changes.
+- PDF Metadata: When choosing between reading metadata from the
+  Info dict and the XMP block, consider both the MetadataData
+  and the ModifyDate in the XMP block, since there exist PDF
+  metadata writing tools that update one and not the other.
+- Fix a regression that caused ebook viewer to remember the
+  state of the Table of Contents panel when quitting on OS X.
+- Prevent Enter key on Manage authors/tags/etc. dialogs from
+  closing the dialog.
+  * Improved News Sources:
+- Le Temps
+- United Daily
+- Liberty Times
+- Apple Daily
+- China Times
+- House News
+- Providence Journal
+- Harvard Business Review
+
+---
@@ -4 +51 @@
-- Update to version 2.23.9:
+- Update to version 2.23.0:

Old:

  calibre-2.23.0.tar.xz

New:

  calibre-2.24.0.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.iWqVNo/_old  2015-04-13 20:31:33.0 +0200
+++ /var/tmp/diff_new_pack.iWqVNo/_new  2015-04-13 20:31:33.0 +0200
@@ -20,7 +20,7 @@
 License:GPL-3.0
 Group:  Productivity/Other
 Name:   calibre
-Version:2.23.0
+Version:2.24.0
 Release:0
 Url:http://calibre-ebook.com
 Source0:
http://download.calibre-ebook.com/%{version}/calibre-%{version}.tar.xz

++ calibre-2.23.0.tar.xz - calibre-2.24.0.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-2.23.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-2.24.0.tar.xz differ: char 26, 
line 1





commit gnome-commander for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package gnome-commander for openSUSE:Factory 
checked in at 2015-04-13 20:31:25

Comparing /work/SRC/openSUSE:Factory/gnome-commander (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-commander.new (New)


Package is gnome-commander

Changes:

--- /work/SRC/openSUSE:Factory/gnome-commander/gnome-commander.changes  
2015-01-26 16:47:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-commander.new/gnome-commander.changes 
2015-04-13 20:31:27.0 +0200
@@ -1,0 +2,9 @@
+Mon Apr 13 10:10:39 UTC 2015 - dims...@opensuse.org
+
+- Add gnome-commander-appdata-translation.patch: Do not handle
+  appdata.xml.in as a config file, but let INTLTOOL_XML_RULE handle
+  it.
+- Add libtool BuildRequires and call to autoreconf, as above patch
+  touches the build system.
+
+---

New:

  gnome-commander-appdata-translation.patch



Other differences:
--
++ gnome-commander.spec ++
--- /var/tmp/diff_new_pack.sAQ8ZK/_old  2015-04-13 20:31:28.0 +0200
+++ /var/tmp/diff_new_pack.sAQ8ZK/_new  2015-04-13 20:31:28.0 +0200
@@ -24,6 +24,8 @@
 Group:  Productivity/File utilities
 Url:http://www.nongnu.org/gcmd/
 Source: 
http://download.gnome.org/sources/gnome-commander/1.4/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnome-commander-appdata-translation.patch bgo#747771 
dims...@opensuse.org -- appdata.xml.in is not a config file, but will be 
handled by INTLTOOL_XML_RULE
+Patch0: gnome-commander-appdata-translation.patch
 BuildRequires:  chmlib-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -32,6 +34,8 @@
 BuildRequires:  libexiv2-devel = 0.14
 BuildRequires:  libgnomeui-devel = 2.4.0
 BuildRequires:  libgsf-devel = 1.12.0
+# Needed for patch0
+BuildRequires:  libtool
 BuildRequires:  libxslt
 BuildRequires:  python-devel = 2.5
 BuildRequires:  taglib-devel = 1.4
@@ -53,9 +57,12 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 translation-update-upstream
 
 %build
+# Needed for patch0
+autoreconf -fiv
 %configure\
--disable-static\
--disable-scrollkeeper

++ gnome-commander-appdata-translation.patch ++
From 11b4018752e9930fa0fa066254552b73513b7a56 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger dims...@opensuse.org
Date: Mon, 13 Apr 2015 12:18:23 +0200
Subject: [PATCH] build: gnome-commander.appdata.xml is no config file (for
 configure)

It will be handled by INTLTOOL_XML_RULE, which also takes care of
merging translations.
---
 configure.ac | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 4c0f174..5070efb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -429,7 +429,6 @@ Makefile
 data/gnome-commander.ebuild
 data/gnome-commander.spec
 data/gnome-commander.desktop.in
-data/gnome-commander.appdata.xml
 data/Makefile
 doc/Makefile
 libgcmd/Makefile
-- 
2.3.3




commit cloud-init for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package cloud-init for openSUSE:Factory 
checked in at 2015-04-13 20:31:47

Comparing /work/SRC/openSUSE:Factory/cloud-init (Old)
 and  /work/SRC/openSUSE:Factory/.cloud-init.new (New)


Package is cloud-init

Changes:

--- /work/SRC/openSUSE:Factory/cloud-init/cloud-init.changes2015-02-27 
10:59:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.cloud-init.new/cloud-init.changes   
2015-04-13 20:31:48.0 +0200
@@ -1,0 +2,51 @@
+Mon Apr 13 08:46:40 UTC 2015 - tbecht...@suse.com
+
+- update to 0.7.6:
+  - open 0.7.6
+  - Enable vendordata on CloudSigma datasource (LP: #1303986)
+  - Poll on /dev/ttyS1 in CloudSigma datasource only if dmidecode says
+we're running on cloudsigma (LP: #1316475) [Kiril Vladimiroff]
+  - SmartOS test: do not require existance of /dev/ttyS1. [LP: #1316597]
+  - doc: fix user-groups doc to reference plural ssh-authorized-keys
+(LP: #1327065) [Joern Heissler]
+  - fix 'make test' in python 2.6
+  - support jinja2 as a templating engine.  Drop the hard requirement on
+cheetah.  This helps in python3 effort. (LP: #1219223)
+  - change install path for systemd files to /lib/systemd/system
+[Dimitri John Ledkov]
+  - change trunk debian packaging to use pybuild and drop cdbs.
+[Dimitri John Ledkov]
+  - SeLinuxGuard: remove invalid check that looked for stat.st_mode in 
os.lstat.
+  - do not write comments in /etc/timezone (LP: #1341710)
+  - ubuntu: provide 'ubuntu-init-switch' module to aid in systemd testing.
+  - status/result json: remove 'end' entry which was always null
+  - systemd: make cloud-init block ssh service startup to guarantee keys
+are generated. [Jordan Evans] (LP: #1333920)
+  - default settings: fix typo resulting in OpenStack and GCE not working
+unless config explicitly provided (LP: #1329583) [Garrett Holmstrom])
+  - fix rendering resolv.conf if no 'options' are provided (LP: #1328953)
+  - docs: fix disk-setup to reference 'table_type' [Rail Aliiev] (LP: #1313114)
+  - ssh_authkey_fingerprints: fix bug that prevented disabling the module.
+(LP: #1340903) [Patrick Lucas]
+  - no longer use pylint as a checker, fix pep8 [Jay Faulkner].
+  - Openstack: do not load some urls twice.
+  - FreeBsd: fix initscripts and add working config file [Harm Weites]
+  - Datasource: fix broken logic to provide hostname if datasource does not
+provide one
+  - Improved and less verbose logging.
+  - resizefs: first check that device is writable.
+  - configdrive: fix reading of vendor data to be like metadata service reader.
+[Jay Faulkner]
+  - resizefs: fix broken background resizing [Jay Faulkner] (LP: #1338614)
+  - cc_grub_dpkg: fix EC2 hvm instances to avoid prompt on grub update.
+(LP: #1336855)
+  - FreeBsd: support config drive datasource [Joseph bajin]
+  - cc_mounts: support creating a swap file
+- Refresh addopenSUSEBase.patch
+- Refresh setupSUSEsysVInit.diff
+- Removed cloudinit-datasources.patch. Applied upstream
+- BuildRequires pkg-config. Needed to find correct systemd unit dir.
+- Add fix-default-systemd-unit-dir.patch . Use better default for
+  systemd system unit dir.
+
+---

Old:

  cloud-init-0.7.5.tar.gz
  cloudinit-datasources.patch

New:

  cloud-init-0.7.6.tar.gz
  fix-default-systemd-unit-dir.patch



Other differences:
--
++ cloud-init.spec ++
--- /var/tmp/diff_new_pack.BxgEs5/_old  2015-04-13 20:31:49.0 +0200
+++ /var/tmp/diff_new_pack.BxgEs5/_new  2015-04-13 20:31:49.0 +0200
@@ -16,7 +16,7 @@
 #
 
 Name:   cloud-init
-Version:0.7.5
+Version:0.7.6
 Release:0
 License:GPL-3.0
 Summary:Cloud node initialization tool
@@ -37,14 +37,16 @@
 Patch6: dynamicInitCmd.diff
 # FIXME suseSetInitCmd.patch send upstream once the SUSE handlers are accepted
 Patch7: suseSetInitCmd.patch
-Patch8: cloudinit-datasources.patch
 Patch9: cloud-init-no-dmidecode-on-ppc64.patch
 Patch10:cloud-init-no-user-lock-if-already-locked.patch
 Patch11:dataSourceOpenNebula.patch
+Patch12:fix-default-systemd-unit-dir.patch
 BuildRequires:  fdupes
 BuildRequires:  filesystem
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
+# pkg-config is needed to find correct systemd unit dir
+BuildRequires:  pkg-config
 Requires:   bash
 Requires:   file
 Requires:   growpart
@@ -131,17 +133,15 @@
 %patch5
 %patch6
 %patch7
-%patch8 -p1
 %patch9 -p1
 %patch10 -p1
 %patch11 -p2
+%patch12
 
 %if 0%{?suse_version} = 1130
 # disable ecdsa for SLE 11 (not available)
 echo ssh_genkeytypes: ['rsa', 'dsa']  %{SOURCE1}
 %endif
-# 

commit crawl for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package crawl for openSUSE:Factory checked 
in at 2015-04-13 20:31:01

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


Package is crawl

Changes:

--- /work/SRC/openSUSE:Factory/crawl/crawl.changes  2015-04-10 
09:53:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.crawl.new/crawl.changes 2015-04-13 
20:31:02.0 +0200
@@ -1,0 +2,11 @@
+Sun Apr 12 14:37:57 UTC 2015 - bem...@gmail.com
+
+- Removed _service, source archive is now attached directly
+
+---
+Sat Apr 11 16:50:46 UTC 2015 - bem...@gmail.com
+
+- Updated crawl to 0.16.1
+- Source archive is now downloaded directly from crawl's website
+
+---

Old:

  stone_soup-0.16.0-nodeps.tar.xz

New:

  stone_soup-0.16.1-nodeps.tar.xz



Other differences:
--
++ crawl.spec ++
--- /var/tmp/diff_new_pack.Qaaa1m/_old  2015-04-13 20:31:04.0 +0200
+++ /var/tmp/diff_new_pack.Qaaa1m/_new  2015-04-13 20:31:04.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   crawl
-Version:0.16.0
+Version:0.16.1
 Release:0
 Summary:Roguelike dungeon exploration game
 License:GPL-2.0+

++ stone_soup-0.16.0-nodeps.tar.xz - stone_soup-0.16.1-nodeps.tar.xz ++
/work/SRC/openSUSE:Factory/crawl/stone_soup-0.16.0-nodeps.tar.xz 
/work/SRC/openSUSE:Factory/.crawl.new/stone_soup-0.16.1-nodeps.tar.xz differ: 
char 27, line 1




commit python-Ming for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package python-Ming for openSUSE:Factory 
checked in at 2015-04-13 20:31:36

Comparing /work/SRC/openSUSE:Factory/python-Ming (Old)
 and  /work/SRC/openSUSE:Factory/.python-Ming.new (New)


Package is python-Ming

Changes:

--- /work/SRC/openSUSE:Factory/python-Ming/python-Ming.changes  2014-08-20 
10:51:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Ming.new/python-Ming.changes 
2015-04-13 20:31:39.0 +0200
@@ -1,0 +2,49 @@
+Sun Apr 12 16:16:53 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to 0.5.1:
+  * Cursor compatibility for Python 3
+- additional changes from 0.5.0:
+  * Compatible with pymongo 2.7
+  * Compatible with Python 3.3 and 3.4
+  * Compatible with PyPy
+  * Fix update_if_not_modified
+  * MIM: support float comparisons
+  * ming.configure now allows any extra params to pass through to
+MongoClient
+- additional changes from 0.4.7:
+  * Add allow_none option to ForeignIdProperty
+- additional changes from 0.4.6:
+  * Fixed issue with if_missing for ForeignIdProperty
+- additional changes from 0.4.5:
+  * avoid extremely long error text
+  * Fixed random generated ObjectId on empty ForeignIdProperty
+- additional changes from 0.4.4:
+  * Revert ForeignIdProperty None optimization
+  * Fix delete event hook signatures
+  * Fix typo when flushing an individual object flagged for deletion
+- additional changes from 0.4.3:
+  * Return result of update_partial()
+  * ManyToMany support relying on a list of ObjectIds
+  * Make RelationProperty writable
+  * Support for all pymongo options in custom_indexes declaration
+  * Permit relationships that point to same model
+  * Fix wrong behavior for MIM find_and_modify new option and add
+test case
+  * ForeignIdProperty None optimization
+- additional changes from 0.4.2:
+  * bool(cursor) now raises an Exception
+  * schema migration now raises the new schema error if both old
+ new are invalid
+  * aggregation methods added to session
+  * MIM: support for indexing multi-valued properties
+  * MIM: forcing numerical keys as strings
+  * MIM: add `manipulate` arg to `insert` for closer pymongo
+compatibility
+- refresh 0001-disable_test_gridfs.patch:
+  * one test added back since it passes
+  * three new tests skipped
+- change source URL to pipy: sourceforge is not up to date
+- add new dependency to python-six
+- quiet the test run to avoid spamming to build log
+
+---

Old:

  Ming-0.4.1.tar.gz

New:

  Ming-0.5.1.tar.gz



Other differences:
--
++ python-Ming.spec ++
--- /var/tmp/diff_new_pack.ZCfye5/_old  2015-04-13 20:31:40.0 +0200
+++ /var/tmp/diff_new_pack.ZCfye5/_new  2015-04-13 20:31:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Ming
 #
-# Copyright (c) 2014 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,13 @@
 
 
 Name:   python-Ming
-Version:0.4.1
+Version:0.5.1
 Release:0
 Summary:Bringing order to Mongo since 2009
 License:MIT
 Group:  Development/Languages/Python
 Url:http://merciless.sourceforge.net
-Source: 
http://downloads.sourceforge.net/project/merciless/%version/Ming-%version.tar.gz
+Source: 
https://pypi.python.org/packages/source/M/Ming/Ming-%version.tar.gz
 # PATCH-FIX-UPSTREAM 0001-disable_test_gridfs.patch sfal...@opensuse.org -- 
Patch disables failing build tests (sf#merciless/bugs/#27)
 Patch0: 0001-disable_test_gridfs.patch
 BuildRequires:  python-FormEncode = 1.2.1
@@ -35,9 +35,11 @@
 BuildRequires:  python-pymongo = 2.4
 BuildRequires:  python-pytz
 BuildRequires:  python-setuptools
+BuildRequires:  python-six = 1.6.1
 Requires:   python-FormEncode = 1.2.1
 Requires:   python-WebOb
 Requires:   python-pymongo = 2.4
+Requires:   python-six = 1.6.1
 Recommends: python-python-spidermonkey = 0.0.10
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
@@ -61,7 +63,7 @@
 
 %if 0%{?suse_version}  1110
 %check
-python setup.py test
+python setup.py -q test
 %endif
 
 %files

++ 0001-disable_test_gridfs.patch ++
--- /var/tmp/diff_new_pack.ZCfye5/_old  2015-04-13 20:31:40.0 +0200
+++ /var/tmp/diff_new_pack.ZCfye5/_new  2015-04-13 20:31:40.0 +0200
@@ -1,7 +1,8 @@
-diff -rupN Ming-0.4.2.old/ming/tests/test_gridfs.py 
Ming-0.4.2/ming/tests/test_gridfs.py
 

commit rubygem-sprockets for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sprockets for 
openSUSE:Factory checked in at 2015-04-13 20:31:15

Comparing /work/SRC/openSUSE:Factory/rubygem-sprockets (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-sprockets.new (New)


Package is rubygem-sprockets

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sprockets/rubygem-sprockets.changes  
2015-02-16 21:09:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sprockets.new/rubygem-sprockets.changes 
2015-04-13 20:31:16.0 +0200
@@ -1,0 +2,24 @@
+Mon Apr 13 05:21:37 UTC 2015 - co...@suse.com
+
+- updated to version 3.0.0
+ * New processor API. Tilt interface is deprecated.
+ * Improved file store caching backend.
+ * MIME Types now accept charset custom charset detecters. Improves support 
for UTF-16/32 files.
+ * Environment#version no longer affects asset digests. Only used for busting 
the asset cache.
+ * Removed builtin support for LESS.
+ * Removed `//= include` directive support.
+ * Deprecated `BundledAsset#to_a`. Use `BundledAsset#included` to access 
debugging subcomponents.
+ * Support circular dependencies. For parity with ES6 modules.
+ * Manifest compilation will no longer generate .gz files by default. [Mixing
+   Content-Encoding and ETags is just a bad
+   idea](https://issues.apache.org/bugzilla/show_bug.cgi?id=39727)
+ * Added linked or referenced assets. When an asset is compiled, any of its 
links will be compiled as well.
+ * Introduce some limitations around enumerating all logical paths. 4.x will 
deprecate it and favor linked manifests for compliation.
+ * Add Asset integrity attribute for Subresource Integrity
+ * Default digest changed to SHA256. Configuring `digest_class` is deprecated.
+ * Rename `Asset#digest` to `Asset#hexdigest`. `Asset#digest` is deprecated 
and will
+   return a raw byte String in 4.x.
+ * Added transitional compatibility flag to `Environment#resolve(path, compat: 
true)`. 2.x mode operates with `compat: true` and 4.x with `compat: false`
+ * `manifest-abc123.json` renamed to `.sprockets-abc123.json`
+
+---

Old:

  sprockets-2.12.3.gem

New:

  sprockets-3.0.0.gem



Other differences:
--
++ rubygem-sprockets.spec ++
--- /var/tmp/diff_new_pack.zFgplI/_old  2015-04-13 20:31:17.0 +0200
+++ /var/tmp/diff_new_pack.zFgplI/_new  2015-04-13 20:31:17.0 +0200
@@ -24,16 +24,16 @@
 #
 
 Name:   rubygem-sprockets
-Version:2.12.3
+Version:3.0.0
 Release:0
 %define mod_name sprockets
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{ruby = 1.9.3}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros = 5
 BuildRequires:  update-alternatives
-Url:http://getsprockets.org/
+Url:https://github.com/rails/sprockets
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Rack-based asset packaging system

++ sprockets-2.12.3.gem - sprockets-3.0.0.gem ++
 10157 lines of diff (skipped)




  1   2   >