commit gnome-code-assistance for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package gnome-code-assistance for 
openSUSE:Factory checked in at 2016-04-01 13:03:13

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


Package is "gnome-code-assistance"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-code-assistance/gnome-code-assistance.changes  
2015-10-06 16:10:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-code-assistance.new/gnome-code-assistance.changes
 2016-04-01 13:03:23.0 +0200
@@ -1,0 +2,9 @@
+Wed Mar 30 09:31:03 UTC 2016 - zai...@opensuse.org
+
+- Prepare for libvala-0.32 via sed replacement.
+- Following above change, replace pkgconfig(libvala-0.30) for
+  pkgconfig(libvala-0.32) BuildRequires.
+- Add gca-python-fix-crash-when-missing-pylint.patch: Fix crash
+  when pylint is not available. Patch from upstream git.
+
+---

New:

  gca-python-fix-crash-when-missing-pylint.patch



Other differences:
--
++ gnome-code-assistance.spec ++
--- /var/tmp/diff_new_pack.cXBQjv/_old  2016-04-01 13:03:24.0 +0200
+++ /var/tmp/diff_new_pack.cXBQjv/_new  2016-04-01 13:03:24.0 +0200
@@ -26,6 +26,8 @@
 Group:  Development/
 Url:https://git.gnome.org/browse/gnome-code-assistance
 Source: 
http://download.gnome.org/sources/gnome-code-assistance/3.16/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gca-python-fix-crash-when-missing-pylint.patch 
zai...@opensuse.org -- python: fix crash when pylint is not available.
+Patch0: gca-python-fix-crash-when-missing-pylint.patch
 # Generic build dependencies
 BuildRequires:  pkgconfig(gio-2.0)
 # Python backend
@@ -46,7 +48,7 @@
 BuildRequires:  pkgconfig(gio-2.0) >= 2.36
 BuildRequires:  pkgconfig(glib-2.0) >= 2.36
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.36
-BuildRequires:  pkgconfig(libvala-0.30)
+BuildRequires:  pkgconfig(libvala-0.32)
 BuildRequires:  pkgconfig(vapigen)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %glib2_gsettings_schema_requires
@@ -59,8 +61,9 @@
 
 %prep
 %setup -q
-# Prepare for vala-0.30 - Upstream have committed the same change, use sed to 
avoid need for bootstrapping.
-sed -i 's:libvala-0.28 libvala-0.26 libvala-0.24 libvala-0.22 
libvala-0.20:libvala-0.30 libvala-0.28 libvala-0.26 libvala-0.24 libvala-0.22 
libvala-0.20:' configure
+# Prepare for vala-0.32 - Upstream have committed the same change, use sed to 
avoid need for bootstrapping.
+sed -i 's:libvala-0.28 libvala-0.26 libvala-0.24 libvala-0.22 
libvala-0.20:libvala-0.32 libvala-0.30 libvala-0.28 libvala-0.26 libvala-0.24 
libvala-0.22 libvala-0.20:' configure
+%patch0 -p1
 
 %build
 %configure \

++ gca-python-fix-crash-when-missing-pylint.patch ++
>From cd0f439a2cb67a1f7f0a6f468c33db5731321402 Mon Sep 17 00:00:00 2001
From: Christian Hergert 
Date: Sun, 21 Feb 2016 17:11:10 -0800
Subject: python: fix crash when pylint is not available

If the client suggests the use of pylint using {"pylint":True}, then make
sure that we have pylint available before calling into the linter module.
---
 backends/python/__init__.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/backends/python/__init__.py b/backends/python/__init__.py
index 9476d6f..8dc2cf2 100644
--- a/backends/python/__init__.py
+++ b/backends/python/__init__.py
@@ -24,8 +24,9 @@ import re
 try:
 from pylint import lint
 from pylint.reporters.text import TextReporter
+HAS_PYLINT = True
 except ImportError:
-pass
+HAS_PYLINT = False
 
 from gnome.codeassistance import transport, types
 
@@ -97,7 +98,7 @@ class Service(transport.Service):
 # PEP8 is not installed. Do nothing.
 pass
 
-if "pylint" in options and options["pylint"]:
+if HAS_PYLINT and "pylint" in options and options["pylint"]:
 pylint = PyLint(doc.data_path)
 diagnostics = pylint.run()
 
-- 
cgit v0.12




commit hawk2 for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package hawk2 for openSUSE:Factory checked 
in at 2016-04-01 13:02:58

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-03-26 
15:24:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.hawk2.new/hawk2.changes 2016-04-01 
13:03:06.0 +0200
@@ -1,0 +2,11 @@
+Thu Mar 31 05:22:46 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1459374052.159281a:
+  + Cib: Save fence history in node data (bsc#968055)
+  + Wizard: Need admin rights if non-local call
+  + UI: Status: Display constraints for resource
+  + UI: Status: Display migration status for resources
+  + UI: Status: Make remote node indicator a small icon
+  + Remove use of Hashie
+
+---

Old:

  hawk2-2.0.0+git.1458543074.dc9aa66.tar.bz2

New:

  hawk2-2.0.0+git.1459374052.159281a.tar.bz2



Other differences:
--
++ hawk2.spec ++
--- /var/tmp/diff_new_pack.8P4Rdl/_old  2016-04-01 13:03:07.0 +0200
+++ /var/tmp/diff_new_pack.8P4Rdl/_new  2016-04-01 13:03:07.0 +0200
@@ -31,11 +31,13 @@
 %definegname   haclient
 %defineuname   hacluster
 
+%define version_unconverted 2.0.0+git.1459374052.159281a
+
 Name:   hawk2
 Summary:HA Web Konsole
 License:GPL-2.0
 Group:  %{pkg_group}
-Version:2.0.0+git.1458543074.dc9aa66
+Version:2.0.0+git.1459374052.159281a
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2
@@ -76,7 +78,6 @@
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:gettext_i18n_rails:1) >= 1.2
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:gettext_i18n_rails_js) >= 1.0
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:haml-rails) >= 0.8.2
-BuildRequires:  rubygem(%{rb_default_ruby_abi}:hashie) >= 3.4
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:js-routes:1)
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:kramdown:1) >= 1.3
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:mail) >= 2.6
@@ -110,7 +111,6 @@
 Requires:   rubygem(%{rb_default_ruby_abi}:gettext_i18n_rails:1) >= 1.2
 Requires:   rubygem(%{rb_default_ruby_abi}:gettext_i18n_rails_js) >= 1.0
 Requires:   rubygem(%{rb_default_ruby_abi}:haml-rails) >= 0.8.2
-Requires:   rubygem(%{rb_default_ruby_abi}:hashie) >= 3.4
 Requires:   rubygem(%{rb_default_ruby_abi}:js-routes:1)
 Requires:   rubygem(%{rb_default_ruby_abi}:kramdown:1) >= 1.3
 Requires:   rubygem(%{rb_default_ruby_abi}:puma) >= 2.11

++ _servicedata ++
--- /var/tmp/diff_new_pack.8P4Rdl/_old  2016-04-01 13:03:07.0 +0200
+++ /var/tmp/diff_new_pack.8P4Rdl/_new  2016-04-01 13:03:07.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/hawk.git
-  dc9aa660b415aeff726ac9f3dcac441c8fdc7281
\ No newline at end of file
+  159281ac28491b758b46e3f492d3990423aa8953
\ No newline at end of file

++ hawk2-2.0.0+git.1458543074.dc9aa66.tar.bz2 -> 
hawk2-2.0.0+git.1459374052.159281a.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hawk2-2.0.0+git.1458543074.dc9aa66/Makefile 
new/hawk2-2.0.0+git.1459374052.159281a/Makefile
--- old/hawk2-2.0.0+git.1458543074.dc9aa66/Makefile 2016-03-21 
09:18:34.0 +0100
+++ new/hawk2-2.0.0+git.1459374052.159281a/Makefile 2016-03-31 
07:22:40.0 +0200
@@ -50,7 +50,7 @@
(cd hawk; \
 if $(BUNDLE_GEMS) ; then \
# Ignore gems from test \
-   export BUNDLE_WITHOUT=test && \
+   export BUNDLE_WITHOUT="test" && \
# Generate Gemfile.lock \
bundle list && \
# Strip unwanted gems from Gemfile.lock \
@@ -59,7 +59,7 @@
bundle package && bundle install --local --deployment ; \
 fi ; \
 TEXTDOMAIN=hawk bin/rake gettext:pack; \
-RAILS_ENV=production bin/rake assets:precompile)
+RAILS_ENV=production bundle exec rake assets:precompile)
 
 %:: %.in
sed \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hawk2-2.0.0+git.1458543074.dc9aa66/TODO.md 
new/hawk2-2.0.0+git.1459374052.159281a/TODO.md
--- old/hawk2-2.0.0+git.1458543074.dc9aa66/TODO.md  2016-03-21 
09:18:34.0 +0100
+++ new/hawk2-2.0.0+git.1459374052.159281a/TODO.md  2016-03-31 
07:22:40.0 +0200
@@ -2,12 +2,6 @@
 
 * Controls for all resources: stop all, start all, ... ?
 
-* Show fencing history for each node:
-
-

commit crmsh for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2016-04-01 13:03:00

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


