commit python3-pyparsing for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "python3-pyparsing"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyparsing/python3-pyparsing.changes  
2016-09-05 21:23:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pyparsing.new/python3-pyparsing.changes 
2016-09-14 23:35:14.0 +0200
@@ -1,0 +2,30 @@
+Mon Sep 12 19:41:14 UTC 2016 - a...@gmx.de
+
+- update to version 2.1.9:
+  * Added class CloseMatch, a variation on Literal which matches
+"close" matches, that is, strings with at most 'n' mismatching
+characters.
+  * Fixed bug in Keyword.setDefaultKeywordChars(), reported by
+Kobayashi Shinji - nice catch, thanks!
+  * Minor API change in pyparsing_common. Renamed some of the common
+expressions to PEP8 format (to be consistent with the other
+pyparsing_common expressions):
++ signedInteger -> signed_integer
++ sciReal -> sci_real
+Also, in trying to stem the API bloat of pyparsing, I've copied
+some of the global expressions and helper parse actions into
+pyparsing_common, with the originals to be deprecated and removed
+in a future release:
++ commaSeparatedList -> pyparsing_common.comma_separated_list
++ upcaseTokens -> pyparsing_common.upcaseTokens
++ downcaseTokens -> pyparsing_common.downcaseTokens
+  * Fixed Python3 compatibility bug when using dict keys() and
+values() in ParseResults.getName().
+  * After some prodding, I've reworked the unitTests.py file for
+pyparsing over the past few releases. It uses some variations on
+unittest to handle my testing style. The test now:
++ auto-discovers its test classes (while maintining their order
+  of definition)
++ suppresses voluminous 'print' output for tests that pass
+
+---

Old:

  pyparsing-2.1.8.tar.gz

New:

  pyparsing-2.1.9.tar.gz



Other differences:
--
++ python3-pyparsing.spec ++
--- /var/tmp/diff_new_pack.VRQ5GB/_old  2016-09-14 23:35:15.0 +0200
+++ /var/tmp/diff_new_pack.VRQ5GB/_new  2016-09-14 23:35:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pyparsing
-Version:2.1.8
+Version:2.1.9
 Release:0
 Url:http://pyparsing.wikispaces.com/
 Summary:Grammar Parser Library for Python

++ pyparsing-2.1.8.tar.gz -> pyparsing-2.1.9.tar.gz ++
 15064 lines of diff (skipped)




commit python3-PyMySQL for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "python3-PyMySQL"

Changes:

--- /work/SRC/openSUSE:Factory/python3-PyMySQL/python3-PyMySQL.changes  
2016-07-28 23:46:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-PyMySQL.new/python3-PyMySQL.changes 
2016-09-14 23:35:10.0 +0200
@@ -1,0 +2,22 @@
+Mon Sep 12 19:38:20 UTC 2016 - a...@gmx.de
+
+- update to version 0.7.9:
+  * Fix PyMySQL stop reading rows when first column is empty string
+(#513) Reverts DEPRECATE_EOF introduced in 0.7.7.
+
+- changes from version 0.7.8:
+  * Revert error message change in 0.7.7.  (SQLAlchemy parses error
+message, #507)
+
+- changes from version 0.7.7:
+  * Add new unicode collation (#498)
+  * Fix conv option is not used for encoding objects.
+  * Experimental support for DEPRECATE_EOF protocol.
+
+- changes from version 0.7.6:
+  * Fix SELECT JSON type cause UnicodeError
+  * Avoid float convertion while parsing microseconds
+  * Warning has number
+  * SSCursor supports warnings
+
+---

Old:

  PyMySQL-0.7.5.tar.gz

New:

  PyMySQL-0.7.9.tar.gz



Other differences:
--
++ python3-PyMySQL.spec ++
--- /var/tmp/diff_new_pack.I45z1z/_old  2016-09-14 23:35:11.0 +0200
+++ /var/tmp/diff_new_pack.I45z1z/_new  2016-09-14 23:35:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-PyMySQL
-Version:0.7.5
+Version:0.7.9
 Release:0
 Summary:Pure Python MySQL Driver
 License:MIT

++ PyMySQL-0.7.5.tar.gz -> PyMySQL-0.7.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyMySQL-0.7.5/CHANGELOG new/PyMySQL-0.7.9/CHANGELOG
--- old/PyMySQL-0.7.5/CHANGELOG 2016-06-28 14:18:40.0 +0200
+++ new/PyMySQL-0.7.9/CHANGELOG 2016-09-03 21:13:57.0 +0200
@@ -1,5 +1,36 @@
 # Changes
 
+## 0.7.9
+
+Release date: 2016-09-03
+
+* Fix PyMySQL stop reading rows when first column is empty string (#513)
+  Reverts DEPRECATE_EOF introduced in 0.7.7.
+
+## 0.7.8
+
+Release date: 2016-09-01
+
+* Revert error message change in 0.7.7.
+  (SQLAlchemy parses error message, #507)
+
+## 0.7.7
+
+Release date: 2016-08-30
+
+* Add new unicode collation (#498)
+* Fix conv option is not used for encoding objects.
+* Experimental support for DEPRECATE_EOF protocol.
+
+## 0.7.6
+
+Release date: 2016-07-29
+
+* Fix SELECT JSON type cause UnicodeError
+* Avoid float convertion while parsing microseconds
+* Warning has number
+* SSCursor supports warnings
+
 ## 0.7.5
 
 Release date: 2016-06-28
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyMySQL-0.7.5/PKG-INFO new/PyMySQL-0.7.9/PKG-INFO
--- old/PyMySQL-0.7.5/PKG-INFO  2016-06-28 14:18:51.0 +0200
+++ new/PyMySQL-0.7.9/PKG-INFO  2016-09-03 21:14:48.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: PyMySQL
-Version: 0.7.5
+Version: 0.7.9
 Summary: Pure Python MySQL Driver
 Home-page: https://github.com/PyMySQL/PyMySQL/
 Author: INADA Naoki
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyMySQL-0.7.5/PyMySQL.egg-info/PKG-INFO 
new/PyMySQL-0.7.9/PyMySQL.egg-info/PKG-INFO
--- old/PyMySQL-0.7.5/PyMySQL.egg-info/PKG-INFO 2016-06-28 14:18:50.0 
+0200
+++ new/PyMySQL-0.7.9/PyMySQL.egg-info/PKG-INFO 2016-09-03 21:14:48.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: PyMySQL
-Version: 0.7.5
+Version: 0.7.9
 Summary: Pure Python MySQL Driver
 Home-page: https://github.com/PyMySQL/PyMySQL/
 Author: INADA Naoki
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyMySQL-0.7.5/PyMySQL.egg-info/SOURCES.txt 
new/PyMySQL-0.7.9/PyMySQL.egg-info/SOURCES.txt
--- old/PyMySQL-0.7.5/PyMySQL.egg-info/SOURCES.txt  2016-06-28 
14:18:51.0 +0200
+++ new/PyMySQL-0.7.9/PyMySQL.egg-info/SOURCES.txt  2016-09-03 
21:14:48.0 +0200
@@ -10,7 +10,6 @@
 PyMySQL.egg-info/PKG-INFO
 PyMySQL.egg-info/SOURCES.txt
 PyMySQL.egg-info/dependency_links.txt
-PyMySQL.egg-info/pbr.json
 PyMySQL.egg-info/top_level.txt
 pymysql/__init__.py
 pymysql/_compat.py
@@ -39,6 +38,7 @@
 pymysql/tests/test_connection.py
 pymysql/tests/test_converters.py
 pymysql/tests/test_cursor.py
+pymysql/tests/test_err.py
 pymysql/tests/test_issues.py
 pymysql/tests/test_load_local.py
 pymysql/tests/test_nextset.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit hawk2 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package hawk2 for openSUSE:Factory checked 
in at 2016-09-14 23:34:44

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


Package is "hawk2"

Changes:

--- /work/SRC/openSUSE:Factory/hawk2/hawk2.changes  2016-06-14 
23:08:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.hawk2.new/hawk2.changes 2016-09-14 
23:34:47.0 +0200
@@ -1,0 +2,63 @@
+Mon Aug 22 13:37:40 UTC 2016 - kgronl...@suse.com
+
+- Detect service status before upgrade (bsc#993055) 
+
+---
+Fri Aug 19 06:59:39 UTC 2016 - kgronl...@suse.com
+
+- Enable hawk service if upgrading from Hawk 1 (bsc#993055) 
+
+---
+Tue Aug 16 14:21:16 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1471356649.a5ecac4:
+  * Skip authenticity token for cib#show to enable dashboard (bsc#989794)
+
+---
+Fri Aug 12 06:58:00 UTC 2016 - kgronl...@suse.com
+
+- Be stricter about requiring web-console 2, not 3 
+
+---
+Tue Aug 09 06:16:02 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1470723261.8166faf:
+  * Update translations (bsc#984336)
+
+---
+Sat Jul 30 23:23:43 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1469920946.db7b726:
+  * Expose OPTIONS route for /cib/ (bsc#989794)
+  * DOC: Update README and generate table of content (#69)
+  * Run puma via bundle exec to locate gems correctly
+
+---
+Wed Jul 13 16:49:25 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1468428505.0135e38:
+  * Don't use Rails titleize method in wizards (bsc#987696)
+  * Update translations (bsc#984336)
+  * Pass correct context to grant/revoke popup (bsc#987860)
+
+---
+Tue Jul 12 13:02:14 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1468326669.6b3a189:
+- Drop merged patches:
+  * Remove 0001-Set-Content-Security-Policy-to-frame-ancestors-self-.patch
+  * Remove 0002-Call-correct-method-to-revoke-ticket-bsc-987860.patch
+
+---
+Tue Jul 12 08:50:09 UTC 2016 - kgronl...@suse.com
+
+- Call correct method to revoke ticket (bsc#987860)
+- Add 0002-Call-correct-method-to-revoke-ticket-bsc-987860.patch 
+
+---
+Tue Jul  5 17:24:09 UTC 2016 - kgronl...@suse.com
+
+- Set Content-Security-Policy to frame-ancestors 'self' (bsc#984619)
+- Add 0001-Set-Content-Security-Policy-to-frame-ancestors-self-.patch
+
+---

Old:

  hawk2-2.0.0+git.1465754567.b838c7a.tar.bz2

New:

  hawk2-2.0.0+git.1471356649.a5ecac4.tar.bz2



Other differences:
--
++ hawk2.spec ++
--- /var/tmp/diff_new_pack.jEB80x/_old  2016-09-14 23:34:49.0 +0200
+++ /var/tmp/diff_new_pack.jEB80x/_new  2016-09-14 23:34:49.0 +0200
@@ -28,16 +28,18 @@
 %definepkg_group   System Environment/Daemons
 %endif
 
+#%%define bundle_gems 0
+
 %definegname   haclient
 %defineuname   hacluster
 
-%define version_unconverted 2.0.0+git.1465754567.b838c7a
+%define version_unconverted 2.0.0+git.1471356649.a5ecac4
 
 Name:   hawk2
 Summary:HA Web Konsole
 License:GPL-2.0
 Group:  %{pkg_group}
-Version:2.0.0+git.1465754567.b838c7a
+Version:2.0.0+git.1471356649.a5ecac4
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2
@@ -102,7 +104,7 @@
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:thor) >= 0.19
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:tilt:1.4)
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:uglifier)
-BuildRequires:  rubygem(%{rb_default_ruby_abi}:web-console) >= 2.1
+BuildRequires:  rubygem(%{rb_default_ruby_abi}:web-console:2) >= 2.1
 
 %if 0%{?bundle_gems}
 %else
@@ -208,6 +210,8 @@
 %verify_permissions -e %{_sbindir}/hawk_invoke
 
 %pre
+systemctl is-enabled hawk.service 2>/dev/null | grep enabled >/dev/null && 
touch /var/tmp/%name-%version-service-enabled
+systemctl is-active hawk.service 2>/dev/null | grep active >/dev/null && touch 
/var/tmp/%name-%version-service-active
 %service_add_pre hawk.service
 
 %post
@@ -221,6 +225,10 @@
 %postun
 %service_del_postun hawk.service
 
+%triggerpostun -- 

commit python-tables for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package python-tables for openSUSE:Factory 
checked in at 2016-09-14 23:34:51

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


Package is "python-tables"

Changes:

--- /work/SRC/openSUSE:Factory/python-tables/python-tables.changes  
2016-02-03 10:19:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-tables.new/python-tables.changes 
2016-09-14 23:34:53.0 +0200
@@ -1,0 +2,46 @@
+Thu Aug 25 17:49:47 UTC 2016 - toddrme2...@gmail.com
+
+- hdf5_18 has been renamed to hdf5-1_8.
+
+---
+Tue Aug 16 15:37:55 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 3.2.3.1:
+  * Fixed issues with pip install.
+- update to version 3.2.3:
+  * Improvements
++ It is now possible to use HDF5 with the new shared library
+  naming scheme (>= 1.8.10, hdf5.dll instead of hdf5dll.dll) on
+  Windows (gh-540). Thanks to Tadeu Manoel.
++ Now :program: ptdump sorts output by node name and does not
+  print a backtrace if file cannot be opened. Thanks to Zbigniew
+  Jędrzejewski-Szmek.
+  * Bugs fixed
++ Only run tables.tests.test_basics.UnicodeFilename if the
+  filesystem encoding is utf-8. Closes gh-485.
++ Add lib64 to posix search path. (closes gh-507) Thanks to Mehdi
+  Sadeghi.
++ Ensure cache entries are removed if fewer than 10 (closes
+  gh-529). Thanks to Graham Jones.
++ Fix segmentation fault in a number of test cases that use
+  index.Index (closes gh-532 and gh-533). Thanks to Diane Trout.
++ Fixed the evaluation of transcendental functions when numexpr is
+  compiled with VML support (closes gh-534, PR #536). Thanks to
+  Tom Kooij.
++ Make sure that index classes use buffersizes that are a multiple
+  of chunkshape[0] (closes gh-538, PR #538). Thanks to Tom Kooij.
++ Ensure benchmark paths exist before benchmarks are executed (PR
+  #544). Thanks to rohitjamuar.
+  * Other changes
++ Minimum Cython version is now v0.21
+- specfile:
+  * add python-py-cpuinfo to build requirements
+  * depend on hdf5_18-devel, since pytables is not compatible with
+hdf5 >= 1.10
+
+---
+Mon Aug 15 14:51:56 UTC 2016 - toddrme2...@gmail.com
+
+- Fix update-alternatives implementation.
+
+---

Old:

  tables-3.2.2.tar.gz

New:

  tables-3.2.3.1.tar.gz



Other differences:
--
++ python-tables.spec ++
--- /var/tmp/diff_new_pack.Vh10vA/_old  2016-09-14 23:34:54.0 +0200
+++ /var/tmp/diff_new_pack.Vh10vA/_new  2016-09-14 23:34:54.0 +0200
@@ -17,16 +17,16 @@
 
 
 Name:   python-tables
-Version:3.2.2
+Version:3.2.3.1
 Release:0
 Summary:Hierarchical datasets for Python
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:http://www.pytables.org/
-Source0:
https://pypi.python.org/packages/source/t/tables/tables-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/t/tables/tables-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  hdf5-devel >= 1.8.10
+BuildRequires:  hdf5-1_8-devel >= 1.8.10
 BuildRequires:  libbz2-devel
 BuildRequires:  lzo-devel
 BuildRequires:  python-Cython >= 0.13
@@ -34,15 +34,15 @@
 BuildRequires:  python-devel >= 2.6
 BuildRequires:  python-numexpr >= 2.4
 BuildRequires:  python-numpy-devel >= 1.7.1
+BuildRequires:  python-py-cpuinfo
 BuildRequires:  python-setuptools
-Requires:   hdf5 >= 1.8.10
 Requires:   python-blosc
 Requires:   python-numexpr >= 2.4
 Requires:   python-numpy >= 1.7.1
 Recommends: bzip2
 Recommends: lzo
 Requires(post): update-alternatives
-Requires(postun): update-alternatives
+Requires(preun): update-alternatives
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
@@ -79,20 +79,18 @@
 for p in pt2to3 ptdump ptrepack pttree ; do
 mv %{buildroot}%{_bindir}/$p %{buildroot}%{_bindir}/$p-%{py_ver}
 ln -s -f %{_sysconfdir}/alternatives/$p %{buildroot}%{_bindir}/$p
-# create a dummy target for /etc/alternatives/$p
-touch %{buildroot}%{_sysconfdir}/alternatives/$p
 done
 
 %post
-"%_sbindir/update-alternatives" \
+%_sbindir/update-alternatives \
--install %{_bindir}/pt2to3 pt2to3 %{_bindir}/pt2to3-%{py_ver} 30 \
--slave 

commit sfml2 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package sfml2 for openSUSE:Factory checked 
in at 2016-09-14 23:34:54

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


Package is "sfml2"

Changes:

--- /work/SRC/openSUSE:Factory/sfml2/sfml2.changes  2015-10-06 
13:24:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.sfml2.new/sfml2.changes 2016-09-14 
23:34:59.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep  1 16:09:06 UTC 2016 - r...@fthiessen.de
+
+- Update to version 2.4.0
+
+---
+Sun Jul 17 09:09:56 UTC 2016 - jeng...@inai.de
+
+- Update summary, trim description
+- Enable ogg and vorbis dependencies explicitly
+
+---

Old:

  SFML-2.3.2.tar.gz

New:

  SFML-2.4.0.tar.gz



Other differences:
--
++ sfml2.spec ++
--- /var/tmp/diff_new_pack.h9SVeb/_old  2016-09-14 23:35:00.0 +0200
+++ /var/tmp/diff_new_pack.h9SVeb/_new  2016-09-14 23:35:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sfml2
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,34 +16,33 @@
 #
 
 
-%define so_ver -2_3
-
+%define so_ver -2_4
 Name:   sfml2
-Version:2.3.2
+Version:2.4.0
 Release:0
-Summary:Free multimedia C++ API
+Summary:C++ multimedia library with access to input, sound and display
 License:Zlib
 Group:  Development/Libraries/C and C++
 Url:http://www.sfml-dev.org/
-# Source: 
https://github.com/SFML/SFML/archive/%%{version}/SFML-%%{version}.tar.gz
-Source0:SFML-%{version}.tar.gz
+Source0:
https://github.com/SFML/SFML/archive/%{version}/SFML-%{version}.tar.gz
 Source1:baselibs.conf
 BuildRequires:  cmake
 BuildRequires:  dos2unix
 BuildRequires:  doxygen
-%if 0%{?suse_version}
 BuildRequires:  fdupes
-%endif
-BuildRequires:  freetype2-devel
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-BuildRequires:  libudev-devel
-BuildRequires:  openal-soft-devel
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(flac)
+BuildRequires:  pkgconfig(freetype2)
 BuildRequires:  pkgconfig(gl)
 BuildRequires:  pkgconfig(glu)
+BuildRequires:  pkgconfig(libudev)
+BuildRequires:  pkgconfig(ogg)
+BuildRequires:  pkgconfig(openal)
 BuildRequires:  pkgconfig(vorbis)
+BuildRequires:  pkgconfig(vorbisenc)
+BuildRequires:  pkgconfig(vorbisfile)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcb-image)
 BuildRequires:  pkgconfig(xrandr)
@@ -51,18 +50,19 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-SFML is a free multimedia C++ API that provides you low and high level access 
to graphics, input, audio, etc.
-SFML is a portable and easy to use multimedia API written in C++. You can see 
it as a modern, object-oriented alternative to SDL.
-SFML is composed of several packages to perfectly suit your needs. You can use 
SFML as a minimal windowing system to interface with OpenGL, or as a 
fully-featured multimedia library for building games or interactive programs.
+SFML is a multimedia API that provides access to graphics, input,
+audio, etc. similar to SDL.
 
 %package -n lib%{name}%{so_ver}
 Summary:Free multimedia C++ API
 Group:  Development/Libraries/C and C++
 
 %description -n lib%{name}%{so_ver}
-SFML is a free multimedia C++ API that provides you low and high level access 
to graphics, input, audio, etc.
-SFML is a portable and easy to use multimedia API written in C++. You can see 
it as a modern, object-oriented alternative to SDL.
-SFML is composed of several packages to perfectly suit your needs. You can use 
SFML as a minimal windowing system to interface with OpenGL, or as a 
fully-featured multimedia library for building games or interactive programs.
+SFML is a multimedia API that provides access to graphics, input,
+audio, etc., and may be seen as an object-oriented alternative to
+SDL. It can be used as a minimal windowing system to interface with
+OpenGL, or as a multimedia library for building games and interactive
+programs.
 
 %package devel
 Summary:SFML development files
@@ -72,9 +72,14 @@
 Conflicts:  sfml-devel
 
 %description devel
-SFML is a free multimedia C++ API that provides you low and high level access 
to graphics, input, audio, etc.
-SFML is a portable and easy to use multimedia API written in C++. You can see 
it as a modern, 

commit 2ping for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package 2ping for openSUSE:Factory checked 
in at 2016-09-14 23:34:00

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


Package is "2ping"

Changes:

--- /work/SRC/openSUSE:Factory/2ping/2ping.changes  2016-07-30 
00:26:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.2ping.new/2ping.changes 2016-09-14 
23:34:02.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 29 09:06:35 UTC 2016 - jeng...@inai.de
+
+- Make rpmlint happy by avoiding installation in %build.
+
+---



Other differences:
--
++ 2ping.spec ++
--- /var/tmp/diff_new_pack.7RIjXi/_old  2016-09-14 23:34:03.0 +0200
+++ /var/tmp/diff_new_pack.7RIjXi/_new  2016-09-14 23:34:03.0 +0200
@@ -42,12 +42,12 @@
 
 %build
 python setup.py build
-install -d -m 0755 %{buildroot}%{_mandir}/man1
-install -m 0644 doc/2ping.1 %{buildroot}%{_mandir}/man1/2ping.1
-install -m 0644 doc/2ping.1 %{buildroot}%{_mandir}/man1/2ping6.1
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+install -d -m 0755 %{buildroot}%{_mandir}/man1
+install -m 0644 doc/2ping.1 %{buildroot}%{_mandir}/man1/2ping.1
+install -m 0644 doc/2ping.1 %{buildroot}%{_mandir}/man1/2ping6.1
 
 %check
 python setup.py test




commit openttd for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package openttd for openSUSE:Factory checked 
in at 2016-09-14 23:34:03

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


Package is "openttd"

Changes:

--- /work/SRC/openSUSE:Factory/openttd/openttd.changes  2016-06-19 
11:08:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.openttd.new/openttd.changes 2016-09-14 
23:34:07.0 +0200
@@ -1,0 +2,11 @@
+Sat Jul 16 08:42:48 UTC 2016 - mailaen...@opensuse.org
+
+- Update to version 1.6.1 (see changelog.txt)
+- Drop openttd-gcc5.patch as it is not required anymore.
+- Add gcc-version-detection.patch in collaboration with upstream.
+- Add a man page for the dedicated server binary.
+- Remove unnecessary desktop category macros.
+- Use standard post macros for icons and starters.
+- Eliminate duplicate files using fdupes.
+
+---

Old:

  openttd-1.5.3-source.tar.xz
  openttd-gcc5.patch

New:

  gcc-version-detection.patch
  openttd-1.6.1-source.tar.xz
  openttd.appdata.xml



Other differences:
--
++ openttd.spec ++
--- /var/tmp/diff_new_pack.islewO/_old  2016-09-14 23:34:09.0 +0200
+++ /var/tmp/diff_new_pack.islewO/_new  2016-09-14 23:34:09.0 +0200
@@ -18,17 +18,22 @@
 
 
 Name:   openttd
-Version:1.5.3
+Version:1.6.1
 Release:0
 Summary:An open source clone of Chris Sawyer's Transport Tycoon Deluxe
 License:GPL-2.0
 Group:  Amusements/Games/Strategy/Other
 Url:http://www.openttd.org
 Source: 
http://binaries.openttd.org/releases/%{version}/%{name}-%{version}-source.tar.xz
-Patch0: openttd-gcc5.patch
+# PATCH-FEATURE-UPSTREAM https://bugs.openttd.org/task/6490
+Source2:openttd.appdata.xml
+# PATCH-FIX-UPSTREAM https://bugs.openttd.org/task/6487
+Patch0: gcc-version-detection.patch
 BuildRequires:  SDL-devel
+BuildRequires:  fdupes
 BuildRequires:  fontconfig-devel
-BuildRequires:  gcc-c++
+BuildRequires:  gcc-c++ > 3.3
+BuildRequires:  hicolor-icon-theme
 BuildRequires:  libicu-devel
 BuildRequires:  libpng-devel
 BuildRequires:  pkgconfig
@@ -53,7 +58,6 @@
 %else
 BuildRequires:  desktop-file-utils
 BuildRequires:  grfcodec
-Requires:   hicolor-icon-theme
 %endif
 %if 0%{?suse_version} || 0%{?mdkversion}
 Recommends: openttd-openmsx
@@ -137,23 +141,21 @@
 make %{?_smp_mflags} VERBOSE=1
 
 %install
-# install the dedicated binary
+# install the dedicated server
 install -D -m0755 dedicated/openttd %{buildroot}%{_bindir}/%{name}-dedicated
-# install the gui binary
+install -D -m0644 dedicated/man/openttd.6.gz 
%{buildroot}%{_mandir}/man6/%{name}-dedicated.6.gz
+
+# install the game
 make install INSTALL_DIR=%{buildroot} VERBOSE=1
 
-%if 0%{?suse_version}
-%suse_update_desktop_file -r %{name} Game StrategyGame
-%else
-%if 0%{?fedora} || 0%{?mdkversion} || 0%{?rhel_version} >= 600 || 
0%{?centos_version} >= 600
-desktop-file-install --dir=%{buildroot}%{_datadir}/applications \
---add-category=StrategyGame \
-media/openttd.desktop
-%endif
-%endif
+mkdir -p %{buildroot}%{_datadir}/appdata
+install -D -m0644 %{S:2} %{buildroot}%{_datadir}/appdata/openttd.appdata.xml
+
+%fdupes %{buildroot}%{_datadir}
 
 %post
-touch --no-create %{_datadir}/icons/hicolor >/dev/null 2>&1 || :
+%desktop_database_post
+%icon_theme_cache_post
 
 %post dedicated
 rm -f %{_bindir}/%{name}
@@ -165,18 +167,15 @@
 fi
 
 %postun
-if [ "$1" -eq 0 ] ; then
-touch --no-create %{_datadir}/icons/hicolor >/dev/null 2>&1
-gtk-update-icon-cache %{_datadir}/icons/hicolor >/dev/null 2>&1 || :
-fi
-
-%posttrans
-gtk-update-icon-cache %{_datadir}/icons/hicolor >/dev/null 2>&1 || :
+%desktop_database_postun
+%icon_theme_cache_postun
 
 %files
 %defattr(-, root, root)
 %{_bindir}/%{name}
 %{_datadir}/applications/%{name}.desktop
+%dir %{_datadir}/appdata/
+%{_datadir}/appdata/openttd.appdata.xml
 %{_datadir}/icons/hicolor
 %{_datadir}/pixmaps/%{name}.32.xpm
 %{_mandir}/man6/%{name}.6.*
@@ -184,6 +183,7 @@
 %files dedicated
 %defattr(-, root, root)
 %{_bindir}/%{name}-dedicated
+%{_mandir}/man6/%{name}-dedicated.6.*
 
 %files data
 %defattr(-, root, root)

++ gcc-version-detection.patch ++
>From f7a7f141d3086c288746436eab98b89938b17519 Mon Sep 17 00:00:00 2001
From: frosch 
Date: Sun, 17 Jul 2016 11:10:21 +
Subject: [PATCH] (svn r27616) -Codechange [FS#6487]: [Build] Change the GCC
 version detection so that it works with two-digit and truncated versions.

---
 config.lib | 32 +---
 1 file changed, 17 insertions(+), 15 deletions(-)

diff --git a/config.lib b/config.lib

commit nload for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "nload"

Changes:

New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:Factory/.nload.new/nload.changes 2016-09-14 
23:33:51.0 +0200
@@ -0,0 +1,34 @@
+---
+Thu Jul 14 07:26:58 UTC 2016 - adam.ma...@suse.de
+
+- use standard SPDX license names in spec License field
+- GNU_address_update.diff:
+  * update GNU foundation address in COPYING to current
+
+---
+Thu Jun 30 10:39:07 UTC 2016 - adam.ma...@suse.de
+
+- replace nload-ncurses.patch with form_h_paths.diff:
+  There is no need to hardcoded these paths when we can detect them
+  propertly and send patch upstream.
+- simplify spec file
+
+---
+Sun Feb 12 16:53:18 UTC 2012 - pascal.ble...@opensuse.org
+
+- update to 0.7.4:
+
+---
+Sun Jun 12 20:47:38 UTC 2011 - pascal.ble...@opensuse.org
+
+- update to 0.7.3:
+  * fix calculation of traffic and data units (fixes Debian bug #586943)
+  * fix memory leak in BSD network device detection
+  * workaround for faulty newwin() in ncurses 5.8
+  * correctly escape minus signs in man page
+
+---
+Tue Apr 28 00:00:00 UTC 2009 - cgoncal...@opensuse.org
+
+- initial release (version 0.7.2)
+

New:

  GNU_address_update.diff
  form_h_paths.diff
  nload-0.7.4.tar.gz
  nload.changes
  nload.spec



Other differences:
--
++ nload.spec ++
# Copyright (c) 2012 Pascal Bleser 
#
# 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/

# vim: set ts=4 sw=4 et:

Name:   nload
BuildRequires:  gcc-c++
BuildRequires:  ncurses-devel
BuildRequires:  automake
BuildRequires:  autoconf
Url:http://www.roland-riegel.de/nload/
Version:0.7.4
Release:0
License:GPL-2.0+
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
Group:  Productivity/Networking/Diagnostic
Summary:Monitors network traffic and bandwidth usage
Source: http://www.roland-riegel.de/nload/nload-%{version}.tar.gz
Patch1: form_h_paths.diff
Patch2: GNU_address_update.diff

%description
nload is a console application which monitors network traffic and bandwidth
usage in real time. It visualizes the in- and outgoing traffic using two graphs
and provides additional info like total amount of transfered data and min/max
network usage.

%prep
%setup -q
%patch1 -p1
%patch2 -p1

%build
./run_autotools
%configure
make %{?_smp_flags}

%install
%makeinstall

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

%changelog

++ GNU_address_update.diff ++
Index: nload-0.7.4/COPYING
===
--- nload-0.7.4.orig/COPYING
+++ nload-0.7.4/COPYING
@@ -1,8 +1,8 @@
GNU GENERAL PUBLIC LICENSE
   Version 2, June 1991
 
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-  675 Mass Ave, Cambridge, MA 02139, USA
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
++ form_h_paths.diff ++
Index: nload-0.7.4/configure.in
===
--- nload-0.7.4.orig/configure.in
+++ nload-0.7.4/configure.in
@@ -75,13 +75,16 @@ AC_CHECK_LIB(form, new_form)
 
 dnl Checks for header files.
 AC_HEADER_STDC
-AC_CHECK_HEADERS([limits.h stdlib.h string.h unistd.h curses.h form.h math.h 
sys/param.h sys/socket.h sys/time.h sys/ioctl.h arpa/inet.h 

commit glfw for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package glfw for openSUSE:Factory checked in 
at 2016-09-14 23:34:22

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


Package is "glfw"

Changes:

--- /work/SRC/openSUSE:Factory/glfw/glfw.changes2016-05-25 
21:28:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.glfw.new/glfw.changes   2016-09-14 
23:34:25.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug 11 17:05:34 UTC 2016 - r...@fthiessen.de
+
+- Update to new upstream release 3.2
+
+---
+Sun Jul 17 08:16:16 UTC 2016 - jeng...@inai.de
+
+- Trim irrelevant parts from %description
+
+---

Old:

  3.1.2.tar.gz

New:

  3.2.tar.gz



Other differences:
--
++ glfw.spec ++
--- /var/tmp/diff_new_pack.wkIdUP/_old  2016-09-14 23:34:26.0 +0200
+++ /var/tmp/diff_new_pack.wkIdUP/_new  2016-09-14 23:34:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package glfw
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,28 +15,25 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+%define sover  3
 %if 0%{?is_opensuse}
 %bcond_without geany
 %else
 %bcond_with geany
 %endif
 Name:   glfw
-Version:3.1.2
+Version:3.2
 Release:0
-Summary:Portable framework for OpenGL application development
+Summary:Framework for OpenGL application development
 License:Zlib
 Group:  Development/Libraries/C and C++
-%define sover  3
 Url:http://www.glfw.org/
-
-Source: https://github.com/glfw/glfw/archive/%version.tar.gz
+Source: https://github.com/glfw/glfw/archive/%{version}.tar.gz
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
-%if %{with geany}
-BuildRequires:  geany
-%endif
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(gl)
 BuildRequires:  pkgconfig(glu)
 BuildRequires:  pkgconfig(xcursor)
@@ -44,34 +41,37 @@
 BuildRequires:  pkgconfig(xinerama)
 BuildRequires:  pkgconfig(xrandr)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %{with geany}
+BuildRequires:  geany
+%endif
 
 %description
-GLFW is a free, Open Source, portable framework for OpenGL application
-development. In short, it is a single library providing a powerful,
-portable API for otherwise operating system specific tasks such as opening
-an OpenGL window, and reading keyboard, time, mouse and joystick input.
+GLFW is a framework for OpenGL application development. It is a
+single library providing a powerful, portable API for otherwise
+operating system specific tasks such as opening an OpenGL window, and
+reading keyboard, time, mouse and joystick input.
 
 %package -n libglfw%{sover}
-Summary:Portable framework for OpenGL application development
+Summary:Framework for OpenGL application development
 Group:  System/Libraries
 
 %description -n libglfw%{sover}
-GLFW is a free, Open Source, portable framework for OpenGL application
-development. In short, it is a single library providing a powerful,
-portable API for otherwise operating system specific tasks such as opening
-an OpenGL window, and reading keyboard, time, mouse and joystick input.
+GLFW is a framework for OpenGL application development. It is a
+single library providing a powerful, portable API for otherwise
+operating system specific tasks such as opening an OpenGL window, and
+reading keyboard, time, mouse and joystick input.
 
 %package -n libglfw-devel
-Summary:Portable framework for OpenGL application development
+Summary:Development files for GLFW, an OpenGL application framework
 Group:  Development/Libraries/C and C++
 Requires:   cmake
 Requires:   libglfw%{sover} = %{version}
 
 %description -n libglfw-devel
-GLFW is a free, Open Source, portable framework for OpenGL application
-development. In short, it is a single library providing a powerful,
-portable API for otherwise operating system specific tasks such as opening
-an OpenGL window, and reading keyboard, time, mouse and joystick input.
+GLFW is a framework for OpenGL application development. It is a
+single library providing a powerful, portable API for otherwise
+operating system specific tasks such as opening an OpenGL window, and
+reading keyboard, time, mouse and joystick input.
 
 %prep
 %setup -q
@@ -81,19 

commit gcompris-qt for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package gcompris-qt for openSUSE:Factory 
checked in at 2016-09-14 23:34:17

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


Package is "gcompris-qt"

Changes:

New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:Factory/.gcompris-qt.new/gcompris-qt.changes 
2016-09-14 23:34:21.0 +0200
@@ -0,0 +1,111 @@
+---
+Mon Aug  8 19:44:59 UTC 2016 - br...@ioda-net.ch
+
+- Update to last bugfix enhancement upstream revision 0.61
+  Complete release changes at http://gcompris.net/news-en.html
+  + New activities are:
+baby_word_processor
+tangram 
+explore_momuments
+graph_coloring 
+land_safe 
+photo_hunter
+  + Updated images for chess, hangman and horizontal/vertical 
+reading activities along with the gcompris logo.
+  + Lots of little fixes/improvements have been done (storing and 
+restoring the window's width/height at start-up, docbook 
+updated, levels/images bonus, adding an internal dataset for 
+words games so that we no more expect the network to run 
+GCompris.
+  + Translation side 17 languages fully supported: 
+Belarusian, British English, Brazilian Portuguese, Catalan, 
+Catalan (Valencian), Chinese Simplified, Dutch, French, 
+Galician, Italian, Norwegian Nynorsk, Polish, Portuguese, 
+Romanian, Spanish, Swedish, Ukrainian.
+  + some partially: Breton (88%), Chinese Traditional (97%), 
+Estonian (82%), Finnish (74%), German (93%), Russian (83%), 
+Slovak (76%), Slovenian (82%), Turkish (82%)
+
+---
+Wed Jul 27 18:54:53 UTC 2016 - jeng...@inai.de
+
+- Split voices off to separate SRPM
+- Rename -translations subpackage to -lang
+
+---
+Fri Jul 22 17:33:22 UTC 2016 - jeng...@inai.de
+
+- Set data file subpackages to noarch. Trim long description.
+
+---
+Sun Jul 17 19:41:55 UTC 2016 - br...@ioda-net.ch
+
+- Added also as sources in spec
+  + gcompris-qt-rpmlintrc
+  + fetch_voices.sh 
+
+---
+Tue Jul  5 17:29:46 UTC 2016 - br...@ioda-net.ch
+
+- Fixed definitively upstream src url checked with obs service. 
+
+---
+Sun Jul  3 15:11:47 UTC 2016 - br...@ioda-net.ch
+
+- Packaging : 
+  + fix upstream url source 
+  + Remove second %changelog
+  + Add rpmlintrc (man page for binary)
+- Refresh voices.tar.xz with recent upstream updates
+
+---
+Wed May 25 13:31:29 UTC 2016 - br...@ioda-net.ch
+
+- Update to upstream 0.60 new version 
+- remove merged upstream-fix-compilation-on-openSUSE.patch
+
+---
+Wed Jan 20 11:01:41 UTC 2016 - br...@ioda-net.ch
+
+- Added upstream patch fixing build errors on 13.2
+  upstream-fix-compilation-on-openSUSE.patch
+
+---
+Mon Jan 18 13:28:07 UTC 2016 - br...@ioda-net.ch
+
+- Update to upstream 0.52 new version
+   It includes all the little patches and improvements from master (
+   without new activities or features). Most important is the 
+   lang activity that was not available in French.
+- Remove upstream merged patches 
+  add-option-to-disable-qml-box2d-module-and-depending-activites.patch
+  robustify_Qt-plugin_and_qml-path_detection.patch 
+- Refreshed content of voices-ogg
+
+---
+Sat Jan  2 09:56:18 UTC 2016 - br...@ioda-net.ch
+
+- Added upstream patch for Box2D qml-box2d detection
+  robustify_Qt-plugin_and_qml-path_detection.patch 
+
+---
+Sun Dec 27 16:00:52 UTC 2015 - br...@ioda-net.ch
+
+- Update to new upstream 0.50 release
+- Added add-option-to-disable-qml-box2d-module-and-depending\
+   -activites.patch in case qml-box2d is not available
+- Recreated voices tar.xz for 0.50 version
+- Upstream move to tar.xz format
+- Added deps to libBox2D-devel
+
+---
+Sat Sep 12 15:55:31 UTC 2015 - br...@ioda-net.ch
+
+- Initial packaging for obs for gcompris-qt the new qt based. 
+- The packaging is done by splitting translations, activities, and
+  voices from the main binaries.
+  Activities is the only one required package for main build.
+- Translations allow people to run gcompris-qt in foreign 

commit perl-File-ShareDir-Install for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package perl-File-ShareDir-Install for 
openSUSE:Factory checked in at 2016-09-14 23:34:08

Comparing /work/SRC/openSUSE:Factory/perl-File-ShareDir-Install (Old)
 and  /work/SRC/openSUSE:Factory/.perl-File-ShareDir-Install.new (New)


Package is "perl-File-ShareDir-Install"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-File-ShareDir-Install/perl-File-ShareDir-Install.changes
2015-04-15 16:25:29.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-File-ShareDir-Install.new/perl-File-ShareDir-Install.changes
   2016-09-14 23:34:09.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 10 05:27:59 UTC 2016 - co...@suse.com
+
+- updated to 0.11
+   see /usr/share/doc/packages/perl-File-ShareDir-Install/Changes
+
+---
+Tue Aug  9 05:26:34 UTC 2016 - co...@suse.com
+
+- updated to 0.11
+   see /usr/share/doc/packages/perl-File-ShareDir-Install/Changes
+
+---

Old:

  File-ShareDir-Install-0.10.tar.gz

New:

  File-ShareDir-Install-0.11.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-File-ShareDir-Install.spec ++
--- /var/tmp/diff_new_pack.Xidd5z/_old  2016-09-14 23:34:10.0 +0200
+++ /var/tmp/diff_new_pack.Xidd5z/_new  2016-09-14 23:34:10.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-File-ShareDir-Install
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,29 +17,31 @@
 
 
 Name:   perl-File-ShareDir-Install
-Version:0.10
+Version:0.11
 Release:0
 %define cpan_name File-ShareDir-Install
 Summary:Install shared files
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/File-ShareDir-Install/
-Source: 
http://www.cpan.org/authors/id/G/GW/GWYN/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Module::Build::Tiny) >= 0.034
+BuildRequires:  perl(Module::Metadata)
 %{perl_requires}
 
 %description
 File::ShareDir::Install allows you to install read-only data files from a
-distribution. It is a companion module to the File::ShareDir manpage, which
-allows you to locate these files after installation.
+distribution. It is a companion module to File::ShareDir, which allows you
+to locate these files after installation.
 
-It is a port of the Module::Install::Share manpage to the
-ExtUtils::MakeMaker manpage with the improvement of only installing the
-files you want; '.svn', '.git' and other source-control junk will be
-ignored.
+It is a port of Module::Install::Share to ExtUtils::MakeMaker with the
+improvement of only installing the files you want; '.svn', '.git' and other
+source-control junk will be ignored.
 
 Please note that this module installs read-only data files; empty
 directories will be ignored.
@@ -48,19 +50,18 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+%{__perl} Build.PL --installdirs=vendor
+./Build build --flags=%{?_smp_mflags}
 
 %check
-%{__make} test
+./Build test
 
 %install
-%perl_make_install
-%perl_process_packlist
+./Build install --destdir=%{buildroot} --create_packlist=0
 %perl_gen_filelist
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes README
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ File-ShareDir-Install-0.10.tar.gz -> File-ShareDir-Install-0.11.tar.gz 
++
 4048 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#description: |-
#  override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: 

commit knewstuff for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package knewstuff for openSUSE:Factory 
checked in at 2016-09-14 23:26:18

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  2016-08-29 
15:07:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.knewstuff.new/knewstuff.changes 2016-09-14 
23:26:20.0 +0200
@@ -1,0 +2,10 @@
+Tue Sep  6 20:51:53 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Uncompress archives in subfolders
+  * No longer allow installing to generic data folder because
+of potential security hole
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  knewstuff-5.25.0.tar.xz

New:

  knewstuff-5.26.0.tar.xz



Other differences:
--
++ knewstuff.spec ++
--- /var/tmp/diff_new_pack.C3POz9/_old  2016-09-14 23:26:21.0 +0200
+++ /var/tmp/diff_new_pack.C3POz9/_new  2016-09-14 23:26:21.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5NewStuff5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   knewstuff
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  attica-qt5-devel >= %{_tar_path}

++ knewstuff-5.25.0.tar.xz -> knewstuff-5.26.0.tar.xz ++
 2683 lines of diff (skipped)




commit rubygem-rspec-core for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rspec-core for 
openSUSE:Factory checked in at 2016-09-14 23:31:30

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
2016-08-17 11:59:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-core.new/rubygem-rspec-core.changes   
2016-09-14 23:31:32.0 +0200
@@ -1,0 +2,20 @@
+Sat Sep  3 04:45:14 UTC 2016 - co...@suse.com
+
+- updated to version 3.5.3
+ see installed Changelog.md
+
+  ### 3.5.3 / 2016-09-02
+  [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.2...v3.5.3)
+  
+  Bug Fixes:
+  
+  * When applying shared group metadata to a host group, overwrite
+conflicting keys if the value in the host group was inherited from
+a parent group instead of being specified at that level.
+(Myron Marston, #2307)
+  * Handle errors in `:suite` hooks and provide the same nicely formatted
+output as errors that happen in examples. (Myron Marston, #2316)
+  * Set the exit status to non-zero when an error occurs in an
+`after(:context)` hook. (Myron Marston, #2320)
+
+---

Old:

  rspec-core-3.5.2.gem

New:

  rspec-core-3.5.3.gem



Other differences:
--
++ rubygem-rspec-core.spec ++
--- /var/tmp/diff_new_pack.oJTxA1/_old  2016-09-14 23:31:33.0 +0200
+++ /var/tmp/diff_new_pack.oJTxA1/_new  2016-09-14 23:31:33.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rspec-core
-Version:3.5.2
+Version:3.5.3
 Release:0
 %define mod_name rspec-core
 %define mod_full_name %{mod_name}-%{version}

++ rspec-core-3.5.2.gem -> rspec-core-3.5.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md2016-07-28 16:27:01.0 +0200
+++ new/Changelog.md2016-09-02 14:31:34.0 +0200
@@ -1,3 +1,17 @@
+### 3.5.3 / 2016-09-02
+[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.2...v3.5.3)
+
+Bug Fixes:
+
+* When applying shared group metadata to a host group, overwrite
+  conflicting keys if the value in the host group was inherited from
+  a parent group instead of being specified at that level.
+  (Myron Marston, #2307)
+* Handle errors in `:suite` hooks and provide the same nicely formatted
+  output as errors that happen in examples. (Myron Marston, #2316)
+* Set the exit status to non-zero when an error occurs in an
+  `after(:context)` hook. (Myron Marston, #2320)
+
 ### 3.5.2 / 2016-07-28
 [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.1...v3.5.2)
 
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/configuration.rb 
new/lib/rspec/core/configuration.rb
--- old/lib/rspec/core/configuration.rb 2016-07-28 16:27:01.0 +0200
+++ new/lib/rspec/core/configuration.rb 2016-09-02 14:31:34.0 +0200
@@ -1830,12 +1830,11 @@
   def with_suite_hooks
 return yield if dry_run?
 
-hook_context = SuiteHookContext.new
 begin
-  run_hooks_with(@before_suite_hooks, hook_context)
+  run_suite_hooks("a `before(:suite)` hook", @before_suite_hooks)
   yield
 ensure
-  run_hooks_with(@after_suite_hooks, hook_context)
+  run_suite_hooks("an `after(:suite)` hook", @after_suite_hooks)
 end
   end
 
@@ -1875,8 +1874,16 @@
 yield
   end
 
-  def run_hooks_with(hooks, hook_context)
-hooks.each { |h| h.run(hook_context) }
+  def run_suite_hooks(hook_description, hooks)
+context = SuiteHookContext.new(hook_description, reporter)
+
+hooks.each do |hook|
+  begin
+hook.run(context)
+  rescue Support::AllExceptionsExceptOnesWeMustNotRescue => ex
+context.set_exception(ex)
+  end
+end
   end
 
   def get_files_to_run(paths)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/core/example.rb 
new/lib/rspec/core/example.rb
--- old/lib/rspec/core/example.rb   2016-07-28 16:27:01.0 +0200
+++ new/lib/rspec/core/example.rb   2016-09-02 14:31:34.0 +0200
@@ -632,16 +632,16 @@
 # @private
 # Provides an execution 

commit kjs for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kjs for openSUSE:Factory checked in 
at 2016-09-14 23:31:10

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  2016-08-29 15:06:35.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kjs.new/kjs.changes 2016-09-14 
23:31:12.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:51:27 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kjs-5.25.0.tar.xz

New:

  kjs-5.26.0.tar.xz



Other differences:
--
++ kjs.spec ++
--- /var/tmp/diff_new_pack.PcTLe6/_old  2016-09-14 23:31:13.0 +0200
+++ /var/tmp/diff_new_pack.PcTLe6/_new  2016-09-14 23:31:13.0 +0200
@@ -16,10 +16,11 @@
 #
 
 
+%bcond_without lang
 %define sonum   5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kjs
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12
@@ -48,6 +49,7 @@
 Summary:KDE Javascript engine
 Group:  System/GUI/KDE
 
+
 %description -n libKF5JS%sonum
 This library provides an ECMAScript compatible interpreter. The ECMA standard
 is based on well known scripting languages such as Netscape's JavaScript and
@@ -71,12 +73,16 @@
 Requires:   libKF5JS%sonum = %{version}
 Requires:   libKF5JSApi%sonum = %{version}
 Requires:   cmake(Qt5Core) >= 5.5.0
+%if %{with lang}
+Recommends: %{name}-devel-lang = %{version}
+%endif
 
 %description devel
 This library provides an ECMAScript compatible interpreter. The ECMA standard
 is based on well known scripting languages such as Netscape's JavaScript and
 Microsoft's JScript. Development files.
 
+%lang_package -n %{name}-devel
 %prep
 %setup -q
 
@@ -89,6 +95,16 @@
   chmod +x %{buildroot}%{_kf5_datadir}/kjs/create_hash_table
   %fdupes %{buildroot}
 
+%if %{with lang}
+echo "%doc %lang(ca) %{_kf5_mandir}/ca" >>%{name}5.lang
+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 -n libKF5JS%sonum -p /sbin/ldconfig
 
 %postun -n libKF5JS%sonum -p /sbin/ldconfig
@@ -97,6 +113,10 @@
 
 %postun -n libKF5JSApi%sonum -p /sbin/ldconfig
 
+%if %{with lang}
+%files devel-lang -f %{name}5.lang
+%endif
+
 %files -n libKF5JS%sonum
 %defattr(-,root,root)
 %doc COPYING* README*

++ kjs-5.25.0.tar.xz -> kjs-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.25.0/CMakeLists.txt 
new/kjs-5.26.0/CMakeLists.txt
--- old/kjs-5.25.0/CMakeLists.txt   2016-08-07 15:52:49.0 +0200
+++ new/kjs-5.26.0/CMakeLists.txt   2016-09-06 14:09:00.0 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,7 +16,7 @@
 include(ECMSetupVersion)
 include(ECMMarkNonGuiExecutable)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KJS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kjs_version.h"
@@ -75,6 +75,8 @@
 
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kjs_version.h DESTINATION 
${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel )
 
+kdoctools_install(po)
+
 if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
 endif()




commit kcalutils for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kcalutils for openSUSE:Factory 
checked in at 2016-09-14 23:31:01

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


Package is "kcalutils"

Changes:

--- /work/SRC/openSUSE:Factory/kcalutils/kcalutils.changes  2016-08-29 
14:36:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcalutils.new/kcalutils.changes 2016-09-14 
23:31:02.0 +0200
@@ -1,0 +2,13 @@
+Sat Sep 10 15:48:18 UTC 2016 - wba...@tmo.at
+
+- Cleanup build requirements
+
+---
+Fri Sep  9 08:17:14 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  kcalutils-16.08.0.tar.xz

New:

  kcalutils-16.08.1.tar.xz



Other differences:
--
++ kcalutils.spec ++
--- /var/tmp/diff_new_pack.aaQffw/_old  2016-09-14 23:31:03.0 +0200
+++ /var/tmp/diff_new_pack.aaQffw/_new  2016-09-14 23:31:03.0 +0200
@@ -17,53 +17,25 @@
 
 
 Name:   kcalutils
-Version:16.08.0
+Version:16.08.1
 Release:0
-%define kf5_version 5.1.0
+%define kf5_version 5.23.0
 Summary:KDE PIM Libraries: KCalUtils
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: kcalutils-%{version}.tar.xz
-BuildRequires:  boost-devel >= 1.34.0
-BuildRequires:  cyrus-sasl-devel
-BuildRequires:  extra-cmake-modules >= 1.0.0
-BuildRequires:  gpgme-devel
+BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  grantlee5-devel
 BuildRequires:  kcalcore-devel
-BuildRequires:  kcmutils-devel >= %{kf5_version}
 BuildRequires:  kcodecs-devel >= %{kf5_version}
-BuildRequires:  kcodecs-devel >= %{kf5_version}
-BuildRequires:  kcompletion-devel >= %{kf5_version}
 BuildRequires:  kconfig-devel >= %{kf5_version}
 BuildRequires:  kcoreaddons-devel >= %{kf5_version}
 BuildRequires:  kdelibs4support-devel >= %{kf5_version}
-BuildRequires:  kdoctools-devel >= %{kf5_version}
-BuildRequires:  kemoticons-devel >= %{kf5_version}
 BuildRequires:  kf5-filesystem
 BuildRequires:  ki18n-devel >= %{kf5_version}
 BuildRequires:  kidentitymanagement-devel
-BuildRequires:  kio-devel >= %{kf5_version}
-BuildRequires:  kitemviews-devel >= %{kf5_version}
-BuildRequires:  kparts-devel >= %{kf5_version}
-BuildRequires:  ktextwidgets-devel >= %{kf5_version}
-BuildRequires:  kwallet-devel >= %{kf5_version}
-BuildRequires:  kwidgetsaddons-devel >= %{kf5_version}
-BuildRequires:  kxmlgui-devel >= %{kf5_version}
-BuildRequires:  akonadi-server-devel
-BuildRequires:  libassuan-devel
-BuildRequires:  libical-devel >= 0.42
-BuildRequires:  libxslt-devel
-BuildRequires:  openldap2-devel
-BuildRequires:  phonon4qt5-devel
-BuildRequires:  solid-devel >= %{kf5_version}
-BuildRequires:  sonnet-devel >= %{kf5_version}
-BuildRequires:  pkgconfig(Qt5Designer) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Network) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Sql) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5WebKitWidgets) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ kcalutils-16.08.0.tar.xz -> kcalutils-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalutils-16.08.0/CMakeLists.txt 
new/kcalutils-16.08.1/CMakeLists.txt
--- old/kcalutils-16.08.0/CMakeLists.txt2016-08-06 20:07:58.0 
+0200
+++ new/kcalutils-16.08.1/CMakeLists.txt2016-08-21 15:31:20.0 
+0200
@@ -17,11 +17,11 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(ECMQtDeclareLoggingCategory)
 
-set(PIM_VERSION "5.3.0")
+set(PIM_VERSION "5.3.1")
 
 set(CALENDARUTILS_LIB_VERSION ${PIM_VERSION})
-set(CALENDARCORE_LIB_VERSION "5.3.0")
-set(IDENTITYMANAGER_LIB_VERSION "5.3.0")
+set(CALENDARCORE_LIB_VERSION "5.3.1")
+set(IDENTITYMANAGER_LIB_VERSION "5.3.1")
 ecm_setup_version(${CALENDARUTILS_LIB_VERSION} VARIABLE_PREFIX KCALUTILS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kcalutils_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5CalendarUtilsConfigVersion.cmake"




commit threadweaver for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package threadweaver for openSUSE:Factory 
checked in at 2016-09-14 23:30:52

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
2016-08-29 15:14:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.threadweaver.new/threadweaver.changes   
2016-09-14 23:30:53.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 21:15:27 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  threadweaver-5.25.0.tar.xz

New:

  threadweaver-5.26.0.tar.xz



Other differences:
--
++ threadweaver.spec ++
--- /var/tmp/diff_new_pack.7jpXuL/_old  2016-09-14 23:30:54.0 +0200
+++ /var/tmp/diff_new_pack.7jpXuL/_new  2016-09-14 23:30:54.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5ThreadWeaver5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   threadweaver
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ threadweaver-5.25.0.tar.xz -> threadweaver-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/threadweaver-5.25.0/CMakeLists.txt 
new/threadweaver-5.26.0/CMakeLists.txt
--- old/threadweaver-5.25.0/CMakeLists.txt  2016-08-06 10:44:27.0 
+0200
+++ new/threadweaver-5.26.0/CMakeLists.txt  2016-09-06 00:46:54.0 
+0200
@@ -3,7 +3,7 @@
 project(ThreadWeaver)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -29,7 +29,7 @@
 ENDIF()
 
 # -- Maintained by scripty
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX THREADWEAVER
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/threadweaver_version.h"




commit plasma-framework for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package plasma-framework for 
openSUSE:Factory checked in at 2016-09-14 23:30:18

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
2016-08-29 15:13:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-framework.new/plasma-framework.changes   
2016-09-14 23:30:20.0 +0200
@@ -1,0 +2,47 @@
+Tue Sep  6 21:14:45 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Fix device icon 22px icon didn't work in the old file
+  * WindowThumbnail: Do GL calls in the correct thread (kde#368066)
+  * Make plasma_install_package work with
+KDE_INSTALL_DIRS_NO_DEPRECATED
+  * Add margin and padding to the start.svgz icon
+  * Fix stylesheet stuff in computer icon
+  * Add computer and laptop icon for kicker (kde#367816)
+  * Fix cannot assign undefined to double warning in DayDelegate
+  * Fix stylesheed svgz files are not in love with me
+  * Rename the 22px icons to 22-22-x and the 32px icons to
+x for kicker
+  * [PlasmaComponents TextField] Don't bother loading icons
+for unused buttons
+  * Extra guard in Containment::corona in the special
+system tray case
+  * When marking a containment as deleted, also mark all
+sub-applets as deleted - fixes system tray container configs
+not being deleted
+  * Fix Device Notifier icon
+  * Add system-search to system in 32 and 22px size
+  * Add monochrome icons for kicker
+  * Set colour scheme on system-search icon
+  * Move system-search into system.svgz
+  * Fix wrong or missing "X-KDE-ParentApp" in desktop file definitions
+  * Fix API dox of Plasma::PluginLoader: mixup of
+applets/dataengine/services/..
+  * Add system-search icon for the sddm theme
+  * Add nepomuk 32px icon
+  * Update touchpad icon for the system tray
+  * Remove code that can never be executed
+  * [ContainmentView] Show panels when UI becomes ready
+  * Don't redeclare property implicitHeight
+  * Use QQuickViewSharedEngine::setTranslationDomain (kde#361513)
+  * Add 22px and 32px plasma breeze icon support
+  * Remove colored system icons and add 32px monochrome ones
+  * Add an optional reveal password button to TextField
+  * The standard tooltips are now mirrored when in a
+right-to-left language
+  * Performance when changing months in the calendar has
+been greatly improved
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  plasma-framework-5.25.0.tar.xz

New:

  plasma-framework-5.26.0.tar.xz



Other differences:
--
++ plasma-framework.spec ++
--- /var/tmp/diff_new_pack.Zr7sUI/_old  2016-09-14 23:30:21.0 +0200
+++ /var/tmp/diff_new_pack.Zr7sUI/_new  2016-09-14 23:30:21.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   plasma-framework
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 Summary:Plasma library and runtime components based upon KF5 and Qt5
@@ -28,7 +28,7 @@
 Url:https://projects.kde.org/plasma-framework
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-OPENSUSE loosen-up-kactivities-requirement.patch -- require 
kactivities 5.19.0, as we can't update kactivities5 to 5.25.0 before Plasma 
5.6.0
+# PATCH-FIX-OPENSUSE loosen-up-kactivities-requirement.patch -- require 
kactivities 5.19.0, as we can't update kactivities5 to 5.26.0 before Plasma 
5.6.0
 Patch0: loosen-up-kactivities-requirement.patch
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes

++ plasma-framework-5.25.0.tar.xz -> plasma-framework-5.26.0.tar.xz ++
 8866 lines of diff (skipped)




commit sonnet for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2016-09-14 23:30:41

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.changes2016-08-29 
15:14:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes   2016-09-14 
23:30:43.0 +0200
@@ -1,0 +2,28 @@
+Tue Sep  6 21:15:19 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Don't lowercase the language names in trigram parsing
+  * Fix immediate crash on startup due to null plugin pointer
+  * Handle dictionaries without correct names
+  * Replace hand-curated list of script-language mappings, use
+proper names for languages
+  * Add tool to generate trigrams
+  * Unbreak language detection a bit
+  * Use selected language as suggestion for detection
+  * Use cached spellers in language detection,
+improve performance a bit
+  * Improve language detection
+  * Filter list of suggestions against available dictionaries,
+remove dupes
+  * Remember to add the last trigram match
+  * Check if any of the trigrams actually matched
+  * Handle multiple languages with same score in trigram matcher
+  * Don't check for minimum size twice
+  * Prune list of languages against available languages
+  * Use same minimum length everywhere in langdet
+  * Sanity check that the loaded model has the correct amount of
+trigrams for each language
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  sonnet-5.25.0.tar.xz

New:

  sonnet-5.26.0.tar.xz



Other differences:
--
++ sonnet.spec ++
--- /var/tmp/diff_new_pack.11oXDy/_old  2016-09-14 23:30:44.0 +0200
+++ /var/tmp/diff_new_pack.11oXDy/_new  2016-09-14 23:30:44.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   sonnet
-Version:5.25.0
+Version:5.26.0
 Release:0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 2.8.12
@@ -132,6 +132,7 @@
 %files devel
 %defattr(-,root,root)
 %{_kf5_bindir}/parsetrigrams
+%{_kf5_bindir}/gentrigrams
 %{_kf5_libdir}/libKF5SonnetCore.so
 %{_kf5_libdir}/libKF5SonnetUi.so
 %{_kf5_libdir}/cmake/KF5Sonnet/

++ sonnet-5.25.0.tar.xz -> sonnet-5.26.0.tar.xz ++
 41712 lines of diff (skipped)




commit solid for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package solid for openSUSE:Factory checked 
in at 2016-09-14 23:30:31

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  2016-08-29 
15:14:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.solid.new/solid.changes 2016-09-14 
23:30:33.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 21:15:13 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  solid-5.25.0.tar.xz

New:

  solid-5.26.0.tar.xz



Other differences:
--
++ solid.spec ++
--- /var/tmp/diff_new_pack.yh4nsP/_old  2016-09-14 23:30:34.0 +0200
+++ /var/tmp/diff_new_pack.yh4nsP/_new  2016-09-14 23:30:34.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Solid5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   solid
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12

++ solid-5.25.0.tar.xz -> solid-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/solid-5.25.0/CMakeLists.txt 
new/solid-5.26.0/CMakeLists.txt
--- old/solid-5.25.0/CMakeLists.txt 2016-08-07 16:03:10.0 +0200
+++ new/solid-5.26.0/CMakeLists.txt 2016-09-06 14:26:53.0 +0200
@@ -4,7 +4,7 @@
 project(Solid)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -58,7 +58,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX SOLID
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/solid_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/solid-5.25.0/po/pl/solid5_qt.po 
new/solid-5.26.0/po/pl/solid5_qt.po
--- old/solid-5.25.0/po/pl/solid5_qt.po 2016-08-07 16:03:10.0 +0200
+++ new/solid-5.26.0/po/pl/solid5_qt.po 2016-09-06 14:26:53.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-01 01:49+\n"
-"PO-Revision-Date: 2016-03-19 07:24+0100\n"
+"PO-Revision-Date: 2016-08-20 08:03+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -825,12 +825,12 @@
 #, qt-format
 msgctxt "Solid::Backends::UDisks2::Device|%1 is the size"
 msgid "%1 Media"
-msgstr "Medium %1"
+msgstr "Nośnik %1"
 
 #: solid/devices/backends/udisks2/udisksdevice.cpp:712
 msgctxt "Solid::Backends::UDisks2::Device|"
 msgid "You are not authorized to perform this operation"
-msgstr "Nie jesteś upoważniony(a) do wykonania tej operacji"
+msgstr "Brak uprawnień do wykonania działania"
 
 #: solid/devices/backends/udisks2/udisksdevice.cpp:714
 msgctxt "Solid::Backends::UDisks2::Device|"
@@ -840,12 +840,12 @@
 #: solid/devices/backends/udisks2/udisksdevice.cpp:716
 msgctxt "Solid::Backends::UDisks2::Device|"
 msgid "The requested operation has failed"
-msgstr "Żądana operacja zakończona niepowodzeniem"
+msgstr "Żądane działanie zakończone niepowodzeniem"
 
 #: solid/devices/backends/udisks2/udisksdevice.cpp:718
 msgctxt "Solid::Backends::UDisks2::Device|"
 msgid "The requested operation has been canceled"
-msgstr "Żądana operacja została anulowana"
+msgstr "Żądane działanie zostało anulowane"
 
 #: solid/devices/backends/udisks2/udisksdevice.cpp:720
 msgctxt "Solid::Backends::UDisks2::Device|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/solid-5.25.0/src/solid/devices/backends/udev/udevportablemediaplayer.cpp 
new/solid-5.26.0/src/solid/devices/backends/udev/udevportablemediaplayer.cpp
--- 
old/solid-5.25.0/src/solid/devices/backends/udev/udevportablemediaplayer.cpp
2016-08-07 16:03:10.0 +0200
+++ 
new/solid-5.26.0/src/solid/devices/backends/udev/udevportablemediaplayer.cpp
2016-09-06 14:26:53.0 +0200
@@ -50,7 +50,7 @@
 // skip empty and comment lines
 } else if (line.startsWith(QChar('[')) && line.endsWith(QChar(']'))) {
 

commit oxygen5-icon-theme for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package oxygen5-icon-theme for 
openSUSE:Factory checked in at 2016-09-14 23:30:04

Comparing /work/SRC/openSUSE:Factory/oxygen5-icon-theme (Old)
 and  /work/SRC/openSUSE:Factory/.oxygen5-icon-theme.new (New)


Package is "oxygen5-icon-theme"

Changes:

--- /work/SRC/openSUSE:Factory/oxygen5-icon-theme/oxygen5-icon-theme.changes
2016-08-29 15:13:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.oxygen5-icon-theme.new/oxygen5-icon-theme.changes   
2016-09-14 23:30:11.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:55:17 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  oxygen-icons5-5.25.0.tar.xz

New:

  oxygen-icons5-5.26.0.tar.xz



Other differences:
--
++ oxygen5-icon-theme.spec ++
--- /var/tmp/diff_new_pack.4qZvHM/_old  2016-09-14 23:30:19.0 +0200
+++ /var/tmp/diff_new_pack.4qZvHM/_new  2016-09-14 23:30:19.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   oxygen5-icon-theme
-Version:5.25.0
+Version:5.26.0
 Release:0
 Summary:Oxygen Icon Theme
 License:LGPL-3.0











++ oxygen-icons5-5.25.0.tar.xz -> oxygen-icons5-5.26.0.tar.xz ++
/work/SRC/openSUSE:Factory/oxygen5-icon-theme/oxygen-icons5-5.25.0.tar.xz 
/work/SRC/openSUSE:Factory/.oxygen5-icon-theme.new/oxygen-icons5-5.26.0.tar.xz 
differ: char 27, line 1




commit libKF5NetworkManagerQt for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libKF5NetworkManagerQt for 
openSUSE:Factory checked in at 2016-09-14 23:29:52

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
2016-08-29 15:13:24.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new/libKF5NetworkManagerQt.changes
   2016-09-14 23:29:54.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:55:11 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  networkmanager-qt-5.25.0.tar.xz

New:

  networkmanager-qt-5.26.0.tar.xz



Other differences:
--
++ libKF5NetworkManagerQt.spec ++
--- /var/tmp/diff_new_pack.HrgjyO/_old  2016-09-14 23:29:55.0 +0200
+++ /var/tmp/diff_new_pack.HrgjyO/_new  2016-09-14 23:29:55.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define soversion 6
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   libKF5NetworkManagerQt
-Version:5.25.0
+Version:5.26.0
 Release:0
 Summary:A Qt wrapper for NetworkManager DBus API
 License:LGPL-2.1 or LGPL-3.0

++ networkmanager-qt-5.25.0.tar.xz -> networkmanager-qt-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/networkmanager-qt-5.25.0/CMakeLists.txt 
new/networkmanager-qt-5.26.0/CMakeLists.txt
--- old/networkmanager-qt-5.25.0/CMakeLists.txt 2016-08-06 10:42:54.0 
+0200
+++ new/networkmanager-qt-5.26.0/CMakeLists.txt 2016-09-06 00:45:49.0 
+0200
@@ -3,7 +3,7 @@
 project(NetworkManagerQt)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -32,7 +32,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX NETWORKMANAGERQT
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/networkmanagerqt_version.h"




commit libKF5ModemManagerQt for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libKF5ModemManagerQt for 
openSUSE:Factory checked in at 2016-09-14 23:29:44

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
2016-08-29 15:13:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libKF5ModemManagerQt.new/libKF5ModemManagerQt.changes
   2016-09-14 23:29:46.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:55:05 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  modemmanager-qt-5.25.0.tar.xz

New:

  modemmanager-qt-5.26.0.tar.xz



Other differences:
--
++ libKF5ModemManagerQt.spec ++
--- /var/tmp/diff_new_pack.udbp0E/_old  2016-09-14 23:29:48.0 +0200
+++ /var/tmp/diff_new_pack.udbp0E/_new  2016-09-14 23:29:48.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define soversion 6
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   libKF5ModemManagerQt
-Version:5.25.0
+Version:5.26.0
 Release:0
 Summary:Qt wrapper for ModemManager DBus API
 License:LGPL-2.1 or LGPL-3.0

++ modemmanager-qt-5.25.0.tar.xz -> modemmanager-qt-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/modemmanager-qt-5.25.0/CMakeLists.txt 
new/modemmanager-qt-5.26.0/CMakeLists.txt
--- old/modemmanager-qt-5.25.0/CMakeLists.txt   2016-08-06 10:42:39.0 
+0200
+++ new/modemmanager-qt-5.26.0/CMakeLists.txt   2016-09-06 00:45:36.0 
+0200
@@ -3,7 +3,7 @@
 project(ModemManagerQt)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -32,7 +32,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX MODEMMANAGERQT
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/modemmanagerqt_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/modemmanager-qt-5.25.0/src/modemlocation_p.h 
new/modemmanager-qt-5.26.0/src/modemlocation_p.h
--- old/modemmanager-qt-5.25.0/src/modemlocation_p.h2016-08-06 
10:42:39.0 +0200
+++ new/modemmanager-qt-5.26.0/src/modemlocation_p.h2016-09-06 
00:45:36.0 +0200
@@ -44,7 +44,7 @@
 Q_DECLARE_PUBLIC(ModemLocation)
 ModemLocation *q_ptr;
 private Q_SLOTS:
-   void onPropertiesChanged(const QString , const QVariantMap 
, const QStringList );
+   void onPropertiesChanged(const QString , const QVariantMap 
, const QStringList ) Q_DECL_OVERRIDE;
 };
 
 } // namespace ModemManager




commit kxmlrpcclient5 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kxmlrpcclient5 for openSUSE:Factory 
checked in at 2016-09-14 23:29:36

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
2016-08-29 15:12:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new/kxmlrpcclient5.changes   
2016-09-14 23:29:38.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:55:00 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kxmlrpcclient-5.25.0.tar.xz

New:

  kxmlrpcclient-5.26.0.tar.xz



Other differences:
--
++ kxmlrpcclient5.spec ++
--- /var/tmp/diff_new_pack.RSHgZ6/_old  2016-09-14 23:29:39.0 +0200
+++ /var/tmp/diff_new_pack.RSHgZ6/_new  2016-09-14 23:29:39.0 +0200
@@ -19,9 +19,9 @@
 %bcond_without lang
 %define rname kxmlrpcclient
 %define lname libKF5XmlRpcClient5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kxmlrpcclient5
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 Summary:Library containing simple XML-RPC Client support

++ kxmlrpcclient-5.25.0.tar.xz -> kxmlrpcclient-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kxmlrpcclient-5.25.0/CMakeLists.txt 
new/kxmlrpcclient-5.26.0/CMakeLists.txt
--- old/kxmlrpcclient-5.25.0/CMakeLists.txt 2016-08-07 16:01:51.0 
+0200
+++ new/kxmlrpcclient-5.26.0/CMakeLists.txt 2016-09-06 14:25:12.0 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0 CONFIG )
+find_package(ECM 5.26.0 CONFIG )
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -21,8 +21,8 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(ECMQtDeclareLoggingCategory)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 add_definitions(-DTRANSLATION_DOMAIN=\"libkxmlrpcclient5\")
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KXMLRPCCLIENT




commit kxmlgui for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kxmlgui for openSUSE:Factory checked 
in at 2016-09-14 23:29:25

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  2016-08-29 
15:12:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kxmlgui.new/kxmlgui.changes 2016-09-14 
23:29:26.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  6 20:54:47 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Port to Donate standard action
+  * Port away from deprecated authorizeKAction
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kxmlgui-5.25.0.tar.xz

New:

  kxmlgui-5.26.0.tar.xz



Other differences:
--
++ kxmlgui.spec ++
--- /var/tmp/diff_new_pack.C1ymks/_old  2016-09-14 23:29:27.0 +0200
+++ /var/tmp/diff_new_pack.C1ymks/_new  2016-09-14 23:29:27.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5XmlGui5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kxmlgui
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  attica-qt5-devel >= %{_tar_path}

++ kxmlgui-5.25.0.tar.xz -> kxmlgui-5.26.0.tar.xz ++
 3642 lines of diff (skipped)




commit kwindowsystem for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  
2016-08-29 15:12:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwindowsystem.new/kwindowsystem.changes 
2016-09-14 23:29:15.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:54:42 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kwindowsystem-5.25.0.tar.xz

New:

  kwindowsystem-5.26.0.tar.xz



Other differences:
--
++ kwindowsystem.spec ++
--- /var/tmp/diff_new_pack.hdTHAl/_old  2016-09-14 23:29:16.0 +0200
+++ /var/tmp/diff_new_pack.hdTHAl/_new  2016-09-14 23:29:16.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5WindowSystem5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kwindowsystem
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kwindowsystem-5.25.0.tar.xz -> kwindowsystem-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwindowsystem-5.25.0/CMakeLists.txt 
new/kwindowsystem-5.26.0/CMakeLists.txt
--- old/kwindowsystem-5.25.0/CMakeLists.txt 2016-08-07 16:01:05.0 
+0200
+++ new/kwindowsystem-5.26.0/CMakeLists.txt 2016-09-06 14:24:13.0 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,7 +19,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KWINDOWSYSTEM
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kwindowsystem_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwindowsystem-5.25.0/po/nn/kwindowsystem5_qt.po 
new/kwindowsystem-5.26.0/po/nn/kwindowsystem5_qt.po
--- old/kwindowsystem-5.25.0/po/nn/kwindowsystem5_qt.po 2016-08-07 
16:01:05.0 +0200
+++ new/kwindowsystem-5.26.0/po/nn/kwindowsystem5_qt.po 2016-09-06 
14:24:13.0 +0200
@@ -24,7 +24,7 @@
 "X-Qt-Contexts: true\n"
 
 #: platforms/osx/kwindowsystem.cpp:578 platforms/windows/kwindowsystem.cpp:630
-#: platforms/xcb/kwindowsystem.cpp:985
+#: platforms/xcb/kwindowsystem.cpp:987
 #, qt-format
 msgctxt "KWindowSystem|"
 msgid "Desktop %1"




commit kwidgetsaddons for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kwidgetsaddons for openSUSE:Factory 
checked in at 2016-09-14 23:29:05

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
2016-08-29 15:11:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwidgetsaddons.new/kwidgetsaddons.changes   
2016-09-14 23:29:07.0 +0200
@@ -1,0 +2,11 @@
+Tue Sep  6 20:54:18 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Fix background of non-BMP characters
+  * Add C octal escaped UTF-8 search
+  * Make the default KMessageBoxDontAskAgainMemoryStorage
+save to QSettings
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kwidgetsaddons-5.25.0.tar.xz

New:

  kwidgetsaddons-5.26.0.tar.xz



Other differences:
--
++ kwidgetsaddons.spec ++
--- /var/tmp/diff_new_pack.3kJig4/_old  2016-09-14 23:29:08.0 +0200
+++ /var/tmp/diff_new_pack.3kJig4/_new  2016-09-14 23:29:08.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5WidgetsAddons5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kwidgetsaddons
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kwidgetsaddons-5.25.0.tar.xz -> kwidgetsaddons-5.26.0.tar.xz ++
 52173 lines of diff (skipped)




commit kwayland for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kwayland for openSUSE:Factory 
checked in at 2016-09-14 23:28:56

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


Package is "kwayland"

Changes:

--- /work/SRC/openSUSE:Factory/kwayland/kwayland.changes2016-08-29 
15:11:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwayland.new/kwayland.changes   2016-09-14 
23:28:58.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:54:11 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Make linux/input.h compile time optional
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kwayland-5.25.0.tar.xz

New:

  kwayland-5.26.0.tar.xz



Other differences:
--
++ kwayland.spec ++
--- /var/tmp/diff_new_pack.TC9lMr/_old  2016-09-14 23:28:59.0 +0200
+++ /var/tmp/diff_new_pack.TC9lMr/_new  2016-09-14 23:28:59.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kwayland
-Version:5.25.0
+Version:5.26.0
 Release:0
 Summary:KDE Wayland library
 License:LGPL-2.1+

++ kwayland-5.25.0.tar.xz -> kwayland-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.25.0/CMakeLists.txt 
new/kwayland-5.26.0/CMakeLists.txt
--- old/kwayland-5.25.0/CMakeLists.txt  2016-08-06 10:41:15.0 +0200
+++ new/kwayland-5.26.0/CMakeLists.txt  2016-09-06 00:44:32.0 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
@@ -18,7 +18,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KWAYLAND
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kwayland_version.h"
@@ -42,6 +42,11 @@
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
+include(CheckIncludeFile)
+
+check_include_file("linux/input.h" HAVE_LINUX_INPUT_H)
+configure_file(config-kwayland.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-kwayland.h)
+include_directories(${CMAKE_CURRENT_BINARY_DIR})
 
 # adjusting CMAKE_C_FLAGS to get wayland protocols to compile
 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu90")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.25.0/autotests/client/CMakeLists.txt 
new/kwayland-5.26.0/autotests/client/CMakeLists.txt
--- old/kwayland-5.25.0/autotests/client/CMakeLists.txt 2016-08-06 
10:41:15.0 +0200
+++ new/kwayland-5.26.0/autotests/client/CMakeLists.txt 2016-09-06 
00:44:32.0 +0200
@@ -69,13 +69,15 @@
 
 # Test WaylandSeat
 
-set( testWaylandSeat_SRCS
-test_wayland_seat.cpp
-)
-add_executable(testWaylandSeat ${testWaylandSeat_SRCS})
-target_link_libraries( testWaylandSeat Qt5::Test Qt5::Gui KF5::WaylandClient 
KF5::WaylandServer Wayland::Client Wayland::Server)
-add_test(kwayland-testWaylandSeat testWaylandSeat)
-ecm_mark_as_test(testWaylandSeat)
+if (HAVE_LINUX_INPUT_H)
+set( testWaylandSeat_SRCS
+test_wayland_seat.cpp
+)
+add_executable(testWaylandSeat ${testWaylandSeat_SRCS})
+target_link_libraries( testWaylandSeat Qt5::Test Qt5::Gui 
KF5::WaylandClient KF5::WaylandServer Wayland::Client Wayland::Server)
+add_test(kwayland-testWaylandSeat testWaylandSeat)
+ecm_mark_as_test(testWaylandSeat)
+endif()
 
 
 # Test ShmPool
@@ -279,24 +281,28 @@
 
 # Test FakeInput
 
-set( testFakeInput_SRCS
-test_fake_input.cpp
-)
-add_executable(testFakeInput ${testFakeInput_SRCS})
-target_link_libraries( testFakeInput Qt5::Test Qt5::Gui KF5::WaylandClient 
KF5::WaylandServer)
-add_test(kwayland-testFakeInput testFakeInput)
-ecm_mark_as_test(testFakeInput)
+if (HAVE_LINUX_INPUT_H)
+set( testFakeInput_SRCS
+

commit kwallet for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kwallet for openSUSE:Factory checked 
in at 2016-09-14 23:28:48

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  2016-08-29 
15:11:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwallet.new/kwallet.changes 2016-09-14 
23:28:55.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  6 20:54:04 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Move kwallet-query docbook to correct subdir
+  * Fix wording an -> one
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kwallet-5.25.0.tar.xz

New:

  kwallet-5.26.0.tar.xz



Other differences:
--
++ kwallet.spec ++
--- /var/tmp/diff_new_pack.aLsJyu/_old  2016-09-14 23:28:56.0 +0200
+++ /var/tmp/diff_new_pack.aLsJyu/_new  2016-09-14 23:28:56.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Wallet5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kwallet
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kwallet-5.25.0.tar.xz -> kwallet-5.26.0.tar.xz ++
 4702 lines of diff (skipped)




commit ktexteditor for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktexteditor for openSUSE:Factory 
checked in at 2016-09-14 23:28:15

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  2016-08-29 
15:10:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktexteditor.new/ktexteditor.changes 
2016-09-14 23:28:17.0 +0200
@@ -1,0 +2,40 @@
+Tue Sep  6 20:53:27 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Remove accel clash (kde#363738)
+  * Fix email address highlighting in doxygen (kde#363186)
+  * Detect some more json files, like our own projects ;)
+  * Improve mime-type detection (kde#357902)
+  * Bug 363280 - highlighting: c++: #if 1 #endif #if defined (A) aaa
+#elif defined (B) bbb #endif (kde#363280)
+  * Bug 351496 - Python folding is not working during initial typing
+(kde#351496)
+  * Bug 365171 - Python syntax highlighting: not working correctly
+for escape sequences (kde#365171)
+  * Bug 344276 - php nowdoc not folded correctly (kde#344276)
+  * Bug 359613 - Some CSS3 properties are not supported in
+syntax highlight (kde#359613)
+  * Bug 367821 - wineHQ syntax: The section in a reg file isn't
+highlighted correctly (kde#367821)
+  * Improve swap file handling if swap directory specified
+  * Fix crash when reloading documents with auto-wrapped line due
+to line length limit (kde#366493)
+  * Fix constant crashes related to the vi command bar
+(kde#367786)
+  * Fix: Line numbers in printed documents now starts at 1
+(kde#366579)
+  * Backup Remote Files: Treat mounted files also as remote files
+  * Cleanup logic for searchbar creation
+  * Add highlighting for Magma
+  * Allows only one level of recursion
+  * Fix broken swap-file on windows
+  * Patch: add bitbake support for syntax highlighting engine
+  * Autobrace: look at spellcheck attribute where the character
+was entered (kde#367539)
+  * Highlight QMAKE_CFLAGS
+  * Don't pop out of the main context
+  * Add some executable names that are commonly used
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  ktexteditor-5.25.0.tar.xz

New:

  ktexteditor-5.26.0.tar.xz



Other differences:
--
++ ktexteditor.spec ++
--- /var/tmp/diff_new_pack.Hyfndi/_old  2016-09-14 23:28:19.0 +0200
+++ /var/tmp/diff_new_pack.Hyfndi/_new  2016-09-14 23:28:19.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   ktexteditor
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ ktexteditor-5.25.0.tar.xz -> ktexteditor-5.26.0.tar.xz ++
 58168 lines of diff (skipped)




commit kservice for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kservice for openSUSE:Factory 
checked in at 2016-09-14 23:28:05

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.changes2016-08-29 
15:10:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.kservice.new/kservice.changes   2016-09-14 
23:28:07.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:53:21 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kservice-5.25.0.tar.xz

New:

  kservice-5.26.0.tar.xz



Other differences:
--
++ kservice.spec ++
--- /var/tmp/diff_new_pack.6UnTq2/_old  2016-09-14 23:28:08.0 +0200
+++ /var/tmp/diff_new_pack.6UnTq2/_new  2016-09-14 23:28:08.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kservice
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  bison

++ kservice-5.25.0.tar.xz -> kservice-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kservice-5.25.0/CMakeLists.txt 
new/kservice-5.26.0/CMakeLists.txt
--- old/kservice-5.25.0/CMakeLists.txt  2016-08-07 15:57:40.0 +0200
+++ new/kservice-5.26.0/CMakeLists.txt  2016-09-06 14:18:17.0 +0200
@@ -5,7 +5,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,8 +19,8 @@
 
 include(GenerateExportHeader)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX KSERVICE




commit ktextwidgets for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2016-09-14 23:28:26

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
2016-08-29 15:10:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new/ktextwidgets.changes   
2016-09-14 23:28:28.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:53:47 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  ktextwidgets-5.25.0.tar.xz

New:

  ktextwidgets-5.26.0.tar.xz



Other differences:
--
++ ktextwidgets.spec ++
--- /var/tmp/diff_new_pack.UJELpw/_old  2016-09-14 23:28:29.0 +0200
+++ /var/tmp/diff_new_pack.UJELpw/_new  2016-09-14 23:28:29.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   ktextwidgets
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ ktextwidgets-5.25.0.tar.xz -> ktextwidgets-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.25.0/CMakeLists.txt 
new/ktextwidgets-5.26.0/CMakeLists.txt
--- old/ktextwidgets-5.25.0/CMakeLists.txt  2016-08-07 15:58:48.0 
+0200
+++ new/ktextwidgets-5.26.0/CMakeLists.txt  2016-09-06 14:21:52.0 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,8 +19,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX KTEXTWIDGETS




commit chromium for openSUSE:13.2:Update

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:13.2:Update 
checked in at 2016-09-14 23:28:46

Comparing /work/SRC/openSUSE:13.2:Update/chromium (Old)
 and  /work/SRC/openSUSE:13.2:Update/.chromium.new (New)


Package is "chromium"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.dDY90m/_old  2016-09-14 23:28:55.0 +0200
+++ /var/tmp/diff_new_pack.dDY90m/_new  2016-09-14 23:28:55.0 +0200
@@ -1 +1 @@
-
+




commit chromium.5611 for openSUSE:13.2:Update

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package chromium.5611 for 
openSUSE:13.2:Update checked in at 2016-09-14 23:28:42

Comparing /work/SRC/openSUSE:13.2:Update/chromium.5611 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.chromium.5611.new (New)


Package is "chromium.5611"

Changes:

New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:13.2:Update/.chromium.5611.new/chromium.changes  
2016-09-14 23:28:54.0 +0200
@@ -0,0 +1,3221 @@
+---
+Wed Sep 14 07:35:09 UTC 2016 - tchva...@suse.com
+
+- Version update to 53.0.2785.113 bnc#998743:
+  * CVE-2016-5170 Use after free in Blink
+  * CVE-2016-5171 Use after free in Blink
+  * CVE-2016-5172 Arbitrary Memory Read in v8
+  * CVE-2016-5173 Extension resource access
+  * CVE-2016-5174 Popup not correctly suppressed
+  * CVE-2016-5175 Various fixes from internal audits
+
+---
+Mon Sep 12 08:31:59 UTC 2016 - tchva...@suse.com
+
+- Reenable widevine build again bnc#998328
+
+---
+Sat Sep 10 09:13:37 UTC 2016 - tchva...@suse.com
+
+- Stable channel update to  53.0.2785.101
+  * SPDY crasher fixes
+  * Disable NV12 DXGI video on AMD
+  * Forward --password-store switch to os_crypt
+  * Tell the kernel to discard USB requests when they time out.
+
+---
+Wed Sep  7 14:50:44 UTC 2016 - astie...@suse.com
+
+- Update to Chromium 53.0.2785.92:
+  * Revert of support relocatable RPM packages
+  * disallow WKBackForwardListItem navigations for pushState pages
+  * arc: bluetooth: Fix advertised uuid
+  * fix conflicting PendingIntent for stop button and swipe away
+
+---
+Thu Sep  1 04:04:13 UTC 2016 - tittiatc...@gmail.com
+
+- Update to Chromium 53.0.2785.89
+  - Improvements to the GN build system (boo#996032, boo#99606, boo#995932)
+  - Security fixes (boo#996648)
+  * CVE-2016-5147: Universal XSS in Blink.
+  * CVE-2016-5148: Universal XSS in Blink.
+  * CVE-2016-5149: Script injection in extensions.
+  * CVE-2016-5150: Use after free in Blink.
+  * CVE-2016-5151: Use after free in PDFium.
+  * CVE-2016-5152: Heap overflow in PDFium.
+  * CVE-2016-5153: Use after destruction in Blink.
+  * CVE-2016-5154: Heap overflow in PDFium.
+  * CVE-2016-5155: Address bar spoofing.
+  * CVE-2016-5156: Use after free in event bindings.
+  * CVE-2016-5157: Heap overflow in PDFium.
+  * CVE-2016-5158: Heap overflow in PDFium.
+  * CVE-2016-5159: Heap overflow in PDFium.
+  * CVE-2016-5161: Type confusion in Blink.
+  * CVE-2016-5162: Extensions web accessible resources bypass.
+  * CVE-2016-5163: Address bar spoofing.
+  * CVE-2016-5164: Universal XSS using DevTools.
+  * CVE-2016-5165: Script injection in DevTools.
+  * CVE-2016-5166: SMB Relay Attack via Save Page As.
+  * CVE-2016-5160: Extensions web accessible resources bypass.
+- Drop patches chromium-snapshot-toolchain-r1.patch
+
+---
+Sat Aug 27 18:46:44 UTC 2016 - tittiatc...@gmail.com
+
+- Make it build on ARM.
+  * Add build patch arm_use_right_compiler.patch
+
+- Drop unnecessary patches:
+  * chromium-arm-r0.patch
+
+---
+Mon Aug 22 10:13:19 UTC 2016 - tittiatc...@gmail.com
+
+- Change buildsystem to GN, which is the new upstream default
+  * Make Ninja only use 4 buildprocesses for building Chromium itself
+
+  * Drop unnecessary patches
+- chromium-gcc-fixes.patch
+- adjust-ldflags-no-keep-memory.patch
+- gcc50-fixes.diff
+
+  * Add patches to ensure correct build
+- chromium-last-commit-position-r0.patch
+- chromium-snapshot-toolchain-r1.patch
+
+  * Drop unnecessary sourcefiles
+- courgette.tar.xz
+- depot_tools.tar.xz
+- gn-binaries.tar.xz
+
+---
+Fri Aug 12 08:20:57 UTC 2016 - tittiatc...@gmail.com
+
+- Use an explicit number of ninja build processes (-j 4), to 
+  further reduce the memory used.
+
+---
+Fri Aug  5 08:53:57 UTC 2016 - astie...@suse.com
+
+- Update to Chromium 52.0.2743.116:
+  * Security fixes (boo#992305):
++ CVE-2016-5141: Address bar spoofing (boo#992314)
++ CVE-2016-5142: Use-after-free in Blink (boo#992313)
++ CVE-2016-5139: Heap overflow in pdfium (boo#992311)
++ CVE-2016-5140: Heap overflow in pdfium (boo#992310)
++ CVE-2016-5145: Same origin bypass for images in Blink
+ (boo#992320)
++ CVE-2016-5143: Parameter sanitization failure in 

commit kunitconversion for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  
2016-08-29 15:10:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.kunitconversion.new/kunitconversion.changes 
2016-09-14 23:28:37.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:53:57 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Add British "stone" unit of mass
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kunitconversion-5.25.0.tar.xz

New:

  kunitconversion-5.26.0.tar.xz



Other differences:
--
++ kunitconversion.spec ++
--- /var/tmp/diff_new_pack.WPtrMM/_old  2016-09-14 23:28:38.0 +0200
+++ /var/tmp/diff_new_pack.WPtrMM/_new  2016-09-14 23:28:38.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5UnitConversion5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kunitconversion
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kunitconversion-5.25.0.tar.xz -> kunitconversion-5.26.0.tar.xz ++
 3156 lines of diff (skipped)




commit kross for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kross for openSUSE:Factory checked 
in at 2016-09-14 23:27:43

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  2016-08-29 
15:09:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kross.new/kross.changes 2016-09-14 
23:27:44.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:52:58 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Revert "Remove unused KF5 dependencies"
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kross-5.25.0.tar.xz

New:

  kross-5.26.0.tar.xz



Other differences:
--
++ kross.spec ++
--- /var/tmp/diff_new_pack.4JyzBD/_old  2016-09-14 23:27:45.0 +0200
+++ /var/tmp/diff_new_pack.4JyzBD/_new  2016-09-14 23:27:45.0 +0200
@@ -17,20 +17,23 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kross
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
+BuildRequires:  kcompletion-devel >= %{_tar_path}
 BuildRequires:  kdoctools-devel >= %{_tar_path}
 BuildRequires:  kf5-filesystem
 BuildRequires:  ki18n-devel >= %{_tar_path}
 BuildRequires:  kiconthemes-devel >= %{_tar_path}
 BuildRequires:  kio-devel >= %{_tar_path}
 BuildRequires:  kparts-devel >= %{_tar_path}
+BuildRequires:  kwidgetsaddons-devel >= %{_tar_path}
+BuildRequires:  kxmlgui-devel >= %{_tar_path}
 BuildRequires:  cmake(Qt5Core) >= 5.5.0
 BuildRequires:  cmake(Qt5Script) >= 5.5.0
 BuildRequires:  cmake(Qt5UiTools) >= 5.5.0

++ kross-5.25.0.tar.xz -> kross-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.25.0/CMakeLists.txt 
new/kross-5.26.0/CMakeLists.txt
--- old/kross-5.25.0/CMakeLists.txt 2016-08-07 15:56:53.0 +0200
+++ new/kross-5.26.0/CMakeLists.txt 2016-09-06 14:16:24.0 +0200
@@ -3,7 +3,7 @@
 project(Kross)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -22,8 +22,8 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KROSS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kross_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5KrossConfigVersion.cmake"
@@ -43,12 +43,15 @@
set(BUILD_TESTING OFF CACHE BOOL "Build the testing tree.")
 endif()
 
+find_package(KF5Completion ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5DocTools ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5IconThemes ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5KIO ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Parts ${KF5_DEP_VERSION} REQUIRED)
+find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED)
+find_package(KF5XmlGui ${KF5_DEP_VERSION} REQUIRED)
 
 remove_definitions(-DQT_NO_CAST_FROM_ASCII)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kross-5.25.0/po/nn/kross5.po 
new/kross-5.26.0/po/nn/kross5.po
--- old/kross-5.25.0/po/nn/kross5.po2016-08-07 15:56:53.0 +0200
+++ new/kross-5.26.0/po/nn/kross5.po2016-09-06 14:16:24.0 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2016-07-03 07:26+\n"
+"POT-Creation-Date: 2016-08-03 07:15+\n"
 "PO-Revision-Date: 2014-10-05 09:59+0200\n"
 "Last-Translator: Karl Ove Hufthammer \n"
 "Language-Team: Norwegian Nynorsk \n"
@@ -60,37 +60,37 @@
 msgid "The script to run."
 msgstr "Skriptet som skal køyrast."
 
-#: core/action.cpp:474
+#: core/action.cpp:478
 #, kde-format
 msgid "Scriptfile \"%1\" does not exist."
 msgstr "Skriptfila «%1» 

commit krunner for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package krunner for openSUSE:Factory checked 
in at 2016-09-14 23:27:54

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  2016-08-29 
15:09:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.krunner.new/krunner.changes 2016-09-14 
23:27:56.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:53:15 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  krunner-5.25.0.tar.xz

New:

  krunner-5.26.0.tar.xz



Other differences:
--
++ krunner.spec ++
--- /var/tmp/diff_new_pack.117TJO/_old  2016-09-14 23:27:57.0 +0200
+++ /var/tmp/diff_new_pack.117TJO/_new  2016-09-14 23:27:57.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Runner5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   krunner
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ krunner-5.25.0.tar.xz -> krunner-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.25.0/CMakeLists.txt 
new/krunner-5.26.0/CMakeLists.txt
--- old/krunner-5.25.0/CMakeLists.txt   2016-08-07 15:57:13.0 +0200
+++ new/krunner-5.26.0/CMakeLists.txt   2016-09-06 14:17:23.0 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -20,8 +20,8 @@
 include(KDECMakeSettings)
 include(KDEPackageAppTemplates)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX KRUNNER
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.25.0/src/runnercontext.cpp 
new/krunner-5.26.0/src/runnercontext.cpp
--- old/krunner-5.25.0/src/runnercontext.cpp2016-08-07 15:57:13.0 
+0200
+++ new/krunner-5.26.0/src/runnercontext.cpp2016-09-06 14:17:23.0 
+0200
@@ -207,7 +207,7 @@
 }
 }
 const bool hasProtocol = !url.scheme().isEmpty();
-const bool isLocalProtocol = 
KProtocolInfo::protocolClass(url.scheme()) == QLatin1String(":local");
+const bool isLocalProtocol = hasProtocol && 
KProtocolInfo::protocolClass(url.scheme()) == QLatin1String(":local");
 if (hasProtocol &&
 ((!isLocalProtocol && !url.host().isEmpty()) ||
  (isLocalProtocol && url.scheme() != 
QLatin1String("file" {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.25.0/templates/runner/%{APPNAMELC}.desktop 
new/krunner-5.26.0/templates/runner/%{APPNAMELC}.desktop
--- old/krunner-5.25.0/templates/runner/%{APPNAMELC}.desktop2016-08-07 
15:57:13.0 +0200
+++ new/krunner-5.26.0/templates/runner/%{APPNAMELC}.desktop2016-09-06 
14:17:23.0 +0200
@@ -12,6 +12,7 @@
 Name[gd]=%{APPNAME}
 Name[gl]=%{APPNAME}
 Name[it]=%{APPNAME}
+Name[lt]=%{APPNAME}
 Name[nb]=%{APPNAME}
 Name[nl]=%{APPNAME}
 Name[nn]=%{APPNAME}
@@ -44,6 +45,7 @@
 Comment[gd]=Ruithear %{APPNAME}
 Comment[gl]=Executor de %{APPNAME}
 Comment[it]=Esecutore di %{APPNAME}
+Comment[lt]=%{APPNAME} paleidiklis
 Comment[nb]=%{APPNAME}-kjører
 Comment[nl]=%{APPNAME} runner
 Comment[nn]=%{APPNAME}-køyrar




commit kplotting for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kplotting for openSUSE:Factory 
checked in at 2016-09-14 23:27:22

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  2016-08-29 
15:09:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.kplotting.new/kplotting.changes 2016-09-14 
23:27:24.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:52:39 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kplotting-5.25.0.tar.xz

New:

  kplotting-5.26.0.tar.xz



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

++ kplotting-5.25.0.tar.xz -> kplotting-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.25.0/CMakeLists.txt 
new/kplotting-5.26.0/CMakeLists.txt
--- old/kplotting-5.25.0/CMakeLists.txt 2016-08-06 10:38:40.0 +0200
+++ new/kplotting-5.26.0/CMakeLists.txt 2016-09-06 00:42:24.0 +0200
@@ -3,7 +3,7 @@
 project(KPlotting)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KPLOTTING
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kplotting_version.h"




commit kpty for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kpty for openSUSE:Factory checked in 
at 2016-09-14 23:27:32

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.changes2016-08-29 
15:09:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.kpty.new/kpty.changes   2016-09-14 
23:27:34.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:52:52 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kpty-5.25.0.tar.xz

New:

  kpty-5.26.0.tar.xz



Other differences:
--
++ kpty.spec ++
--- /var/tmp/diff_new_pack.cWmne4/_old  2016-09-14 23:27:35.0 +0200
+++ /var/tmp/diff_new_pack.cWmne4/_new  2016-09-14 23:27:35.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Pty5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kpty
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kpty-5.25.0.tar.xz -> kpty-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpty-5.25.0/CMakeLists.txt 
new/kpty-5.26.0/CMakeLists.txt
--- old/kpty-5.25.0/CMakeLists.txt  2016-08-07 15:56:27.0 +0200
+++ new/kpty-5.26.0/CMakeLists.txt  2016-09-06 14:13:10.0 +0200
@@ -3,15 +3,15 @@
 project(KPty)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 set(REQUIRED_QT_VERSION 5.5.0)
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)




commit kpeople5 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kpeople5 for openSUSE:Factory 
checked in at 2016-09-14 23:27:12

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.changes2016-08-29 
15:08:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.kpeople5.new/kpeople5.changes   2016-09-14 
23:27:14.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:52:31 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kpeople-5.25.0.tar.xz

New:

  kpeople-5.26.0.tar.xz



Other differences:
--
++ kpeople5.spec ++
--- /var/tmp/diff_new_pack.OaXgiT/_old  2016-09-14 23:27:15.0 +0200
+++ /var/tmp/diff_new_pack.OaXgiT/_new  2016-09-14 23:27:15.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define rname kpeople
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kpeople5
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kpeople-5.25.0.tar.xz -> kpeople-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.25.0/CMakeLists.txt 
new/kpeople-5.26.0/CMakeLists.txt
--- old/kpeople-5.25.0/CMakeLists.txt   2016-08-07 15:55:48.0 +0200
+++ new/kpeople-5.26.0/CMakeLists.txt   2016-09-06 14:12:27.0 +0200
@@ -3,14 +3,14 @@
 project (KPeople)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 set(REQUIRED_QT_VERSION 5.5.0)
 




commit kparts for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kparts for openSUSE:Factory checked 
in at 2016-09-14 23:27:03

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.changes2016-08-29 
15:08:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.kparts.new/kparts.changes   2016-09-14 
23:27:04.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:52:22 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kparts-5.25.0.tar.xz

New:

  kparts-5.26.0.tar.xz



Other differences:
--
++ kparts.spec ++
--- /var/tmp/diff_new_pack.yTSdFA/_old  2016-09-14 23:27:05.0 +0200
+++ /var/tmp/diff_new_pack.yTSdFA/_new  2016-09-14 23:27:05.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Parts5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kparts
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kparts-5.25.0.tar.xz -> kparts-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kparts-5.25.0/CMakeLists.txt 
new/kparts-5.26.0/CMakeLists.txt
--- old/kparts-5.25.0/CMakeLists.txt2016-08-07 15:55:33.0 +0200
+++ new/kparts-5.26.0/CMakeLists.txt2016-09-06 14:12:09.0 +0200
@@ -3,7 +3,7 @@
 project(KParts)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -21,8 +21,8 @@
 
 include(ECMSetupVersion)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KPARTS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kparts_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5PartsConfigVersion.cmake"




commit knotifyconfig for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package knotifyconfig for openSUSE:Factory 
checked in at 2016-09-14 23:26:38

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  
2016-08-29 15:08:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.knotifyconfig.new/knotifyconfig.changes 
2016-09-14 23:26:40.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:52:11 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  knotifyconfig-5.25.0.tar.xz

New:

  knotifyconfig-5.26.0.tar.xz



Other differences:
--
++ knotifyconfig.spec ++
--- /var/tmp/diff_new_pack.0st1xo/_old  2016-09-14 23:26:41.0 +0200
+++ /var/tmp/diff_new_pack.0st1xo/_new  2016-09-14 23:26:41.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5NotifyConfig5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   knotifyconfig
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ knotifyconfig-5.25.0.tar.xz -> knotifyconfig-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.25.0/CMakeLists.txt 
new/knotifyconfig-5.26.0/CMakeLists.txt
--- old/knotifyconfig-5.25.0/CMakeLists.txt 2016-08-07 15:54:50.0 
+0200
+++ new/knotifyconfig-5.26.0/CMakeLists.txt 2016-09-06 14:11:19.0 
+0200
@@ -4,15 +4,15 @@
 
 # Dependencies
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.5.0)
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets DBus)




commit kpackage for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kpackage for openSUSE:Factory 
checked in at 2016-09-14 23:26:51

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.changes2016-08-29 
15:08:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kpackage.new/kpackage.changes   2016-09-14 
23:26:53.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:52:17 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Silence contentHash deprecation warnings
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kpackage-5.25.0.tar.xz

New:

  kpackage-5.26.0.tar.xz



Other differences:
--
++ kpackage.spec ++
--- /var/tmp/diff_new_pack.7a831A/_old  2016-09-14 23:26:54.0 +0200
+++ /var/tmp/diff_new_pack.7a831A/_new  2016-09-14 23:26:54.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kpackage
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kpackage-5.25.0.tar.xz -> kpackage-5.26.0.tar.xz ++
 9143 lines of diff (skipped)




commit kmediaplayer for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kmediaplayer for openSUSE:Factory 
checked in at 2016-09-14 23:26:07

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
2016-08-29 15:07:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmediaplayer.new/kmediaplayer.changes   
2016-09-14 23:26:09.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:51:48 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kmediaplayer-5.25.0.tar.xz

New:

  kmediaplayer-5.26.0.tar.xz



Other differences:
--
++ kmediaplayer.spec ++
--- /var/tmp/diff_new_pack.Y4hWEY/_old  2016-09-14 23:26:10.0 +0200
+++ /var/tmp/diff_new_pack.Y4hWEY/_new  2016-09-14 23:26:10.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5MediaPlayer5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kmediaplayer
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kmediaplayer-5.25.0.tar.xz -> kmediaplayer-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmediaplayer-5.25.0/CMakeLists.txt 
new/kmediaplayer-5.26.0/CMakeLists.txt
--- old/kmediaplayer-5.25.0/CMakeLists.txt  2016-08-06 10:36:44.0 
+0200
+++ new/kmediaplayer-5.26.0/CMakeLists.txt  2016-09-06 00:37:58.0 
+0200
@@ -7,7 +7,7 @@
 # CMake stuff from ECM
 #
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,8 +23,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 #
 # Version info
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmediaplayer-5.25.0/autotests/testplayer.h 
new/kmediaplayer-5.26.0/autotests/testplayer.h
--- old/kmediaplayer-5.25.0/autotests/testplayer.h  2016-08-06 
10:36:44.0 +0200
+++ new/kmediaplayer-5.26.0/autotests/testplayer.h  2016-09-06 
00:37:58.0 +0200
@@ -35,27 +35,35 @@
 public:
 TestPlayer(QObject *parent) : Player(parent) {}
 
-KMediaPlayer::View *view()
+KMediaPlayer::View *view() Q_DECL_OVERRIDE
 {
 return 0;
 }
-void pause() {}
-void play() {}
-void stop() {}
-void seek(qlonglong) {}
-bool isSeekable() const
+void pause() Q_DECL_OVERRIDE
+{
+}
+void play() Q_DECL_OVERRIDE
+{
+}
+void stop() Q_DECL_OVERRIDE
+{
+}
+void seek(qlonglong) Q_DECL_OVERRIDE
+{
+}
+bool isSeekable() const Q_DECL_OVERRIDE
 {
 return false;
 }
-qlonglong position() const
+qlonglong position() const Q_DECL_OVERRIDE
 {
 return 0L;
 }
-bool hasLength() const
+bool hasLength() const Q_DECL_OVERRIDE
 {
 return false;
 }
-qlonglong length() const
+qlonglong length() const Q_DECL_OVERRIDE
 {
 return 0L;
 }




commit knotifications for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package knotifications for openSUSE:Factory 
checked in at 2016-09-14 23:26:27

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
2016-08-29 15:07:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.knotifications.new/knotifications.changes   
2016-09-14 23:26:29.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:52:02 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Get StatusNotifierWatcher property ProtocolVersion in async way
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  knotifications-5.25.0.tar.xz

New:

  knotifications-5.26.0.tar.xz



Other differences:
--
++ knotifications.spec ++
--- /var/tmp/diff_new_pack.fSX3hU/_old  2016-09-14 23:26:30.0 +0200
+++ /var/tmp/diff_new_pack.fSX3hU/_new  2016-09-14 23:26:30.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Notifications5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   knotifications
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ knotifications-5.25.0.tar.xz -> knotifications-5.26.0.tar.xz ++
 3561 lines of diff (skipped)




commit kjsembed for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kjsembed for openSUSE:Factory 
checked in at 2016-09-14 23:25:56

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.changes2016-08-29 
15:06:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.kjsembed.new/kjsembed.changes   2016-09-14 
23:25:58.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:51:39 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kjsembed-5.25.0.tar.xz

New:

  kjsembed-5.26.0.tar.xz



Other differences:
--
++ kjsembed.spec ++
--- /var/tmp/diff_new_pack.drTkzh/_old  2016-09-14 23:25:59.0 +0200
+++ /var/tmp/diff_new_pack.drTkzh/_new  2016-09-14 23:25:59.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5JsEmbed5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kjsembed
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kjsembed-5.25.0.tar.xz -> kjsembed-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-5.25.0/CMakeLists.txt 
new/kjsembed-5.26.0/CMakeLists.txt
--- old/kjsembed-5.25.0/CMakeLists.txt  2016-08-07 15:53:16.0 +0200
+++ new/kjsembed-5.26.0/CMakeLists.txt  2016-09-06 14:09:30.0 +0200
@@ -3,7 +3,7 @@
 project(KJsEmbed)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -21,8 +21,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 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"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjsembed-5.25.0/po/pt_BR/kjsembed5.po 
new/kjsembed-5.26.0/po/pt_BR/kjsembed5.po
--- old/kjsembed-5.25.0/po/pt_BR/kjsembed5.po   2016-08-07 15:53:16.0 
+0200
+++ new/kjsembed-5.26.0/po/pt_BR/kjsembed5.po   2016-09-06 14:09:30.0 
+0200
@@ -200,7 +200,7 @@
 
 #: kjsembed/quiloader_binding.cpp:98
 msgid "Failed to create Layout."
-msgstr "Falha ao criar o leiaute."
+msgstr "Falha ao criar o layout."
 
 #: kjsembed/quiloader_binding.cpp:107
 msgid "No classname specified."




commit kjobwidgets for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kjobwidgets for openSUSE:Factory 
checked in at 2016-09-14 23:25:43

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  2016-08-29 
15:06:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kjobwidgets.new/kjobwidgets.changes 
2016-09-14 23:25:45.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:51:21 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kjobwidgets-5.25.0.tar.xz

New:

  kjobwidgets-5.26.0.tar.xz



Other differences:
--
++ kjobwidgets.spec ++
--- /var/tmp/diff_new_pack.1WV19f/_old  2016-09-14 23:25:46.0 +0200
+++ /var/tmp/diff_new_pack.1WV19f/_new  2016-09-14 23:25:46.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5JobWidgets5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kjobwidgets
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kjobwidgets-5.25.0.tar.xz -> kjobwidgets-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjobwidgets-5.25.0/CMakeLists.txt 
new/kjobwidgets-5.26.0/CMakeLists.txt
--- old/kjobwidgets-5.25.0/CMakeLists.txt   2016-08-07 15:52:35.0 
+0200
+++ new/kjobwidgets-5.26.0/CMakeLists.txt   2016-09-06 14:08:43.0 
+0200
@@ -3,7 +3,7 @@
 project(KJobWidgets)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,8 +16,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjobwidgets-5.25.0/po/sl/kjobwidgets5_qt.po 
new/kjobwidgets-5.26.0/po/sl/kjobwidgets5_qt.po
--- old/kjobwidgets-5.25.0/po/sl/kjobwidgets5_qt.po 2016-08-07 
15:52:35.0 +0200
+++ new/kjobwidgets-5.26.0/po/sl/kjobwidgets5_qt.po 2016-09-06 
14:08:43.0 +0200
@@ -11,13 +11,13 @@
 # Andrej Vernekar , 2005, 2007, 2008, 2009, 2010.
 # Jure Repinc , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 
2012, 2013.
 # Andrej Vernekar , 2008, 2011, 2012.
-# Andrej Mernik , 2012, 2013, 2014.
+# Andrej Mernik , 2012, 2013, 2014, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2014-06-12 15:11+0200\n"
+"PO-Revision-Date: 2016-09-01 20:13+0200\n"
 "Last-Translator: Andrej Mernik \n"
 "Language-Team: Slovenian \n"
 "Language: sl\n"
@@ -168,10 +168,10 @@
 msgctxt "KWidgetJobTracker|"
 msgid "%1 of %2 complete"
 msgid_plural "%1 of %2 complete"
-msgstr[0] "Končano %1 od %2"
-msgstr[1] "Končano %1 od %2"
-msgstr[2] "Končano %1 od %2"
-msgstr[3] "Končano %1 od %2"
+msgstr[0] "Zaključeno %1 od %2"
+msgstr[1] "Zaključeno %1 od %2"
+msgstr[2] "Zaključeno %1 od %2"
+msgstr[3] "Zaključeno %1 od %2"
 
 #: kwidgetjobtracker.cpp:355 kwidgetjobtracker.cpp:372
 #, qt-format
@@ -280,7 +280,7 @@
 #: kwidgetjobtracker.cpp:543
 msgctxt "KWidgetJobTracker|"
 msgid " this window open after transfer is complete"
-msgstr "O okno odprto, ko se prenos konča"
+msgstr "O okno odprto, ko se prenos zaključi"
 
 #: kwidgetjobtracker.cpp:551
 msgctxt "KWidgetJobTracker|"




commit kitemviews for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kitemviews for openSUSE:Factory 
checked in at 2016-09-14 23:25:30

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.changes2016-08-29 
15:06:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.kitemviews.new/kitemviews.changes   
2016-09-14 23:25:32.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:51:15 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kitemviews-5.25.0.tar.xz

New:

  kitemviews-5.26.0.tar.xz



Other differences:
--
++ kitemviews.spec ++
--- /var/tmp/diff_new_pack.yL9a7k/_old  2016-09-14 23:25:33.0 +0200
+++ /var/tmp/diff_new_pack.yL9a7k/_new  2016-09-14 23:25:33.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5ItemViews5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kitemviews
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kitemviews-5.25.0.tar.xz -> kitemviews-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitemviews-5.25.0/CMakeLists.txt 
new/kitemviews-5.26.0/CMakeLists.txt
--- old/kitemviews-5.25.0/CMakeLists.txt2016-08-07 15:52:09.0 
+0200
+++ new/kitemviews-5.26.0/CMakeLists.txt2016-09-06 14:08:14.0 
+0200
@@ -3,7 +3,7 @@
 project(KItemViews)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -22,7 +22,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KITEMVIEWS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kitemviews_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5ItemViewsConfigVersion.cmake"




commit kitemmodels for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "kitemmodels"

Changes:

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

Old:

  kitemmodels-5.25.0.tar.xz

New:

  kitemmodels-5.26.0.tar.xz



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

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

commit kio for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 15:05:19.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kio.new/kio.changes 2016-09-14 
23:24:40.0 +0200
@@ -1,0 +2,21 @@
+Tue Sep  6 20:50:52 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * KPropertiesDialog: remove warning note from docu,
+the bug is gone
+  * [test program] resolve relative paths using QUrl::fromUserInput
+  * KUrlRequester: fix error box when selecting a file and
+reopening the file dialog
+  * Provide a fallback if slaves don't list the . entry
+(kde#366795)
+  * Fix creating symlink over "desktop" protocol
+  * KNewFileMenu: when creating symlinks use KIO::linkAs
+instead of KIO::link
+  * KFileWidget: fix double '/' in path
+  * KUrlRequester: use static connect() syntax, was inconsistent
+  * KUrlRequester: pass window() as parent for the QFileDialog
+  * Avoid calling connect(null, .) from KUrlComboRequester
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kio-5.25.0.tar.xz

New:

  kio-5.26.0.tar.xz



Other differences:
--
++ kio.spec ++
--- /var/tmp/diff_new_pack.Rn6pI5/_old  2016-09-14 23:24:41.0 +0200
+++ /var/tmp/diff_new_pack.Rn6pI5/_new  2016-09-14 23:24:41.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kio
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kio-5.25.0.tar.xz -> kio-5.26.0.tar.xz ++
 32637 lines of diff (skipped)




commit kinit for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:04:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.kinit.new/kinit.changes 2016-09-14 
23:24:26.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:50:46 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kinit-5.25.0.tar.xz

New:

  kinit-5.26.0.tar.xz



Other differences:
--
++ kinit.spec ++
--- /var/tmp/diff_new_pack.UYgISJ/_old  2016-09-14 23:24:27.0 +0200
+++ /var/tmp/diff_new_pack.UYgISJ/_new  2016-09-14 23:24:27.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kinit
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kinit-5.25.0.tar.xz -> kinit-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.25.0/CMakeLists.txt 
new/kinit-5.26.0/CMakeLists.txt
--- old/kinit-5.25.0/CMakeLists.txt 2016-08-07 15:50:47.0 +0200
+++ new/kinit-5.26.0/CMakeLists.txt 2016-09-06 14:06:39.0 +0200
@@ -3,7 +3,7 @@
 project(KInit)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,8 +19,8 @@
 include(ECMPackageConfigHelpers)
 include(ECMSetupVersion)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KINIT
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kinit_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kinit-5.25.0/po/nn/kinit5.po 
new/kinit-5.26.0/po/nn/kinit5.po
--- old/kinit-5.25.0/po/nn/kinit5.po2016-08-07 15:50:47.0 +0200
+++ new/kinit-5.26.0/po/nn/kinit5.po2016-09-06 14:06:39.0 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2016-06-10 07:29+\n"
+"POT-Creation-Date: 2016-07-21 07:46+\n"
 "PO-Revision-Date: 2015-06-04 18:11+0100\n"
 "Last-Translator: Karl Ove Hufthammer \n"
 "Language-Team: Norwegian Nynorsk \n"
@@ -22,7 +22,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: kdeinit/kinit.cpp:547
+#: kdeinit/kinit.cpp:509
 msgid ""
 "Unable to start new process.\n"
 "The system may have reached the maximum number of open files possible or the "
@@ -32,7 +32,7 @@
 "Systemet har anten nådd det høgste moglege talet på opne filer eller det "
 "høgste talet på opne filer du har lov til å bruka."
 
-#: kdeinit/kinit.cpp:572
+#: kdeinit/kinit.cpp:531
 msgid ""
 "Unable to create new process.\n"
 "The system may have reached the maximum number of processes possible or the "
@@ -42,12 +42,12 @@
 "Systemet har anten nådd det høgste moglege talet på prosessar eller det "
 "høgste talet på prosessar du har lov til å bruka."
 
-#: kdeinit/kinit.cpp:663
+#: kdeinit/kinit.cpp:614
 #, kde-format
 msgid "Could not find '%1' executable."
 msgstr "Fann ikkje programfila «%1»."
 
-#: kdeinit/kinit.cpp:696
+#: kdeinit/kinit.cpp:647
 #, kde-format
 msgid ""
 "Could not open library '%1'.\n"
@@ -56,7 +56,7 @@
 "Klarte ikkje opna biblioteket «%1».\n"
 "%2"
 
-#: kdeinit/kinit.cpp:738
+#: kdeinit/kinit.cpp:684
 #, kde-format
 msgid ""
 "Could not find 'kdemain' in '%1'.\n"
@@ -105,7 +105,7 @@
 msgid "Error loading '%1'.\n"
 msgstr "Feil ved lasting av «%1».\n"
 
-#: klauncher/klauncher_main.cpp:142
+#: klauncher/klauncher_main.cpp:146
 msgid ""
 "klauncher: This program is not supposed to be started manually.\n"
 "klauncher: It is started automatically by kdeinit5.\n"




commit kiconthemes for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:15:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiconthemes.new/kiconthemes.changes 
2016-09-14 23:23:57.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:50:27 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kiconthemes-5.25.0.tar.xz

New:

  kiconthemes-5.26.0.tar.xz



Other differences:
--
++ kiconthemes.spec ++
--- /var/tmp/diff_new_pack.74PsAS/_old  2016-09-14 23:23:58.0 +0200
+++ /var/tmp/diff_new_pack.74PsAS/_new  2016-09-14 23:23:58.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5IconThemes5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kiconthemes
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kiconthemes-5.25.0.tar.xz -> kiconthemes-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.25.0/CMakeLists.txt 
new/kiconthemes-5.26.0/CMakeLists.txt
--- old/kiconthemes-5.25.0/CMakeLists.txt   2016-08-07 15:49:55.0 
+0200
+++ new/kiconthemes-5.26.0/CMakeLists.txt   2016-09-06 14:05:41.0 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -20,8 +20,8 @@
 include(ECMMarkNonGuiExecutable)
 include(ECMQtDeclareLoggingCategory)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX KICONTHEMES
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.25.0/po/pl/kiconthemes5.po 
new/kiconthemes-5.26.0/po/pl/kiconthemes5.po
--- old/kiconthemes-5.25.0/po/pl/kiconthemes5.po2016-08-07 
15:49:55.0 +0200
+++ new/kiconthemes-5.26.0/po/pl/kiconthemes5.po2016-09-06 
14:05:41.0 +0200
@@ -15,20 +15,20 @@
 # Robert Gomulka , 2007, 2008.
 # Marta Rybczyńska , 2007, 2008, 2009, 2010, 2011.
 # Artur Chłond , 2010.
-# Łukasz Wojniłowicz , 2011, 2012, 2014.
+# Łukasz Wojniłowicz , 2011, 2012, 2014, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-07-14 08:05+\n"
-"PO-Revision-Date: 2014-01-26 09:05+0100\n"
+"PO-Revision-Date: 2016-08-27 09:15+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
 
@@ -58,7 +58,7 @@
 
 #: kicondialog.cpp:326
 msgid "Search interactively for icon names (e.g. folder)."
-msgstr "Szukaj interaktywnie nazw ikon (np. folderu)."
+msgstr "Szukaj interaktywnie nazw ikon (np. katalogu)."
 
 #: kicondialog.cpp:356
 msgid "Actions"




commit kimageformats for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  
2016-08-29 15:04:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kimageformats.new/kimageformats.changes 
2016-09-14 23:24:17.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:50:40 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kimageformats-5.25.0.tar.xz

New:

  kimageformats-5.26.0.tar.xz



Other differences:
--
++ kimageformats.spec ++
--- /var/tmp/diff_new_pack.zPJNtS/_old  2016-09-14 23:24:18.0 +0200
+++ /var/tmp/diff_new_pack.zPJNtS/_new  2016-09-14 23:24:18.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kimageformats
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kimageformats-5.25.0.tar.xz -> kimageformats-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.25.0/CMakeLists.txt 
new/kimageformats-5.26.0/CMakeLists.txt
--- old/kimageformats-5.25.0/CMakeLists.txt 2016-08-06 10:34:21.0 
+0200
+++ new/kimageformats-5.26.0/CMakeLists.txt 2016-09-06 00:36:08.0 
+0200
@@ -3,7 +3,7 @@
 project(KImageFormats)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit kidletime for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:04:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.kidletime.new/kidletime.changes 2016-09-14 
23:24:07.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:50:33 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * [xsync] XFlush in simulateUserActivity
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kidletime-5.25.0.tar.xz

New:

  kidletime-5.26.0.tar.xz



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

++ kidletime-5.25.0.tar.xz -> kidletime-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidletime-5.25.0/CMakeLists.txt 
new/kidletime-5.26.0/CMakeLists.txt
--- old/kidletime-5.25.0/CMakeLists.txt 2016-08-06 10:34:06.0 +0200
+++ new/kidletime-5.26.0/CMakeLists.txt 2016-09-06 00:35:55.0 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -17,7 +17,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KIDLETIME
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kidletime_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kidletime-5.25.0/src/plugins/xsync/xsyncbasedpoller.cpp 
new/kidletime-5.26.0/src/plugins/xsync/xsyncbasedpoller.cpp
--- old/kidletime-5.25.0/src/plugins/xsync/xsyncbasedpoller.cpp 2016-08-06 
10:34:06.0 +0200
+++ new/kidletime-5.26.0/src/plugins/xsync/xsyncbasedpoller.cpp 2016-09-06 
00:35:55.0 +0200
@@ -339,5 +339,6 @@
 void XSyncBasedPoller::simulateUserActivity()
 {
 XResetScreenSaver(m_display);
+XFlush(m_display);
 }
 




commit ki18n for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:04:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.ki18n.new/ki18n.changes 2016-09-14 
23:23:48.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:50:12 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  ki18n-5.25.0.tar.xz

New:

  ki18n-5.26.0.tar.xz



Other differences:
--
++ ki18n.spec ++
--- /var/tmp/diff_new_pack.GH7vUl/_old  2016-09-14 23:23:49.0 +0200
+++ /var/tmp/diff_new_pack.GH7vUl/_new  2016-09-14 23:23:49.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5I18n5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   ki18n
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ ki18n-5.25.0.tar.xz -> ki18n-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.25.0/CMakeLists.txt 
new/ki18n-5.26.0/CMakeLists.txt
--- old/ki18n-5.25.0/CMakeLists.txt 2016-08-07 15:49:29.0 +0200
+++ new/ki18n-5.26.0/CMakeLists.txt 2016-09-06 14:05:12.0 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,7 +16,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(
   ${KF5_VERSION}




commit khtml for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:03:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.khtml.new/khtml.changes 2016-09-14 
23:23:37.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:49:50 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  khtml-5.25.0.tar.xz

New:

  khtml-5.26.0.tar.xz



Other differences:
--
++ khtml.spec ++
--- /var/tmp/diff_new_pack.x0r5ND/_old  2016-09-14 23:23:38.0 +0200
+++ /var/tmp/diff_new_pack.x0r5ND/_new  2016-09-14 23:23:38.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5KHtml5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   khtml
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ khtml-5.25.0.tar.xz -> khtml-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.25.0/CMakeLists.txt 
new/khtml-5.26.0/CMakeLists.txt
--- old/khtml-5.25.0/CMakeLists.txt 2016-08-07 15:49:01.0 +0200
+++ new/khtml-5.26.0/CMakeLists.txt 2016-09-06 14:04:32.0 +0200
@@ -3,7 +3,7 @@
 project(KHtml)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -20,8 +20,8 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 find_package(KF5Archive ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Codecs ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5GlobalAccel ${KF5_DEP_VERSION} REQUIRED)




commit kguiaddons for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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.changes2016-08-29 
15:03:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kguiaddons.new/kguiaddons.changes   
2016-09-14 23:23:27.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:49:43 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kguiaddons-5.25.0.tar.xz

New:

  kguiaddons-5.26.0.tar.xz



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

++ kguiaddons-5.25.0.tar.xz -> kguiaddons-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kguiaddons-5.25.0/CMakeLists.txt 
new/kguiaddons-5.26.0/CMakeLists.txt
--- old/kguiaddons-5.25.0/CMakeLists.txt2016-08-06 10:32:56.0 
+0200
+++ new/kguiaddons-5.26.0/CMakeLists.txt2016-09-06 00:34:49.0 
+0200
@@ -3,7 +3,7 @@
 project(KGuiAddons)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -25,7 +25,7 @@
 include(GenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KGUIADDONS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kguiaddons_version.h"




commit kfilemetadata5 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "kfilemetadata5"

Changes:

--- /work/SRC/openSUSE:Factory/kfilemetadata5/kfilemetadata5.changes
2016-08-29 15:03:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfilemetadata5.new/kfilemetadata5.changes   
2016-09-14 23:23:05.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  6 20:49:33 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Only require Xattr if the operating system is Linux
+  * Restore Windows build
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kfilemetadata-5.25.0.tar.xz

New:

  kfilemetadata-5.26.0.tar.xz



Other differences:
--
++ kfilemetadata5.spec ++
--- /var/tmp/diff_new_pack.p5TPnP/_old  2016-09-14 23:23:06.0 +0200
+++ /var/tmp/diff_new_pack.p5TPnP/_new  2016-09-14 23:23:06.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without ffmpeg
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kfilemetadata5
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 Summary:Extract Metadata

++ kfilemetadata-5.25.0.tar.xz -> kfilemetadata-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kfilemetadata-5.25.0/CMakeLists.txt 
new/kfilemetadata-5.26.0/CMakeLists.txt
--- old/kfilemetadata-5.25.0/CMakeLists.txt 2016-08-07 15:47:54.0 
+0200
+++ new/kfilemetadata-5.26.0/CMakeLists.txt 2016-09-06 14:03:15.0 
+0200
@@ -3,7 +3,7 @@
 project(kfilemetadata)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -17,8 +17,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
   VARIABLE_PREFIX KFILEMETADATA
@@ -61,10 +61,12 @@
URL "http://www.wagner.pp.ru/~vitus/software/catdoc/; 
TYPE RUNTIME
PURPOSE "Extract text from office 98 files - RUNTIME 
dependency")
 
-find_package(Xattr)
-set_package_properties(Xattr PROPERTIES
-URL "http://savannah.nongnu.org/projects/attr;
-TYPE REQUIRED)
+if ( CMAKE_SYSTEM_NAME MATCHES "Linux" )
+find_package(Xattr)
+set_package_properties(Xattr PROPERTIES
+URL "http://savannah.nongnu.org/projects/attr;
+TYPE REQUIRED)
+endif()
 
 #find_package(QMobipocket)
 #set_package_properties(QMobipocket PROPERTIES DESCRIPTION "Mobipocket epub 
reader"




commit kglobalaccel for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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
2016-08-29 15:14:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.kglobalaccel.new/kglobalaccel.changes   
2016-09-14 23:23:16.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:49:38 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kglobalaccel-5.25.0.tar.xz

New:

  kglobalaccel-5.26.0.tar.xz



Other differences:
--
++ kglobalaccel.spec ++
--- /var/tmp/diff_new_pack.SU245a/_old  2016-09-14 23:23:17.0 +0200
+++ /var/tmp/diff_new_pack.SU245a/_new  2016-09-14 23:23:17.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5GlobalAccel5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kglobalaccel
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kglobalaccel-5.25.0.tar.xz -> kglobalaccel-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kglobalaccel-5.25.0/CMakeLists.txt 
new/kglobalaccel-5.26.0/CMakeLists.txt
--- old/kglobalaccel-5.25.0/CMakeLists.txt  2016-08-07 15:48:19.0 
+0200
+++ new/kglobalaccel-5.26.0/CMakeLists.txt  2016-09-06 14:03:44.0 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,8 +18,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KGLOBALACCEL
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kglobalaccel_version.h"




commit kemoticons for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kemoticons for openSUSE:Factory 
checked in at 2016-09-14 23:22:52

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.changes2016-08-29 
15:03:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.kemoticons.new/kemoticons.changes   
2016-09-14 23:22:54.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:49:18 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kemoticons-5.25.0.tar.xz

New:

  kemoticons-5.26.0.tar.xz



Other differences:
--
++ kemoticons.spec ++
--- /var/tmp/diff_new_pack.TgwbH6/_old  2016-09-14 23:22:54.0 +0200
+++ /var/tmp/diff_new_pack.TgwbH6/_new  2016-09-14 23:22:54.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Emoticons5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kemoticons
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kemoticons-5.25.0.tar.xz -> kemoticons-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kemoticons-5.25.0/CMakeLists.txt 
new/kemoticons-5.26.0/CMakeLists.txt
--- old/kemoticons-5.25.0/CMakeLists.txt2016-08-06 10:32:07.0 
+0200
+++ new/kemoticons-5.26.0/CMakeLists.txt2016-09-06 00:34:12.0 
+0200
@@ -3,7 +3,7 @@
 project(KEmoticons)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,8 +23,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KEMOTICONS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kemoticons_version.h"




commit kdoctools for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:02:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdoctools.new/kdoctools.changes 2016-09-14 
23:22:25.0 +0200
@@ -1,0 +2,11 @@
+Tue Sep  6 20:49:12 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Add paths for config, cache + data to general.entities
+  * Made up-to-date with the English version
+  * Add Space and Meta key entities to
+src/customization/en/user.entities
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdoctools-5.25.0.tar.xz

New:

  kdoctools-5.26.0.tar.xz



Other differences:
--
++ kdoctools.spec ++
--- /var/tmp/diff_new_pack.KIY9YQ/_old  2016-09-14 23:22:26.0 +0200
+++ /var/tmp/diff_new_pack.KIY9YQ/_new  2016-09-14 23:22:26.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdoctools
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kdoctools-5.25.0.tar.xz -> kdoctools-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.25.0/CMakeLists.txt 
new/kdoctools-5.26.0/CMakeLists.txt
--- old/kdoctools-5.25.0/CMakeLists.txt 2016-08-07 15:47:20.0 +0200
+++ new/kdoctools-5.26.0/CMakeLists.txt 2016-09-06 14:02:41.0 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -15,8 +15,8 @@
 include(ECMMarkNonGuiExecutable)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 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"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.25.0/src/customization/ca/user.entities 
new/kdoctools-5.26.0/src/customization/ca/user.entities
--- old/kdoctools-5.25.0/src/customization/ca/user.entities 2016-08-07 
15:47:20.0 +0200
+++ new/kdoctools-5.26.0/src/customization/ca/user.entities 2016-09-06 
14:02:41.0 +0200
@@ -5,51 +5,70 @@
  Please keep the entities sorted on the name: it will avoid duplicate
  names (which if they occur will cost you a _lot_ of time)
  -->
+
+
 Alt">
-Aplicacions">
+Ctrl">
+Supr">
+Fi">
+Esc">
+Inici">
+Insert">
+Maj">  
+Tab">
+
+Retorn">   
+Meta"> 
+Re Pàg">
+Av Pàg">
+Retrocés"> 
+Espai">
+
+Fletxa amunt">
+Fletxa avall">
+Fletxa dreta">
+Fletxa esquerra">
+
 dret del ratolí">
 esquerre del ratolí">
 mig del ratolí">
+
+Aplicacions">
+Frameworks del 
">
+Frameworks 
5 del ">
+Plasma mòbil del ">
+Centre multimèdia del Plasma pel 
">
+Plasma per ordinadors 
ultraportàtils del ">
+Escriptori Plasma del 
">
+Espais de treball Plasma del 
">
+Pulseaudio del Plasma pel 
">
+
 unitat lectora de CD-ROM">
 Centre d'informació">
-Ctrl">
 és a dir">
-Esc">
 etc.">
 IGU">
-Retorn">
-Frameworks del 
"> 
-Frameworks 
5 del ">
-Maj">
-Gestor de particions del KDE"> 

-Plasma Active del "> 

-Centre multimèdia del Plasma pel 
"> 
-Plasma per ordinadors 
ultraportàtils del "> 
-Escriptori Plasma del 
"> 
-Espais de treball Plasma del 
"> 
-Pulseaudio del Plasma pel 
">
+Gestor de particions del KDE">
 p. ex.">
 PMF">
 ppp">
-Retrocés">
 safata del sistema">
 
-Arranjament del 
sistema"> 
-Tab">
+Arranjament del 
sistema">
 
 
 Centre de control del 
">
 KF5">
 K">
 SC">
-Compilació de programari 
"> 
-
+Compilació de programari 
">
+Plasma Active del ">
 
 
 AntoniBellaantonibel...@yahoo.comTraductor'>
 AntoniBellaantonibel...@yahoo.comRevisor'>
-PepRocapep.r...@gmail.comTraductor'>

commit kdnssd-framework for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kdnssd-framework for 
openSUSE:Factory checked in at 2016-09-14 23:22:14

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
2016-08-29 15:02:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdnssd-framework.new/kdnssd-framework.changes   
2016-09-14 23:22:15.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:49:06 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdnssd-5.25.0.tar.xz

New:

  kdnssd-5.26.0.tar.xz



Other differences:
--
++ kdnssd-framework.spec ++
--- /var/tmp/diff_new_pack.cgi2Si/_old  2016-09-14 23:22:16.0 +0200
+++ /var/tmp/diff_new_pack.cgi2Si/_new  2016-09-14 23:22:16.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5DNSSD5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdnssd-framework
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  avahi-compat-mDNSResponder-devel
 BuildRequires:  cmake >= 2.8.12

++ kdnssd-5.25.0.tar.xz -> kdnssd-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdnssd-5.25.0/CMakeLists.txt 
new/kdnssd-5.26.0/CMakeLists.txt
--- old/kdnssd-5.25.0/CMakeLists.txt2016-08-07 15:47:03.0 +0200
+++ new/kdnssd-5.26.0/CMakeLists.txt2016-09-06 14:02:19.0 +0200
@@ -3,7 +3,7 @@
 project(KDNSSD)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -15,7 +15,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 set(REQUIRED_QT_VERSION 5.5.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Network)




commit kdesu for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:02:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesu.new/kdesu.changes 2016-09-14 
23:21:56.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:48:57 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdesu-5.25.0.tar.xz

New:

  kdesu-5.26.0.tar.xz



Other differences:
--
++ kdesu.spec ++
--- /var/tmp/diff_new_pack.bqv28K/_old  2016-09-14 23:21:57.0 +0200
+++ /var/tmp/diff_new_pack.bqv28K/_new  2016-09-14 23:21:57.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Su5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdesu
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kdesu-5.25.0.tar.xz -> kdesu-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdesu-5.25.0/CMakeLists.txt 
new/kdesu-5.26.0/CMakeLists.txt
--- old/kdesu-5.25.0/CMakeLists.txt 2016-08-07 15:46:25.0 +0200
+++ new/kdesu-5.26.0/CMakeLists.txt 2016-09-06 14:01:32.0 +0200
@@ -3,7 +3,7 @@
 project(KDESu)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,8 +16,8 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Service ${KF5_DEP_VERSION} REQUIRED)




commit kdesignerplugin for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  
2016-08-29 15:01:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesignerplugin.new/kdesignerplugin.changes 
2016-09-14 23:21:45.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:48:52 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdesignerplugin-5.25.0.tar.xz

New:

  kdesignerplugin-5.26.0.tar.xz



Other differences:
--
++ kdesignerplugin.spec ++
--- /var/tmp/diff_new_pack.wCWIwh/_old  2016-09-14 23:21:46.0 +0200
+++ /var/tmp/diff_new_pack.wCWIwh/_new  2016-09-14 23:21:46.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdesignerplugin
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kdesignerplugin-5.25.0.tar.xz -> kdesignerplugin-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdesignerplugin-5.25.0/CMakeLists.txt 
new/kdesignerplugin-5.26.0/CMakeLists.txt
--- old/kdesignerplugin-5.25.0/CMakeLists.txt   2016-08-07 15:46:11.0 
+0200
+++ new/kdesignerplugin-5.26.0/CMakeLists.txt   2016-09-06 14:01:10.0 
+0200
@@ -3,7 +3,7 @@
 project(KDesignerPlugin)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -25,8 +25,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5DocTools ${KF5_DEP_VERSION} REQUIRED)




commit kdewebkit for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kdewebkit for openSUSE:Factory 
checked in at 2016-09-14 23:22:04

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  2016-08-29 
15:02:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdewebkit.new/kdewebkit.changes 2016-09-14 
23:22:06.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:49:02 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdewebkit-5.25.0.tar.xz

New:

  kdewebkit-5.26.0.tar.xz



Other differences:
--
++ kdewebkit.spec ++
--- /var/tmp/diff_new_pack.KKDUrC/_old  2016-09-14 23:22:07.0 +0200
+++ /var/tmp/diff_new_pack.KKDUrC/_new  2016-09-14 23:22:07.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5WebKit5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdewebkit
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kdewebkit-5.25.0.tar.xz -> kdewebkit-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdewebkit-5.25.0/CMakeLists.txt 
new/kdewebkit-5.26.0/CMakeLists.txt
--- old/kdewebkit-5.25.0/CMakeLists.txt 2016-08-06 10:31:14.0 +0200
+++ new/kdewebkit-5.26.0/CMakeLists.txt 2016-09-06 00:33:26.0 +0200
@@ -3,7 +3,7 @@
 project(KDEWebKit)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -22,8 +22,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDEWEBKIT
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kdewebkit_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5WebKitConfigVersion.cmake"




commit kdelibs4support for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "kdelibs4support"

Changes:

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

Old:

  kdelibs4support-5.25.0.tar.xz

New:

  kdelibs4support-5.26.0.tar.xz



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

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

commit syndication for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "syndication"

Changes:

--- /work/SRC/openSUSE:Factory/syndication/syndication.changes  2016-08-29 
14:52:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.syndication.new/syndication.changes 
2016-09-14 23:21:04.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:44:40 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  syndication-16.08.0.tar.xz

New:

  syndication-16.08.1.tar.xz



Other differences:
--
++ syndication.spec ++
--- /var/tmp/diff_new_pack.leGrkS/_old  2016-09-14 23:21:05.0 +0200
+++ /var/tmp/diff_new_pack.leGrkS/_new  2016-09-14 23:21:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   syndication
-Version:16.08.0
+Version:16.08.1
 Release:0
 %define kf5_version 5.1.0
 Summary:KDE PIM Libraries: Syndication

++ syndication-16.08.0.tar.xz -> syndication-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-16.08.0/CMakeLists.txt 
new/syndication-16.08.1/CMakeLists.txt
--- old/syndication-16.08.0/CMakeLists.txt  2016-08-11 13:54:23.0 
+0200
+++ new/syndication-16.08.1/CMakeLists.txt  2016-08-21 15:29:33.0 
+0200
@@ -16,9 +16,9 @@
 include(KDECMakeSettings)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 
-
+set(PIM_VERSION "5.3.1")
 set(KF5_VERSION "5.23.0")
-set(SYNDICATION_LIB_VERSION "5.3.0")
+set(SYNDICATION_LIB_VERSION ${PIM_VERSION})
 
 ecm_setup_version(${SYNDICATION_LIB_VERSION} VARIABLE_PREFIX SYNDICATION
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/syndication_version.h"




commit spectacle for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "spectacle"

Changes:

--- /work/SRC/openSUSE:Factory/spectacle/spectacle.changes  2016-08-29 
14:52:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.spectacle.new/spectacle.changes 2016-09-14 
23:21:28.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:45:03 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  spectacle-16.08.0.tar.xz

New:

  spectacle-16.08.1.tar.xz



Other differences:
--
++ spectacle.spec ++
--- /var/tmp/diff_new_pack.q1elzb/_old  2016-09-14 23:21:28.0 +0200
+++ /var/tmp/diff_new_pack.q1elzb/_new  2016-09-14 23:21:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   spectacle
-Version:16.08.0
+Version:16.08.1
 Release:0
 BuildRequires:  extra-cmake-modules
 BuildRequires:  kconfig-devel

++ spectacle-16.08.0.tar.xz -> spectacle-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spectacle-16.08.0/CMakeLists.txt 
new/spectacle-16.08.1/CMakeLists.txt
--- old/spectacle-16.08.0/CMakeLists.txt2016-08-10 01:06:22.0 
+0200
+++ new/spectacle-16.08.1/CMakeLists.txt2016-09-05 14:13:05.0 
+0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 set(SPECTACLE_VERSION ${KDE_APPLICATIONS_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/spectacle-16.08.0/desktop/org.kde.spectacle.appdata.xml 
new/spectacle-16.08.1/desktop/org.kde.spectacle.appdata.xml
--- old/spectacle-16.08.0/desktop/org.kde.spectacle.appdata.xml 2016-08-10 
01:06:22.0 +0200
+++ new/spectacle-16.08.1/desktop/org.kde.spectacle.appdata.xml 2016-09-05 
14:13:05.0 +0200
@@ -10,6 +10,7 @@
   Spectacle
   Spectacle
   Spectacle
+  Spectacle
   Spectacle
   Spectacle
   Spectacle
@@ -27,10 +28,12 @@
 L'Spectacle és una aplicació per a prendre 
captures de pantalla de l'escriptori. Pot capturar imatges de tot l'escriptori, 
un sol monitor, la finestra activa, la finestra sota el ratolí o d'una regió 
rectangular de la pantalla. Les imatges es poden imprimir, enviar a altres 
aplicacions per a la seua manipulació o guardar-les com estan.
 Spectacle is a simple application for capturing 
desktop screenshots. It can capture images of the entire desktop, a single 
monitor, the currently active window, the window currently under the mouse, or 
a rectangular region of the screen. The images can then be printed, sent to 
other applications for manipulation, or quickly be saved as-is.
 Spectacle es una sencilla aplicación para realizar 
capturas de pantalla del escritorio. Puede capturar imágenes de todo el 
escritorio, de un único monitor, de la ventana activa actual, de la ventana que 
esté bajo el cursor o de un área rectangular de la pantalla. Las imágenes se 
pueden imprimir, enviar a otras aplicaciones para su procesamiento o guardar en 
el disco de forma inmediata.
+Spectacle on lihtne ekraanipiltide tegemise rakendus. See 
võib pildistada tervet töölauda, konkreetset monitori, parajasti aktiivset 
akent, hiire all olevat akent või ekraanil valitud ristkülikukujulist osa. 
Tehtud pilte saab trükkida, saata töötlemiseks teistesse rakendustesse või ka 
lihtsalt kiiresti ja muutmata salvestada.
 Spectacle è una semplice applicazione per catturare 
schermate. Può acquisire immagini dell'intero desktop, di un singolo monitor, 
della finestra attiva, della finestra sotto il puntatore del mouse, o di una 
regione rettangolare dello schermo. Le immagini possono essere stampate, 
inviate ad altre applicazioni per essere modificate, o salvate rapidamente così 
come sono.
 Spectacle is een eenvoudige toepassing voor het opnemen 
van schermafbeeldingen van het bureaublad. Het kan afbeeldingen van het gehele 
bureaublad, een enkele monitor, het nu actieve venster, het venster nu onder de 
muis of een rechthoekig gebied van het scherm. De afbeelding kan dan afgedrukt 
worden, naar een andere toepassing 

commit kopete for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "kopete"

Changes:

--- /work/SRC/openSUSE:Factory/kopete/kopete.changes2016-08-29 
14:43:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kopete.new/kopete.changes   2016-09-14 
23:14:27.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:31:19 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  kopete-16.08.0.tar.xz

New:

  kopete-16.08.1.tar.xz



Other differences:
--
++ kopete.spec ++
--- /var/tmp/diff_new_pack.x0v2O7/_old  2016-09-14 23:14:28.0 +0200
+++ /var/tmp/diff_new_pack.x0v2O7/_new  2016-09-14 23:14:28.0 +0200
@@ -16,7 +16,7 @@
 #
 
 Name:   kopete
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Instant Messenger
 License:GPL-2.0+

++ kopete-16.08.0.tar.xz -> kopete-16.08.1.tar.xz ++
/work/SRC/openSUSE:Factory/kopete/kopete-16.08.0.tar.xz 
/work/SRC/openSUSE:Factory/.kopete.new/kopete-16.08.1.tar.xz differ: char 27, 
line 1




commit kded for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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.changes2016-08-29 
15:01:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.kded.new/kded.changes   2016-09-14 
23:21:17.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:48:23 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kded-5.25.0.tar.xz

New:

  kded-5.26.0.tar.xz



Other differences:
--
++ kded.spec ++
--- /var/tmp/diff_new_pack.vC2t3q/_old  2016-09-14 23:21:19.0 +0200
+++ /var/tmp/diff_new_pack.vC2t3q/_new  2016-09-14 23:21:19.0 +0200
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kded
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kded-5.25.0.tar.xz -> kded-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.25.0/CMakeLists.txt 
new/kded-5.26.0/CMakeLists.txt
--- old/kded-5.25.0/CMakeLists.txt  2016-08-07 15:44:56.0 +0200
+++ new/kded-5.26.0/CMakeLists.txt  2016-09-06 13:59:22.0 +0200
@@ -3,7 +3,7 @@
 project(KDED)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,8 +16,8 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED)
 find_package(KF5Crash ${KF5_DEP_VERSION} REQUIRED)




commit sweeper for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package sweeper for openSUSE:Factory checked 
in at 2016-09-14 23:20:54

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


Package is "sweeper"

Changes:

--- /work/SRC/openSUSE:Factory/sweeper/sweeper.changes  2016-08-29 
14:51:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.sweeper.new/sweeper.changes 2016-09-14 
23:20:56.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:44:31 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  sweeper-16.08.0.tar.xz

New:

  sweeper-16.08.1.tar.xz



Other differences:
--
++ sweeper.spec ++
--- /var/tmp/diff_new_pack.XnvFax/_old  2016-09-14 23:20:57.0 +0200
+++ /var/tmp/diff_new_pack.XnvFax/_new  2016-09-14 23:20:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sweeper
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:KDE Privacy Utility
 License:LGPL-2.1+

++ sweeper-16.08.0.tar.xz -> sweeper-16.08.1.tar.xz ++




commit kdeclarative for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kdeclarative for openSUSE:Factory 
checked in at 2016-09-14 23:20:33

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
2016-08-29 15:00:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdeclarative.new/kdeclarative.changes   
2016-09-14 23:20:34.0 +0200
@@ -1,0 +2,12 @@
+Tue Sep  6 20:48:16 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * [kpackagelauncherqml] Assume desktop file name is same as pluginId
+  * Load QtQuick rendering settings from a config file and set default
+  * icondialog.cpp - proper compile fix that doesn't shadow m_dialog
+  * Fix crash when no QApplication is available
+  * Expose translation domain
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdeclarative-5.25.0.tar.xz

New:

  kdeclarative-5.26.0.tar.xz



Other differences:
--
++ kdeclarative.spec ++
--- /var/tmp/diff_new_pack.Fsk5lJ/_old  2016-09-14 23:20:35.0 +0200
+++ /var/tmp/diff_new_pack.Fsk5lJ/_new  2016-09-14 23:20:35.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Declarative5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdeclarative
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kdeclarative-5.25.0.tar.xz -> kdeclarative-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeclarative-5.25.0/CMakeLists.txt 
new/kdeclarative-5.26.0/CMakeLists.txt
--- old/kdeclarative-5.25.0/CMakeLists.txt  2016-08-07 15:44:43.0 
+0200
+++ new/kdeclarative-5.26.0/CMakeLists.txt  2016-09-06 13:59:05.0 
+0200
@@ -4,15 +4,15 @@
 
 # Dependencies
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.5.0)
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Qml Quick Gui)
 include(KDEInstallDirs)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeclarative-5.25.0/po/pl/kdeclarative5.po 
new/kdeclarative-5.26.0/po/pl/kdeclarative5.po
--- old/kdeclarative-5.25.0/po/pl/kdeclarative5.po  2016-08-07 
15:44:43.0 +0200
+++ new/kdeclarative-5.26.0/po/pl/kdeclarative5.po  2016-09-06 
13:59:05.0 +0200
@@ -11,13 +11,13 @@
 # Marta Rybczyńska , 2007, 2008, 2009, 2010, 2011, 
2012, 2013.
 # Michal Rudolf , 2010.
 # Artur Chłond , 2010.
-# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 
2015.
+# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 
2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-05-08 07:20+\n"
-"PO-Revision-Date: 2015-03-07 07:15+0100\n"
+"PO-Revision-Date: 2016-08-20 08:31+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -108,7 +108,7 @@
 ">\n"
 ">\n"
 ">\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
 
@@ -149,7 +149,7 @@
 msgstr ""
 "Skrót F12 jest zarezerwowany w Windows, więc nie można go użyć jako skrótu "
 "globalnego.\n"
-"Proszę wybrać inny."
+"Wybierz inny."
 
 #: qmlcontrols/kquickcontrols/private/keysequencehelper.cpp:333
 msgid "Conflict with Standard Application Shortcut"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeclarative-5.25.0/src/kpackagelauncherqml/main.cpp 
new/kdeclarative-5.26.0/src/kpackagelauncherqml/main.cpp
--- 

commit signon-kwallet-extension for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package signon-kwallet-extension for 
openSUSE:Factory checked in at 2016-09-14 23:20:43

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


Package is "signon-kwallet-extension"

Changes:

--- 
/work/SRC/openSUSE:Factory/signon-kwallet-extension/signon-kwallet-extension.changes
2016-08-29 14:51:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.signon-kwallet-extension.new/signon-kwallet-extension.changes
   2016-09-14 23:20:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:44:02 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  signon-kwallet-extension-16.08.0.tar.xz

New:

  signon-kwallet-extension-16.08.1.tar.xz



Other differences:
--
++ signon-kwallet-extension.spec ++
--- /var/tmp/diff_new_pack.VaUU22/_old  2016-09-14 23:20:47.0 +0200
+++ /var/tmp/diff_new_pack.VaUU22/_new  2016-09-14 23:20:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   signon-kwallet-extension
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:KWallet integration for signon framework
 License:GPL-2.0+

++ signon-kwallet-extension-16.08.0.tar.xz -> 
signon-kwallet-extension-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/signon-kwallet-extension-16.08.0/CMakeLists.txt 
new/signon-kwallet-extension-16.08.1/CMakeLists.txt
--- old/signon-kwallet-extension-16.08.0/CMakeLists.txt 2016-08-10 
01:27:47.0 +0200
+++ new/signon-kwallet-extension-16.08.1/CMakeLists.txt 2016-09-05 
00:55:44.0 +0200
@@ -2,7 +2,7 @@
 
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(kwalletsignon_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_minimum_required(VERSION 2.8.12)




commit okular for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "okular"

Changes:

--- /work/SRC/openSUSE:Factory/okular/okular.changes2016-08-29 
14:51:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.okular.new/okular.changes   2016-09-14 
23:20:26.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:42:51 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  okular-16.08.0.tar.xz

New:

  okular-16.08.1.tar.xz



Other differences:
--
++ okular.spec ++
--- /var/tmp/diff_new_pack.5PLZ7n/_old  2016-09-14 23:20:27.0 +0200
+++ /var/tmp/diff_new_pack.5PLZ7n/_new  2016-09-14 23:20:27.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   okular
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Document Viewer
 License:GPL-2.0+

++ okular-16.08.0.tar.xz -> okular-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okular-16.08.0/core/version.h 
new/okular-16.08.1/core/version.h
--- old/okular-16.08.0/core/version.h   2016-07-21 23:46:24.0 +0200
+++ new/okular-16.08.1/core/version.h   2016-08-23 00:22:33.0 +0200
@@ -10,10 +10,10 @@
 #ifndef _OKULAR_VERSION_H_
 #define _OKULAR_VERSION_H_
 
-#define OKULAR_VERSION_STRING "0.25.80"
+#define OKULAR_VERSION_STRING "0.26.0"
 #define OKULAR_VERSION_MAJOR 0
-#define OKULAR_VERSION_MINOR 25
-#define OKULAR_VERSION_RELEASE 80
+#define OKULAR_VERSION_MINOR 26
+#define OKULAR_VERSION_RELEASE 0
 #define OKULAR_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))
 
 #define OKULAR_VERSION \




commit mobipocket for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "mobipocket"

Changes:

--- /work/SRC/openSUSE:Factory/mobipocket/mobipocket.changes2016-08-29 
14:51:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.mobipocket.new/mobipocket.changes   
2016-09-14 23:20:15.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:42:33 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  kdegraphics-mobipocket-16.08.0.tar.xz

New:

  kdegraphics-mobipocket-16.08.1.tar.xz



Other differences:
--
++ mobipocket.spec ++
--- /var/tmp/diff_new_pack.gaKnEC/_old  2016-09-14 23:20:16.0 +0200
+++ /var/tmp/diff_new_pack.gaKnEC/_new  2016-09-14 23:20:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mobipocket
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:E-book plugin and library
 License:GPL-2.0+

++ kdegraphics-mobipocket-16.08.0.tar.xz -> 
kdegraphics-mobipocket-16.08.1.tar.xz ++




commit marble for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package marble for openSUSE:Factory checked 
in at 2016-09-14 23:20:04

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


Package is "marble"

Changes:

--- /work/SRC/openSUSE:Factory/marble/marble.changes2016-08-29 
14:50:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.marble.new/marble.changes   2016-09-14 
23:20:06.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:42:02 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  marble-16.08.0.tar.xz

New:

  marble-16.08.1.tar.xz



Other differences:
--
++ marble.spec ++
--- /var/tmp/diff_new_pack.D8D93W/_old  2016-09-14 23:20:08.0 +0200
+++ /var/tmp/diff_new_pack.D8D93W/_new  2016-09-14 23:20:08.0 +0200
@@ -18,7 +18,7 @@
 %define _so -25
 
 Name:   marble
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Generic map viewer
 License:LGPL-2.1+
@@ -179,14 +179,13 @@
 %doc CREDITS ChangeLog COPYING* LICENSE* MANIFESTO.txt
 %dir %{_kf5_libdir}/plugins/
 %exclude %{_kf5_sharedir}/marble/data
-%exclude %{_kf5_sharedir}/marble/cmake
 %{_kf5_applicationsdir}/marble_geo.desktop
 %{_kf5_applicationsdir}/marble_gpx.desktop
 %{_kf5_applicationsdir}/marble_kml.desktop
 %{_kf5_applicationsdir}/marble_kmz.desktop
-%{_kf5_applicationsdir}/marble_osm.desktop
 %{_kf5_applicationsdir}/marble_worldwind.desktop
 %{_kf5_applicationsdir}/marble_geojson.desktop
+%{_kf5_configdir}/marble.knsrc
 %{_kf5_configkcfgdir}/
 %{_kf5_iconsdir}/hicolor/*/apps/marble.*
 %{_kf5_kxmlguidir}/marble/
@@ -234,7 +233,7 @@
 %defattr(-,root,root)
 %{_kf5_applicationsdir}/marble.desktop
 %{_kf5_bindir}/marble
-%dir %{_kf5_sharedir}/appdata
-%{_kf5_sharedir}/appdata/marble.appdata.xml
+%dir %{_kf5_appstreamdir}
+%{_kf5_appstreamdir}/marble.appdata.xml
 
 %changelog

++ marble-16.08.0.tar.xz -> marble-16.08.1.tar.xz ++
/work/SRC/openSUSE:Factory/marble/marble-16.08.0.tar.xz 
/work/SRC/openSUSE:Factory/.marble.new/marble-16.08.1.tar.xz differ: char 27, 
line 1




commit libksane for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libksane for openSUSE:Factory 
checked in at 2016-09-14 23:19:55

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


Package is "libksane"

Changes:

--- /work/SRC/openSUSE:Factory/libksane/libksane.changes2016-08-29 
14:50:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksane.new/libksane.changes   2016-09-14 
23:19:57.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:41:23 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libksane-16.08.0.tar.xz

New:

  libksane-16.08.1.tar.xz



Other differences:
--
++ libksane.spec ++
--- /var/tmp/diff_new_pack.aRqFOk/_old  2016-09-14 23:19:58.0 +0200
+++ /var/tmp/diff_new_pack.aRqFOk/_new  2016-09-14 23:19:58.0 +0200
@@ -35,7 +35,7 @@
 License:GPL-2.0+
 Group:  Development/Libraries/KDE
 Url:http://www.kde.org
-Version:16.08.0
+Version:16.08.1
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libksane-16.08.0.tar.xz -> libksane-16.08.1.tar.xz ++




commit kdbusaddons for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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  2016-08-29 
15:00:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdbusaddons.new/kdbusaddons.changes 
2016-09-14 23:19:16.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:48:08 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kdbusaddons-5.25.0.tar.xz

New:

  kdbusaddons-5.26.0.tar.xz



Other differences:
--
++ kdbusaddons.spec ++
--- /var/tmp/diff_new_pack.zPwmw4/_old  2016-09-14 23:19:17.0 +0200
+++ /var/tmp/diff_new_pack.zPwmw4/_new  2016-09-14 23:19:17.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5DBusAddons5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kdbusaddons
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kdbusaddons-5.25.0.tar.xz -> kdbusaddons-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdbusaddons-5.25.0/CMakeLists.txt 
new/kdbusaddons-5.26.0/CMakeLists.txt
--- old/kdbusaddons-5.25.0/CMakeLists.txt   2016-08-07 15:38:18.0 
+0200
+++ new/kdbusaddons-5.26.0/CMakeLists.txt   2016-09-06 13:58:38.0 
+0200
@@ -3,7 +3,7 @@
 project(KDBusAddons)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -27,7 +27,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDBUSADDONS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kdbusaddons_version.h"




commit libkomparediff2 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libkomparediff2 for openSUSE:Factory 
checked in at 2016-09-14 23:19:45

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


Package is "libkomparediff2"

Changes:

--- /work/SRC/openSUSE:Factory/libkomparediff2/libkomparediff2.changes  
2016-08-29 14:50:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkomparediff2.new/libkomparediff2.changes 
2016-09-14 23:19:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:41:13 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkomparediff2-16.08.0.tar.xz

New:

  libkomparediff2-16.08.1.tar.xz



Other differences:
--
++ libkomparediff2.spec ++
--- /var/tmp/diff_new_pack.nFlevR/_old  2016-09-14 23:19:47.0 +0200
+++ /var/tmp/diff_new_pack.nFlevR/_new  2016-09-14 23:19:47.0 +0200
@@ -35,7 +35,7 @@
 Summary:A library to compare files and strings
 License:(GPL-2.0+ and LGPL-2.0+) and BSD-2-Clause
 Group:  Development/Libraries/KDE
-Version:16.08.0
+Version:16.08.1
 Release:0
 Url:http://www.kde.org
 Source0:%{name}-%{version}.tar.xz

++ libkomparediff2-16.08.0.tar.xz -> libkomparediff2-16.08.1.tar.xz ++




commit libkipi for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "libkipi"

Changes:

--- /work/SRC/openSUSE:Factory/libkipi/libkipi.changes  2016-08-29 
14:49:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkipi.new/libkipi.changes 2016-09-14 
23:19:37.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:40:53 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkipi-16.08.0.tar.xz

New:

  libkipi-16.08.1.tar.xz



Other differences:
--
++ libkipi.spec ++
--- /var/tmp/diff_new_pack.RxfOYF/_old  2016-09-14 23:19:38.0 +0200
+++ /var/tmp/diff_new_pack.RxfOYF/_new  2016-09-14 23:19:38.0 +0200
@@ -32,7 +32,7 @@
 License:BSD-3-Clause and GPL-2.0+ and LGPL-2.1+ and MIT
 Group:  Development/Libraries/KDE
 Url:http://www.kde.org
-Version:16.08.0
+Version:16.08.1
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libkipi-16.08.0.tar.xz -> libkipi-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkipi-16.08.0/src/kipiplugin.desktop 
new/libkipi-16.08.1/src/kipiplugin.desktop
--- old/libkipi-16.08.0/src/kipiplugin.desktop  2016-06-19 18:29:20.0 
+0200
+++ new/libkipi-16.08.1/src/kipiplugin.desktop  2016-09-05 14:12:53.0 
+0200
@@ -7,7 +7,7 @@
 Name[ast]=KIPIPlugin
 Name[bg]=KIPIPlugin
 Name[bs]=KIPI priključak
-Name[ca]=KIPIPlugin
+Name[ca]=Connector de KIPI
 Name[ca@valencia]=KIPIPlugin
 Name[cs]=KIPIPlugin
 Name[da]=KIPIPlugin
@@ -64,7 +64,7 @@
 Comment[ast]=Un complementu pa KIPI
 Comment[bg]=Приставка KIPI
 Comment[bs]=KIPI priključak
-Comment[ca]=Un connector de la KIPI
+Comment[ca]=Un connector de KIPI
 Comment[ca@valencia]=Un connector de la KIPI
 Comment[cs]=KIPI modul
 Comment[da]=Et KIPI-plugin




commit libkgeomap for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libkgeomap for openSUSE:Factory 
checked in at 2016-09-14 23:19:25

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


Package is "libkgeomap"

Changes:

--- /work/SRC/openSUSE:Factory/libkgeomap/libkgeomap.changes2016-08-29 
14:49:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkgeomap.new/libkgeomap.changes   
2016-09-14 23:19:27.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:40:45 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkgeomap-16.08.0.tar.xz

New:

  libkgeomap-16.08.1.tar.xz



Other differences:
--
++ libkgeomap.spec ++
--- /var/tmp/diff_new_pack.VKmK2I/_old  2016-09-14 23:19:28.0 +0200
+++ /var/tmp/diff_new_pack.VKmK2I/_new  2016-09-14 23:19:28.0 +0200
@@ -21,7 +21,7 @@
 License:LGPL-2.1 and GPL-2.0+
 Group:  Development/Libraries/KDE
 Url:http://www.kde.org
-Version:16.08.0
+Version:16.08.1
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libkgeomap-16.08.0.tar.xz -> libkgeomap-16.08.1.tar.xz ++




commit libkface for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libkface for openSUSE:Factory 
checked in at 2016-09-14 23:19:05

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


Package is "libkface"

Changes:

--- /work/SRC/openSUSE:Factory/libkface/libkface.changes2016-08-29 
14:49:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkface.new/libkface.changes   2016-09-14 
23:19:07.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:40:28 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkface-16.08.0.tar.xz

New:

  libkface-16.08.1.tar.xz



Other differences:
--
++ libkface.spec ++
--- /var/tmp/diff_new_pack.0PwiRb/_old  2016-09-14 23:19:08.0 +0200
+++ /var/tmp/diff_new_pack.0PwiRb/_new  2016-09-14 23:19:08.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL-2.1+
 Group:  Development/Libraries/KDE
 Url:http://www.kde.org
-Version:16.08.0
+Version:16.08.1
 Release:0
 Source0:%{name}-%{version}.tar.xz
 #PATCH-FIX-OPENSUSE fix-opencv.diff -- Make libkface build with an older 
opencv version
@@ -46,12 +46,12 @@
 %prep
 %setup -q -n %{name}-%{version}
 %patch1 -p1
-%if 0%{?suse_version} < 1330
+%if 0%{?suse_version} == 1320 || (0%{suse_version} == 1315 && 0%{?sle_version} 
== 120100)
 %patch0 -p0
 %endif
 
 %build
-  %if 0%{?suse_version} < 1330 
+  %if 0%{?suse_version} == 1320 || (0%{suse_version} == 1315 && 
0%{?sle_version} == 120100)
   %cmake_kf5 -d build
   %else
   %cmake_kf5 -d build -- -DENABLE_OPENCV3=TRUE

++ libkface-16.08.0.tar.xz -> libkface-16.08.1.tar.xz ++
/work/SRC/openSUSE:Factory/libkface/libkface-16.08.0.tar.xz 
/work/SRC/openSUSE:Factory/.libkface.new/libkface-16.08.1.tar.xz differ: char 
26, line 1




commit libkexiv2 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libkexiv2 for openSUSE:Factory 
checked in at 2016-09-14 23:18:55

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


Package is "libkexiv2"

Changes:

--- /work/SRC/openSUSE:Factory/libkexiv2/libkexiv2.changes  2016-08-29 
14:48:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkexiv2.new/libkexiv2.changes 2016-09-14 
23:18:57.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:40:15 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkexiv2-16.08.0.tar.xz

New:

  libkexiv2-16.08.1.tar.xz



Other differences:
--
++ libkexiv2.spec ++
--- /var/tmp/diff_new_pack.rDy5qT/_old  2016-09-14 23:18:58.0 +0200
+++ /var/tmp/diff_new_pack.rDy5qT/_new  2016-09-14 23:18:58.0 +0200
@@ -20,7 +20,7 @@
 %define lname   libKF5KExiv2
 
 Name:   libkexiv2
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Library to manipulate picture meta data
 License:GPL-2.0+

++ libkexiv2-16.08.0.tar.xz -> libkexiv2-16.08.1.tar.xz ++




commit libkdcraw for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libkdcraw for openSUSE:Factory 
checked in at 2016-09-14 23:18:45

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


Package is "libkdcraw"

Changes:

--- /work/SRC/openSUSE:Factory/libkdcraw/libkdcraw.changes  2016-08-29 
14:48:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkdcraw.new/libkdcraw.changes 2016-09-14 
23:18:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:39:41 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkdcraw-16.08.0.tar.xz

New:

  libkdcraw-16.08.1.tar.xz



Other differences:
--
++ libkdcraw.spec ++
--- /var/tmp/diff_new_pack.vtnCt1/_old  2016-09-14 23:18:47.0 +0200
+++ /var/tmp/diff_new_pack.vtnCt1/_new  2016-09-14 23:18:47.0 +0200
@@ -20,7 +20,7 @@
 %define lname libKF5KDcraw
 
 Name:   libkdcraw
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Shared library interface around dcraw
 License:LGPL-2.0+ and GPL-2.0+ and GPL-3.0+

++ libkdcraw-16.08.0.tar.xz -> libkdcraw-16.08.1.tar.xz ++




commit kwalletmanager5 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "kwalletmanager5"

Changes:

--- /work/SRC/openSUSE:Factory/kwalletmanager5/kwalletmanager5.changes  
2016-08-29 14:47:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwalletmanager5.new/kwalletmanager5.changes 
2016-09-14 23:18:16.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:38:59 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  kwalletmanager-16.08.0.tar.xz

New:

  kwalletmanager-16.08.1.tar.xz



Other differences:
--
++ kwalletmanager5.spec ++
--- /var/tmp/diff_new_pack.TZK28t/_old  2016-09-14 23:18:17.0 +0200
+++ /var/tmp/diff_new_pack.TZK28t/_new  2016-09-14 23:18:17.0 +0200
@@ -18,7 +18,7 @@
 
 %define rname   kwalletmanager
 Name:   kwalletmanager5
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Wallet Management Tool
 License:GPL-2.0+
@@ -78,8 +78,7 @@
 %{_kf5_plugindir}/
 %{_kf5_servicesdir}/
 %{_kf5_sharedir}/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service
-%{_kf5_sharedir}/icons/hicolor/*/*/kwalletmanager*.*
-%{_kf5_sharedir}/kwalletmanager5/
+%{_kf5_iconsdir}/hicolor/*/*/*.*
 %{_kf5_sharedir}/kxmlgui5/
 %{_kf5_sharedir}/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy
 %{_kf5_sysconfdir}/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf

++ kwalletmanager-16.08.0.tar.xz -> kwalletmanager-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwalletmanager-16.08.0/CMakeLists.txt 
new/kwalletmanager-16.08.1/CMakeLists.txt
--- old/kwalletmanager-16.08.0/CMakeLists.txt   2016-08-11 15:04:34.0 
+0200
+++ new/kwalletmanager-16.08.1/CMakeLists.txt   2016-09-05 00:42:34.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_minimum_required(VERSION 2.8.12)
Files old/kwalletmanager-16.08.0/icons/22-actions-folder_closed.png and 
new/kwalletmanager-16.08.1/icons/22-actions-folder_closed.png differ
Files old/kwalletmanager-16.08.0/icons/22-actions-folder_open.png and 
new/kwalletmanager-16.08.1/icons/22-actions-folder_open.png differ
Files old/kwalletmanager-16.08.0/icons/22-actions-wallet-closed.png and 
new/kwalletmanager-16.08.1/icons/22-actions-wallet-closed.png differ
Files old/kwalletmanager-16.08.0/icons/22-actions-wallet-open.png and 
new/kwalletmanager-16.08.1/icons/22-actions-wallet-open.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwalletmanager-16.08.0/icons/CMakeLists.txt 
new/kwalletmanager-16.08.1/icons/CMakeLists.txt
--- old/kwalletmanager-16.08.0/icons/CMakeLists.txt 2016-08-11 
15:04:34.0 +0200
+++ new/kwalletmanager-16.08.1/icons/CMakeLists.txt 2016-09-05 
00:42:34.0 +0200
@@ -1 +1,5 @@
-ecm_install_icons( ICONS 22-actions-folder_closed.png  
22-actions-folder_open.png DESTINATION 
${DATA_INSTALL_DIR}/kwalletmanager5/icons   )
+ecm_install_icons(
+ICONS 22-actions-wallet-closed.png 22-actions-wallet-open.png
+DESTINATION ${ICON_INSTALL_DIR}
+THEME hicolor
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwalletmanager-16.08.0/kwalletmanager5-kwalletd.desktop 
new/kwalletmanager-16.08.1/kwalletmanager5-kwalletd.desktop
--- old/kwalletmanager-16.08.0/kwalletmanager5-kwalletd.desktop 2016-08-11 
15:04:34.0 +0200
+++ new/kwalletmanager-16.08.1/kwalletmanager5-kwalletd.desktop 2016-09-05 
00:42:34.0 +0200
@@ -76,6 +76,7 @@
 Comment[cs]=Nástroj pro správu úschovny
 Comment[da]=Værktøj til håndtering af tegnebog
 Comment[de]=Passwortverwaltung
+Comment[el]=Εργαλείο διαχείρισης πορτοφολιού
 Comment[en_GB]=Wallet Management Tool
 Comment[es]=Herramienta de gestión de carteras
 Comment[et]=Turvalaeka haldur
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwalletmanager-16.08.0/org.kde.kwalletmanager5.desktop 

commit libkcompactdisc4 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package libkcompactdisc4 for 
openSUSE:Factory checked in at 2016-09-14 23:18:32

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


Package is "libkcompactdisc4"

Changes:

--- /work/SRC/openSUSE:Factory/libkcompactdisc4/libkcompactdisc4.changes
2016-08-29 14:48:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkcompactdisc4.new/libkcompactdisc4.changes   
2016-09-14 23:18:34.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:39:33 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkcompactdisc-16.08.0.tar.xz

New:

  libkcompactdisc-16.08.1.tar.xz



Other differences:
--
++ libkcompactdisc4.spec ++
--- /var/tmp/diff_new_pack.1PeSBw/_old  2016-09-14 23:18:35.0 +0200
+++ /var/tmp/diff_new_pack.1PeSBw/_new  2016-09-14 23:18:35.0 +0200
@@ -23,7 +23,7 @@
 Summary:KDE CD Library
 License:GPL-2.0+
 Group:  System/GUI/KDE
-Version:16.08.0
+Version:16.08.1
 Release:0
 Source0:libkcompactdisc-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libkcompactdisc-16.08.0.tar.xz -> libkcompactdisc-16.08.1.tar.xz ++




commit libkcddb4 for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

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

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


Package is "libkcddb4"

Changes:

--- /work/SRC/openSUSE:Factory/libkcddb4/libkcddb4.changes  2016-08-29 
14:47:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkcddb4.new/libkcddb4.changes 2016-09-14 
23:18:25.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:39:25 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  libkcddb-16.08.0.tar.xz

New:

  libkcddb-16.08.1.tar.xz



Other differences:
--
++ libkcddb4.spec ++
--- /var/tmp/diff_new_pack.iQlIgN/_old  2016-09-14 23:18:26.0 +0200
+++ /var/tmp/diff_new_pack.iQlIgN/_new  2016-09-14 23:18:26.0 +0200
@@ -26,7 +26,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:16.08.0
+Version:16.08.1
 Release:0
 Source0:libkcddb-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libkcddb-16.08.0.tar.xz -> libkcddb-16.08.1.tar.xz ++




commit kjots for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kjots for openSUSE:Factory checked 
in at 2016-09-14 23:18:05

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


Package is "kjots"

Changes:

--- /work/SRC/openSUSE:Factory/kjots/kjots.changes  2016-08-29 
14:53:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.kjots.new/kjots.changes 2016-09-14 
23:18:09.0 +0200
@@ -1,0 +2,14 @@
+Sat Sep 10 13:37:49 UTC 2016 - tittiatc...@gmail.com
+
+- Add fix-appstream.diff patch from upstream instead of moving
+  files around after build
+
+- Add add-kontact-plugin.diff (bko#359380). Now Kjots also shows up
+  in kontact
+
+- Add enable-image-insert.patch from upstream so that images can be
+  included in the created notes
+
+- Add fix-icons.diff to fix build with newer Frameworks. 
+
+---

New:

  add-kontact-plugin.diff
  enable-image-insert.patch
  fix-appstream.diff
  fix-icons.diff



Other differences:
--
++ kjots.spec ++
--- /var/tmp/diff_new_pack.hD9GCH/_old  2016-09-14 23:18:11.0 +0200
+++ /var/tmp/diff_new_pack.hD9GCH/_new  2016-09-14 23:18:11.0 +0200
@@ -28,11 +28,19 @@
 Patch0: fix-desktop-file.patch
 # PATCH-FIX-UPSTREAM fix-build.patch -- Fix build with KDE Applications 16.08
 Patch1: fix-build.patch
+# PATCH-FIX-UPSTREAM fix-icons.diff -- Fix build by moving KDE4_ADD_APP_ICON 
to ecm_add_app_icon
+Patch2: fix-icons.diff
+# PATCH-FIX-UPSTREAM fix-appstream.diff -- Fix the appdata filename
+Patch3: fix-appstream.diff
+# PATCH-FEATURE-UPSTREAM add-kontact-plugin.diff -- Add a plugin so that kjots 
shows up in kontact
+Patch4: add-kontact-plugin.diff
+# PATCH-FEATURE-UPSTREAM enable-image-insert.patch -- Allow an image to be 
inserted in the notes
+Patch5: enable-image-insert.patch
+BuildRequires:  akonadi-server-devel
 BuildRequires:  extra-cmake-modules
 BuildRequires:  grantlee5-devel
 BuildRequires:  libxslt-tools
 BuildRequires:  update-desktop-files
-BuildRequires:  cmake(KF5Akonadi)
 BuildRequires:  cmake(KF5AkonadiNotes)
 BuildRequires:  cmake(KF5Bookmarks)
 BuildRequires:  cmake(KF5Config)
@@ -45,7 +53,8 @@
 BuildRequires:  cmake(KF5PimTextEdit)
 BuildRequires:  cmake(KF5TextWidgets)
 BuildRequires:  cmake(KF5XmlGui)
-Requires:   akonadi_resources
+BuildRequires:  pkgconfig(Qt5DBus)
+BuildRequires:  pkgconfig(Qt5PrintSupport)
 Recommends: %{name}-lang = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -58,6 +67,10 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch5 -p1
+%patch4 -p1
 
 %build
 %cmake_kf5 -d build
@@ -67,13 +80,6 @@
 %install
 %kf5_makeinstall -C build
 %suse_update_desktop_file -C "Note Taker" org.kde.kjotsUtility  
DesktopUtility
-# Fixup the .appdata file: it needs to:
-# * have the same basename as the .desktop file
-# * reference the name of the .desktop file correctly
-sed "s|Kjots.desktop|org.kde.kjots.desktop|" \
-  %{buildroot}%{_kf5_appstreamdir}/Kjots.appdata.xml > \
-  %{buildroot}%{_kf5_appstreamdir}/org.kde.kjots.appdata.xml
-rm %{buildroot}%{_kf5_appstreamdir}/Kjots.appdata.xml
 %find_lang %{name}
 
 %post   -p /sbin/ldconfig
@@ -95,6 +101,9 @@
 %_kf5_sharedir/kjots/
 %_kf5_iconsdir/hicolor/*/apps/kjots.*
 %_kf5_iconsdir/oxygen/*/actions/edit-delete-page.*
+%{_kf5_plugindir}/kontact_kjotsplugin.so
+%{_datadir}/kontact/
+%{_kf5_servicesdir}/kontact/
 
 %files lang -f kjots.lang
 %defattr(-,root,root)

++ add-kontact-plugin.diff ++
>From b79b87feb090eb50a2831552c27b67366792f6fc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= 
Date: Tue, 2 Aug 2016 21:06:51 +0200
Subject: Add Kontact plugin for KJots

BUG: 359380
FIXED-IN: 5.1.0

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 9a03097..b1e8bcf 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -7,6 +7,8 @@ add_subdirectory(noteshared)
 # it that were used by KJots. We could eventually move this to Akonadi Note
 add_subdirectory(akonadi_next)
 
+add_subdirectory(kontact_plugin)
+
 add_definitions(-DTRANSLATION_DOMAIN=\"kjots\")
 
 configure_file(kjots-version.h.in
diff --git a/src/kjotspart.cpp b/src/kjotspart.cpp
index fd1e815..606c69a 100644
--- a/src/kjotspart.cpp
+++ b/src/kjotspart.cpp
@@ -66,7 +66,8 @@ KJotsPart::KJotsPart(QWidget *parentWidget, QObject *parent, 
const QVariantList
 initAction();
 
 // set our XML-UI resource file
-setXMLFile(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("kjots/kjotspartui.rc")));
+setComponentName(QStringLiteral("kjots"), QStringLiteral("kjots"));
+

commit kcrash for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kcrash for openSUSE:Factory checked 
in at 2016-09-14 23:17:56

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.changes2016-08-29 
15:00:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcrash.new/kcrash.changes   2016-09-14 
23:17:57.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:48:04 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kcrash-5.25.0.tar.xz

New:

  kcrash-5.26.0.tar.xz



Other differences:
--
++ kcrash.spec ++
--- /var/tmp/diff_new_pack.dDHISn/_old  2016-09-14 23:17:58.0 +0200
+++ /var/tmp/diff_new_pack.dDHISn/_new  2016-09-14 23:17:58.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Crash5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kcrash
-Version:5.25.0
+Version:5.26.0
 Release:0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++ kcrash-5.25.0.tar.xz -> kcrash-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcrash-5.25.0/CMakeLists.txt 
new/kcrash-5.26.0/CMakeLists.txt
--- old/kcrash-5.25.0/CMakeLists.txt2016-08-06 10:29:02.0 +0200
+++ new/kcrash-5.26.0/CMakeLists.txt2016-09-06 00:31:56.0 +0200
@@ -3,7 +3,7 @@
 project(KCrash)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -26,8 +26,8 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.26.0") # handled by release scripts
 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 ktp-kded-module for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-kded-module for openSUSE:Factory 
checked in at 2016-09-14 23:17:27

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


Package is "ktp-kded-module"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-kded-module/ktp-kded-module.changes  
2016-08-29 14:46:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-kded-module.new/ktp-kded-module.changes 
2016-09-14 23:17:28.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:37:32 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-kded-module-16.08.0.tar.xz

New:

  ktp-kded-module-16.08.1.tar.xz



Other differences:
--
++ ktp-kded-module.spec ++
--- /var/tmp/diff_new_pack.NmgU6x/_old  2016-09-14 23:17:29.0 +0200
+++ /var/tmp/diff_new_pack.NmgU6x/_new  2016-09-14 23:17:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-kded-module
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:KDED module that manages the telepathy interactions with the 
KDE Desktop
 License:LGPL-2.1+

++ ktp-kded-module-16.08.0.tar.xz -> ktp-kded-module-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-kded-module-16.08.0/CMakeLists.txt 
new/ktp-kded-module-16.08.1/CMakeLists.txt
--- old/ktp-kded-module-16.08.0/CMakeLists.txt  2016-08-10 01:26:18.0 
+0200
+++ new/ktp-kded-module-16.08.1/CMakeLists.txt  2016-09-05 00:54:26.0 
+0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(KTP_KDED_MODULE_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_policy(SET CMP0002 OLD)




commit ktp-text-ui for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-text-ui for openSUSE:Factory 
checked in at 2016-09-14 23:17:44

Comparing /work/SRC/openSUSE:Factory/ktp-text-ui (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-text-ui.new (New)


Package is "ktp-text-ui"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-text-ui/ktp-text-ui.changes  2016-08-29 
14:47:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-text-ui.new/ktp-text-ui.changes 
2016-09-14 23:17:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:37:52 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-text-ui-16.08.0.tar.xz

New:

  ktp-text-ui-16.08.1.tar.xz



Other differences:
--
++ ktp-text-ui.spec ++
--- /var/tmp/diff_new_pack.3cKzVK/_old  2016-09-14 23:17:47.0 +0200
+++ /var/tmp/diff_new_pack.3cKzVK/_new  2016-09-14 23:17:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-text-ui
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy chat handler for KDE
 License:GPL-2.0+

++ ktp-text-ui-16.08.0.tar.xz -> ktp-text-ui-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-text-ui-16.08.0/CMakeLists.txt 
new/ktp-text-ui-16.08.1/CMakeLists.txt
--- old/ktp-text-ui-16.08.0/CMakeLists.txt  2016-08-10 01:26:52.0 
+0200
+++ new/ktp-text-ui-16.08.1/CMakeLists.txt  2016-09-05 00:54:57.0 
+0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(KTP_TEXT_UI_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 set(KTP_MESSAGE_FILTER_FRAMEWORK_VERSION "5")
 set(IS_KTP_INTERNAL_MODULE TRUE)




commit ktp-desktop-applets for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-desktop-applets for 
openSUSE:Factory checked in at 2016-09-14 23:17:07

Comparing /work/SRC/openSUSE:Factory/ktp-desktop-applets (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-desktop-applets.new (New)


Package is "ktp-desktop-applets"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-desktop-applets/ktp-desktop-applets.changes  
2016-08-29 14:46:22.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-desktop-applets.new/ktp-desktop-applets.changes 
2016-09-14 23:17:09.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:37:12 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-desktop-applets-16.08.0.tar.xz

New:

  ktp-desktop-applets-16.08.1.tar.xz



Other differences:
--
++ ktp-desktop-applets.spec ++
--- /var/tmp/diff_new_pack.y5lcJQ/_old  2016-09-14 23:17:10.0 +0200
+++ /var/tmp/diff_new_pack.y5lcJQ/_new  2016-09-14 23:17:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-desktop-applets
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy presence applet
 License:GPL-2.0+ and LGPL-2.1+

++ ktp-desktop-applets-16.08.0.tar.xz -> ktp-desktop-applets-16.08.1.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-desktop-applets-16.08.0/CMakeLists.txt 
new/ktp-desktop-applets-16.08.1/CMakeLists.txt
--- old/ktp-desktop-applets-16.08.0/CMakeLists.txt  2016-08-10 
01:25:44.0 +0200
+++ new/ktp-desktop-applets-16.08.1/CMakeLists.txt  2016-09-05 
00:53:53.0 +0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 
 set(KTP_DESKTOP_APPLETS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 




commit ktp-send-file for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-send-file for openSUSE:Factory 
checked in at 2016-09-14 23:17:36

Comparing /work/SRC/openSUSE:Factory/ktp-send-file (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-send-file.new (New)


Package is "ktp-send-file"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-send-file/ktp-send-file.changes  
2016-08-29 14:47:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-send-file.new/ktp-send-file.changes 
2016-09-14 23:17:37.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:37:40 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-send-file-16.08.0.tar.xz

New:

  ktp-send-file-16.08.1.tar.xz



Other differences:
--
++ ktp-send-file.spec ++
--- /var/tmp/diff_new_pack.55Zyw9/_old  2016-09-14 23:17:38.0 +0200
+++ /var/tmp/diff_new_pack.55Zyw9/_new  2016-09-14 23:17:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-send-file
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:File manager plugin
 License:LGPL-2.1+

++ ktp-send-file-16.08.0.tar.xz -> ktp-send-file-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-send-file-16.08.0/CMakeLists.txt 
new/ktp-send-file-16.08.1/CMakeLists.txt
--- old/ktp-send-file-16.08.0/CMakeLists.txt2016-08-10 01:26:34.0 
+0200
+++ new/ktp-send-file-16.08.1/CMakeLists.txt2016-09-05 00:54:41.0 
+0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 set (KTP_SEND_FILE_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 set(IS_KTP_INTERNAL_MODULE TRUE)




commit ktp-contact-runner for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-contact-runner for 
openSUSE:Factory checked in at 2016-09-14 23:16:58

Comparing /work/SRC/openSUSE:Factory/ktp-contact-runner (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-contact-runner.new (New)


Package is "ktp-contact-runner"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-contact-runner/ktp-contact-runner.changes
2016-08-29 14:45:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-contact-runner.new/ktp-contact-runner.changes   
2016-09-14 23:17:00.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:37:02 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-contact-runner-16.08.0.tar.xz

New:

  ktp-contact-runner-16.08.1.tar.xz



Other differences:
--
++ ktp-contact-runner.spec ++
--- /var/tmp/diff_new_pack.5wVrCN/_old  2016-09-14 23:17:01.0 +0200
+++ /var/tmp/diff_new_pack.5wVrCN/_new  2016-09-14 23:17:01.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-contact-runner
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy Krunner plugin
 License:LGPL-2.1+

++ ktp-contact-runner-16.08.0.tar.xz -> ktp-contact-runner-16.08.1.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-runner-16.08.0/CMakeLists.txt 
new/ktp-contact-runner-16.08.1/CMakeLists.txt
--- old/ktp-contact-runner-16.08.0/CMakeLists.txt   2016-08-10 
01:25:27.0 +0200
+++ new/ktp-contact-runner-16.08.1/CMakeLists.txt   2016-09-05 
00:53:37.0 +0200
@@ -7,7 +7,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(KTP_CONTACT_RUNNER_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 set(IS_KTP_INTERNAL_MODULE TRUE)
 




commit ktp-contact-list for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-contact-list for 
openSUSE:Factory checked in at 2016-09-14 23:16:48

Comparing /work/SRC/openSUSE:Factory/ktp-contact-list (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-contact-list.new (New)


Package is "ktp-contact-list"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-contact-list/ktp-contact-list.changes
2016-08-29 14:45:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-contact-list.new/ktp-contact-list.changes   
2016-09-14 23:16:49.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:36:52 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-contact-list-16.08.0.tar.xz

New:

  ktp-contact-list-16.08.1.tar.xz



Other differences:
--
++ ktp-contact-list.spec ++
--- /var/tmp/diff_new_pack.07zqZY/_old  2016-09-14 23:16:50.0 +0200
+++ /var/tmp/diff_new_pack.07zqZY/_new  2016-09-14 23:16:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-contact-list
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy contact list
 License:LGPL-2.1+

++ ktp-contact-list-16.08.0.tar.xz -> ktp-contact-list-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-list-16.08.0/CMakeLists.txt 
new/ktp-contact-list-16.08.1/CMakeLists.txt
--- old/ktp-contact-list-16.08.0/CMakeLists.txt 2016-08-10 01:25:12.0 
+0200
+++ new/ktp-contact-list-16.08.1/CMakeLists.txt 2016-09-05 00:53:16.0 
+0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 
 set(KTP_CONTACT_LIST_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-list-16.08.0/contact-overlays.cpp 
new/ktp-contact-list-16.08.1/contact-overlays.cpp
--- old/ktp-contact-list-16.08.0/contact-overlays.cpp   2016-08-10 
01:25:12.0 +0200
+++ new/ktp-contact-list-16.08.1/contact-overlays.cpp   2016-09-05 
00:53:16.0 +0200
@@ -26,7 +26,7 @@
 
 #include 
 
-const int spacing = IconSize(KIconLoader::Dialog) / 8;
+#define spacing (IconSize(KIconLoader::Dialog) / 8)
 
 class GuiItemContactViewHoverButton : public ContactViewHoverButton
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-list-16.08.0/diff 
new/ktp-contact-list-16.08.1/diff
--- old/ktp-contact-list-16.08.0/diff   1970-01-01 01:00:00.0 +0100
+++ new/ktp-contact-list-16.08.1/diff   2016-09-05 00:53:16.0 +0200
@@ -0,0 +1,13 @@
+diff --git a/contact-overlays.cpp b/contact-overlays.cpp
+index e8604be..166030d 100644
+--- a/contact-overlays.cpp
 b/contact-overlays.cpp
+@@ -26,7 +26,7 @@
+ 
+ #include 
+ 
+-const int spacing = IconSize(KIconLoader::Dialog) / 8;
++#define spacing (IconSize(KIconLoader::Dialog) / 8)
+ 
+ class GuiItemContactViewHoverButton : public ContactViewHoverButton
+ {




commit ktp-filetransfer-handler for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-filetransfer-handler for 
openSUSE:Factory checked in at 2016-09-14 23:17:18

Comparing /work/SRC/openSUSE:Factory/ktp-filetransfer-handler (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new (New)


Package is "ktp-filetransfer-handler"

Changes:

--- 
/work/SRC/openSUSE:Factory/ktp-filetransfer-handler/ktp-filetransfer-handler.changes
2016-08-29 14:46:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new/ktp-filetransfer-handler.changes
   2016-09-14 23:17:20.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:37:22 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-filetransfer-handler-16.08.0.tar.xz

New:

  ktp-filetransfer-handler-16.08.1.tar.xz



Other differences:
--
++ ktp-filetransfer-handler.spec ++
--- /var/tmp/diff_new_pack.ol15t1/_old  2016-09-14 23:17:21.0 +0200
+++ /var/tmp/diff_new_pack.ol15t1/_new  2016-09-14 23:17:21.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-filetransfer-handler
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy filetransfer handler
 License:GPL-2.0+

++ ktp-filetransfer-handler-16.08.0.tar.xz -> 
ktp-filetransfer-handler-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-filetransfer-handler-16.08.0/CMakeLists.txt 
new/ktp-filetransfer-handler-16.08.1/CMakeLists.txt
--- old/ktp-filetransfer-handler-16.08.0/CMakeLists.txt 2016-08-10 
01:26:03.0 +0200
+++ new/ktp-filetransfer-handler-16.08.1/CMakeLists.txt 2016-09-05 
00:54:10.0 +0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(KTP_FILETRANSFER_HANDLER_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 find_package(ECM 1.3.0 REQUIRED NO_MODULE)




commit ktp-common-internals for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-common-internals for 
openSUSE:Factory checked in at 2016-09-14 23:16:38

Comparing /work/SRC/openSUSE:Factory/ktp-common-internals (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-common-internals.new (New)


Package is "ktp-common-internals"

Changes:

--- 
/work/SRC/openSUSE:Factory/ktp-common-internals/ktp-common-internals.changes
2016-08-29 14:45:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-common-internals.new/ktp-common-internals.changes
   2016-09-14 23:16:40.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:36:42 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-common-internals-16.08.0.tar.xz

New:

  ktp-common-internals-16.08.1.tar.xz



Other differences:
--
++ ktp-common-internals.spec ++
--- /var/tmp/diff_new_pack.S5bz8L/_old  2016-09-14 23:16:41.0 +0200
+++ /var/tmp/diff_new_pack.S5bz8L/_new  2016-09-14 23:16:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-common-internals
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy common module
 License:LGPL-2.1+

++ ktp-common-internals-16.08.0.tar.xz -> 
ktp-common-internals-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-common-internals-16.08.0/CMakeLists.txt 
new/ktp-common-internals-16.08.1/CMakeLists.txt
--- old/ktp-common-internals-16.08.0/CMakeLists.txt 2016-08-10 
01:24:55.0 +0200
+++ new/ktp-common-internals-16.08.1/CMakeLists.txt 2016-09-05 
00:53:00.0 +0200
@@ -12,7 +12,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 
 # Bump for every 0.x release, or whenever BC changes
 set (KTP_SONUMBER 9) # SO 9 is for 15.08 release




commit ktp-auth-handler for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-auth-handler for 
openSUSE:Factory checked in at 2016-09-14 23:16:27

Comparing /work/SRC/openSUSE:Factory/ktp-auth-handler (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-auth-handler.new (New)


Package is "ktp-auth-handler"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-auth-handler/ktp-auth-handler.changes
2016-08-29 14:45:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-auth-handler.new/ktp-auth-handler.changes   
2016-09-14 23:16:28.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:36:31 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-auth-handler-16.08.0.tar.xz

New:

  ktp-auth-handler-16.08.1.tar.xz



Other differences:
--
++ ktp-auth-handler.spec ++
--- /var/tmp/diff_new_pack.M0AMIj/_old  2016-09-14 23:16:29.0 +0200
+++ /var/tmp/diff_new_pack.M0AMIj/_new  2016-09-14 23:16:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-auth-handler
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:Telepathy auth handler
 License:LGPL-2.1+

++ ktp-auth-handler-16.08.0.tar.xz -> ktp-auth-handler-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-auth-handler-16.08.0/CMakeLists.txt 
new/ktp-auth-handler-16.08.1/CMakeLists.txt
--- old/ktp-auth-handler-16.08.0/CMakeLists.txt 2016-08-10 01:24:35.0 
+0200
+++ new/ktp-auth-handler-16.08.1/CMakeLists.txt 2016-09-05 00:52:32.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "16")
 set(KDE_APPLICATIONS_VERSION_MINOR "08")
-set(KDE_APPLICATIONS_VERSION_MICRO "0")
+set(KDE_APPLICATIONS_VERSION_MICRO "1")
 set(KTP_AUTH_HANDLER_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)




commit ktp-approver for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-approver for openSUSE:Factory 
checked in at 2016-09-14 23:16:17

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


Package is "ktp-approver"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-approver/ktp-approver.changes
2016-08-29 14:45:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-approver.new/ktp-approver.changes   
2016-09-14 23:16:18.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:36:19 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-approver-16.08.0.tar.xz

New:

  ktp-approver-16.08.1.tar.xz



Other differences:
--
++ ktp-approver.spec ++
--- /var/tmp/diff_new_pack.0k2Da4/_old  2016-09-14 23:16:19.0 +0200
+++ /var/tmp/diff_new_pack.0k2Da4/_new  2016-09-14 23:16:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-approver
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:KDE Channel Approver for Telepathy
 License:LGPL-2.1+

++ ktp-approver-16.08.0.tar.xz -> ktp-approver-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-approver-16.08.0/CMakeLists.txt 
new/ktp-approver-16.08.1/CMakeLists.txt
--- old/ktp-approver-16.08.0/CMakeLists.txt 2016-08-10 01:24:19.0 
+0200
+++ new/ktp-approver-16.08.1/CMakeLists.txt 2016-09-05 00:52:09.0 
+0200
@@ -4,7 +4,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 
 set(KTP_APPROVER_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 




commit ktp-accounts-kcm for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package ktp-accounts-kcm for 
openSUSE:Factory checked in at 2016-09-14 23:16:07

Comparing /work/SRC/openSUSE:Factory/ktp-accounts-kcm (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-accounts-kcm.new (New)


Package is "ktp-accounts-kcm"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-accounts-kcm/ktp-accounts-kcm.changes
2016-08-29 14:44:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-accounts-kcm.new/ktp-accounts-kcm.changes   
2016-09-14 23:16:08.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  9 08:36:03 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+---

Old:

  ktp-accounts-kcm-16.08.0.tar.xz

New:

  ktp-accounts-kcm-16.08.1.tar.xz



Other differences:
--
++ ktp-accounts-kcm.spec ++
--- /var/tmp/diff_new_pack.dVoW5w/_old  2016-09-14 23:16:09.0 +0200
+++ /var/tmp/diff_new_pack.dVoW5w/_new  2016-09-14 23:16:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-accounts-kcm
-Version:16.08.0
+Version:16.08.1
 Release:0
 Summary:KCM Module for configuring Telepathy Instant Messaging Accounts
 License:LGPL-2.1+

++ ktp-accounts-kcm-16.08.0.tar.xz -> ktp-accounts-kcm-16.08.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-accounts-kcm-16.08.0/CMakeLists.txt 
new/ktp-accounts-kcm-16.08.1/CMakeLists.txt
--- old/ktp-accounts-kcm-16.08.0/CMakeLists.txt 2016-08-10 01:23:58.0 
+0200
+++ new/ktp-accounts-kcm-16.08.1/CMakeLists.txt 2016-09-05 00:51:54.0 
+0200
@@ -12,7 +12,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 
 set(KTP_ACCOUNTS_KCM_SONUMBER "9")
 set(KTP_ACCOUNTS_KCM_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")




commit kcoreaddons for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package kcoreaddons for openSUSE:Factory 
checked in at 2016-09-14 23:15:56

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  2016-08-29 
14:59:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcoreaddons.new/kcoreaddons.changes 
2016-09-14 23:15:58.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 20:47:49 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  kcoreaddons-5.25.0.tar.xz

New:

  kcoreaddons-5.26.0.tar.xz



Other differences:
--
++ kcoreaddons.spec ++
--- /var/tmp/diff_new_pack.sfpeOG/_old  2016-09-14 23:15:59.0 +0200
+++ /var/tmp/diff_new_pack.sfpeOG/_new  2016-09-14 23:15:59.0 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5CoreAddons5
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   kcoreaddons
-Version:5.25.0
+Version:5.26.0
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++ kcoreaddons-5.25.0.tar.xz -> kcoreaddons-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcoreaddons-5.25.0/CMakeLists.txt 
new/kcoreaddons-5.26.0/CMakeLists.txt
--- old/kcoreaddons-5.25.0/CMakeLists.txt   2016-08-07 15:37:50.0 
+0200
+++ new/kcoreaddons-5.26.0/CMakeLists.txt   2016-09-06 13:58:04.0 
+0200
@@ -3,7 +3,7 @@
 project(KCoreAddons)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0  NO_MODULE)
+find_package(ECM 5.26.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -46,7 +46,7 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCOREADDONS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kcoreaddons_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcoreaddons-5.25.0/autotests/ktexttohtmltest.cpp 
new/kcoreaddons-5.26.0/autotests/ktexttohtmltest.cpp
--- old/kcoreaddons-5.25.0/autotests/ktexttohtmltest.cpp2016-08-07 
15:37:50.0 +0200
+++ new/kcoreaddons-5.26.0/autotests/ktexttohtmltest.cpp2016-09-06 
13:58:04.0 +0200
@@ -53,12 +53,12 @@
 KTextToHTMLHelper ll6(QStringLiteral(" @bar.baz"), 1);
 QVERIFY(ll6.getEmailAddress().isEmpty());
 KTextToHTMLHelper ll7(QStringLiteral(".!#$%&'*+-/=?^_`{|}~@bar.baz"),
-strlen(".!#$%&'*+-/=?^_`{|}~"));
+qstrlen(".!#$%&'*+-/=?^_`{|}~"));
 QVERIFY(ll7.getEmailAddress().isEmpty());
 
 // allowed special chars in local part of address
 KTextToHTMLHelper ll8(QStringLiteral("a.!#$%&'*+-/=?^_`{|}~@bar.baz"),
-strlen("a.!#$%&'*+-/=?^_`{|}~"));
+qstrlen("a.!#$%&'*+-/=?^_`{|}~"));
 QCOMPARE(ll8.getEmailAddress(), 
QStringLiteral("a.!#$%&'*+-/=?^_`{|}~@bar.baz"));
 
 // '@' in domain part
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcoreaddons-5.25.0/po/ru/kcoreaddons5_qt.po 
new/kcoreaddons-5.26.0/po/ru/kcoreaddons5_qt.po
--- old/kcoreaddons-5.25.0/po/ru/kcoreaddons5_qt.po 2016-08-07 
15:37:50.0 +0200
+++ new/kcoreaddons-5.26.0/po/ru/kcoreaddons5_qt.po 2016-09-06 
13:58:04.0 +0200
@@ -19,7 +19,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2014-03-23 01:50+\n"
-"PO-Revision-Date: 2016-03-24 11:52+0300\n"
+"PO-Revision-Date: 2016-08-08 02:47+0300\n"
 "Last-Translator: Alexander Potashev \n"
 "Language-Team: Russian \n"
 "Language: ru\n"
@@ -121,20 +121,14 @@
 msgstr "GNU Lesser General Public License, версия 3"
 
 #: lib/kaboutdata.cpp:318
-#, fuzzy
-#| msgctxt "KAboutLicense|@item license (short name)"
-#| msgid "LGPL v2"
 msgctxt "KAboutLicense|@item license (short name)"
 msgid "LGPL v2.1"
-msgstr "LGPL v2"
+msgstr "LGPL v2.1"
 
 #: lib/kaboutdata.cpp:319
-#, fuzzy
-#| msgctxt "KAboutLicense|@item license"
-#| msgid "GNU Lesser General Public License Version 2"

  1   2   >