Package is "crmsh"

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2016-03-26 
15:24:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2016-04-01 
13:03:11.0 +0200
@@ -1,0 +2,13 @@
+Thu Mar 31 06:00:48 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.2.0+git.1459359704.8d9b910:
+  + medium: scripts: Use os.uname() to find hostname (#128)
+  + low: logparser: Don't crash on nodes without logs
+  + low: history: Don't skip nodes without logs
+  + low: parser: ignore case for attr: prefix
+  + low: scripts: Need sudo if non-local call
+  + low: history: update the syslog format matching
+  + low: report: add information about booth
+  + low: report: if present, use the subsecond part from syslog timestamps
+
+---

Old:

  crmsh-2.2.0+git.1458546035.5df0420.tar.bz2

New:

  crmsh-2.2.0+git.1459359704.8d9b910.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.jwUre2/_old  2016-04-01 13:03:12.0 +0200
+++ /var/tmp/diff_new_pack.jwUre2/_new  2016-04-01 13:03:12.0 +0200
@@ -32,11 +32,13 @@
 
 %{!?python_sitelib: %define python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
+%define version_unconverted 2.2.0+git.1459359704.8d9b910
+
 Name:   crmsh
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.2.0+git.1458546035.5df0420
+Version:2.2.0+git.1459359704.8d9b910
 Release:0
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.jwUre2/_old  2016-04-01 13:03:12.0 +0200
+++ /var/tmp/diff_new_pack.jwUre2/_new  2016-04-01 13:03:12.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/crmsh.git
-  5df0420c4bde1f550f5476c9540d5fc0a92105f1
\ No newline at end of file
+  8d9b910e4a11cf8f8148b5f97e35602bc71bde03
\ No newline at end of file

++ crmsh-2.2.0+git.1458546035.5df0420.tar.bz2 -> 
crmsh-2.2.0+git.1459359704.8d9b910.tar.bz2 ++
 3406 lines of diff (skipped)




commit metacity for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package metacity for openSUSE:Factory 
checked in at 2016-04-01 13:03:08

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


Package is "metacity"

Changes:

--- /work/SRC/openSUSE:Factory/metacity/metacity.changes2016-02-17 
12:15:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.metacity.new/metacity.changes   2016-04-01 
13:03:17.0 +0200
@@ -1,0 +2,8 @@
+Wed Mar 30 18:26:52 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.3:
+  + Add Icon=preferences-system-windows in metacity.destkop.
+  + Scale window decorations on HiDPI displays, based on mutter.
+  + Partially revert "build everything as library".
+
+---

Old:

  metacity-3.18.2.tar.xz

New:

  metacity-3.18.3.tar.xz



Other differences:
--
++ metacity.spec ++
--- /var/tmp/diff_new_pack.YYA5gN/_old  2016-04-01 13:03:18.0 +0200
+++ /var/tmp/diff_new_pack.YYA5gN/_new  2016-04-01 13:03:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   metacity
-Version:3.18.2
+Version:3.18.3
 Release:0
 Summary:A Window Manager for the GNOME Desktop
 License:GPL-2.0+

++ metacity-3.18.2.tar.xz -> metacity-3.18.3.tar.xz ++
 4757 lines of diff (skipped)




commit aria2 for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package aria2 for openSUSE:Factory checked 
in at 2016-04-01 13:03:17

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


Package is "aria2"

Changes:

--- /work/SRC/openSUSE:Factory/aria2/aria2.changes  2016-03-07 
13:30:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.aria2.new/aria2.changes 2016-04-01 
13:03:26.0 +0200
@@ -1,0 +2,16 @@
+Thu Mar 31 20:24:17 UTC 2016 - mplus...@suse.com
+
+- Update to 1.21.0
+  * SessionSerializer: Fix bug that pause=true is added to wrong 
+item
+  * Add "following" to aria2.tellStatus response key as reverse 
+link for followedBy
+  * mingw: Add warning for falloc
+  * Update ciphers in AppleTLS
+  * OSX: Enable libssh2 and sftp
+  * Update OSX dependencies
+  * Fix compile error without TLS support
+  * Add support for using gnutls system wide crypto policy
+- Update project url
+
+---

Old:

  aria2-1.20.0.tar.xz

New:

  aria2-1.21.0.tar.xz



Other differences:
--
++ aria2.spec ++
--- /var/tmp/diff_new_pack.EcDYLS/_old  2016-04-01 13:03:27.0 +0200
+++ /var/tmp/diff_new_pack.EcDYLS/_new  2016-04-01 13:03:27.0 +0200
@@ -18,24 +18,24 @@
 
 %define somajor 0
 Name:   aria2
-Version:1.20.0
+Version:1.21.0
 Release:0
 Summary:Parallelizing Multi-Protocol Utility for Downloading Files
 License:SUSE-GPL-2.0-with-openssl-exception
 Group:  Productivity/Networking/Other
-Url:http://aria2.sourceforge.net/
+Url:https://aria2.github.io
 Source0:
https://github.com/tatsuhiro-t/aria2/releases/download/release-%{version}/aria2-%{version}.tar.xz
 Source1:%{name}.changes
 BuildRequires:  bison
 BuildRequires:  gcc-c++
 BuildRequires:  gmp-devel
-BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(cppunit)
 BuildRequires:  pkgconfig(gnutls)
 BuildRequires:  pkgconfig(libcares)
 BuildRequires:  pkgconfig(libssh2)
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(nettle)
+BuildRequires:  pkgconfig(pkg-config)
 BuildRequires:  pkgconfig(sqlite3)
 BuildRequires:  pkgconfig(zlib)
 Recommends: %{name}-lang

++ aria2-1.20.0.tar.xz -> aria2-1.21.0.tar.xz ++
 9064 lines of diff (skipped)




commit cntlm for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package cntlm for openSUSE:Factory checked 
in at 2016-04-01 13:03:05

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


Package is "cntlm"

Changes:

--- /work/SRC/openSUSE:Factory/cntlm/cntlm.changes  2016-03-07 
13:26:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.cntlm.new/cntlm.changes 2016-04-01 
13:03:16.0 +0200
@@ -1,0 +2,6 @@
+Thu Mar 24 08:58:57 UTC 2016 - mplus...@suse.com
+
+- Correct typo in changelog
+- Fixed boo#914157
+
+---
@@ -4 +10 @@
-- Revert to state withou conflicts
+- Revert to state without conflicts



Other differences:
--



commit libgda for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package libgda for openSUSE:Factory checked 
in at 2016-04-01 13:03:16

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


Package is "libgda"

Changes:

--- /work/SRC/openSUSE:Factory/libgda/libgda.changes2016-03-29 
14:26:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgda.new/libgda.changes   2016-04-01 
13:03:25.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 30 23:35:14 UTC 2016 - dval...@suse.com
+
+- Now with Java 1.8, on ppc64le set java arch to ppc64 only 
+  if we build with java 1.5 or 1.6 
+
+---



Other differences:
--
++ libgda.spec ++
--- /var/tmp/diff_new_pack.VsZBGa/_old  2016-04-01 13:03:26.0 +0200
+++ /var/tmp/diff_new_pack.VsZBGa/_new  2016-04-01 13:03:26.0 +0200
@@ -379,8 +379,8 @@
 # IcedTea 2.5.0 have ppc64 as libarch for ppc64le
 # except if still build with java 1.7
 %ifarch ppc64le
-%define is_java_1_7 %(rpm -qa |grep jdk.devel|grep -c 1_7)
-%if ! 0%{is_java_1_7}
+%define ppc64_java %(rpm -qa |grep jdk.devel|grep -Ec '(1_5|1_6)')
+%if  0%{ppc64_java}
 getspARCH=ppc64
 %endif
 %endif




commit meld for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package meld for openSUSE:Factory checked in 
at 2016-04-01 13:03:11

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


Package is "meld"

Changes:

--- /work/SRC/openSUSE:Factory/meld/meld.changes2015-12-13 
09:40:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.meld.new/meld.changes   2016-04-01 
13:03:19.0 +0200
@@ -1,0 +2,63 @@
+Mon Mar 28 12:48:49 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.15.2:
+  + Port to use GtkSourceView's file loader and saver helpers,
+bringing several benefits.
+  + Loading and saving speed are significantly improved, and are
+asychronous.
+  + We try a wider range of locale-specific file encodings by
+default, and still support user-specified default encodings.
+  + We now support saving files with inconsistent newline types.
+  + Binary files will now be loaded on a best-effort basis.
+  + Reinstate support for Darcs; this is currently limited to very
+new (>2.10.3) versions.
+  + Folder comparisons now apply text filters in the same way as
+file comparisons.
+  + Add support for showing new shortcuts help dialog.
+  + Preliminary support for building Meld as an xdg-app.
+  + Fixes:
+- Many fixes for GTK+ 3.20 theming changes and widget
+  compatibility issues.
+- All accelerators should now consistently use the Primary key,
+  for better integration on OSX systems.
+- Significantly improve text filter performance.
+- Fix performance regression where scanning for missing files
+  was extremely slow, especially in large repositories.
+- Fix truncated line number display in short file.
+- Fix filter dropdown not appearing below button.
+- Add more documentation on setup and installation
+  requirements.
+- Update the AppData to spec version 0.7+.
+  + Updated translations.
+
+---
+Sun Dec 20 21:53:26 UTC 2015 - damjanovic@gmail.com
+
+- Update to version 3.15.1:
+  + Text ignored by filters is now dimmed to give some visual
+feedback that it's being ignored.
+  + Text filters now apply independently, improving consistency;
+note that this is a behaviour change as filter order no longer
+matters, and filters will always apply to the original
+(not the filtered) text.
+  + Recent menu items now show more detail in tooltips.
+  + Update dialog action area layout for GTK+ theme changes.
+  + Fixes:
+- Conflict resolution prompt now resolves properly again.
+- Silence some GTK+ assertions on window close.
+- Fix default filter issues from recent rework.
+- Percent-containing commit messages no longer corrupt
+  our recent commit messages store.
+- Fix some problems with unicode user directories on Windows.
+- Fix encoding issues when saving files with load errors.
+- Fix drawing corruption when scrolling horizontally.
+- Fix clicking on the diffmap scrolling to the wrong location.
+- Fix off-by-one drawing error for final line in file.
+- Fix introspection requires to silence startup warnings.
+- Fix clearing syncpoints.
+- Add manual appdata kudos markers.
+- PEP8 fixes.
+  + Updated translations.
+- Rebase meld-nodocs.patch.
+
+---

Old:

  meld-3.14.2.tar.xz

New:

  meld-3.15.2.tar.xz



Other differences:
--
++ meld.spec ++
--- /var/tmp/diff_new_pack.H4hLMa/_old  2016-04-01 13:03:19.0 +0200
+++ /var/tmp/diff_new_pack.H4hLMa/_new  2016-04-01 13:03:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package meld
 #
-# 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,13 +17,13 @@
 
 
 Name:   meld
-Version:3.14.2
+Version:3.15.2
 Release:0
 Summary:Visual diff and merge tool
 License:GPL-2.0+
 Group:  Development/Tools/Other
 Url:http://meldmerge.org/
-Source: 
http://download.gnome.org/sources/meld/3.14/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/meld/3.15/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE meld-nodocs.patch dims...@opensuse.org -- We do not want 
COPYING and NEWS installed like this
 Patch0: meld-nodocs.patch
 BuildRequires:  fdupes

++ meld-3.14.2.tar.xz -> meld-3.15.2.tar.xz ++
 38756 lines of diff (skipped)

++ meld-nodocs.patch ++
--- /var/t

commit qbittorrent for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package qbittorrent for openSUSE:Factory 
checked in at 2016-04-01 13:02:52

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


Package is "qbittorrent"

Changes:

--- /work/SRC/openSUSE:Factory/qbittorrent/qbittorrent.changes  2016-01-28 
17:24:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.qbittorrent.new/qbittorrent.changes 
2016-04-01 13:02:58.0 +0200
@@ -1,0 +2,75 @@
+Wed Mar 30 21:12:43 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.3.4:
+   * FEATURE: Download more pieces in
+ "Download first and last pieces first" feature.
+   * FEATURE: Unlock first column in peerlist too.
+   * FEATURE: Add "Hide zero values" option.
+   * FEATURE: Add a "remaining" column to the torrent content model.
+   * FEATURE: Allow to toggle columns in peerlist.
+   * FEATURE: Add ability to filter log messages by type.
+   * FEATURE: Add ability to write the log to file.
+   * FEATURE: Add 'never show again' checkbox/pref to auto-exit
+ confirm dialog.
+   * PERFORMANCE: Perform fastresume data saving in separate thread.
+   * PERFORMANCE: Optimise session startup.
+   * BUGFIX: Save resume data using QSaveFile (Qt5 only). This
+ reduces chances of corrupt files.
+   * BUGFIX: Check torrent file permissions before opening.
+   * BUGFIX: Always update native session's announce_ip setting.
+   * BUGFIX: Fix loading *.magnet files from watched directories.
+   * BUGFIX: Fix upgrade corrupted fastresume file.
+   * BUGFIX: Fix total values for "Seeds" & "Peers".
+   * BUGFIX: Fix potential race condition.
+   * BUGFIX: Don't merge trackers for private torrents.
+   * BUGFIX: Fix double buttons in "Add New Torrent" dialog.
+   * BUGFIX: Fix malformed date header in email.
+   * BUGFIX: Save "Run external programme" input as is.
+   * BUGFIX: Enable "filename" column in peers list again.
+ Crash is fixed now.
+   * BUGFIX: Don't display warning when directory name stayed the
+ same after rename.
+   * BUGFIX: Fix selection of Portuguese translation files.
+   * BUGFIX: Fix selection of Esperanto locale.
+   * BUGFIX: Fix "caja" file manager opens the file instead of
+ opens the directory.
+   * BUGFIX: Potentially fix a random crash coming from the sidepanel.
+   * WEBUI: Fix max_ratio precision.
+   * WEBUI: Fix JavaScript exception on WebUI load.
+   * WEBUI: Fix translation.
+   * WEBUI: Submit the label in the new label dialog on pressing
+ enter key.
+   * WEBUI: Check WebUI username and password length.
+   * WEBUI: Minor changes in CSS styles.
+   * WEBUI: Add "Added on" and "Completion on" fields to
+ query/torrents query response.
+   * WEBUI: Do not try to parse request message when content-length
+ is 0.
+   * WEBUI: Support SSL certificate bundles.
+   * WEBUI: Change the order of the values of speed labels.
+   * WEBUI: Bump WebUI API_VERSION.
+   * SEARCH: Update PirateBay plugin.
+   * SEARCH: Added TorLock search engine.
+   * COSMETIC: Fix splash screen staying on top of all windows.
+   * COSMETIC: Rearrange advanced settings.
+   * COSMETIC: Cleanup "about" dialog.
+   * COSMETIC: Cleanup "Add New Torrent" dialog.
+   * COSMETIC: Use short date in addnewtorrentdialog.
+   * COSMETIC: Change "Free disk space" to "Free space on disk".
+   * COSMETIC: Let OS handle DPI scaling for now. Should let Qt do
+ the work when it's more mature.
+   * COSMETIC: Put comment_lbl in QScrollArea.
+   * COSMETIC: Change the order of the values of speed labels.
+   * COSMETIC: Cleanup the Log tab.
+   * COSMETIC: Cleanup the Atom/RSS tab.
+   * OTHER: Set "Show splash screen on start up" option default to
+ off.
+   * OTHER: Support for cross-compilation with MXE.
+   * OTHER: Add basic (and unofficial) cmake support.
+   * OTHER: Move some URLs overs to https.
+   * OTHER: Add appveyor suppor.
+   * OTHER: Many other internal code restructuring, cleaning and
+ fixing.
+- Check tarball signing.
+
+---

Old:

  qbittorrent-3.3.3.tar.xz

New:

  qbittorrent-3.3.4.tar.xz
  qbittorrent-3.3.4.tar.xz.asc
  qbittorrent.keyring



Other differences:
--
++ qbittorrent.spec ++
--- /var/tmp/diff_new_pack.jVne9q/_old  2016-04-01 13:02:59.0 +0200
+++ /var/tmp/diff_new_pack.jVne9q/_new  2016-04-01 13:02:59.0 +0200
@@ -19,13 +19,15 @@
 
 %define _name   qBittorrent
 Name:   qbittorrent
-Version:3.3.3
+Version:3.3.4
 Release:0
 Summary:A BitTorrent client in Qt
 License:GPL-2.0+
 Group:  Productivity/Networking/File-Sharing
 Url:http://qbittorrent.org/
 Sour

commit cinnamon for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package cinnamon for openSUSE:Factory 
checked in at 2016-04-01 13:02:55

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


Package is "cinnamon"

Changes:

--- /work/SRC/openSUSE:Factory/cinnamon/cinnamon.changes2016-03-16 
10:35:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.cinnamon.new/cinnamon.changes   2016-04-01 
13:03:02.0 +0200
@@ -1,0 +2,9 @@
+Wed Mar 30 21:43:12 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 2.8.8:
+  * layout.js: Remove code for interaction with the screensaver.
+It was always broken until 2.8.7, where it was 'fixed', and has
+caused some reported regression where the panels will be hidden
+after returning from the screensaver.
+
+---

Old:

  cinnamon-2.8.7.tar.gz

New:

  cinnamon-2.8.8.tar.gz



Other differences:
--
++ cinnamon.spec ++
--- /var/tmp/diff_new_pack.C00wh4/_old  2016-04-01 13:03:03.0 +0200
+++ /var/tmp/diff_new_pack.C00wh4/_new  2016-04-01 13:03:03.0 +0200
@@ -21,7 +21,7 @@
 %define _name   Cinnamon
 %define _version 2.8.0
 Name:   cinnamon
-Version:2.8.7
+Version:2.8.8
 Release:0
 Summary:GNU/Linux Desktop featuring a traditional layout
 License:GPL-2.0+ and LGPL-2.1

++ cinnamon-2.8.7.tar.gz -> cinnamon-2.8.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Cinnamon-2.8.7/configure.ac 
new/Cinnamon-2.8.8/configure.ac
--- old/Cinnamon-2.8.7/configure.ac 2016-03-07 18:22:23.0 +0100
+++ new/Cinnamon-2.8.8/configure.ac 2016-03-29 15:24:20.0 +0200
@@ -1,5 +1,5 @@
 AC_PREREQ(2.63)
-AC_INIT([cinnamon],[2.8.7],[https://github.com/linuxmint/Cinnamon/issues],[cinnamon])
+AC_INIT([cinnamon],[2.8.8],[https://github.com/linuxmint/Cinnamon/issues],[cinnamon])
 
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_SRCDIR([src/cinnamon-global.c])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Cinnamon-2.8.7/debian/changelog 
new/Cinnamon-2.8.8/debian/changelog
--- old/Cinnamon-2.8.7/debian/changelog 2016-03-07 18:22:23.0 +0100
+++ new/Cinnamon-2.8.8/debian/changelog 2016-03-29 15:24:20.0 +0200
@@ -1,3 +1,10 @@
+cinnamon (2.8.8) rosa; urgency=medium
+
+  [ Michael Webster ]
+  * layout.js: Remove code for interaction with the screensaver.  It was 
always broken until 2.8.7, where I 'fixed' it, and has caused some reported 
regression where the panels will be hidden after returning from the screensaver.
+
+ -- Clement Lefebvre   Tue, 29 Mar 2016 17:23:21 +0400
+
 cinnamon (2.8.7) rosa; urgency=medium
 
   [ Michael Webster ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Cinnamon-2.8.7/js/ui/layout.js 
new/Cinnamon-2.8.8/js/ui/layout.js
--- old/Cinnamon-2.8.7/js/ui/layout.js  2016-03-07 18:22:23.0 +0100
+++ new/Cinnamon-2.8.8/js/ui/layout.js  2016-03-29 15:24:20.0 +0200
@@ -9,7 +9,6 @@
 const St = imports.gi.St;
 const Main = imports.ui.main;
 const Params = imports.misc.params;
-const ScreenSaver = imports.misc.screenSaver;
 const Tweener = imports.ui.tweener;
 const EdgeFlip = imports.ui.edgeFlip;
 const HotCorner = imports.ui.hotCorner;
@@ -378,15 +377,6 @@
 global.screen.connect('notify::n-workspaces',
   Lang.bind(this, this._queueUpdateRegions));
 
-this._screenSaverActive = false;
-this._screenSaverProxy = new ScreenSaver.ScreenSaverProxy();
-this._screenSaverProxy.connectSignal('ActiveChanged', Lang.bind(this, 
this._onScreenSaverActiveChanged));
-this._screenSaverProxy.GetActiveRemote(Lang.bind(this,
-function(result, err) {
-if (!err)
-this._onScreenSaverActiveChanged(this._screenSaverProxy, 
null, result);
-}));
-
 this._relayout();
 },
 
@@ -518,10 +508,6 @@
 let actorData = this._trackedActors[i], visible;
 if (!actorData.isToplevel)
 continue;
-
-if (this._screenSaverActive) {
-visible = false;
-}
 else if (this._inOverview)
 visible = true;
 else if (!actorData.visibleInFullscreen &&
@@ -552,12 +538,6 @@
 this._updateVisibility();
 this._queueUpdateRegions();
 },
-
-_onScreenSaverActiveChanged: function(proxy, connection, 
screenSaverActive) {
-this._screenSaverActive = screenSaverActive[0];
-this._updateVisibility();
-this._queueUpdat

commit glom for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package glom for openSUSE:Factory checked in 
at 2016-04-01 13:03:01

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


Package is "glom"

Changes:

--- /work/SRC/openSUSE:Factory/glom/glom.changes2015-10-08 
08:25:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.glom.new/glom.changes   2016-04-01 
13:03:14.0 +0200
@@ -1,0 +2,89 @@
+Tue Mar 15 15:13:46 UTC 2016 - dims...@opensuse.org
+
+- Fix build with python 3.5:
+  + Change PYTHON_VERSION to "3.5" and PYTHON to "python3.5" in
+the configure call.
+  + Also drop with-boost-python=boost_python-mt-py34 call, no
+longer needed.
+
+---
+Fri Mar 11 09:13:59 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.31.3:
+  + Show the translated UI in non-English locales, even on newer
+Linux distros (bgo#761372).
+  + Default Field Formatting: Let people actually change this
+again, fixing a regression in (approx) Glom 1.25.4
+(bgo#763348).
+  + Help menu item: Make this work again with recent GNOME systems
+(bgo#763250).
+  + Export: Don't lose precision when exporting large numeric
+values (bgo#763229).
+
+---
+Fri Feb 26 13:14:53 UTC 2016 - dims...@opensuse.org
+
+- Update to version 1.31.2:
+  + Fix crash when loading images into an image field.
+  + Fix crash caused by assert in recent versions of
+libevince-view (bgo#761396).
+  + Really forget a table when removing it (bgo#754645).
+  + Table deletion: Actually let the user cancel the dialog.
+  + Initialize PostgresSQL database with the C locale (bgo#761372).
+  + Try to catch filesystem errors sooner (bgo#761373).
+  + Details layout: Allow notebooks at top-level (bgo#759511).
+  + Connection to central server:
+- Ask again if the connection fails.
+- Specify a timeout.
+  + Build system:
+- Check for, and require, C++14.
+- Lots of modernization of the C++ source code.
+
+---
+Sun Nov 29 19:30:02 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.31.1:
+  + Build:
+- Convert the source code to C++11.
+- Remove unused source code.
+- Use libxml++-3.0 instead of libxml++-2.6.
+- Improvements to how we find and use boost libraries.
+- Replace pkgconfig(libxml++-2.6) for pkgconfig(libxml++-3.0)
+  BuildRequires following upstream changes.
+- Bump api and apiRPM version to 1.32 following upstream.
+
+---
+Thu Sep 24 13:15:49 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.30.0:
+  + Dialog_FieldDefinition: Show self-triggering lookups as
+grayed-out (bgo#754641).
+  + Lookups: Prevent endless self lookups.
+  + Use std::endl instead of std::cerr where std::endl was meant.
+(bgo#754294).
+  + Build: Disable use of yelp if --disable-documentation was used.
+  + More use of C++11.
+  + EggSpreadTableDnd: Replace use of deprecated
+gtk_style_context_set_background.
+  + Use property_whatever() instead of set_property("whatever").
+  + ComboBox_Relationship: Fix a typo in a null check.
+
+---
+Mon Jul 20 08:35:02 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.29.5:
+  + Fix the build with python 3 and require python 3.
+  + Build with (and require) C++11, using some simple C++11
+features.
+- Replace python-devel for python3-devel BuildRequires, following
+  upstreams port. Also add python3 BuildRequires: as python3-devel
+  only brings in python3-base.
+- Pass PYTHON_VERSION="3.4", PYTHON=python3.4 and
+  --with-boost-python=boost_python-mt-py34 to configure as python3
+  is not default in openSUSE yet.
+- Rename sub-package python-glom to python3-glom.
+- Following above change, obsolete python-glom and change
+  packageand(glom:python) to packageand(glom:python3) Supplements.
+- Substitute python-glom Requires for the new python3-glom.
+
+---

Old:

  glom-1.29.4.tar.xz

New:

  glom-1.31.3.tar.xz



Other differences:
--
++ glom.spec ++
--- /var/tmp/diff_new_pack.TETz9X/_old  2016-04-01 13:03:15.0 +0200
+++ /var/tmp/diff_new_pack.TETz9X/_new  2016-04-01 13:03:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package glom
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additi

commit libressl for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package libressl for openSUSE:Factory 
checked in at 2016-04-01 13:02:49

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


Package is "libressl"

Changes:

--- /work/SRC/openSUSE:Factory/libressl/libressl.changes2016-02-09 
16:50:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.libressl.new/libressl.changes   2016-04-01 
13:02:56.0 +0200
@@ -1,0 +2,7 @@
+Wed Mar 23 20:50:00 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 2.3.3
+* cert.pem has been reorganized and synced with Mozilla's
+  certificate store
+
+---

Old:

  libressl-2.3.2.tar.gz
  libressl-2.3.2.tar.gz.asc

New:

  libressl-2.3.3.tar.gz
  libressl-2.3.3.tar.gz.asc



Other differences:
--
++ libressl.spec ++
--- /var/tmp/diff_new_pack.61tsVC/_old  2016-04-01 13:02:57.0 +0200
+++ /var/tmp/diff_new_pack.61tsVC/_new  2016-04-01 13:02:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libressl
-Version:2.3.2
+Version:2.3.3
 Release:0
 Summary:An SSL/TLS protocol implementation
 License:OpenSSL

++ libressl-2.3.2.tar.gz -> libressl-2.3.3.tar.gz ++
 10774 lines of diff (skipped)




commit libzrtpcpp for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package libzrtpcpp for openSUSE:Factory 
checked in at 2016-04-01 13:02:47

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


Package is "libzrtpcpp"

Changes:

--- /work/SRC/openSUSE:Factory/libzrtpcpp/libzrtpcpp.changes2016-02-26 
22:19:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.libzrtpcpp.new/libzrtpcpp.changes   
2016-04-01 13:02:52.0 +0200
@@ -1,0 +2,7 @@
+Wed Mar 23 21:19:19 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 4.6.3
+* A small fix inside the ZRTP main module to ignore malformed
+  DH1 packets and avoid an NULL pointer access.
+
+---

Old:

  V4.6.2.tar.gz

New:

  V4.6.3.tar.gz



Other differences:
--
++ libzrtpcpp.spec ++
--- /var/tmp/diff_new_pack.Q9biSS/_old  2016-04-01 13:02:54.0 +0200
+++ /var/tmp/diff_new_pack.Q9biSS/_new  2016-04-01 13:02:54.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   libzrtpcpp
 %define lname  libzrtpcpp4
-Version:4.6.2
+Version:4.6.3
 Release:0
 Summary:A ccrtp extension for ZRTP support
 License:GPL-3.0+

++ V4.6.2.tar.gz -> V4.6.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ZRTPCPP-4.6.2/.idea/dictionaries/werner.xml 
new/ZRTPCPP-4.6.3/.idea/dictionaries/werner.xml
--- old/ZRTPCPP-4.6.2/.idea/dictionaries/werner.xml 1970-01-01 
01:00:00.0 +0100
+++ new/ZRTPCPP-4.6.3/.idea/dictionaries/werner.xml 2016-03-14 
18:50:58.0 +0100
@@ -0,0 +1,8 @@
+
+  
+
+  dittmann
+  hmac
+
+  
+
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ZRTPCPP-4.6.2/CMakeLists.txt 
new/ZRTPCPP-4.6.3/CMakeLists.txt
--- old/ZRTPCPP-4.6.2/CMakeLists.txt2016-02-04 16:32:31.0 +0100
+++ new/ZRTPCPP-4.6.3/CMakeLists.txt2016-03-14 18:50:58.0 +0100
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Werner Dittman
+# Copyright (C) 2009 - 2016 Werner Dittman
 #
 # This file is free software; as a special exception the author gives
 # unlimited permission to copy and/or distribute it, with or without
@@ -14,9 +14,9 @@
 
 SET(CPACK_PACKAGE_VERSION_MAJOR 4)
 SET(CPACK_PACKAGE_VERSION_MINOR 6)
-SET(CPACK_PACKAGE_VERSION_PATCH 2)
+SET(CPACK_PACKAGE_VERSION_PATCH 3)
 
-set (VERSION 4.6.2)
+set (VERSION 4.6.3)
 set (SOVERSION 4)
 
 # Define supported command line parameters.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ZRTPCPP-4.6.2/NEWS.md new/ZRTPCPP-4.6.3/NEWS.md
--- old/ZRTPCPP-4.6.2/NEWS.md   2016-02-04 16:32:31.0 +0100
+++ new/ZRTPCPP-4.6.3/NEWS.md   2016-03-14 18:50:58.0 +0100
@@ -1,3 +1,9 @@
+## GNU ZRTP 4.6.3 ##
+
+A small fix inside the ZRTP main module to ignore malformed
+DH1 packets and avoid an NULL pointer access. 
+
+
 ## GNU ZRTP 4.6.2 ##
 
 A small fix in the ZrtpCWrapper to fix an issue within 4.6.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ZRTPCPP-4.6.2/zrtp/ZRtp.cpp 
new/ZRTPCPP-4.6.3/zrtp/ZRtp.cpp
--- old/ZRTPCPP-4.6.2/zrtp/ZRtp.cpp 2016-02-04 16:32:31.0 +0100
+++ new/ZRTPCPP-4.6.3/zrtp/ZRtp.cpp 2016-03-14 18:50:58.0 +0100
@@ -690,6 +690,10 @@
 
 // get and check Responder's public value, see chap. 5.4.3 in the spec
 pvr = dhPart1->getPv();
+if (pvr == NULL) {
+*errMsg = IgnorePacket;
+return NULL;
+}
 if (!dhContext->checkPubKey(pvr)) {
 *errMsg = DHErrorWrongPV;
 return NULL;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ZRTPCPP-4.6.2/zrtp/ZrtpPacketDHPart.cpp 
new/ZRTPCPP-4.6.3/zrtp/ZrtpPacketDHPart.cpp
--- old/ZRTPCPP-4.6.2/zrtp/ZrtpPacketDHPart.cpp 2016-02-04 16:32:31.0 
+0100
+++ new/ZRTPCPP-4.6.3/zrtp/ZrtpPacketDHPart.cpp 2016-03-14 18:50:58.0 
+0100
@@ -37,8 +37,8 @@
 void* allocated = &data;
 memset(allocated, 0, sizeof(data));
 
-zrtpHeader = (zrtpPacketHeader_t *)&((DHPartPacket_t *)allocated)->hdr; // 
the standard header
-DHPartHeader = (DHPart_t *)&((DHPartPacket_t *)allocated)->dhPart;
+zrtpHeader = &((DHPartPacket_t *)allocated)->hdr; // the standard header
+DHPartHeader = &((DHPartPacket_t *)allocated)->dhPart;
 pv = ((uint8_t*)allocated) + sizeof(DHPartPacket_t);// point to the 
public key value
 
 setZrtpId();
@@ -46,7 +46,7 @@
 
 // The fixed numbers below are taken from ZRTP specification, chap 5.1.5
 void ZrtpPacketDHPart::setPubKeyType(const char* pkt) {
-// W

commit booth for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package booth for openSUSE:Factory checked 
in at 2016-04-01 13:02:45

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


Package is "booth"

Changes:

--- /work/SRC/openSUSE:Factory/booth/booth.changes  2016-01-22 
01:09:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.booth.new/booth.changes 2016-04-01 
13:02:49.0 +0200
@@ -1,0 +2,14 @@
+Wed Mar 23 16:35:54 UTC 2016 - opensuse-packag...@opensuse.org
+
+- Update to version v1.0_6_g106efdf:
+  + Feature: extprog: add capability to run a set of programs
+  + Medium: extprog: external tests timeout after renewal interval
+
+---
+Wed Mar 16 15:53:29 UTC 2016 - dmuhameda...@suse.com
+
+- Update to release v1.0
+  + systemd: add booth-arbitrator.service (bsc#967036)
+  + main: improve address matching procedure
+
+---



Other differences:
--
++ booth.spec ++
--- /var/tmp/diff_new_pack.Mqf5sy/_old  2016-04-01 13:02:50.0 +0200
+++ /var/tmp/diff_new_pack.Mqf5sy/_new  2016-04-01 13:02:50.0 +0200
@@ -46,7 +46,7 @@
 License:GPL-2.0+
 Group:  %{pkg_group}
 Version:1.0
-Release:0rc1
+Release:0
 Source: booth.tar.bz2
 Source1:%name-rpmlintrc
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -103,6 +103,7 @@
 # systemd
 mkdir -p %{buildroot}/%{_unitdir}
 cp -a conf/booth@.service %{buildroot}/%{_unitdir}/booth@.service
+cp -a conf/booth-arbitrator.service 
%{buildroot}/%{_unitdir}/booth-arbitrator.service
 ln -s /usr/sbin/service %{buildroot}%{_sbindir}/rcbooth-arbitrator
 %else
 # sysV init
@@ -156,6 +157,7 @@
 
 %if %{defined _unitdir}
 %{_unitdir}/booth@.service
+%{_unitdir}/booth-arbitrator.service
 %exclude %{_initddir}/booth-arbitrator
 %else
 %{_initddir}/booth-arbitrator
@@ -167,22 +169,6 @@
 %doc AUTHORS README COPYING
 %doc README.upgrade-from-v0.1
 
-# this should be preun, but...
-%pre
-# new installation?
-test -x %{_sbindir}/booth || exit 0
-# stop the arbitrator if it's the previous paxos version 1.0
-if [ "`booth version | awk '{print $2}'`" = "1.0" ]; then
-   echo "booth v0.1 found"
-   if grep -qs 'ticket.*;' /etc/booth/booth.conf; then
-   echo "Convert the booth configuration in /etc/booth/booth.conf!"
-   fi
-   if ps -o pid,cmd -e | grep -qs "[b]oothd arbitrator"; then
-   rcbooth-arbitrator stop
-   fi
-fi
-exit 0
-
 %package test
 Summary:Test scripts for Booth
 Group:  %{pkg_group}

++ _servicedata ++
--- /var/tmp/diff_new_pack.Mqf5sy/_old  2016-04-01 13:02:50.0 +0200
+++ /var/tmp/diff_new_pack.Mqf5sy/_new  2016-04-01 13:02:50.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/booth.git
-  9c5c19f2c9217db9bf6265e8e753ac15ba631ae0
\ No newline at end of file
+  106efdf386c23aa7c740f1d238ecd04fd63f5ebc
\ No newline at end of file

++ booth.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/booth/.git_info new/booth/.git_info
--- old/booth/.git_info 2016-01-12 15:03:32.0 +0100
+++ new/booth/.git_info 2016-03-23 17:32:51.0 +0100
@@ -1 +1 @@
-v1.0rc1
+v1.0-6-g106efdf
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/booth/ChangeLog new/booth/ChangeLog
--- old/booth/ChangeLog 2016-01-12 11:50:01.0 +0100
+++ new/booth/ChangeLog 2016-03-23 17:31:14.0 +0100
@@ -1,3 +1,8 @@
+* Mar Jan 16 2016 Dejan Muhamedagic  and others
+- stable release 1.0
+- systemd: add booth-arbitrator.service (bsc#967036)
+- main: improve address matching procedure
+
 * Mon Jan 11 2016 Dejan Muhamedagic  and others
 - release candidate 1.0 rc1
 - main: prevent segfault on no arguments
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/booth/README new/booth/README
--- old/booth/README2016-01-12 11:50:01.0 +0100
+++ new/booth/README2016-03-23 17:31:14.0 +0100
@@ -118,14 +118,18 @@
 renewals are configurable and by default set to half ticket
 expire time.
 
-Before ticket renewal, the leader runs an external program if
-such program is set in 'before-acquire-handler'. The external
-program should ensure that the cluster managed service which is
-protected by this ticket can run at this site. If that program
-fails, the leader relinquishes the ticket. It announces its
-intention to step down by broadcasting an unsolicited VOTE_FOR
-with an empty vote. On receiving such RPC other servers start new
-el

commit skiboot for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package skiboot for openSUSE:Factory checked 
in at 2016-04-01 13:02:38

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


Package is "skiboot"

Changes:

--- /work/SRC/openSUSE:Factory/skiboot/skiboot.changes  2016-03-29 
10:39:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.skiboot.new/skiboot.changes 2016-04-01 
13:02:41.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 29 12:38:37 UTC 2016 - dval...@suse.com
+
+- Reenable parallel build
+  0001-Make-links-target-reusable.patch 
+
+---

New:

  0001-Make-links-target-reusable.patch



Other differences:
--
++ skiboot.spec ++
--- /var/tmp/diff_new_pack.IsX86l/_old  2016-04-01 13:02:42.0 +0200
+++ /var/tmp/diff_new_pack.IsX86l/_new  2016-04-01 13:02:42.0 +0200
@@ -24,6 +24,7 @@
 Group:  System/Management
 Url:https://github.com/open-power/skiboot
 Source: 
https://github.com/open-power/skiboot/archive/%{name}-%{version}.tar.gz
+Patch0: 0001-Make-links-target-reusable.patch 
 BuildRequires:  linux-glibc-devel
 BuildRequires:  systemd-rpm-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -66,12 +67,13 @@
 
 %prep
 %setup -q -n %{name}-%{name}-%{version}
+%patch0 -p1
 
 %build
 SKIBOOT_VERSION=%version CROSS= make V=1 %{?_smp_mflags}
-OPAL_PRD_VERSION=%version make V=1 -C external/opal-prd
-GARD_VERSION=%version make V=1 -C external/gard
-PFLASH_VERSION=%version make V=1 -C external/pflash
+OPAL_PRD_VERSION=%version make V=1 %{?_smp_mflags} -C external/opal-prd
+GARD_VERSION=%version make V=1 %{?_smp_mflags} -C external/gard
+PFLASH_VERSION=%version make V=1 %{?_smp_mflags} -C external/pflash
 make V=1 -C external/xscom-utils
 
 %install

++ 0001-Make-links-target-reusable.patch ++
>From e52008e69c0d4541bd531df5ce10187faeeddecd Mon Sep 17 00:00:00 2001
From: Dinar Valeev 
Date: Thu, 24 Mar 2016 18:33:22 +0100
Subject: [PATCH] Make links target reusable

Move symlinking target to external/common/rules.mk, so the rule
could be reused by gard and opal-prd.

Signed-off-by: Dinar Valeev 
---
 external/common/rules.mk   | 24 
 external/gard/Makefile | 19 ++-
 external/opal-prd/Makefile | 25 ++---
 external/pflash/Makefile   | 24 +---
 4 files changed, 29 insertions(+), 63 deletions(-)

diff --git a/external/common/rules.mk b/external/common/rules.mk
index ec20593..4a929d6 100644
--- a/external/common/rules.mk
+++ b/external/common/rules.mk
@@ -17,6 +17,30 @@ endif
 endif
 endif
 
+# Use make V=1 for a verbose build.
+ifndef V
+Q_CC=  @echo 'CC ' $@;
+Q_LINK=@echo '  LINK ' $@;
+Q_LN=   @echo 'LN ' $@;
+Q_MKDIR=@echo ' MKDIR ' $@;
+endif
+
+
+.PHONY: links
+links: libflash ccan common
+
+libflash:
+   $(Q_LN)ln -sf ../../libflash ./libflash
+
+ccan:
+   $(Q_LN)ln -sf ../../ccan ./ccan
+
+common:
+   $(Q_LN)ln -sf ../common ./common
+
+make_version.sh:
+   $(Q_LN)ln -sf ../../make_version.sh
+
 ARCH_SRC := $(addprefix common/,$(ARCH_FILES))
 ARCH_OBJS := $(addprefix common-,$(ARCH_FILES:.c=.o))
 
diff --git a/external/gard/Makefile b/external/gard/Makefile
index be3d1ba..b54923d 100644
--- a/external/gard/Makefile
+++ b/external/gard/Makefile
@@ -3,22 +3,7 @@ include rules.mk
 GET_ARCH = ../../external/common/get_arch.sh
 include ../../external/common/rules.mk
 
-all: $(EXE)
-
-.PHONY: links
-links: libflash ccan common make_version.sh
-
-libflash:
-   ln -sf ../../libflash .
-
-ccan:
-   ln -sf ../../ccan .
-
-common:
-   ln -sf ../common .
-
-make_version.sh:
-   ln -sf ../../make_version.sh
+all: links arch_links $(EXE)
 
 #Rebuild version.o so that the the version always matches
 #what the test suite will get from ./make_version.sh
@@ -26,7 +11,7 @@ check: version.o all
@ln -sf ../../test/test.sh test/test.sh
@test/test-gard
 
-$(OBJS): | links arch_links
+links += make_version.sh
 
 .PHONY: VERSION-always
 .version: VERSION-always
diff --git a/external/opal-prd/Makefile b/external/opal-prd/Makefile
index 3f34371..e89f73d 100644
--- a/external/opal-prd/Makefile
+++ b/external/opal-prd/Makefile
@@ -10,19 +10,11 @@ sbindir = $(prefix)/sbin
 datadir = $(prefix)/share
 mandir = $(datadir)/man
 
-all: opal-prd
+all: links arch_links | opal-prd
 
 GET_ARCH = ../../external/common/get_arch.sh
 include ../../external/common/rules.mk
 
-# Use make V=1 for a verbose build.
-ifndef V
-Q_CC=  @echo 'CC ' $@;
-Q_LINK=@echo '  LINK ' $@;
-Q_LN=   @echo 'LN ' $@;
-  

commit servicelog for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package servicelog for openSUSE:Factory 
checked in at 2016-04-01 13:02:35

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


Package is "servicelog"

Changes:

--- /work/SRC/openSUSE:Factory/servicelog/servicelog.changes2014-09-09 
19:00:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.servicelog.new/servicelog.changes   
2016-04-01 13:02:36.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 22 16:26:13 UTC 2016 - jloe...@suse.com
+
+- version update to 1.1.14 (FATE#319555)
+  - see servicelog-1.1.14/ChangeLog for changes
+
+---

Old:

  servicelog-1.1.13.tar.bz2

New:

  servicelog-1.1.14.tar.gz



Other differences:
--
++ servicelog.spec ++
--- /var/tmp/diff_new_pack.Wwrx0U/_old  2016-04-01 13:02:37.0 +0200
+++ /var/tmp/diff_new_pack.Wwrx0U/_new  2016-04-01 13:02:37.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package servicelog
 #
-# Copyright (c) 2014 SUSE LINUX Products 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,7 +17,7 @@
 
 
 Name:   servicelog
-Version:1.1.13
+Version:1.1.14
 Release:0
 Summary:Servicelog Tools
 License:GPL-2.0
@@ -26,7 +26,7 @@
 BuildRequires:  libservicelog-devel
 BuildRequires:  sqlite3-devel
 Url:http://linux-diag.sourceforge.net/servicelog 
-Source0:%{name}-%{version}.tar.bz2
+Source0:%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  ppc ppc64 ppc64le
 




commit zenity for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package zenity for openSUSE:Factory checked 
in at 2016-04-01 13:02:21

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


Package is "zenity"

Changes:

--- /work/SRC/openSUSE:Factory/zenity/zenity.changes2015-10-25 
19:12:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.zenity.new/zenity.changes   2016-04-01 
13:02:22.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 23 18:04:05 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.0:
+  + Updated translations.
+
+---

Old:

  zenity-3.18.1.1.tar.xz

New:

  zenity-3.20.0.tar.xz



Other differences:
--
++ zenity.spec ++
--- /var/tmp/diff_new_pack.9srZwe/_old  2016-04-01 13:02:23.0 +0200
+++ /var/tmp/diff_new_pack.9srZwe/_new  2016-04-01 13:02:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package zenity
 #
-# 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,13 +17,13 @@
 
 
 Name:   zenity
-Version:3.18.1.1
+Version:3.20.0
 Release:0
 Summary:GNOME Command Line Dialog Utility
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/zenity/3.18/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/zenity/3.20/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream

++ zenity-3.18.1.1.tar.xz -> zenity-3.20.0.tar.xz ++
 17526 lines of diff (skipped)




commit sitar for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package sitar for openSUSE:Factory checked 
in at 2016-04-01 13:02:33

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


Package is "sitar"

Changes:

--- /work/SRC/openSUSE:Factory/sitar/sitar.changes  2014-10-16 
18:16:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.sitar.new/sitar.changes 2016-04-01 
13:02:35.0 +0200
@@ -1,0 +2,5 @@
+Sun Mar 20 14:51:02 UTC 2016 - bwiedem...@suse.com
+
+- Add reproducible.patch to fix build-compare
+
+---

New:

  reproducible.patch



Other differences:
--
++ sitar.spec ++
--- /var/tmp/diff_new_pack.OQD0TE/_old  2016-04-01 13:02:36.0 +0200
+++ /var/tmp/diff_new_pack.OQD0TE/_new  2016-04-01 13:02:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sitar
 #
-# Copyright (c) 2012 SUSE LINUX Products 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
@@ -26,6 +26,7 @@
 Source0:sitar-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE fix-syntax-errors-with-newer-perl.patch boo#82 
wba...@tmo.at -- fix syntax errors when run with the perl in openSUSE 13.1 and 
higher
 Patch:  fix-syntax-errors-with-newer-perl.patch
+Patch1: reproducible.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  groff
 BuildArch:  noarch
@@ -58,8 +59,11 @@
 %prep
 %setup -q
 %patch -p1
+%patch1 -p1
 
 %build
+: ${SOURCE_DATE_EPOCH:=1168904229}
+export SOURCE_DATE_EPOCH
 make
 
 %install

++ reproducible.patch ++
Index: sitar-1.0.6/Makefile
===
--- sitar-1.0.6.orig/Makefile
+++ sitar-1.0.6/Makefile
@@ -26,7 +26,7 @@ PERL  = /usr/bin/perl
 RELEASE= 1.0.6
 
 SVNVERSION := $(shell svnversion -n . | sed "s/:/./" )
-RELDATE:= $(shell date +"%Y%m%d")
+RELDATE:= $(shell date --date=@$$SOURCE_DATE_EPOCH +"%Y%m%d")
 CFG_PFRAGS = pfrags/cfg2scm.header.pl  \
  pfrags/cfg2scm.manpage.pl \
  pfrags/cfg2scm.globals.pl \



commit bundle-lang-common for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory checked in at 2016-04-01 13:02:40

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


Package is "bundle-lang-common"

Changes:

--- /work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-common.changes
2016-03-18 21:41:37.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-common.changes   
2016-04-01 13:02:43.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 30 09:20:46 UTC 2016 - dims...@opensuse.org
+
+- Update package list.
+
+---
bundle-lang-gnome.changes: same change
bundle-lang-kde.changes: same change



Other differences:
--
++ bundle-lang-gnome.spec ++
 708 lines (skipped)
 between 
/work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-gnome.spec
 and 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-gnome.spec

bundle-lang-other.spec: same change
++ packages.txt ++
--- /var/tmp/diff_new_pack.PvrQu4/_old  2016-04-01 13:02:45.0 +0200
+++ /var/tmp/diff_new_pack.PvrQu4/_new  2016-04-01 13:02:45.0 +0200
@@ -34,7 +34,7 @@
 bijiben-lang gnome
 bluedevil5-lang kde
 blueproximity-lang gnome-extras
-brasero-lang gnome
+brasero-lang gnome-extras
 breeze5-style-lang kde
 byzanz-lang gnome-extras
 cairo-clock-lang gnome-extras
@@ -67,7 +67,6 @@
 easytag-lang gnome-extras
 efax-gtk-lang gnome-extras
 eiciel-lang gnome-extras
-emerillon-lang gnome-extras
 empathy-lang gnome
 eog-lang gnome
 eog-plugins-lang gnome-extras
@@ -219,7 +218,7 @@
 grilo-plugins-lang gnome
 grisbi-lang gnome-extras
 gsettings-desktop-schemas-lang common
-gspell-lang gnome-extras
+gspell-lang gnome
 gstreamer-lang common
 gstreamer-plugins-bad-lang gnome
 gstreamer-plugins-base-lang common
@@ -460,7 +459,6 @@
 weather-wallpaper-lang gnome-extras
 x-tile-lang gnome-extras
 xchat-gnome-lang gnome-extras
-xchat-lang gnome-extras
 xdg-user-dirs-gtk-lang gnome
 xdg-user-dirs-lang common
 xkeyboard-config-lang common




commit mate-themes for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package mate-themes for openSUSE:Factory 
checked in at 2016-04-01 13:02:37

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


Package is "mate-themes"

Changes:

--- /work/SRC/openSUSE:Factory/mate-themes/mate-themes.changes  2016-01-04 
09:22:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.mate-themes.new/mate-themes.changes 
2016-04-01 13:02:38.0 +0200
@@ -1,0 +2,52 @@
+Sat Mar 26 19:35:13 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 3.20.4:
+  * GTK+-3.20 Menta themes: Add styling for mate-mixer GUI.
+  * GTK+-3.20 Menta themes: Reduce size of menubars and menuitems.
+  * GTK+-3.20 Menta themes: Reduce size of reduce size of actionbar.
+  * GTK+-3.20 Menta themes: Fix buttons in rhythmbox.
+  * GTK+-3.20 Menta themes: Adjust GtkColorScale.
+  * GTK+-3.20 Menta themes: Simplify combobox and caja settings.
+  * GTK+-3.20 Menta themes: Reduce height of sidbar treeview.
+  * GTK+-3.20: Menta themes: Adjust treeviews.
+  * GTK+-3.20 Menta themes: Fix combobox, spinbutton and switch in
+list rows, this make elements in cinnamon-setting visible.
+  * GTK+-3.20 Menta themes: File-browser pathbar adjustments +
+increase size of rows + clean up.
+  * GTK+-3.20 Menta themes: adjust notebooks settings.
+  * GTK+-3.20 branch: make GreanLaguna optional (not default).
+  * GTK+-3.20 high contrast themes: Finished port to Gtk 3.20.
+  * GTK3-3.20 traditional themes: Button state cleanup + fix size
+of Nemo's buttons.
+  * GTK+-3.20 traditional themes: Adjust GtkScale and GtkColorScale.
+  * GTK+-3.20 traditional themes: Adjust width of scrollbars.
+  * GTK+-3.20 traditional themes: Adjust comboboxes.
+  * GTK+-3.20 traditional themes: Fix treeview header button.
+  * GTK+-3.20 traditional themes: Fix jumping pathbar buttons.
+  * GTK+-3.20 Submarine themes: Improve Nemo pathbar settings.
+  * GTK+-3.20 Submarine themes: Adjustements for Nemo and
+cinnamon-settings.
+  * GTK+-3.20 Submarine themes: Adjust GtkColorScale.
+  * GTK+-3.20 Submarine themes: Adjust combobox, rows, treeviews,
+inline-toolbar and Nautilus pathbar.
+  * GTK+-3.20 Submarine themes: Adjust Caja and Pluma.
+  * GTK+-3.20 Submarine themes: Adjust notebooks.
+  * GTK+-3.20 most themes: Fix text bg of credits in GtkAbout
+windows.
+  * GTK+-3.20 all themes: Update wnckpager to follow latest
+mate-panel changes.
+
+---
+Tue Mar 22 20:32:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 3.20.3 (changes since 1.12.2):
+  * Port BlueMenta, BlackMATE, *Submarine,  Menta, TraditionalOK,
+TraditionalGreen to GTK+ 3.20.
+  * Gtk3: Fix Scrollbars, Spinbutton and Notebooks in Menta themes,
+Submarine themes and Traditional themes.
+  * Other improvements.
+  * Language updates.
+- Require current Gtk for build: should not be built on targets
+  with a lesser version, as new themes are not usable there.
+
+---

Old:

  mate-themes-gtk3.18-1.12.2.tar.xz

New:

  mate-themes-3.20.4.tar.xz



Other differences:
--
++ mate-themes.spec ++
--- /var/tmp/diff_new_pack.fXwE4o/_old  2016-04-01 13:02:39.0 +0200
+++ /var/tmp/diff_new_pack.fXwE4o/_new  2016-04-01 13:02:39.0 +0200
@@ -18,26 +18,26 @@
 
 # TODO: Split up packages into individual themes.
 # mate-themes is released in different editions for different Gtk3 versions.
-# Let's use a Gtk 3.18 version for openSUSE Tumbleweed.
-%define _gtk_ver 3.18
-%define _version 1.12
+# Let's use the Gtk 3.20 version for openSUSE Tumbleweed.
+%define _version 3.20
 Name:   mate-themes
-Version:1.12.2
+Version:3.20.4
 Release:0
 Summary:Themes for the MATE desktop
 License:LGPL-2.1+
 Group:  System/GUI/Other
 Url:http://mate-desktop.org/
-Source0:
http://pub.mate-desktop.org/releases/%{_version}/%{name}-gtk%{_gtk_ver}-%{version}.tar.xz
+Source: 
http://pub.mate-desktop.org/releases/themes/%{_version}/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  icon-naming-utils
-BuildRequires:  mate-common >= %{_version}
+BuildRequires:  mate-common
 BuildRequires:  pkgconfig(gdk-pixbuf-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.20
 Requires:   gtk2-engine-clearlooks
 Requires:   gtk2-engine-hcengine
 Requires:   gtk2-engine-murrine
-Recommends: %{name}-lang
+Obsoletes:  %{name}-lang
 BuildArch:  noarch
 
 %description
@@ -49,17 +49,17 @@
 %lang_package
 
 %prep
-%setup -q -n %{name}-gtk%{_gtk_ver}-%{version}
+%setup 

commit uhd for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package uhd for openSUSE:Factory checked in 
at 2016-04-01 13:02:43

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


Package is "uhd"

Changes:

--- /work/SRC/openSUSE:Factory/uhd/uhd.changes  2016-01-22 01:09:17.0 
+0100
+++ /work/SRC/openSUSE:Factory/.uhd.new/uhd.changes 2016-04-01 
13:02:46.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 23 23:01:19 UTC 2016 - w...@ire.pw.edu.pl
+
+- Update sources to version 3.9.3
+
+---

Old:

  uhd-3.9.2.tar.gz
  uhd-images_003.009.002-release.tar.gz

New:

  uhd-3.9.3.tar.gz
  uhd-images_003.009.003-release.tar.gz



Other differences:
--
++ uhd.spec ++
--- /var/tmp/diff_new_pack.ZaIBn4/_old  2016-04-01 13:02:47.0 +0200
+++ /var/tmp/diff_new_pack.ZaIBn4/_new  2016-04-01 13:02:47.0 +0200
@@ -18,10 +18,10 @@
 
 Name:   uhd
 %define libname libuhd003
-Version:3.9.2
+Version:3.9.3
 Release:0
-%define src_ver 003.009.002
-%define img_ver 003.009.002
+%define src_ver 003.009.003
+%define img_ver 003.009.003
 Summary:The driver for USRP SDR boards
 License:GPL-3.0+
 Group:  Hardware/Other

++ uhd-3.9.2.tar.gz -> uhd-3.9.3.tar.gz ++
 1731 lines of diff (skipped)

++ uhd-images_003.009.002-release.tar.gz -> 
uhd-images_003.009.003-release.tar.gz ++
/work/SRC/openSUSE:Factory/uhd/uhd-images_003.009.002-release.tar.gz 
/work/SRC/openSUSE:Factory/.uhd.new/uhd-images_003.009.003-release.tar.gz 
differ: char 5, line 1




commit libsecret for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package libsecret for openSUSE:Factory 
checked in at 2016-04-01 13:02:27

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


Package is "libsecret"

Changes:

--- /work/SRC/openSUSE:Factory/libsecret/libsecret.changes  2016-01-23 
01:14:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.libsecret.new/libsecret.changes 2016-04-01 
13:02:28.0 +0200
@@ -1,0 +2,9 @@
+Fri Mar 25 15:12:37 UTC 2016 - zai...@opensuse.org
+
+- Update to version 0.18.5:
+  + Build fixes.
+  + Port tests to Python 3 (bgo#761834).
+  + Fix textual typos (bgo#763143).
+  + Updated translations.
+
+---

Old:

  libsecret-0.18.4.tar.xz

New:

  libsecret-0.18.5.tar.xz



Other differences:
--
++ libsecret.spec ++
--- /var/tmp/diff_new_pack.zOjoXV/_old  2016-04-01 13:02:29.0 +0200
+++ /var/tmp/diff_new_pack.zOjoXV/_new  2016-04-01 13:02:29.0 +0200
@@ -19,7 +19,7 @@
 %define have_lang 1
 
 Name:   libsecret
-Version:0.18.4
+Version:0.18.5
 Release:0
 Summary:Library for accessing the Secret Service API
 License:LGPL-2.1+

++ libsecret-0.18.4.tar.xz -> libsecret-0.18.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsecret-0.18.4/NEWS new/libsecret-0.18.5/NEWS
--- old/libsecret-0.18.4/NEWS   2016-01-19 09:24:32.0 +0100
+++ new/libsecret-0.18.5/NEWS   2016-03-25 09:18:33.0 +0100
@@ -1,3 +1,9 @@
+0.18.5
+ * Build fixes
+ * Port tests to Python 3 [#761834]
+ * Fix textual typos [#763143]
+ * Updated translations
+
 0.18.4
  * Multithreading fixes [#756766]
  * Fix memory leaks [#756766]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsecret-0.18.4/aclocal.m4 
new/libsecret-0.18.5/aclocal.m4
--- old/libsecret-0.18.4/aclocal.m4 2016-01-19 09:24:47.0 +0100
+++ new/libsecret-0.18.5/aclocal.m4 2016-03-25 09:18:42.0 +0100
@@ -683,13 +683,13 @@
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 dnl
-dnl This file can can be used in projects which are not available under
+dnl This file can be used in projects which are not available under
 dnl the GNU General Public License or the GNU Library General Public
 dnl License but which still want to provide support for the GNU gettext
 dnl functionality.
 dnl Please note that the actual code of the GNU gettext library is covered
 dnl by the GNU Library General Public License, and the rest of the GNU
-dnl gettext package package is covered by the GNU General Public License.
+dnl gettext package is covered by the GNU General Public License.
 dnl They are *not* in the public domain.
 
 dnl Authors:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsecret-0.18.4/build/valgrind/valgrind.h 
new/libsecret-0.18.5/build/valgrind/valgrind.h
--- old/libsecret-0.18.4/build/valgrind/valgrind.h  2015-10-19 
12:15:02.0 +0200
+++ new/libsecret-0.18.5/build/valgrind/valgrind.h  2016-03-08 
13:30:39.0 +0100
@@ -6826,7 +6826,7 @@
 
 
 /* These requests allow control to move from the simulated CPU to the
-   real CPU, calling an arbitary function.
+   real CPU, calling an arbitrary function.

Note that the current ThreadId is inserted as the first argument.
So this call:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsecret-0.18.4/configure 
new/libsecret-0.18.5/configure
--- old/libsecret-0.18.4/configure  2016-01-19 09:24:48.0 +0100
+++ new/libsecret-0.18.5/configure  2016-03-25 09:18:42.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libsecret 0.18.4.
+# Generated by GNU Autoconf 2.69 for libsecret 0.18.5.
 #
 # Report bugs to .
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='libsecret'
 PACKAGE_TARNAME='libsecret'
-PACKAGE_VERSION='0.18.4'
-PACKAGE_STRING='libsecret 0.18.4'
+PACKAGE_VERSION='0.18.5'
+PACKAGE_STRING='libsecret 0.18.5'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=libsecret'
 PACKAGE_URL=''
 
@@ -1447,7 +1447,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libsecret 0.18.4 to adapt to man

commit uid_wrapper for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package uid_wrapper for openSUSE:Factory 
checked in at 2016-04-01 13:01:51

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


Package is "uid_wrapper"

Changes:

--- /work/SRC/openSUSE:Factory/uid_wrapper/uid_wrapper.changes  2016-02-17 
12:25:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.uid_wrapper.new/uid_wrapper.changes 
2016-04-01 13:01:52.0 +0200
@@ -1,0 +2,7 @@
+Mon Mar 21 18:17:52 UTC 2016 - a...@cryptomilk.org
+
+- Update to version 1.2.1
+  * Documented missing options.
+  * Fixed a comipilation issue with -O3.
+
+---

Old:

  uid_wrapper-1.2.0.tar.gz

New:

  uid_wrapper-1.2.1.tar.gz



Other differences:
--
++ uid_wrapper.spec ++
--- /var/tmp/diff_new_pack.19L6km/_old  2016-04-01 13:01:53.0 +0200
+++ /var/tmp/diff_new_pack.19L6km/_new  2016-04-01 13:01:53.0 +0200
@@ -24,7 +24,7 @@
 # NOTE ##
 
 Name:   uid_wrapper
-Version:1.2.0
+Version:1.2.1
 Release:0
 
 Summary:A wrapper for privilege seperation

++ uid_wrapper-1.2.0.tar.gz -> uid_wrapper-1.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uid_wrapper-1.2.0/CMakeLists.txt 
new/uid_wrapper-1.2.1/CMakeLists.txt
--- old/uid_wrapper-1.2.0/CMakeLists.txt2015-10-29 08:21:16.0 
+0100
+++ new/uid_wrapper-1.2.1/CMakeLists.txt2016-03-16 14:53:33.0 
+0100
@@ -8,7 +8,7 @@
 
 set(APPLICATION_VERSION_MAJOR "1")
 set(APPLICATION_VERSION_MINOR "2")
-set(APPLICATION_VERSION_PATCH "0")
+set(APPLICATION_VERSION_PATCH "1")
 
 set(APPLICATION_VERSION 
"${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}")
 
@@ -19,7 +19,7 @@
 # Increment AGE. Set REVISION to 0
 #   If the source code was changed, but there were no interface changes:
 # Increment REVISION.
-set(LIBRARY_VERSION "0.0.5")
+set(LIBRARY_VERSION "0.0.6")
 set(LIBRARY_SOVERSION "0")
 
 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is 
checked
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uid_wrapper-1.2.0/ChangeLog 
new/uid_wrapper-1.2.1/ChangeLog
--- old/uid_wrapper-1.2.0/ChangeLog 2015-10-29 08:20:51.0 +0100
+++ new/uid_wrapper-1.2.1/ChangeLog 2016-03-16 14:53:22.0 +0100
@@ -1,6 +1,10 @@
 ChangeLog
 ==
 
+version 1.2.1 (released 2016-03-16)
+  * Documented missing options.
+  * Fixed a comipilation issue with -O3.
+
 version 1.2.0 (released 2015-10-29)
   * Added privilege checks for all set*uid and set*gid functions.
   * Added a lot more and accurate tests which work as root.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uid_wrapper-1.2.0/doc/uid_wrapper.1 
new/uid_wrapper-1.2.1/doc/uid_wrapper.1
--- old/uid_wrapper-1.2.0/doc/uid_wrapper.1 2015-09-17 20:15:04.0 
+0200
+++ new/uid_wrapper-1.2.1/doc/uid_wrapper.1 2015-11-03 12:17:22.0 
+0100
@@ -2,12 +2,12 @@
 .\" Title: uid_wrapper
 .\"Author: [FIXME: author] [see http://docbook.sf.net/el/author]
 .\" Generator: DocBook XSL Stylesheets v1.78.1 
-.\"  Date: 2014-07-11
+.\"  Date: 2015-11-03
 .\"Manual: \ \&
 .\"Source: \ \&
 .\"  Language: English
 .\"
-.TH "UID_WRAPPER" "1" "2014\-07\-11" "\ \&" "\ \&"
+.TH "UID_WRAPPER" "1" "2015\-11\-03" "\ \&" "\ \&"
 .\" -
 .\" * Define some portability stuff
 .\" -
@@ -139,6 +139,25 @@
 3 = TRACE
 .RE
 .RE
+.PP
+\fBUID_WRAPPER_MYUID\fR
+.RS 4
+This environment variable can be used to tell uid_wrapper to let geteuid() 
return the real (instead of the faked) UID of the user who started the process 
with uid_wrapper\&.
+.RE
+.sp
+.if n \{\
+.RS 4
+.\}
+.nf
+uid_t uid;
+
+setenv("UID_WRAPPER_MYUID", "1", 1);
+uid = geteuid();
+unsetenv("UID_WRAPPER_MYUID");
+.fi
+.if n \{\
+.RE
+.\}
 .SH "EXAMPLE"
 .sp
 .if n \{\
@@ -146,8 +165,26 @@
 .\}
 .nf
 $ LD_PRELOAD=libuid_wrapper\&.so UID_WRAPPER=1 UID_WRAPPER_ROOT=1 id
-uid=0(root) gid=0(root) groups=100(users),0(root)
+uid=0(root) gid=0(root) 0(root)
 .fi
 .if n \{\
 .RE
 .\}
+.SH "WORKAROUNDS"
+.sp
+If you need to write code that behaves differently depending on whether 
uid_wrapper is enabled or not, for example in cases where you have to file 
permissions, you can predefine the uid_wrapper_enabled() function in your 
pro

commit kdepim for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package kdepim for openSUSE:Factory checked 
in at 2016-04-01 13:02:15

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


Package is "kdepim"

Changes:

--- /work/SRC/openSUSE:Factory/kdepim/kdepim.changes2016-03-26 
15:14:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdepim.new/kdepim.changes   2016-04-01 
13:02:16.0 +0200
@@ -1,0 +2,6 @@
+Mon Mar 28 17:03:46 UTC 2016 - ctri...@opensuse.org
+
+- Remove x-mail-distribution-list from kdepim package as they are 
+  provided by oxygen-icon-theme package to avoid file conflicts
+
+---



Other differences:
--
++ kdepim.spec ++
--- /var/tmp/diff_new_pack.T9cssc/_old  2016-04-01 13:02:17.0 +0200
+++ /var/tmp/diff_new_pack.T9cssc/_new  2016-04-01 13:02:17.0 +0200
@@ -155,6 +155,8 @@
 cd build
 %kf5_makeinstall
 
+rm %{buildroot}%{_kf5_iconsdir}/oxygen/*/mimetypes/x-mail-distribution-list.png
+
 %create_subdir_filelist -d akregator -v devel
 %create_subdir_filelist -d blogilo -v devel
 %create_subdir_filelist -d kaddressbook -v devel




commit nss_wrapper for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package nss_wrapper for openSUSE:Factory 
checked in at 2016-04-01 13:01:45

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


Package is "nss_wrapper"

Changes:

--- /work/SRC/openSUSE:Factory/nss_wrapper/nss_wrapper.changes  2016-02-17 
12:16:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.nss_wrapper.new/nss_wrapper.changes 
2016-04-01 13:01:50.0 +0200
@@ -1,0 +2,7 @@
+Mon Mar 21 18:19:18 UTC 2016 - a...@cryptomilk.org
+
+- Update to version 1.1.3
+  * Added support for BSD 'struct passwd' members
+  * Replaced strcpy() with snprintf()
+
+---

Old:

  nss_wrapper-1.1.2.tar.gz

New:

  nss_wrapper-1.1.3.tar.gz



Other differences:
--
++ nss_wrapper.spec ++
--- /var/tmp/diff_new_pack.yZSkbw/_old  2016-04-01 13:01:51.0 +0200
+++ /var/tmp/diff_new_pack.yZSkbw/_new  2016-04-01 13:01:51.0 +0200
@@ -24,7 +24,7 @@
 # NOTE ##
 
 Name:   nss_wrapper
-Version:1.1.2
+Version:1.1.3
 Release:0
 
 Summary:A wrapper for the user, group and hosts NSS API

++ nss_wrapper-1.1.2.tar.gz -> nss_wrapper-1.1.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nss_wrapper-1.1.2/CMakeLists.txt 
new/nss_wrapper-1.1.3/CMakeLists.txt
--- old/nss_wrapper-1.1.2/CMakeLists.txt2015-12-17 08:57:54.0 
+0100
+++ new/nss_wrapper-1.1.3/CMakeLists.txt2016-03-18 11:58:10.0 
+0100
@@ -8,7 +8,7 @@
 
 set(APPLICATION_VERSION_MAJOR "1")
 set(APPLICATION_VERSION_MINOR "1")
-set(APPLICATION_VERSION_PATCH "2")
+set(APPLICATION_VERSION_PATCH "3")
 
 set(APPLICATION_VERSION 
"${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}")
 
@@ -19,7 +19,7 @@
 # Increment AGE. Set REVISION to 0
 #   If the source code was changed, but there were no interface changes:
 # Increment REVISION.
-set(LIBRARY_VERSION "0.2.2")
+set(LIBRARY_VERSION "0.2.3")
 set(LIBRARY_SOVERSION "0")
 
 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is 
checked
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nss_wrapper-1.1.2/ChangeLog 
new/nss_wrapper-1.1.3/ChangeLog
--- old/nss_wrapper-1.1.2/ChangeLog 2015-12-17 09:00:25.0 +0100
+++ new/nss_wrapper-1.1.3/ChangeLog 2016-03-18 11:57:56.0 +0100
@@ -1,6 +1,10 @@
 ChangeLog
 ==
 
+version 1.1.3 (released 2015-03-18)
+  * Added support for BSD 'struct passwd' members
+  * Replaced strcpy() with snprintf()
+
 version 1.1.2 (released 2015-12-17)
   * Fixed segfault while reloading hosts file
   * Fixed issue where are not fault tolerant if an alias has already
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nss_wrapper-1.1.2/ConfigureChecks.cmake 
new/nss_wrapper-1.1.3/ConfigureChecks.cmake
--- old/nss_wrapper-1.1.2/ConfigureChecks.cmake 2015-11-11 11:51:25.0 
+0100
+++ new/nss_wrapper-1.1.3/ConfigureChecks.cmake 2016-03-17 20:26:09.0 
+0100
@@ -191,6 +191,9 @@
 
 # STRUCT MEMBERS
 check_struct_has_member("struct sockaddr" sa_len "sys/socket.h netinet/in.h" 
HAVE_STRUCT_SOCKADDR_SA_LEN)
+check_struct_has_member("struct passwd" pw_class "pwd.h" 
HAVE_STRUCT_PASSWD_PW_CLASS)
+check_struct_has_member("struct passwd" pw_change "pwd.h" 
HAVE_STRUCT_PASSWD_PW_CHANGE)
+check_struct_has_member("struct passwd" pw_expire "pwd.h" 
HAVE_STRUCT_PASSWD_PW_EXPIRE)
 
 # IPV6
 check_c_source_compiles("
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nss_wrapper-1.1.2/config.h.cmake 
new/nss_wrapper-1.1.3/config.h.cmake
--- old/nss_wrapper-1.1.2/config.h.cmake2015-11-11 11:51:25.0 
+0100
+++ new/nss_wrapper-1.1.3/config.h.cmake2016-03-17 20:26:09.0 
+0100
@@ -86,6 +86,10 @@
 #cmakedefine HAVE_LINUX_GETNAMEINFO_UNSIGNED 1
 
 #cmakedefine HAVE_STRUCT_SOCKADDR_SA_LEN 1
+#cmakedefine HAVE_STRUCT_PASSWD_PW_CLASS 1
+#cmakedefine HAVE_STRUCT_PASSWD_PW_CHANGE 1
+#cmakedefine HAVE_STRUCT_PASSWD_PW_EXPIRE 1
+
 #cmakedefine HAVE_IPV6 1
 
 #cmakedefine HAVE_ATTRIBUTE_PRINTF_FORMAT 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nss_wrapper-1.1.2/src/nss_wrapper.c 
new/nss_wrapper-1.1.3/src/nss_wrapper.c
--- old/nss_wrapper-1.1.2/src/nss_wrapper.c 2015-12-17 09:14:13.0 
+0100
+++ new/nss_wrapper-1.1.3/src/nss_wrapper.c 2016-03-17 20:26:09.0 
+0100
@@ -154,6 +154,14 @@
 

commit python3-numpy for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package python3-numpy for openSUSE:Factory 
checked in at 2016-04-01 13:02:08

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


Package is "python3-numpy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-numpy/python3-numpy-doc.changes  
2016-01-08 15:24:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-numpy.new/python3-numpy-doc.changes 
2016-04-01 13:02:09.0 +0200
@@ -1,0 +2,16 @@
+Tue Mar 29 02:16:30 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * require setuptools
+
+- update to version 1.11.0:
+  * Highlights
++ The datetime64 type is now timezone naive.
++ A dtype parameter has been added to randint.
++ Improved detection of two arrays possibly sharing memory.
++ Automatic bin size estimation for np.histogram.
++ Speed optimization of A @ A.T and dot(A, A.T).
++ New function np.moveaxis for reordering array axes.
+  * full changelog at 
https://github.com/numpy/numpy/blob/master/doc/release/1.11.0-notes.rst
+
+---
python3-numpy.changes: same change

Old:

  numpy-1.10.4.tar.gz

New:

  numpy-1.11.0.tar.gz



Other differences:
--
++ python3-numpy-doc.spec ++
--- /var/tmp/diff_new_pack.56H4Oq/_old  2016-04-01 13:02:10.0 +0200
+++ /var/tmp/diff_new_pack.56H4Oq/_new  2016-04-01 13:02:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-numpy-doc
-Version:1.10.4
+Version:1.11.0
 Release:0
 Url:http://www.numpy.org/
 Summary:Documentation for python3-numpy
@@ -36,6 +36,7 @@
 BuildRequires:  python3-numpy-devel = %{version}
 BuildRequires:  python3-numpydoc
 BuildRequires:  python3-pyparsing
+BuildRequires:  python3-setuptools
 BuildArch:  noarch
 Recommends: python3-numpy
 Provides:   python3-numpy-doc-html = 1.7.1

++ python3-numpy.spec ++
--- /var/tmp/diff_new_pack.56H4Oq/_old  2016-04-01 13:02:10.0 +0200
+++ /var/tmp/diff_new_pack.56H4Oq/_new  2016-04-01 13:02:10.0 +0200
@@ -19,7 +19,7 @@
 %define with_atlas 0
 
 Name:   python3-numpy
-Version:1.10.4
+Version:1.11.0
 Release:0
 Url:http://www.numpy.org/
 Summary:NumPy array processing for numbers, strings, records and 
objects
@@ -37,6 +37,7 @@
 BuildRequires:  lapack-devel
 BuildRequires:  python3 >= 3.2
 BuildRequires:  python3-devel >= 3.2
+BuildRequires:  python3-setuptools
 # Cython needed for mtrand.c regenerating (python3.3)
 BuildRequires:  python3-Cython
 %if %{with_atlas} == 1

++ numpy-1.10.4.tar.gz -> numpy-1.11.0.tar.gz ++
 86779 lines of diff (skipped)




commit java-1_7_0-openjdk for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:Factory checked in at 2016-04-01 13:01:27

Comparing /work/SRC/openSUSE:Factory/java-1_7_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new (New)


Package is "java-1_7_0-openjdk"

Changes:

--- 
/work/SRC/openSUSE:Factory/java-1_7_0-openjdk/java-1_7_0-openjdk-bootstrap.changes
  2016-01-28 22:49:37.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new/java-1_7_0-openjdk-bootstrap.changes
 2016-04-01 13:01:29.0 +0200
@@ -1,0 +2,73 @@
+Mon Mar 28 18:00:23 UTC 2016 - fst...@suse.com
+
+- Update to 2.6.5 - OpenJDK 7u99 (bsc#972468)
+  * Security fixes
+- S8152335, CVE-2016-0636: Improve MethodHandle consistency
+  * Import of OpenJDK 7 u99 build 0
+- S6425769, PR2858: Allow specifying an address to bind JMX
+  remote connector
+- S6961123: setWMClass fails to null-terminate WM_CLASS string
+- S8145982, PR2858: JMXInterfaceBindingTest is failing
+  intermittently
+- S8146015, PR2858: JMXInterfaceBindingTest is failing
+  intermittently for IPv6 addresses
+  * Backports
+- S8028727, PR2814: [parfait] warnings from b116 for
+ jdk.src.share.native.sun.security.ec: JNI pending exceptions
+- S8048512, PR2814: Uninitialised memory in
+  jdk/src/share/native/sun/security/ec/ECC_JNI.cpp
+- S8071705. PR2819, RH1182694: Java application menu misbehaves
+  when running multiple screen stacked vertically
+- S8150954, PR2866, RH1176206: AWT Robot not compatible with
+  GNOME Shell
+  * Bug fixes
+- PR2803: Make system CUPS optional
+- PR2886: Location of 'stap' executable is hard-coded
+- PR2893: test/tapset/jstaptest.pl should be executable
+- PR2894: Add missing test directory in make check.
+  * CACAO
+- PR2781, CA195: typeinfo.cpp: typeinfo_merge_nonarrays:
+  Assertion `dest && result && x.any && y.any' failed
+  * AArch64 port
+- PR2852: Add support for large code cache
+- PR2852: Apply ReservedCodeCacheSize default limiting to
+  AArch64 only.
+- S8081289, PR2852: aarch64: add support for
+  RewriteFrequentPairs in interpreter
+- S8131483, PR2852: aarch64: illegal stlxr instructions
+- S8133352, PR2852: aarch64: generates constrained unpredictable
+  instructions
+- S8133842, PR2852: aarch64: C2 generates illegal instructions
+  with int shifts >=32
+- S8134322, PR2852: AArch64: Fix several errors in C2 biased
+  locking implementation
+- S8136615, PR2852: aarch64: elide DecodeN when followed by
+  CmpP 0
+- S8138575, PR2852: Improve generated code for profile counters
+- S8138641, PR2852: Disable C2 peephole by default for aarch64
+- S8138966, PR2852: Intermittent SEGV running ParallelGC
+- S8143067, PR2852: aarch64: guarantee failure in javac
+- S8143285, PR2852: aarch64: Missing load acquire when checking
+  if ConstantPoolCacheEntry is resolved
+- S8143584, PR2852: Load constant pool tag and class status with
+ load acquire
+- S8144201, PR2852: aarch64:
+  jdk/test/com/sun/net/httpserver/Test6a.java fails with
+  --enable-unlimited-crypto
+- S8144582, PR2852: AArch64 does not generate correct branch
+  profile data
+- S8146709, PR2852: AArch64: Incorrect use of ADRP for
+  byte_map_base
+- S8147805, PR2852: aarch64: C1 segmentation fault due to inline
+  Unsafe.getAndSetObject
+- S8148240, PR2852: aarch64: random infrequent null pointer
+  exceptions in javac
+  * PPC & AIX port
+- S8034797, PR2851: AIX: Fix os::naked_short_sleep() in
+  os_aix.cpp after 8028280
+- S8139258, PR2851: PPC64LE: argument passing problem when
+  passing 15 floats in native call
+- S8139421, PR2851: PPC64LE: MacroAssembler::bxx64_patchable
+  kill register R12
+
+---
java-1_7_0-openjdk.changes: same change

Old:

  icedtea-2.6.4.tar.xz
  icedtea-2.6.4.tar.xz.sig

New:

  icedtea-2.6.5.tar.xz
  icedtea-2.6.5.tar.xz.sig



Other differences:
--
++ java-1_7_0-openjdk-bootstrap.spec ++
--- /var/tmp/diff_new_pack.u9763r/_old  2016-04-01 13:01:33.0 +0200
+++ /var/tmp/diff_new_pack.u9763r/_new  2016-04-01 13:01:33.0 +0200
@@ -19,7 +19,7 @@
 %{!?aarch64:%global aarch64 aarch64 arm64 armv8}
 %global jit_arches %ix86 x86_64 ppc64 ppc64le %arm %aarch64
 %global test_arches %ix86 x86_64 ppc64 ppc64le
-%global icedtea_version 2.6.4
+%global icedtea_version 2.6.5
 %global icedtea_sound_version 1.0.1
 %global mauvedate 2008-10-22
 %global buildoutputdir openjdk.build/
@@ -31,7 +31,7 @@
 # Standard JPackage naming and versioning d

commit vsftpd for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package vsftpd for openSUSE:Factory checked 
in at 2016-04-01 13:01:56

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


Package is "vsftpd"

Changes:

--- /work/SRC/openSUSE:Factory/vsftpd/vsftpd.changes2016-03-16 
10:26:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.vsftpd.new/vsftpd.changes   2016-04-01 
13:01:58.0 +0200
@@ -1,0 +2,17 @@
+Wed Mar 23 10:07:55 UTC 2016 - tchva...@suse.com
+
+- Require shadow and do not output the error out of useradd
+
+---
+Tue Mar 22 14:27:27 UTC 2016 - tchva...@suse.com
+
+- Fix user creation to not report error when user alredy exist
+  bnc#972169
+
+---
+Mon Mar 21 12:53:59 UTC 2016 - tchva...@suse.com
+
+- Fix bnc#970982 hanging on pam_exec in pam.d
+  * Add patch vsftpd-3.0.2-wnohang.patch
+
+---

New:

  vsftpd-3.0.2-wnohang.patch



Other differences:
--
++ vsftpd.spec ++
--- /var/tmp/diff_new_pack.eHdCZ9/_old  2016-04-01 13:01:59.0 +0200
+++ /var/tmp/diff_new_pack.eHdCZ9/_new  2016-04-01 13:01:59.0 +0200
@@ -68,11 +68,13 @@
 Patch21:vsftpd-2.3.4-sqb.patch
 Patch22:vsftpd-path-normalize.patch
 Patch23:vsftpd-ls-memleak.patch
+#PATCH-FIX-UPSTREAM: bnc#970982
+Patch24:vsftpd-3.0.2-wnohang.patch
 BuildRequires:  libcap-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pam-devel
 Requires:   logrotate
-Requires(pre):  %{_sbindir}/useradd
+Requires(pre):  shadow
 Provides:   ftp-server
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_systemd}
@@ -116,6 +118,7 @@
 %patch21 -p1
 %patch22 -p1
 %patch23 -p1
+%patch24 -p1
 
 %build
 %define seccomp_opts -D_GNU_SOURCE -DUSE_SECCOMP
@@ -148,7 +151,7 @@
 install -m 644 %{SOURCE6} 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name}
 
 %pre
-%{_sbindir}/useradd -r -g nogroup -s /bin/false -c "Secure FTP User" -d 
%{_localstatedir}/lib/empty ftpsecure 2> /dev/null || :
+getent passwd ftpsecure >/dev/null || useradd -r -g nogroup -s /bin/false -c 
"Secure FTP User" -d %{_localstatedir}/lib/empty ftpsecure
 %if %{with_systemd}
 %service_add_pre %{name}.service %{name}@.service %{name}.socket
 %endif

++ vsftpd-3.0.2-wnohang.patch ++
--- vsftpd-3.0.2/sysutil.c.wnohang  2015-08-03 07:35:33.619620425 +0200
+++ vsftpd-3.0.2/sysutil.c  2015-08-03 07:35:33.626620480 +0200
@@ -608,13 +608,13 @@ vsf_sysutil_exit(int exit_code)
 }
 
 struct vsf_sysutil_wait_retval
-vsf_sysutil_wait(void)
+vsf_sysutil_wait(int hang)
 {
   struct vsf_sysutil_wait_retval retval;
   vsf_sysutil_memclr(&retval, sizeof(retval));
   while (1)
   {
-int sys_ret = wait(&retval.exit_status);
+int sys_ret = waitpid(-1, &retval.exit_status, hang ? 0 : WNOHANG);
 if (sys_ret < 0 && errno == EINTR)
 {
   vsf_sysutil_check_pending_actions(kVSFSysUtilUnknown, 0, 0);
--- vsftpd-3.0.2/sysutil.h.wnohang  2015-08-03 07:35:33.610620354 +0200
+++ vsftpd-3.0.2/sysutil.h  2015-08-03 07:35:33.626620480 +0200
@@ -176,7 +176,7 @@ struct vsf_sysutil_wait_retval
   int PRIVATE_HANDS_OFF_syscall_retval;
   int PRIVATE_HANDS_OFF_exit_status;
 };
-struct vsf_sysutil_wait_retval vsf_sysutil_wait(void);
+struct vsf_sysutil_wait_retval vsf_sysutil_wait(int hang);
 int vsf_sysutil_wait_reap_one(void);
 int vsf_sysutil_wait_get_retval(
   const struct vsf_sysutil_wait_retval* p_waitret);
--- vsftpd-3.0.2/twoprocess.c.wnohang   2012-09-16 09:15:49.0 +0200
+++ vsftpd-3.0.2/twoprocess.c   2015-08-03 07:35:33.626620480 +0200
@@ -47,8 +47,17 @@ static void
 handle_sigchld(void* duff)
 {
 
-  struct vsf_sysutil_wait_retval wait_retval = vsf_sysutil_wait();
+  struct vsf_sysutil_wait_retval wait_retval = vsf_sysutil_wait(0);
   (void) duff;
+  if (!vsf_sysutil_wait_get_exitcode(&wait_retval) &&
+  !vsf_sysutil_wait_get_retval(&wait_retval))
+/* There was nobody to wait for, possibly caused by underlying library
+ * which created a new process through fork()/vfork() and already picked
+ * it up, e.g. by pam_exec.so or integrity check routines for libraries
+ * when FIPS mode is on (nss freebl), which can lead to calling prelink
+ * if the prelink package is installed.
+ */
+return;
   /* Child died, so we'll do the same! Report it as an error unless the child
* exited normally with zero exit code
*/
@@ -390,7 +399,7 @@ common_do_login(struct vsf_session* p_se
   priv_sock_send_result(p_sess->parent_fd, PRIV_SOCK_RESULT_OK);
   if (!p_sess->control_use_

commit kglobalaccel for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package kglobalaccel for openSUSE:Factory 
checked in at 2016-04-01 13:01:15

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-03-16 10:29:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.kglobalaccel.new/kglobalaccel.changes   
2016-04-01 13:01:16.0 +0200
@@ -1,0 +2,5 @@
+Sun Mar 27 16:23:16 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Added 0001-Make-kglobalaccel5-properly-killable-fixing-super-sl.patch
+
+---

New:

  0001-Make-kglobalaccel5-properly-killable-fixing-super-sl.patch



Other differences:
--
++ kglobalaccel.spec ++
--- /var/tmp/diff_new_pack.m5fGza/_old  2016-04-01 13:01:17.0 +0200
+++ /var/tmp/diff_new_pack.m5fGza/_new  2016-04-01 13:01:17.0 +0200
@@ -48,6 +48,8 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-UPSTREAM 
0001-Make-kglobalaccel5-properly-killable-fixing-super-sl.patch
+Patch0: 0001-Make-kglobalaccel5-properly-killable-fixing-super-sl.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -105,6 +107,7 @@
 %lang_package -n %lname
 %prep
 %setup -q
+%patch0 -p1
 rm -rf po/*/kglobalaccel5.po
 
 %build

++ 0001-Make-kglobalaccel5-properly-killable-fixing-super-sl.patch ++
>From 065fb2bab67d19e5a6aa831039f8bd155a28bd70 Mon Sep 17 00:00:00 2001
From: Andreas Hartmetz 
Date: Sun, 27 Mar 2016 00:34:54 +0200
Subject: [PATCH 1/1] Make kglobalaccel5 properly killable, fixing super slow
 shutdown.

One does not just catch signals in a multi-threaded (or really any
nontrivial) application.
At least since some time, Qt has separate threads for xcb and dbus.
This signal catching business caused a deadlock in the main thread,
which made kglobalaccel5 survive getting killed by... systemd?

Now, when an unplanned signal arrives, just die like a normal
process. But when shutting down orderly, actually try to save
pending changes.

On my Kubuntu 15.10, after an already slow logout, the shutdown
splash screen would stay on for a minute or so while systemd
didn't dare to shut down the computer - as I figured out, it
was because kglobalaccel5 was the last process running from
the previous session.
So why did kglobalaccel5 not get killed by ksmserver?
Apparently, due to some mess involving systemd, there are two
session buses and two "unique" instances of kglobalaccel5. One
of them is the one that survives.
Of course, this also needs to be fixed. It might be just a local
problem of mine, though.

In any case, this change is also the right thing to do on its own.

Also, disable fallback session management. It's just no good :)
(This makes no difference for the observed bug.)

(cherry picked from commit 9a8866c2a424a29ef06ee6ad594c92c62ac099c3)
---
 src/runtime/kglobalacceld.cpp |  7 ++-
 src/runtime/main.cpp  | 16 ++--
 2 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/src/runtime/kglobalacceld.cpp b/src/runtime/kglobalacceld.cpp
index 3a55ffe..fbb0aa9 100644
--- a/src/runtime/kglobalacceld.cpp
+++ b/src/runtime/kglobalacceld.cpp
@@ -240,7 +240,12 @@ bool KGlobalAccelD::init()
 
 KGlobalAccelD::~KGlobalAccelD()
 {
-GlobalShortcutsRegistry::self()->deactivateShortcuts();
+GlobalShortcutsRegistry *const reg = GlobalShortcutsRegistry::self();
+if (d->writeoutTimer.isActive()) {
+d->writeoutTimer.stop();
+reg->writeSettings();
+}
+reg->deactivateShortcuts();
 delete d;
 }
 
diff --git a/src/runtime/main.cpp b/src/runtime/main.cpp
index 81dbde5..5264ad4 100644
--- a/src/runtime/main.cpp
+++ b/src/runtime/main.cpp
@@ -37,14 +37,6 @@ static bool isEnabled()
 return true;
 }
 
-
-static void sighandler(int /*sig*/)
-{
-if (qApp)
-   qApp->quit();
-}
-
-
 extern "C" Q_DECL_EXPORT int main(int argc, char **argv)
 {
 // Disable Session Management the right way (C)
@@ -78,12 +70,8 @@ extern "C" Q_DECL_EXPORT int main(int argc, char **argv)
 KDBusService service(KDBusService::Unique);
 
 app.setQuitOnLastWindowClosed( false );
-
-// Stop gracefully
-::signal(SIGINT, sighandler);
-::signal(SIGTERM, sighandler);
-#ifndef Q_OS_WIN
-::signal(SIGHUP, sighandler);
+#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 1)
+QGuiApplication::setFallbackSessionManagementEnabled(false);
 #endif
 
 // Restart on a crash
-- 
2.6.2




commit nghttp2 for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

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

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


Package is "nghttp2"

Changes:

--- /work/SRC/openSUSE:Factory/nghttp2/nghttp2.changes  2016-03-01 
09:33:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.nghttp2.new/nghttp2.changes 2016-04-01 
13:01:24.0 +0200
@@ -1,0 +2,53 @@
+Sun Mar 27 16:57:17 UTC 2016 - mplus...@suse.com
+
+- Update to 1.9.1
+  * nghttpx: Fix bug that backend tls keyword did not work with -s 
+option
+  * nghttpx: Fix handing stream after connection check was failed
+- Changes for 1.9.0
+  * lib: Add nghttp2_error_callback to tell application human 
+readable error message
+  * lib: Reference counted HPACK name/value pair, adding
+  * nghttp2_on_header_callback2
+  * lib: Add nghttp2_option_set_no_auto_ping_ack() option
+  * lib: Add nghttp2_http2_strerror() to return HTTP/2 error code 
+string
+  * build: Makefile.msvc enhancements (Patch from Jan-E)
+  * build: Lower libev version requirement (Patch from Peter Wu)
+  * build: cmake build support (Patch from Peter Wu)
+  * asio: Fix bug that server event loop breaks with exception
+  * integration: Disable tests that sometimes break randomly on 
+travis
+  * integration: do not use recursive target (Patch from Peter Wu)
+  * h2load: Fix bug that it did not try to connect to server again
+  * h2load: Fix bug that initial max concurrent streams was too 
+large
+  * nghttpx: Memcached connection encryption with tls keyword
+  * nghttpx: Enable/disable TLS per frontend address
+  * nghttpx: Configure TLS per backend routing pattern
+  * nghttpx: Workaround for Ubuntu 15.04 which does not 
+value-initialize on std::make_shared.
+  * nghttpx: Add --error-page option to set custom error pages
+  * nghttpx: Add wildcard host routing
+  * nghttpx: Change read timeout reset timing
+  * nghttpx: Don't push if Link header field includes nopush
+  * nghttpx: Deprecate backend-http1-connections-per-host in favor 
+of backend-connections-per-host
+  * nghttpx: Restructure mode settings, removing --http2-bridge, 
+--client, and --client-proxy options
+  * nghttpx: Deprecate backend-http1-connections-per-frontend in 
+favor of backend-connections-per-frontend
+  * nghttpx: Don't share session which is already in draining 
+state
+  * nghttpx: Effectively disable backend HTTP/2 connection flow 
+control
+  * nghttpx: Add --frontend-http2-max-concurrent-streams and 
+--backend-http2-max-concurrent-streams, and deprecate 
+--http2-max-concurrent-streams option
+  * nghttpx: Deprecate --backend-http2-connections-per-worker 
+option
+  * nghttpx: Share TLS session cache between HTTP/2 and HTTP/1 
+backend
+  * nghttpx: Rewrite backend HTTP/2 connection coalesce strategy
+
+---

Old:

  nghttp2-1.8.0.tar.xz

New:

  nghttp2-1.9.1.tar.xz



Other differences:
--
++ nghttp2.spec ++
--- /var/tmp/diff_new_pack.tDVgje/_old  2016-04-01 13:01:25.0 +0200
+++ /var/tmp/diff_new_pack.tDVgje/_new  2016-04-01 13:01:25.0 +0200
@@ -21,7 +21,7 @@
 %define soname_asio libnghttp2_asio
 %define sover_asio 1
 Name:   nghttp2
-Version:1.8.0
+Version:1.9.1
 Release:0
 Summary:Implementation of Hypertext Transfer Protocol version 2 in C
 License:MIT
@@ -39,6 +39,7 @@
 BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  python-Cython
+BuildRequires:  python-devel
 BuildRequires:  python-Sphinx
 BuildRequires:  python-setuptools
 BuildRequires:  pkgconfig(cunit)
@@ -113,7 +114,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
+%patch0
 
 %build
 autoreconf -fiv
@@ -123,24 +124,21 @@
   --enable-asio-lib   \
   --enable-app\
   --enable-python-bindings
-
 make %{?_smp_mflags} all html
 pushd python
 make %{?_smp_mflags} nghttp2.c
-python2 setup.py build
+python setup.py build
 popd
 
 %install
 %make_install
-
 pushd python
-python2 setup.py install \
-  --root=%{buildroot} --prefix=%{_prefix}
+python setup.py install --root=%{buildroot} --prefix=%{_prefix}
 popd
 
 # Move to the correct directory.
-mkdir -p %{buildroot}%{_docdir}/
-mv -f %{buildroot}%{_datadir}/doc/%{name}/ %{buildroot}%{_docdir}/%{name}-doc/
+mkdir -p %{buildroot}%{_docdir}
+mv -f %{buildroot}%{_datadir}/doc/%{name} %{buildroot}%{_docdir}/%{name}-doc
 
 find %{buildroot} -type f -name "*.la" -delete -print
 

++ nghttp2-1.8.0.tar.xz -> nghttp2-1.9.1.tar.xz ++
 26787 lines of diff (skipped)

++ nghttp2-remove-python-build.patch ++
--- /var/tm

commit dolphin for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package dolphin for openSUSE:Factory checked 
in at 2016-04-01 13:00:56

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


Package is "dolphin"

Changes:

--- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes  2016-03-26 
15:12:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.dolphin.new/dolphin.changes 2016-04-01 
13:00:57.0 +0200
@@ -1,0 +2,7 @@
+Fri Mar 25 16:37:37 UTC 2016 - wba...@tmo.at
+
+- Added Fix-wrong-path-URL-conversion.patch: fixes display of
+  additional file metadata in dolphin's filelist for indexed files
+  (boo#970896)
+
+---

New:

  Fix-wrong-path-URL-conversion.patch



Other differences:
--
++ dolphin.spec ++
--- /var/tmp/diff_new_pack.PTpO5b/_old  2016-04-01 13:00:58.0 +0200
+++ /var/tmp/diff_new_pack.PTpO5b/_new  2016-04-01 13:00:58.0 +0200
@@ -26,6 +26,8 @@
 Source: dolphin-%{version}.tar.xz
 Source1:dolphinsu.desktop
 Patch0: dolphin-go_up.diff
+# PATCH-FIX-UPSTREAM Fix-wrong-path-URL-conversion.patch boo#970896 -- fixes 
display of additional file metadata in dolphin's filelist
+Patch1: Fix-wrong-path-URL-conversion.patch
 BuildRequires:  baloo5-devel
 BuildRequires:  baloo5-widgets-devel
 BuildRequires:  extra-cmake-modules >= 1.6.0
@@ -94,6 +96,7 @@
 %prep
 %setup -q -n dolphin-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
   %cmake_kf5 -d build

++ Fix-wrong-path-URL-conversion.patch ++
From: David Faure 
Date: Sat, 28 Nov 2015 22:44:47 +
Subject: Fix wrong path->URL conversion.
X-Git-Tag: v16.03.80
X-Git-Url: 
http://quickgit.kde.org/?p=dolphin.git&a=commitdiff&h=35b35d0c5f62641a685282d25ea204e7004e09c0
---
Fix wrong path->URL conversion.
---


--- a/src/kitemviews/kfileitemmodelrolesupdater.cpp
+++ b/src/kitemviews/kfileitemmodelrolesupdater.cpp
@@ -717,7 +717,13 @@
 // the corresponding file has been deleted in the meantime.
 return;
 }
-
+applyChangedBalooRolesForItem(item);
+#endif
+}
+
+void KFileItemModelRolesUpdater::applyChangedBalooRolesForItem(const KFileItem 
&item)
+{
+#ifdef HAVE_BALOO
 Baloo::File file(item.localPath());
 file.load();
 
@@ -1089,7 +1095,7 @@
 #ifdef HAVE_BALOO
 if (m_balooFileMonitor) {
 m_balooFileMonitor->addFile(item.localPath());
-applyChangedBalooRoles(item.localPath());
+applyChangedBalooRolesForItem(item);
 }
 #endif
 return data;

--- a/src/kitemviews/kfileitemmodelrolesupdater.h
+++ b/src/kitemviews/kfileitemmodelrolesupdater.h
@@ -211,6 +211,7 @@
 void resolveRecentlyChangedItems();
 
 void applyChangedBalooRoles(const QString& file);
+void applyChangedBalooRolesForItem(const KFileItem& file);
 
 void slotDirectoryContentsCountReceived(const QString& path, int count);
 




commit http-parser for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package http-parser for openSUSE:Factory 
checked in at 2016-04-01 13:01:10

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


Package is "http-parser"

Changes:

--- /work/SRC/openSUSE:Factory/http-parser/http-parser.changes  2016-02-07 
09:22:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.http-parser.new/http-parser.changes 
2016-04-01 13:01:11.0 +0200
@@ -1,0 +2,6 @@
+Sat Mar 26 12:18:20 UTC 2016 - mplus...@suse.com
+
+- Update to 2.6.2
+  * No changelog available
+
+---

Old:

  v2.6.0.tar.gz

New:

  v2.6.2.tar.gz



Other differences:
--
++ http-parser.spec ++
--- /var/tmp/diff_new_pack.5hYEbX/_old  2016-04-01 13:01:12.0 +0200
+++ /var/tmp/diff_new_pack.5hYEbX/_new  2016-04-01 13:01:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package http-parser
 #
-# 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,15 +16,15 @@
 #
 
 
-Name:   http-parser
 %define somajor suse0
-%define libname libhttp-parser-%somajor
-Version:2.6.0
+%define libname libhttp-parser-%{somajor}
+Name:   http-parser
+Version:2.6.2
 Release:0
 Summary:HTTP request/response parser for C
 License:MIT
 Group:  Development/Libraries/C and C++
-Url:http://github.com/joyent/http-parser
+Url:https://github.com/joyent/http-parser
 Source0:
https://github.com/joyent/http-parser/archive/v%{version}.tar.gz
 Source1:baselibs.conf
 Patch1: http-parser-gyp-sharedlib.patch
@@ -85,12 +85,12 @@
 install -pm644 http_parser.h %{buildroot}%{_includedir}
 
 #install regular variant
-install "out/Release/lib.target/libhttp_parser.so.%somajor" 
"%buildroot/%_libdir/"
-ln -sf "libhttp_parser.so.%somajor" "%buildroot/%_libdir/libhttp_parser.so"
+install "out/Release/lib.target/libhttp_parser.so.%{somajor}" 
"%{buildroot}/%{_libdir}/"
+ln -sf "libhttp_parser.so.%{somajor}" 
"%{buildroot}/%{_libdir}/libhttp_parser.so"
 
 #install strict variant
-install "out/Release/lib.target/libhttp_parser_strict.so.%somajor" 
"%buildroot/%_libdir/"
-ln -sf "libhttp_parser_strict.so.%somajor" 
"%buildroot/%_libdir/libhttp_parser_strict.so"
+install "out/Release/lib.target/libhttp_parser_strict.so.%{somajor}" 
"%{buildroot}/%{_libdir}/"
+ln -sf "libhttp_parser_strict.so.%{somajor}" 
"%{buildroot}/%{_libdir}/libhttp_parser_strict.so"
 
 %check
 export LD_LIBRARY_PATH='./out/Release/lib.target'
@@ -98,7 +98,6 @@
 ./out/Release/test-strict
 
 %post -n %{libname} -p /sbin/ldconfig
-
 %postun -n %{libname} -p /sbin/ldconfig
 
 %files -n %{libname}

++ http-parser-gyp-sharedlib.patch ++
--- /var/tmp/diff_new_pack.5hYEbX/_old  2016-04-01 13:01:12.0 +0200
+++ /var/tmp/diff_new_pack.5hYEbX/_new  2016-04-01 13:01:12.0 +0200
@@ -12,10 +12,10 @@
  http_parser.gyp |   10 ++
  1 file changed, 6 insertions(+), 4 deletions(-)
 
-Index: http-parser-2.5.0/http_parser.gyp
+Index: http-parser-2.6.2/http_parser.gyp
 ===
 http-parser-2.5.0.orig/http_parser.gyp
-+++ http-parser-2.5.0/http_parser.gyp
+--- http-parser-2.6.2.orig/http_parser.gyp
 http-parser-2.6.2/http_parser.gyp
 @@ -12,7 +12,7 @@
#   RuntimeLibrary MUST MATCH across the entire project
'Debug': {

++ v2.6.0.tar.gz -> v2.6.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-parser-2.6.0/Makefile 
new/http-parser-2.6.2/Makefile
--- old/http-parser-2.6.0/Makefile  2015-10-29 05:47:12.0 +0100
+++ new/http-parser-2.6.2/Makefile  2016-03-04 21:27:05.0 +0100
@@ -22,14 +22,14 @@
 HELPER ?=
 BINEXT ?=
 ifeq (darwin,$(PLATFORM))
-SONAME ?= libhttp_parser.2.6.0.dylib
+SONAME ?= libhttp_parser.2.6.2.dylib
 SOEXT ?= dylib
 else ifeq (wine,$(PLATFORM))
 CC = winegcc
 BINEXT = .exe.so
 HELPER = wine
 else
-SONAME ?= libhttp_parser.so.2.6.0
+SONAME ?= libhttp_parser.so.2.6.2
 SOEXT ?= so
 endif
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-parser-2.6.0/README.md 
new/http-parser-2.6.2/README.md
--- old/http-parser-2.6.0/README.md 2015-10-29 05:47:12.0 +0100
+++ new/http-parser-2.6.2/README.md 2016-03-04 21:27:05.0 +0100
@@ -1,7 +1,7 @@
 HTTP Parser
 ===
 
-[![

commit syslinux for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package syslinux for openSUSE:Factory 
checked in at 2016-04-01 13:00:51

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


Package is "syslinux"

Changes:

--- /work/SRC/openSUSE:Factory/syslinux/syslinux.changes2016-02-17 
12:25:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.syslinux.new/syslinux.changes   2016-04-01 
13:00:52.0 +0200
@@ -1,0 +2,10 @@
+Wed Mar 16 13:56:48 CET 2016 - snw...@suse.de
+
+- syslinux-4.04-align.diff: fix section alignment (bsc#948445)
+
+---
+Tue Feb 16 09:41:32 CET 2016 - snw...@suse.de
+
+- create also s390x package (bsc#964471)
+
+---

New:

  baselibs.conf
  syslinux-4.04-align.diff



Other differences:
--
++ syslinux.spec ++
--- /var/tmp/diff_new_pack.zHmSJh/_old  2016-04-01 13:00:53.0 +0200
+++ /var/tmp/diff_new_pack.zHmSJh/_new  2016-04-01 13:00:53.0 +0200
@@ -37,6 +37,7 @@
 Source: 
https://www.kernel.org/pub/linux/utils/boot/syslinux/%{name}-%{version}.tar.bz2
 Source1:isolinux-config
 Source2:README.gfxboot
+Source3:baselibs.conf
 Patch0: %{name}-%{version}-iso9660.diff
 Patch1: %{name}-%{version}-cwd.diff
 Patch2: %{name}-%{version}-noinitrd.diff
@@ -54,6 +55,7 @@
 Patch15:%{name}-%{version}-cache_fix.diff
 Patch16:%{name}-%{version}-mtime.diff
 Patch17:%{name}-%{version}-miniacc.diff
+Patch18:%{name}-%{version}-align.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -87,6 +89,7 @@
 %patch15 -p1
 %patch16 -p1
 %patch17
+%patch18
 
 %build
 cp %{SOURCE2} .

++ baselibs.conf ++
arch x86_64 targets s390x:64bit

targetname -x86_64

arch x86_64 package syslinux
conflicts "syslinux"
+.*
-/usr/bin/syslinux
-/usr/bin/extlinux 
-/usr/bin/gethostip
-/usr/bin/isohybrid
-/usr/bin/memdiskfind
++ syslinux-4.04-align.diff ++
--- core/syslinux.ld
+++ core/syslinux.ld
@@ -263,7 +263,7 @@
__text_end = .;
}
 
-   . = ALIGN(16);
+   . = ALIGN(32);
 
__rodata_vma = .;
__rodata_lma = __rodata_vma + __text_lma - __text_vma;



commit ktexteditor for openSUSE:Factory

2016-04-01 Thread h_root
Hello community,

here is the log from the commit of package ktexteditor for openSUSE:Factory 
checked in at 2016-04-01 13:01:04

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-03-16 
10:31:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.ktexteditor.new/ktexteditor.changes 
2016-04-01 13:01:05.0 +0200
@@ -1,0 +2,5 @@
+Sun Mar 27 14:50:45 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Added 0001-Fix-Clazy-fix-mistake-that-broke-selection-handling-.patch
+
+---

New:

  0001-Fix-Clazy-fix-mistake-that-broke-selection-handling-.patch



Other differences:
--
++ ktexteditor.spec ++
--- /var/tmp/diff_new_pack.AqznJ2/_old  2016-04-01 13:01:06.0 +0200
+++ /var/tmp/diff_new_pack.AqznJ2/_new  2016-04-01 13:01:06.0 +0200
@@ -53,6 +53,8 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-UPSTREAM 
0001-Fix-Clazy-fix-mistake-that-broke-selection-handling-.patch
+Patch0: 0001-Fix-Clazy-fix-mistake-that-broke-selection-handling-.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -74,6 +76,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
   %cmake_kf5 -d build -- -DSYSCONF_INSTALL_DIR=%{_kf5_sysconfdir}

++ 0001-Fix-Clazy-fix-mistake-that-broke-selection-handling-.patch ++
>From 860cb9763c507be2e9202fd4e94116dfb1402566 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?K=C3=A5re=20S=C3=A4rs?= 
Date: Fri, 25 Mar 2016 23:32:28 +0200
Subject: [PATCH 1/1] Fix "Clazy fix" mistake that broke selection
 handling/layout cache

Among the Clazy warning fixes, was one "count() -> !isEmpty()" that
should not have been there in katelayoutcache.cpp

CCMAIL: kwrite-de...@kde.org
(cherry picked from commit f7f330b21aa394a62ac95ea9bee075f372ff6d9c)
---
 src/render/katelayoutcache.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/render/katelayoutcache.cpp b/src/render/katelayoutcache.cpp
index 33781fe..3eb268f 100644
--- a/src/render/katelayoutcache.cpp
+++ b/src/render/katelayoutcache.cpp
@@ -165,7 +165,7 @@ void KateLayoutCache::updateViewCache(const 
KTextEditor::Cursor &startPos, int n
 {
 //qCDebug(LOG_KTE) << startPos << " nvlc " << newViewLineCount << " vls " 
<< viewLinesScrolled;
 
-int oldViewLineCount = !m_textLayouts.isEmpty();
+int oldViewLineCount = m_textLayouts.count();
 if (newViewLineCount == -1) {
 newViewLineCount = oldViewLineCount;
 }
-- 
2.6.2