commit libesedb for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libesedb for openSUSE:Factory 
checked in at 2016-02-09 13:32:29

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


Package is "libesedb"

Changes:

--- /work/SRC/openSUSE:Factory/libesedb/libesedb.changes2015-01-30 
15:05:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.libesedb.new/libesedb.changes   2016-02-09 
13:33:04.0 +0100
@@ -1,0 +2,33 @@
+Sun Feb  7 04:33:43 UTC 2016 - greg.freem...@gmail.com
+
+- Use internal libcerror and libcstring to fix builds and segfault found in 
testing
+
+---
+Fri Jan 29 03:03:10 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20151213
+   * worked on support for newly discovered unknown page flag
+   * removed LIBESEDB_FLAG_READ and LIBESEDB_FLAG_WRITE
+   * worked on Python bindings
+   * worked on setup.py
+   * code clean up
+- use libcerror, libcstring, libfdata packages from OBS again instead of 
internal versions
+
+---
+Sat May 16 17:06:05 UTC 2015 - greg.freem...@gmail.com
+
+- update to v0~20150409
+   * 2015 update
+   * changes for handling tagged data types in version 0x620 revision 0x14 
database
+   * changes for long value look up in dirty databases
+   * changes for long value key compare
+   * worked on long value support
+   * worked on long value error tolerance
+   * worked on NULL value support (JET_coltypNil)
+   * worked on libfdata btree refactor
+   * worked on Python 3 support
+   * worked on Python bindings
+   * worked on tests
+   * code clean up
+
+---

Old:

  libesedb-experimental-20141110.tar.gz

New:

  libesedb-experimental-20151213.tar.gz



Other differences:
--
++ libesedb.spec ++
--- /var/tmp/diff_new_pack.abVzmR/_old  2016-02-09 13:33:05.0 +0100
+++ /var/tmp/diff_new_pack.abVzmR/_new  2016-02-09 13:33:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libesedb
 #
-# Copyright (c) 2015 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 @@
 
 
 %define lname  libesedb1
-%define timestamp 20141110
+%define timestamp 20151213
 Name:   libesedb
 Version:0~%{timestamp}
 Release:0
@@ -43,19 +43,18 @@
 BuildRequires:  pkgconfig(libcsystem) >= 20120425
 BuildRequires:  pkgconfig(libcthreads) >= 20130723
 BuildRequires:  pkgconfig(libfcache) >= 20120405
-BuildRequires:  pkgconfig(libfdata) >= 20120405
+BuildRequires:  pkgconfig(libfdata) > 20150104
 BuildRequires:  pkgconfig(libfdatetime) >= 20140105
 BuildRequires:  pkgconfig(libfguid) >= 20140105
 BuildRequires:  pkgconfig(libfmapi)
 BuildRequires:  pkgconfig(libfvalue)
 BuildRequires:  pkgconfig(libfwnt)
+BuildRequires:  pkgconfig(libmapidb)
 BuildRequires:  pkgconfig(libuna) >= 20120425
-# fails to build with factory package, use internal
-# verified 1/11/2015
+
+#Use internal package.  OBS version causes build failure.  Tested Feb 7, 2016
 #BuildRequires:  pkgconfig(libcerror) >= 20140105
 #BuildRequires:  pkgconfig(libcstring) >= 20120425
-# not (yet) released as packages by upstream
-BuildRequires:  pkgconfig(libmapidb)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ libesedb-experimental-20141110.tar.gz -> 
libesedb-experimental-20151213.tar.gz ++
 48799 lines of diff (skipped)




commit python3-pyparsing for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package python3-pyparsing for 
openSUSE:Factory checked in at 2016-02-09 13:32:33

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


Package is "python3-pyparsing"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyparsing/python3-pyparsing.changes  
2016-01-05 09:41:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pyparsing.new/python3-pyparsing.changes 
2016-02-09 13:33:07.0 +0100
@@ -1,0 +2,60 @@
+Mon Feb  8 05:02:08 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 2.1.0:
+  * Modified the internal _trim_arity method to distinguish between
+TypeError's raised while trying to determine parse action arity
+and those raised within the parse action itself. This will clear
+up those confusing "() takes exactly 1 argument (0 given)"
+error messages when there is an actual TypeError in the body of
+the parse action. Thanks to all who have raised this issue in the
+past, and most recently to Michael Cohen, who sent in a proposed
+patch, and got me to finally tackle this problem.
+  * Added compatibility for pickle protocols 2-4 when pickling
+ParseResults.  In Python 2.x, protocol 0 was the default, and
+protocol 2 did not work.  In Python 3.x, protocol 3 is the
+default, so explicitly naming protocol 0 or 1 was required to
+pickle ParseResults. With this release, all protocols 0-4 are
+supported. Thanks for reporting this on StackOverflow, Arne
+Wolframm, and for providing a nice simple test case!
+  * Added optional 'stopOn' argument to ZeroOrMore and OneOrMore, to
+simplify breaking on stop tokens that would match the repetition
+expression.
+It is a common problem to fail to look ahead when matching
+repetitive tokens if the sentinel at the end also matches the
+repetition expression, as when parsing "BEGIN aaa bbb ccc END"
+with:
+
+"BEGIN" + OneOrMore(Word(alphas)) + "END"
+
+Since "END" matches the repetition expression "Word(alphas)", it
+will never get parsed as the terminating sentinel. Up until now,
+this has to be resolved by the user inserting their own negative
+lookahead:
+
+"BEGIN" + OneOrMore(~Literal("END") + Word(alphas)) + "END"
+
+Using stopOn, they can more easily write:
+
+"BEGIN" + OneOrMore(Word(alphas), stopOn="END") + "END"
+
+The stopOn argument can be a literal string or a pyparsing
+expression.  Inspired by a question by Lamakaha on StackOverflow
+(and many previous questions with the same negative-lookahead
+resolution).
+  * Added expression names for many internal and builtin expressions,
+to reduce name and error message overhead during parsing.
+  * Converted helper lambdas to functions to refactor and add
+docstring support.
+  * Fixed ParseResults.asDict() to correctly convert nested
+ParseResults values to dicts.
+  * Cleaned up some examples, fixed typo in fourFn.py identified by
+aristotle2600 on reddit.
+  * Removed keepOriginalText helper method, which was deprecated ages
+ago. Superceded by originalTextFor.
+  * Same for the Upcase class, which was long ago deprecated and
+replaced with the upcaseTokens method.
+
+---

Old:

  pyparsing-2.0.7.tar.gz

New:

  pyparsing-2.1.0.tar.gz



Other differences:
--
++ python3-pyparsing.spec ++
--- /var/tmp/diff_new_pack.InTe38/_old  2016-02-09 13:33:08.0 +0100
+++ /var/tmp/diff_new_pack.InTe38/_new  2016-02-09 13:33:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pyparsing
 #
-# 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,7 +17,7 @@
 
 
 Name:   python3-pyparsing
-Version:2.0.7
+Version:2.1.0
 Release:0
 Url:http://pyparsing.wikispaces.com/
 Summary:Grammar Parser Library for Python

++ pyparsing-2.0.7.tar.gz -> pyparsing-2.1.0.tar.gz ++
 13498 lines of diff (skipped)




commit redshift for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package redshift for openSUSE:Factory 
checked in at 2016-02-09 13:32:27

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


Package is "redshift"

Changes:

--- /work/SRC/openSUSE:Factory/redshift/redshift.changes2016-01-22 
01:10:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.redshift.new/redshift.changes   2016-02-09 
13:33:02.0 +0100
@@ -1,0 +2,8 @@
+Sun Feb  7 20:11:45 UTC 2016 - mplus...@suse.com
+
+- Make building more verbose
+- Update post/postun dependencies of -gtk subpackage
+- Small spec file cleanups
+- Fix building for Leap
+
+---



Other differences:
--
++ redshift.spec ++
--- /var/tmp/diff_new_pack.lpiAc5/_old  2016-02-09 13:33:03.0 +0100
+++ /var/tmp/diff_new_pack.lpiAc5/_new  2016-02-09 13:33:03.0 +0100
@@ -35,7 +35,6 @@
 BuildRequires:  pkgconfig(geoclue-2.0)
 BuildRequires:  pkgconfig(libdrm)
 BuildRequires:  pkgconfig(python3)
-BuildRequires:  pkgconfig(systemd)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcb)
 BuildRequires:  pkgconfig(xrandr)
@@ -43,6 +42,10 @@
 Requires:   geoclue2
 Requires:   python3-xdg
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} > 1320
+BuildRequires:  systemd-rpm-macros
+%{?systemd_requires}
+%endif
 %py_requires
 
 %description
@@ -52,7 +55,15 @@
 %package gtk
 Summary:Gtk frontend for redshift
 Group:  System/X11/Utilities
-Requires:   redshift = %{version}
+Requires:   hicolor-icon-theme
+Requires:   redshift = %{version}-%{release}
+Requires(post): update-desktop-files
+Requires(post): hicolor-icon-theme
+Requires(postun): update-desktop-files
+Requires(postun): hicolor-icon-theme
+%if 0%{?suse_version} > 1320
+%{?systemd_requires}
+%endif
 
 %description gtk
 A graphical user interface for the redshift tool that integrates into Gtk+ and 
GNOME.
@@ -61,13 +72,22 @@
 %setup -q
 
 %build
-%configure --enable-gui --disable-geoclue --enable-geoclue2 --enable-randr 
--enable-vidmode \
+%configure \
+  --enable-gui \
+  --disable-geoclue \
+  --enable-geoclue2 \
+  --enable-randr \
+  --enable-vidmode \
+  %if 0%{?suse_version} > 1320
 --with-systemduserunitdir=%{_userunitdir}
-make %{?_smp_mflags}
+  %else
+  --with-systemduserunitdir=no
+  %endif
+make %{?_smp_mflags} V=1
 
 %install
-%{?make_install} %{!?make_install:make DESTDIR=%{buildroot} install 
%{?_smp_mflags}}
-%fdupes %{buildroot}%{python3_sitelib}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%fdupes -s %{buildroot}
 %suse_update_desktop_file redshift-gtk GTK X-SuSE-DesktopUtility
 
 %if 0%{?suse_version} == 1310
@@ -92,7 +112,9 @@
 %{_datadir}/icons/hicolor/scalable/apps/redshift-status-off.svg
 %{_datadir}/icons/hicolor/scalable/apps/redshift-status-on.svg
 %{_datadir}/icons/hicolor/scalable/apps/redshift.svg
+%if 0%{?suse_version} > 1320
 %{_userunitdir}/redshift-gtk.service
+%endif
 %if 0%{?suse_version} > 1310
 %dir %{_datadir}/appdata
 %{_datadir}/appdata/redshift-gtk.appdata.xml
@@ -101,8 +123,10 @@
 %files
 %defattr(-,root,root,-)
 %{_bindir}/redshift
-%{_mandir}/man1/redshift.1.gz
+%{_mandir}/man1/redshift.1%{ext_man}
 %{_datadir}/applications/redshift.desktop
+%if 0%{?suse_version} > 1320
 %{_userunitdir}/redshift.service
+%endif
 
 %changelog




commit chromium for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2016-02-09 13:32:26

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


Package is "chromium"

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2016-01-28 
17:23:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2016-02-09 
13:32:49.0 +0100
@@ -1,0 +2,31 @@
+Fri Feb  5 13:12:47 UTC 2016 - tittiatc...@gmail.com
+
+- Update to Chromium 48.0.2954.103
+  * No chnagelog available
+
+---
+Sun Jan 31 12:24:47 UTC 2016 - tittiatc...@gmail.com
+
+- Build against the in-source libjpeg to prevent graphical issues
+
+---
+Sun Jan 31 11:12:18 UTC 2016 - tchva...@suse.com
+
+- Use spec-cleaner
+- Remove buildenv check that is moot for the update-alternatives script
+- Build against the latest libjpeg rather than jpeg6
+- Use update-alternatives as is required by the specification
+
+---
+Thu Jan 28 09:59:57 UTC 2016 - tittiatc...@gmail.com
+
+- Update to Chromium 48.0.2564.97
+  * No changelog available
+  
+- Update the desktop-kde package so that on Leap and TW, the kwallet5
+  becomes the default. desktop-kde/gnome packages are no longer 
+  recommended as that the default is to automatically detect the 
+  password store. Only for those users that want to change this, 
+  they can select a different setup. 
+
+---

Old:

  chromium-48.0.2564.82.tar.xz

New:

  chromium-48.0.2564.103.tar.xz



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.B931FX/_old  2016-02-09 13:33:02.0 +0100
+++ /var/tmp/diff_new_pack.B931FX/_new  2016-02-09 13:33:02.0 +0100
@@ -19,9 +19,8 @@
 %define chromium_no_dlopen 1
 %define chromium_system_libs 1
 %bcond_without libva
-
 Name:   chromium
-Version:48.0.2564.82
+Version:48.0.2564.103
 Release:0
 Summary:Google's opens source browser project
 License:BSD-3-Clause and LGPL-2.1+
@@ -40,14 +39,6 @@
 Source997:  courgette.tar.xz
 Source998:  depot_tools.tar.xz
 Source999:  gn-binaries.tar.xz
-Provides:   chromium-based-browser = %{version}
-Provides:   chromium-browser = %{version}
-Provides:   browser(npapi)
-Obsoletes:  chromium-browser < %{version}
-Conflicts:  otherproviders(chromium-browser)
-# There is no v8 for ppc and thus chromium won't run on ppc. For aarch64 
certain buildrequires are missing (e.g. valgrind)
-ExcludeArch:aarch64 ppc ppc64 ppc64le
-
 ## Start Patches
 # Many changes to the gyp systems so we can use system libraries
 # PATCH-FIX-OPENSUSE Make the 1-click-install ymp file always download 
[bnc#836059]
@@ -74,16 +65,16 @@
 Patch13:chromium-enable-vaapi.patch
 # PATCH-FIX-OPENSUSE fix_network_api_crash.patch - Fix crash in network API, 
e.g. when using chromecast extension
 Patch14:fix_network_api_crash.patch
-
 # archlinux arm enhancement patches
 Patch100:   arm-webrtc-fix.patch
 Patch101:   chromium-arm-r0.patch
 Patch102:   skia.patch
-
+BuildRequires:  SDL-devel
 BuildRequires:  alsa-devel
 BuildRequires:  bison
 BuildRequires:  cups-devel
 BuildRequires:  desktop-file-utils
+BuildRequires:  dirac-devel >= 1.0.0
 BuildRequires:  fdupes
 BuildRequires:  flac-devel
 BuildRequires:  flex
@@ -93,29 +84,40 @@
 BuildRequires:  gperf
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  hunspell-devel
+BuildRequires:  imlib2-devel
 BuildRequires:  krb5
 BuildRequires:  krb5-devel
 BuildRequires:  libbz2-devel
 BuildRequires:  libcap-devel
+BuildRequires:  libdc1394
+BuildRequires:  libdc1394-devel
 BuildRequires:  libdrm-devel
 BuildRequires:  libelf-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libgnome-keyring-devel
+BuildRequires:  libgsm
+BuildRequires:  libgsm-devel
+BuildRequires:  libjack-devel
+BuildRequires:  libogg-devel
+BuildRequires:  liboil-devel >= 0.3.15
 BuildRequires:  libopenssl-devel
 BuildRequires:  libpulse-devel
-
-%if !0%{?packman_bs}
-BuildRequires:  ninja
-%endif
-BuildRequires:  libdrm-devel
+BuildRequires:  libtheora-devel >= 1.1
+BuildRequires:  libvdpau-devel
+BuildRequires:  libvorbis-devel
+BuildRequires:  libvpx-devel
+BuildRequires:  ncurses-devel
 BuildRequires:  pam-devel
 BuildRequires:  pciutils-devel
 BuildRequires:  pkg-config
 BuildRequires:  python
 BuildRequires:  python-devel
 BuildRequires:  python-xml

commit antlr3c for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package antlr3c for openSUSE:Factory checked 
in at 2016-02-09 13:32:28

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


Package is "antlr3c"

Changes:

--- /work/SRC/openSUSE:Factory/antlr3c/antlr3c.changes  2015-01-12 
09:50:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.antlr3c.new/antlr3c.changes 2016-02-09 
13:33:03.0 +0100
@@ -1,0 +2,6 @@
+Sat Feb  6 12:00:03 UTC 2016 - mplus...@suse.com
+
+- Use optflags when building
+- Update usage of provides/obsoletes
+
+---



Other differences:
--
++ antlr3c.spec ++
--- /var/tmp/diff_new_pack.136iio/_old  2016-02-09 13:33:04.0 +0100
+++ /var/tmp/diff_new_pack.136iio/_new  2016-02-09 13:33:04.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package antlr3c
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 Mariusz Fik .
 #
 # All modifications and additions to the file contributed by third parties
@@ -46,8 +46,8 @@
 Summary:C runtime for the ANTLR parsing library
 Group:  System/Libraries
 # From 13.3/TW201501 onwards
-Obsoletes:  libantlr3c3_4
-Provides:   libantlr3c3_4
+Obsoletes:  libantlr3c3_4 < %{version}
+Provides:   libantlr3c3_4 = %{version}
 
 %description -n %{soname}
 ANTLR, ANother Tool for Language Recognition, is a language tool that provides 
a
@@ -77,17 +77,16 @@
 %patch2 -p1
 
 %build
-autoreconf -fvi
+autoreconf -fiv
 %configure \
 --disable-static
-make %{?_smp_mflags}
+make %{?_smp_mflags} CFLAGS="%{optflags}"
 
 %install
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n %{soname} -p /sbin/ldconfig
-
 %postun -n %{soname} -p /sbin/ldconfig
 
 %files -n %{soname}




commit console-setup for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package console-setup for openSUSE:Factory 
checked in at 2016-02-09 13:30:03

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


Package is "console-setup"

Changes:

--- /work/SRC/openSUSE:Factory/console-setup/console-setup.changes  
2015-12-18 21:49:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.console-setup.new/console-setup.changes 
2016-02-09 13:30:04.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 28 10:11:45 UTC 2016 - sndir...@suse.com
+
+- removed unneeded requires to kbd in order to resolve build cycle
+  kbd <-> console-setup (bnc#963942)
+
+---



Other differences:
--
++ console-setup.spec ++
--- /var/tmp/diff_new_pack.mZ7kWz/_old  2016-02-09 13:30:04.0 +0100
+++ /var/tmp/diff_new_pack.mZ7kWz/_new  2016-02-09 13:30:04.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package console-setup
 #
-# 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
@@ -31,7 +31,6 @@
 
 BuildRequires:  perl
 BuildRequires:  perl(encoding)
-Requires:   kbd
 # require 'xkeyboard-config' to have X Window keyboard descriptions?
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit yast2-samba-client for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package yast2-samba-client for 
openSUSE:Factory checked in at 2016-02-09 13:29:52

Comparing /work/SRC/openSUSE:Factory/yast2-samba-client (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-samba-client.new (New)


Package is "yast2-samba-client"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-samba-client/yast2-samba-client.changes
2015-01-23 16:18:12.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-samba-client.new/yast2-samba-client.changes   
2016-02-09 13:29:53.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 21 17:56:02 UTC 2016 - lmue...@suse.com
+
+- Use default_ccache_name FILE:/tmp/krb5cc_%{uid}; (bnc#921530).
+- 3.1.16
+
+---

Old:

  yast2-samba-client-3.1.15.tar.bz2

New:

  yast2-samba-client-3.1.16.tar.bz2



Other differences:
--
++ yast2-samba-client.spec ++
--- /var/tmp/diff_new_pack.iqsuAp/_old  2016-02-09 13:29:54.0 +0100
+++ /var/tmp/diff_new_pack.iqsuAp/_new  2016-02-09 13:29:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-samba-client
 #
-# Copyright (c) 2015 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:   yast2-samba-client
-Version:3.1.15
+Version:3.1.16
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-samba-client-3.1.15.tar.bz2 -> yast2-samba-client-3.1.16.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-3.1.15/CONTRIBUTING.md 
new/yast2-samba-client-3.1.16/CONTRIBUTING.md
--- old/yast2-samba-client-3.1.15/CONTRIBUTING.md   2015-01-19 
12:43:32.0 +0100
+++ new/yast2-samba-client-3.1.16/CONTRIBUTING.md   2016-01-27 
13:52:11.0 +0100
@@ -12,13 +12,13 @@
 ---
 
 If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.novell.com/enter_bug.cgi?format=guided=openSUSE+Factory=YaST2)
+[Bugzilla](https://bugzilla.suse.com/enter_bug.cgi?format=guided=openSUSE+Factory=YaST2)
 or [GitHub issues](../../issues). (For Bugzilla, use the [simplified
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
 If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.novell.com/) or GitHub issues. We can't guarantee
+[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
 that every bug will be fixed, but we'll try.
 
 When creating a bug report, please follow our [bug reporting
@@ -71,7 +71,7 @@
 [widely used
 
conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
 
-If your commit is related to a bug in Buzgilla or an issue on GitHub, make sure
+If your commit is related to a bug in Bugzilla or an issue on GitHub, make sure
 you mention it in the commit message for cross-reference. Use format like
 bnc#775814 or gh#yast/yast-foo#42. See also [GitHub
 
autolinking](https://help.github.com/articles/github-flavored-markdown#references)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-samba-client-3.1.15/package/yast2-samba-client.changes 
new/yast2-samba-client-3.1.16/package/yast2-samba-client.changes
--- old/yast2-samba-client-3.1.15/package/yast2-samba-client.changes
2015-01-19 12:43:32.0 +0100
+++ new/yast2-samba-client-3.1.16/package/yast2-samba-client.changes
2016-01-27 13:52:11.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Jan 21 17:56:02 UTC 2016 - lmue...@suse.com
+
+- Use default_ccache_name FILE:/tmp/krb5cc_%{uid}; (bnc#921530).
+- 3.1.16
+
+---
 Mon Jan 12 16:53:48 UTC 2015 - nopo...@suse.com
 
 - When joining domain provide osName & osVer arguments to "net ads join"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-samba-client-3.1.15/package/yast2-samba-client.spec 
new/yast2-samba-client-3.1.16/package/yast2-samba-client.spec
--- old/yast2-samba-client-3.1.15/package/yast2-samba-client.spec   
2015-01-19 12:43:32.0 +0100
+++ new/yast2-samba-client-3.1.16/package/yast2-samba-client.spec   
2016-01-27 13:52:11.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-samba-client
-Version:3.1.15
+Version:3.1.16
 Release:0
 
 BuildRoot: 

commit glib2 for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package glib2 for openSUSE:Factory checked 
in at 2016-02-09 13:29:48

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


Package is "glib2"

Changes:

--- /work/SRC/openSUSE:Factory/glib2/glib2.changes  2015-12-03 
13:25:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.glib2.new/glib2.changes 2016-02-09 
13:29:49.0 +0100
@@ -1,0 +2,7 @@
+Thu Jan 21 11:45:40 UTC 2016 - dims...@opensuse.org
+
+- Fix default mime handler associtations: since GLIB 2.42, the file
+  in question is no longer defaults.list (too unspecific), but is
+  called mimeapps.list. Touch and link the right files.
+
+---



Other differences:
--
++ glib2.spec ++
--- /var/tmp/diff_new_pack.Xii1Jt/_old  2016-02-09 13:29:50.0 +0100
+++ /var/tmp/diff_new_pack.Xii1Jt/_new  2016-02-09 13:29:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package glib2
 #
-# 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
@@ -299,10 +299,10 @@
 install -D -m0644 gnome_defaults.conf 
%{buildroot}%{_sysconfdir}/gnome_defaults.conf
 # default apps magic
 mkdir -p %{buildroot}%{_localstatedir}/cache/gio-2.0 
%{buildroot}%{_datadir}/applications
-touch %{buildroot}%{_localstatedir}/cache/gio-2.0/gnome-defaults.list
-touch %{buildroot}%{_localstatedir}/cache/gio-2.0/xfce-defaults.list
-touch %{buildroot}%{_localstatedir}/cache/gio-2.0/lxde-defaults.list
-ln -s %{_localstatedir}/cache/gio-2.0/gnome-defaults.list 
%{buildroot}%{_datadir}/applications/defaults.list
+touch %{buildroot}%{_localstatedir}/cache/gio-2.0/gnome-mimeapps.list
+touch %{buildroot}%{_localstatedir}/cache/gio-2.0/xfce-mimeapps.list
+touch %{buildroot}%{_localstatedir}/cache/gio-2.0/lxde-mimeapps.list
+ln -s %{_localstatedir}/cache/gio-2.0/gnome-mimeapps.list 
%{buildroot}%{_datadir}/applications/mimeapps.list
 # gio-querymodules magic
 %if "%{_lib}" == "lib64"
 mv %{buildroot}%{_bindir}/gio-querymodules 
%{buildroot}%{_bindir}/gio-querymodules-64
@@ -438,11 +438,11 @@
 %dir %{_datadir}/glib-2.0/
 %dir %{_datadir}/glib-2.0/schemas/
 %ghost %{_datadir}/glib-2.0/schemas/gschemas.compiled
-%{_datadir}/applications/defaults.list
+%{_datadir}/applications/mimeapps.list
 %dir %{_localstatedir}/cache/gio-2.0
-%ghost %{_localstatedir}/cache/gio-2.0/gnome-defaults.list
-%ghost %{_localstatedir}/cache/gio-2.0/xfce-defaults.list
-%ghost %{_localstatedir}/cache/gio-2.0/lxde-defaults.list
+%ghost %{_localstatedir}/cache/gio-2.0/gnome-mimeapps.list
+%ghost %{_localstatedir}/cache/gio-2.0/xfce-mimeapps.list
+%ghost %{_localstatedir}/cache/gio-2.0/lxde-mimeapps.list
 
 %files -n libgio-fam
 %defattr(-,root,root)




commit gtk3 for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package gtk3 for openSUSE:Factory checked in 
at 2016-02-09 13:30:07

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


Package is "gtk3"

Changes:

--- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes2016-01-13 
22:43:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes   2016-02-09 
13:30:09.0 +0100
@@ -1,0 +2,13 @@
+Thu Jan 28 12:25:00 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.7:
+  + Bugs fixed: bgo#688524, bgo#722937, bgo#728344, bgo#754868,
+bgo#757147, bgo#758908, bgo#758929, bgo#759079, bgo#759081,
+bgo#759091, bgo#759260, bgo#759757, bgo#760141, bgo#760169,
+bgo#760416, bgo#760445, bgo#760615, bgo#760680, bgo#760891,
+bgo#760897, bgo#760964, bgo#761005, bgo#761095.
+  + Updated translations.
+- Drop gtk3-qemu-usb-tablet-is-no-real-touchscreen.patch and
+  gtk3-gdk_pixbuf_get_from_surface.patch: Fixed upstream.
+
+---

Old:

  gtk+-3.18.6.tar.xz
  gtk3-gdk_pixbuf_get_from_surface.patch
  gtk3-qemu-usb-tablet-is-no-real-touchscreen.patch

New:

  gtk+-3.18.7.tar.xz



Other differences:
--
++ gtk3.spec ++
--- /var/tmp/diff_new_pack.bq6PDl/_old  2016-02-09 13:30:11.0 +0100
+++ /var/tmp/diff_new_pack.bq6PDl/_new  2016-02-09 13:30:11.0 +0100
@@ -29,7 +29,7 @@
 
 Name:   gtk3
 %define _name gtk+
-Version:3.18.6
+Version:3.18.7
 Release:0
 Summary:The GTK+ toolkit library (version 3)
 License:LGPL-2.1+
@@ -47,10 +47,6 @@
 ## PATCH-DISABLED gtk3-bnc130159-bgo319483-async-font-selection.patch - 
Upstream bug was closed as obsolete in 2011, lets see if anyone complains. 
 # PATCH-FIX-UPSTREAM gtk3-bnc130159-bgo319483-async-font-selection.patch 
bnc130159 bgo319483 feder...@novell.com - Load fonts asynchronously in 
GtkFontSelection to make it appear faster for CJK languages
 Patch3: gtk3-bnc130159-bgo319483-async-font-selection.patch
-# PATCH-FIX-UPSTREAM gtk3-gdk_pixbuf_get_from_surface.patch bgo#757147 
zai...@opensuse.org -- Restore old behavior to return a scaled version when the 
underlying surface is scaled. From upstream git.
-Patch4: gtk3-gdk_pixbuf_get_from_surface.patch
-# PATCH-FIX-UPSTREAM gtk3-qemu-usb-tablet-is-no-real-touchscreen.patch 
bgo#760445 dims...@opensuse.org -- The QEMU USB Tablet device is no real 
touchscreen; fixes issues in openQA where ctrl-alt-del was not accepted
-Patch5: gtk3-qemu-usb-tablet-is-no-real-touchscreen.patch
 BuildRequires:  cups-devel >= 1.2
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  fdupes
@@ -342,8 +338,6 @@
 %patch1 -p0
 ## PATCH-DISABLED - Upstream bug was closed as obsolete in 2011, as there was 
a new fontchooser, lets disable the patch and see if anyone complains.
 #%%patch3 -p1
-%patch4 -p1
-%patch5 -p1
 
 %build
 # Needed for patch1

++ gtk+-3.18.6.tar.xz -> gtk+-3.18.7.tar.xz ++
/work/SRC/openSUSE:Factory/gtk3/gtk+-3.18.6.tar.xz 
/work/SRC/openSUSE:Factory/.gtk3.new/gtk+-3.18.7.tar.xz differ: char 25, line 1




commit ghc-resourcet for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package ghc-resourcet for openSUSE:Factory 
checked in at 2016-02-09 13:31:52

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


Package is "ghc-resourcet"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-resourcet/ghc-resourcet.changes  
2015-12-09 22:17:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-resourcet.new/ghc-resourcet.changes 
2016-02-09 13:31:54.0 +0100
@@ -1,0 +2,6 @@
+Wed Jan 27 22:53:47 UTC 2016 - mimi...@gmail.com
+
+- update to 1.1.7.1
+* transformers-compat 0.5
+
+---

Old:

  resourcet-1.1.7.tar.gz

New:

  resourcet-1.1.7.1.tar.gz



Other differences:
--
++ ghc-resourcet.spec ++
--- /var/tmp/diff_new_pack.E57K8y/_old  2016-02-09 13:31:54.0 +0100
+++ /var/tmp/diff_new_pack.E57K8y/_new  2016-02-09 13:31:54.0 +0100
@@ -19,7 +19,7 @@
 %global pkg_name resourcet
 
 Name:   ghc-resourcet
-Version:1.1.7
+Version:1.1.7.1
 Release:0
 Summary:Deterministic allocation and freeing of scarce resources
 License:BSD-3-Clause

++ resourcet-1.1.7.tar.gz -> resourcet-1.1.7.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/resourcet-1.1.7/ChangeLog.md 
new/resourcet-1.1.7.1/ChangeLog.md
--- old/resourcet-1.1.7/ChangeLog.md2015-11-29 17:12:13.0 +0100
+++ new/resourcet-1.1.7.1/ChangeLog.md  2016-01-26 12:21:18.0 +0100
@@ -1,3 +1,7 @@
+## 1.1.7.1
+
+* transformers-compat 0.5
+
 ## 1.1.7
 
 * Canonicalise Monad instances 
[#237](https://github.com/snoyberg/conduit/pull/237)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/resourcet-1.1.7/resourcet.cabal 
new/resourcet-1.1.7.1/resourcet.cabal
--- old/resourcet-1.1.7/resourcet.cabal 2015-11-29 17:12:13.0 +0100
+++ new/resourcet-1.1.7.1/resourcet.cabal   2016-01-26 12:21:18.0 
+0100
@@ -1,5 +1,5 @@
 Name:resourcet
-Version: 1.1.7
+Version: 1.1.7.1
 Synopsis:Deterministic allocation and freeing of scarce resources.
 description: Hackage documentation generation is not reliable. For up 
to date documentation, please see: .
 License: BSD3
@@ -23,7 +23,7 @@
  , monad-control>= 0.3.1&& < 1.1
  , containers
  , transformers >= 0.2.2&& < 0.5
- , transformers-compat  >= 0.3  && < 0.5
+ , transformers-compat  >= 0.3  && < 0.6
  , mtl  >= 2.0  && < 2.3
  , mmorph
  , exceptions   >= 0.5




commit libevtx for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2016-02-09 13:31:39

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2015-01-30 
15:07:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2016-02-09 
13:31:40.0 +0100
@@ -1,0 +2,13 @@
+Tue Jan 26 16:37:33 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160107
+   * 2016 update
+   * worked on Python 3 support
+   * Worked on format support
+   * applied updates
+   * worked on Python bindings
+   * updated m4 scripts
+   * changed version for pypi repacking
+   * worked on setup.py
+
+---

Old:

  libevtx-alpha-20150105.tar.gz

New:

  libevtx-alpha-20160107.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.ZxTHxg/_old  2016-02-09 13:31:41.0 +0100
+++ /var/tmp/diff_new_pack.ZxTHxg/_new  2016-02-09 13:31:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtx
 #
-# Copyright (c) 2015 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
@@ -18,7 +18,7 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20150105
+%define timestamp  20160107
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format

++ libevtx-alpha-20150105.tar.gz -> libevtx-alpha-20160107.tar.gz ++
 38576 lines of diff (skipped)




commit libbde for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libbde for openSUSE:Factory checked 
in at 2016-02-09 13:31:44

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


Package is "libbde"

Changes:

--- /work/SRC/openSUSE:Factory/libbde/libbde.changes2015-01-30 
15:03:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbde.new/libbde.changes   2016-02-09 
13:31:46.0 +0100
@@ -1,0 +2,14 @@
+Wed Jan 27 04:41:19 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160108
+   * 2016 update
+   * updated dependencies
+   * worked on splitting encryption method and copy
+   * worked on AES-XTS support
+   * code clean up
+   * worked on tests
+   * worked on signature check
+   * added correction for volume size being 1 sector short
+   * applied updates
+
+---

Old:

  libbde-alpha-20150106.tar.gz

New:

  libbde-alpha-20160110.tar.gz



Other differences:
--
++ libbde.spec ++
--- /var/tmp/diff_new_pack.Q9trDV/_old  2016-02-09 13:31:47.0 +0100
+++ /var/tmp/diff_new_pack.Q9trDV/_new  2016-02-09 13:31:47.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libbde
 #
-# Copyright (c) 2015 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 @@
 
 
 %define lname  libbde1
-%define timestamp 20150106
+%define timestamp 20160110
 Name:   libbde
 Version:0~%{timestamp}
 Release:0

++ libbde-alpha-20150106.tar.gz -> libbde-alpha-20160110.tar.gz ++
 35431 lines of diff (skipped)




commit yast2 for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2016-02-09 13:31:18

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


Package is "yast2"

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2016-01-13 
22:42:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2016-02-09 
13:31:20.0 +0100
@@ -1,0 +2,72 @@
+Fri Feb  5 07:31:35 UTC 2016 - mfi...@suse.com
+
+- bsc#960040
+  - put valid hostname into AY profile generated at the end of
+installation
+- 3.1.173
+
+---
+Mon Feb  1 15:31:07 UTC 2016 - jreidin...@suse.com
+
+- Yast::Execute do not crash for missing '_' method (found during
+  FATE#317701)
+- 3.1.172
+
+---
+Mon Feb  1 08:31:17 UTC 2016 - jreidin...@suse.com
+
+- fix packaging of TargetFile and Execute classes (FATE#317701)
+- 3.1.171
+
+---
+Thu Jan 28 12:16:28 UTC 2016 - jreidin...@suse.com
+
+- fix string processing for frames in CWM causing crash in
+  yast2-network (bnc#963966)
+- 3.1.170
+
+---
+Wed Jan 27 14:53:37 UTC 2016 - jreidin...@suse.com
+
+- Added Yast::Execute, a class to run programs with Cheetah
+- Added Yast::TargetFile, a handler suitable for CFA::BaseModel
+- Both respect Yast::Installation.destdir ( needed for FATE#317701)
+- 3.1.169
+
+---
+Tue Jan 26 16:10:38 UTC 2016 - jreidin...@suse.com
+
+- Allow CWM to specify which events do not cause storing of widget
+  content ( needed for FATE#317701)
+- 3.1.168
+
+---
+Tue Jan 26 09:18:44 UTC 2016 - an...@suse.com
+
+- Added UI::InstallationDialog as specialization of UI::Dialog
+  (part of bsc#893825)
+- 3.1.167
+
+---
+Wed Jan 20 13:45:36 UTC 2016 - jreidin...@suse.com
+
+- Added CWM::Tabs that is object oriented API replacement for
+  CWMTab
+- 3.1.166
+
+---
+Mon Jan 18 17:01:28 UTC 2016 - igonzalezs...@suse.com
+
+- Add a default value for firewall setting FW_BOOT_INIT_FULL
+  (bsc#955400)
+- 3.1.165
+
+---
+Mon Jan 18 09:18:53 UTC 2016 - jreidin...@suse.com
+
+- Added CWM::AbstractWidget.
+- Added CWM.show method working with AbstractWidgets kids
+- Added few basic CWM widgets for easier CWM.show usage
+- 3.1.164
+
+---

Old:

  yast2-3.1.163.tar.bz2

New:

  yast2-3.1.173.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.7UlRcR/_old  2016-02-09 13:31:21.0 +0100
+++ /var/tmp/diff_new_pack.7UlRcR/_new  2016-02-09 13:31:21.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2
-Version:3.1.163
+Version:3.1.173
 Release:0
 Url:https://github.com/yast/yast-yast2
 
@@ -44,6 +44,13 @@
 
 # For running RSpec tests during build
 BuildRequires:  rubygem(rspec)
+# for defining abstract methods in libraries
+BuildRequires:  rubygem(abstract_method)
+# for running scripts
+BuildRequires:  rubygem(cheetah)
+# for file access using augeas
+BuildRequires:  rubygem(cfa)
+
 # To have Yast::CoreExt::AnsiString
 BuildRequires:  yast2-ruby-bindings >= 3.1.36
 
@@ -53,6 +60,12 @@
 # ag_ini section_private
 # ag_ini with (un)quoting support
 Requires:   yast2-core >= 2.23.0
+# for defining abstract methods in libraries
+Requires:   rubygem(abstract_method)
+# for running scripts
+Requires:   rubygem(cheetah)
+# for file access using augeas
+Requires:   rubygem(cfa)
 # new UI::SetApplicationIcon
 Requires:   yast2-ycp-ui-bindings >= 3.1.8
 

++ yast2-3.1.163.tar.bz2 -> yast2-3.1.173.tar.bz2 ++
 5340 lines of diff (skipped)




commit grub2 for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2016-02-09 13:31:01

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


Package is "grub2"

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2016-01-28 
17:18:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2016-02-09 
13:31:03.0 +0100
@@ -1,0 +2,44 @@
+Fri Jan 29 03:54:15 UTC 2016 - mch...@suse.com
+
+- Add config option to set efi xen loader command line option (bsc#957383)
+  * added grub2-efi-xen-cmdline.patch 
+
+---
+Thu Jan 28 12:27:27 UTC 2016 - dval...@suse.com
+
+- Drop ppc64le patches. Build stage1 as BE for Power
+  Droped patches:
+  - grub2-ppc64le-01-Add-Little-Endian-support-for-Power64-to-the-build.patch
+  - grub2-ppc64le-02-Build-grub-as-O1-until-we-add-savegpr-and-restgpr-ro.patch
+  - grub2-ppc64le-03-disable-creation-of-vsx-and-altivec-instructions.patch
+  - grub2-ppc64le-04-powerpc64-LE-s-linker-knows-how-to-handle-the-undefi.patch
+  - grub2-ppc64le-05-grub-install-can-now-recognize-and-install-a-LE-grub.patch
+  - grub2-ppc64le-06-set-the-ABI-version-to-0x02-in-the-e_flag-of-the-PPC.patch
+  - grub2-ppc64le-07-Add-IEEE1275_ADDR-helper.patch
+  - grub2-ppc64le-08-Fix-some-more-warnings-when-casting.patch
+  - grub2-ppc64le-09-Add-powerpc64-types.patch
+  - grub2-ppc64le-10-powerpc64-is-not-necessarily-BigEndian-anymore.patch
+  - grub2-ppc64le-11-Fix-warnings-when-building-powerpc-linux-loader-64bi.patch
+  - grub2-ppc64le-12-GRUB_ELF_R_PPC_-processing-is-applicable-only-for-32.patch
+  - grub2-ppc64le-13-Fix-powerpc-setjmp-longjmp-64bit-issues.patch
+  - grub2-ppc64le-14-Add-powerpc64-ieee1275-trampoline.patch
+  - grub2-ppc64le-15-Add-64bit-support-to-powerpc-startup-code.patch
+  - grub2-ppc64le-16-Add-grub_dl_find_section_addr.patch
+  - grub2-ppc64le-17-Add-ppc64-relocations.patch
+  - grub2-ppc64le-18-ppc64-doesn-t-need-libgcc-routines.patch
+  - grub2-ppc64le-19-Use-FUNC_START-FUNC_END-for-powerpc-function-definit.patch
+  - grub2-ppc64le-20-.TOC.-symbol-is-special-in-ppc64le-.-It-maps-to-the-.patch
+  - grub2-ppc64le-21-the-.toc-section-in-powerpc64le-modules-are-sometime.patch
+  - grub2-ppc64le-22-all-parameter-to-firmware-calls-should-to-be-BigEndi.patch
+  - grub2-ppc64le-fix-64bit-trampoline-in-dyn-linker.patch
+  - grub2-ppc64le-timeout.patch
+  - grub2-ppc64-build-ppc64-32bit.patch
+- Added patches:
+  -  biendian.patch
+  -  grub2-ppc64-cas-reboot-support.patch
+  -  libgcc-prereq.patch
+  -  libgcc.patch
+  -  ppc64_opt.patch
+  -  ppc64le.patch
+
+---

Old:

  grub2-ppc64-build-ppc64-32bit.patch
  grub2-ppc64le-01-Add-Little-Endian-support-for-Power64-to-the-build.patch
  grub2-ppc64le-02-Build-grub-as-O1-until-we-add-savegpr-and-restgpr-ro.patch
  grub2-ppc64le-03-disable-creation-of-vsx-and-altivec-instructions.patch
  grub2-ppc64le-04-powerpc64-LE-s-linker-knows-how-to-handle-the-undefi.patch
  grub2-ppc64le-05-grub-install-can-now-recognize-and-install-a-LE-grub.patch
  grub2-ppc64le-06-set-the-ABI-version-to-0x02-in-the-e_flag-of-the-PPC.patch
  grub2-ppc64le-07-Add-IEEE1275_ADDR-helper.patch
  grub2-ppc64le-08-Fix-some-more-warnings-when-casting.patch
  grub2-ppc64le-09-Add-powerpc64-types.patch
  grub2-ppc64le-10-powerpc64-is-not-necessarily-BigEndian-anymore.patch
  grub2-ppc64le-11-Fix-warnings-when-building-powerpc-linux-loader-64bi.patch
  grub2-ppc64le-12-GRUB_ELF_R_PPC_-processing-is-applicable-only-for-32.patch
  grub2-ppc64le-13-Fix-powerpc-setjmp-longjmp-64bit-issues.patch
  grub2-ppc64le-14-Add-powerpc64-ieee1275-trampoline.patch
  grub2-ppc64le-15-Add-64bit-support-to-powerpc-startup-code.patch
  grub2-ppc64le-16-Add-grub_dl_find_section_addr.patch
  grub2-ppc64le-17-Add-ppc64-relocations.patch
  grub2-ppc64le-18-ppc64-doesn-t-need-libgcc-routines.patch
  grub2-ppc64le-19-Use-FUNC_START-FUNC_END-for-powerpc-function-definit.patch
  grub2-ppc64le-20-.TOC.-symbol-is-special-in-ppc64le-.-It-maps-to-the-.patch
  grub2-ppc64le-21-the-.toc-section-in-powerpc64le-modules-are-sometime.patch
  grub2-ppc64le-22-all-parameter-to-firmware-calls-should-to-be-BigEndi.patch
  grub2-ppc64le-fix-64bit-trampoline-in-dyn-linker.patch
  grub2-ppc64le-timeout.patch

New:

  biendian.patch
  grub2-efi-xen-cmdline.patch
  grub2-ppc64-cas-reboot-support.patch
  libgcc-prereq.patch
  libgcc.patch
  ppc64_opt.patch
  ppc64le.patch



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.9iDptR/_old  2016-02-09 13:31:05.0 +0100
+++ /var/tmp/diff_new_pack.9iDptR/_new  

commit installation-images-openSUSE for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package installation-images-openSUSE for 
openSUSE:Factory checked in at 2016-02-09 13:31:29

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


Package is "installation-images-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2015-12-18 21:53:43.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
   2016-02-09 13:31:30.0 +0100
@@ -1,0 +2,83 @@
+Mon Feb  8 16:15:27 UTC 2016 - snw...@suse.com
+
+- drop the '(SNAPSHOT)' part of displayed Tumbleweed version (bsc#965645)
+- 14.224
+
+---
+Wed Feb  3 15:20:50 UTC 2016 - snw...@suse.com
+
+- adjust product/version handling
+- 14.223
+
+---
+Fri Jan 29 09:40:19 UTC 2016 - snw...@suse.com
+
+- don't chainload shim for now (bsc#963919)
+- 14.222
+
+---
+Thu Jan 28 12:01:37 UTC 2016 - snw...@suse.com
+
+- adjust rubygem handling
+- 14.221
+
+---
+Thu Jan 28 10:52:50 UTC 2016 - snw...@suse.com
+
+- fix typo in Makefile
+- 14.220
+
+---
+Wed Jan 27 09:25:16 UTC 2016 - snw...@suse.com
+
+- rework product/version handling to use the values from /etc/os-release
+- 14.219
+
+---
+Mon Jan 25 09:30:19 UTC 2016 - snw...@suse.com
+
+- filelists: glib looks for mime handler list in mimeapps.list
+- 14.218
+
+---
+Fri Jan 22 15:30:17 UTC 2016 - snw...@suse.com
+
+- nvme module has been moved (bsc#963114)
+- 14.217
+
+---
+Wed Jan 20 11:55:17 UTC 2016 - snw...@suse.com
+
+- also include VERSION files for ruby gems
+- 14.216
+
+---
+Tue Jan 19 09:00:16 UTC 2016 - snw...@suse.com
+
+- squashfs.ko might depend on lz4_decompress (bsc#962493)
+- 14.215
+
+---
+Mon Jan 18 11:00:15 UTC 2016 - snw...@suse.com
+
+- ensure /etc/hosts is writable (bsc#961880)
+- 14.214
+
+---
+Mon Jan 18 10:35:17 UTC 2016 - snw...@suse.com
+
+- Add IBM vNIC module
+- 14.213
+
+---
+Mon Jan 18 10:30:19 UTC 2016 - snw...@suse.com
+
+- noto-sans has been renamed to noto-sans-fonts
+- 14.212
+
+---
+Mon Jan 18 09:56:40 UTC 2016 - o...@aepfle.de
+
+- Correct name of vmlinuz-xen symlink
+
+---

Old:

  installation-images-14.211.tar.xz

New:

  installation-images-14.224.tar.xz



Other differences:
--
++ installation-images-openSUSE.spec ++
--- /var/tmp/diff_new_pack.7855Km/_old  2016-02-09 13:31:31.0 +0100
+++ /var/tmp/diff_new_pack.7855Km/_new  2016-02-09 13:31:31.0 +0100
@@ -43,7 +43,7 @@
 %else
 BuildRequires:  openSUSE-release
 BuildRequires:  openSUSE-release-mini
-BuildRequires:  noto-sans
+BuildRequires:  noto-sans-fonts
 BuildRequires:  google-roboto-fonts 
 %endif
 %ifarch ia64 %ix86 x86_64
@@ -369,7 +369,7 @@
 Summary:Installation Image Files for %theme
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.211
+Version:14.224
 Release:0
 Provides:   installation-images = %version-%release
 Source: installation-images-%{version}.tar.xz
@@ -451,7 +451,7 @@
 %ifarch x86_64
 %if %{without xen}
 ln -s loader/initrd %{buildroot}/branding/%theme/CD1/boot/x86_64/initrd-xen
-ln -s loader/linux %{buildroot}/CD1/boot/x86_64/vmlinux-xen
+ln -s loader/linux %{buildroot}/CD1/boot/x86_64/vmlinuz-xen
 %endif
 %endif
 # get rid of /usr/lib/rpm/brp-strip-debug 

++ installation-images-14.211.tar.xz -> installation-images-14.224.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.211/Makefile 
new/installation-images-14.224/Makefile
--- old/installation-images-14.211/Makefile 2015-12-17 11:35:22.0 
+0100
+++ new/installation-images-14.224/Makefile 2016-02-08 17:13:34.0 
+0100
@@ -94,38 +94,38 @@
[ -s 

commit libolecf for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libolecf for openSUSE:Factory 
checked in at 2016-02-09 13:31:42

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


Package is "libolecf"

Changes:

--- /work/SRC/openSUSE:Factory/libolecf/libolecf.changes2016-01-26 
10:15:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.libolecf.new/libolecf.changes   2016-02-09 
13:31:43.0 +0100
@@ -1,0 +2,11 @@
+Tue Jan 26 23:43:22 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160107
+   * worked on Python 3 support
+   * 2016 update
+- use libcdata from factory, not internal.  Tested via plaso/run_tests.py
+- use libcerror internal package.  Build fails with factory version
+- use libcstring internal package.  Build fails with factory version
+- use libfvalue internal package.  Build fails with factory version
+
+---

Old:

  libolecf-alpha-20151223.tar.gz

New:

  libolecf-alpha-20160107.tar.gz



Other differences:
--
++ libolecf.spec ++
--- /var/tmp/diff_new_pack.0mP6ZV/_old  2016-02-09 13:31:44.0 +0100
+++ /var/tmp/diff_new_pack.0mP6ZV/_new  2016-02-09 13:31:44.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   libolecf
 %define lname  libolecf1
-%define timestamp  20151223
+%define timestamp  20160107
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the OLE 2 Compound File (OLECF) 
format
@@ -30,22 +30,23 @@
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
 BuildRequires:  pkgconfig(libbfio)
-BuildRequires:  pkgconfig(libcerror)
+BuildRequires:  pkgconfig(libcdata) >= 20160108
 BuildRequires:  pkgconfig(libcfile)
 BuildRequires:  pkgconfig(libclocale)
 BuildRequires:  pkgconfig(libcnotify)
 BuildRequires:  pkgconfig(libcpath)
 BuildRequires:  pkgconfig(libcsplit)
-BuildRequires:  pkgconfig(libcstring) >= 20120425
 BuildRequires:  pkgconfig(libcsystem) >= 20120425
 BuildRequires:  pkgconfig(libcthreads) >= 20130723
 BuildRequires:  pkgconfig(libfguid) >= 20140103
 BuildRequires:  pkgconfig(libfole) >= 20120426
-BuildRequires:  pkgconfig(libfvalue) >= 20151226
 BuildRequires:  pkgconfig(libuna)
-# testing fails with external package from factory
-#BuildRequires:  pkgconfig(libcdata) > 20140105
-#BuildRequires:  pkgconfig(libfdatetime) > 20140105
+
+# testing fails with external package from factory - verified Jan 27, 2016
+#BuildRequires:  pkgconfig(libfdatetime) > 20150507
+#BuildRequires:  pkgconfig(libcstring) > 20150101
+#BuildRequires:  pkgconfig(libcerror) > 20150407
+#BuildRequires:  pkgconfig(libfvalue) > 20151226
 # released, but not yet packaged.  This is the only user in OBS.
 #BuildRequires:  pkgconfig(libwfps) > 20150104
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libolecf-alpha-20151223.tar.gz -> libolecf-alpha-20160107.tar.gz ++
 12922 lines of diff (skipped)




commit ghc-aeson-extra for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package ghc-aeson-extra for openSUSE:Factory 
checked in at 2016-02-09 13:31:51

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


Package is "ghc-aeson-extra"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-aeson-extra/ghc-aeson-extra.changes  
2016-01-28 17:25:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-aeson-extra.new/ghc-aeson-extra.changes 
2016-02-09 13:31:53.0 +0100
@@ -1,0 +2,9 @@
+Fri Jan 29 12:11:32 UTC 2016 - mimi...@gmail.com
+
+- update to 0.3.1.0
+* Support quickcheck-instances >=0.3.12
+* Add Data.Aeson.Extra.TH
+* Add Data.Aeson.Extra.Foldable
+* Add Data.Aeson.Extra.Merge
+
+---

Old:

  aeson-extra-0.3.0.0.tar.gz

New:

  aeson-extra-0.3.1.0.tar.gz



Other differences:
--
++ ghc-aeson-extra.spec ++
--- /var/tmp/diff_new_pack.HX4JOn/_old  2016-02-09 13:31:53.0 +0100
+++ /var/tmp/diff_new_pack.HX4JOn/_new  2016-02-09 13:31:53.0 +0100
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-aeson-extra
-Version:0.3.0.0
+Version:0.3.1.0
 Release:0
 Summary:Extra goodies for aeson
 License:BSD-3-Clause
@@ -42,6 +42,7 @@
 BuildRequires:  ghc-exceptions-devel
 BuildRequires:  ghc-hashable-devel
 BuildRequires:  ghc-parsec-devel
+BuildRequires:  ghc-recursion-schemes-devel
 BuildRequires:  ghc-scientific-devel
 BuildRequires:  ghc-template-haskell-devel
 BuildRequires:  ghc-text-devel
@@ -79,7 +80,6 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-cabal-tweak-dep-ver base-compat '<0.9' '<0.10'
 
 %build
 %ghc_lib_build

++ aeson-extra-0.3.0.0.tar.gz -> aeson-extra-0.3.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aeson-extra-0.3.0.0/CHANGELOG.md 
new/aeson-extra-0.3.1.0/CHANGELOG.md
--- old/aeson-extra-0.3.0.0/CHANGELOG.md2015-12-25 18:51:00.0 
+0100
+++ new/aeson-extra-0.3.1.0/CHANGELOG.md2016-01-27 19:08:46.0 
+0100
@@ -1,3 +1,13 @@
+# 0.3.1.0 (2015-12-27)
+
+- Add `Data.Aeson.Extra.TH`
+- Add `Data.Aeson.Extra.Foldable`
+- Add `Data.Aeson.Extra.Merge`
+
+# 0.3.0.1 (2016-01-26)
+
+- Support `quickcheck-instances >=0.3.12`
+
 # 0.3.0.0 (2015-12-25)
 
 - `Data.Time.TH` moved to 
[`time-parsers`](http://hackage.haskell.org/package/time-parsers)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aeson-extra-0.3.0.0/aeson-extra.cabal 
new/aeson-extra-0.3.1.0/aeson-extra.cabal
--- old/aeson-extra-0.3.0.0/aeson-extra.cabal   2015-12-25 18:57:25.0 
+0100
+++ new/aeson-extra-0.3.1.0/aeson-extra.cabal   2016-01-27 19:10:36.0 
+0100
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:   aeson-extra
-version:0.3.0.0
+version:0.3.1.0
 synopsis:   Extra goodies for aeson
 description:Package provides extra funcitonality on top of @aeson@ and 
@aeson-compat@
 category:   Web
@@ -31,14 +31,15 @@
   ghc-options: -Wall
   build-depends:
   base >=4.6  && <4.9
-, base-compat  >=0.6.0   && <0.9
 , aeson>=0.7.0.6 && <0.11
 , aeson-compat >=0.3.0.0 && <0.4
+, base-compat  >=0.6.0   && <0.10
 , bytestring   >=0.10 && <0.11
 , containers   >=0.5  && <0.6
 , exceptions   >=0.8  && <0.9
 , hashable >=1.2  && <1.3
 , parsec   >=3.1.9 && <3.2
+, recursion-schemes>=4.1.2 && <4.2
 , scientific   >=0.3  && <0.4
 , template-haskell >=2.8  && <2.11
 , text >=1.2  && <1.3
@@ -46,8 +47,21 @@
 , time-parsers >=0.1.0.0 && <0.2
 , unordered-containers >=0.2  && <0.3
 , vector   >=0.10 && <0.12
+, transformers >=0.3  && <0.6
   exposed-modules:
   Data.Aeson.Extra
+  Data.Aeson.Extra.CollapsedList
+  Data.Aeson.Extra.Foldable
+  Data.Aeson.Extra.Map
+  Data.Aeson.Extra.Merge
+  Data.Aeson.Extra.Time
+  Data.Aeson.Extra.TH
+
+  if impl(ghc >= 7.8)
+exposed-modules:
+  Data.Aeson.Extra.SingObject
+  Data.Aeson.Extra.SymTag
+
   default-language: Haskell2010
 
 test-suite aeson-extra-test
@@ -58,9 +72,9 @@
   ghc-options: -Wall
   build-depends:
   base >=4.6  && <4.9
-, base-compat  >=0.6.0   && <0.9
 , aeson>=0.7.0.6 && <0.11
 , aeson-compat >=0.3.0.0 && <0.4
+, base-compat  

commit libcdata for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libcdata for openSUSE:Factory 
checked in at 2016-02-09 13:32:10

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


Package is "libcdata"

Changes:

--- /work/SRC/openSUSE:Factory/libcdata/libcdata.changes2015-01-10 
23:04:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.libcdata.new/libcdata.changes   2016-02-09 
13:32:11.0 +0100
@@ -1,0 +2,12 @@
+Wed Jan 27 09:40:52 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160108
+   * added array remove entry function
+   * 2016 update
+   * updated dependencies
+   * code clean up
+   * corrections in include header
+   * updated man page: libcdata.3
+   * added libcdata_range_list_get_spanning_range
+
+---

Old:

  libcdata-alpha-20150101.tar.gz

New:

  libcdata-alpha-20160108.tar.gz



Other differences:
--
++ libcdata.spec ++
--- /var/tmp/diff_new_pack.ywbtXP/_old  2016-02-09 13:32:12.0 +0100
+++ /var/tmp/diff_new_pack.ywbtXP/_new  2016-02-09 13:32:12.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   libcdata
 %define lname  libcdata1
-%define timestamp 20150101
+%define timestamp 20160108
 Version:0~%timestamp
 Release:0
 Summary:Library for cross-platform C generic data functions

++ libcdata-alpha-20150101.tar.gz -> libcdata-alpha-20160108.tar.gz ++
 11556 lines of diff (skipped)




commit python-ipaddr for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package python-ipaddr for openSUSE:Factory 
checked in at 2016-02-09 13:32:15

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


Package is "python-ipaddr"

Changes:

--- /work/SRC/openSUSE:Factory/python-ipaddr/python-ipaddr.changes  
2013-10-25 11:19:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-ipaddr.new/python-ipaddr.changes 
2016-02-09 13:32:16.0 +0100
@@ -1,0 +2,10 @@
+Wed Mar 25 16:32:23 UTC 2015 - klaussfre...@gmail.com
+
+Update to upstream ipaddr 2.1.11
+- hostmask parsing bug fixed by pmarks (a nearly complete rewrite of the mask 
parsing code)
+- i97, incorrectly parses some v6 addresses.
+- docstring typos.
+- i95, refer to the nets in the exception raised by collapse_address_list
+- add license to boilerplate to test-2to3.sh
+
+---

Old:

  ipaddr-2.1.10.tar.gz

New:

  ipaddr-2.1.11.tar.gz



Other differences:
--
++ python-ipaddr.spec ++
--- /var/tmp/diff_new_pack.xkXFxj/_old  2016-02-09 13:32:17.0 +0100
+++ /var/tmp/diff_new_pack.xkXFxj/_new  2016-02-09 13:32:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-ipaddr
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipaddr
-Version:2.1.10
+Version:2.1.11
 Release:0
 Url:http://code.google.com/p/ipaddr-py/
 Summary:Google's IP address manipulation library

++ ipaddr-2.1.10.tar.gz -> ipaddr-2.1.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipaddr-2.1.10/COPYING new/ipaddr-2.1.11/COPYING
--- old/ipaddr-2.1.10/COPYING   2011-11-24 21:54:17.0 +0100
+++ new/ipaddr-2.1.11/COPYING   2014-01-31 22:02:24.0 +0100
@@ -187,7 +187,7 @@
   same "printed page" as the copyright notice for easier
   identification within third-party archives.
 
-   Copyright [] [name of copyright owner]
+   Copyright 2008 Google Inc.
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipaddr-2.1.10/PKG-INFO new/ipaddr-2.1.11/PKG-INFO
--- old/ipaddr-2.1.10/PKG-INFO  2012-01-21 04:05:52.0 +0100
+++ new/ipaddr-2.1.11/PKG-INFO  2014-01-31 22:27:22.0 +0100
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: ipaddr
-Version: 2.1.10
+Version: 2.1.11
 Summary: UNKNOWN
 Home-page: http://code.google.com/p/ipaddr-py/
 Author: Google
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipaddr-2.1.10/RELEASENOTES 
new/ipaddr-2.1.11/RELEASENOTES
--- old/ipaddr-2.1.10/RELEASENOTES  2012-01-21 04:02:42.0 +0100
+++ new/ipaddr-2.1.11/RELEASENOTES  2014-01-31 22:36:16.0 +0100
@@ -4,6 +4,16 @@
 
 Here are the visible changes for each release.
 
+== 2.1.11 ==
+
+(2014-01-31)
+
+  * hostmask parsing bug fixed by pmarks (a nearly complete rewrite of the 
mask parsing code)
+  * i97, incorrectly parses some v6 addresses.
+  * docstring typos.
+  * i95, refer to the nets in the exception raised by collapse_address_list
+  * add license to boilerplate to test-2to3.sh
+
 == 2.1.10 ==
 
 (2012-01-20)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipaddr-2.1.10/ipaddr.py new/ipaddr-2.1.11/ipaddr.py
--- old/ipaddr-2.1.10/ipaddr.py 2012-01-21 04:03:17.0 +0100
+++ new/ipaddr-2.1.11/ipaddr.py 2014-01-31 22:22:32.0 +0100
@@ -22,7 +22,7 @@
 
 """
 
-__version__ = '2.1.10'
+__version__ = '2.1.11'
 
 import struct
 
@@ -141,7 +141,7 @@
 """The binary representation of this address.
 
 Args:
-address: An integer representation of an IPv4 IP address.
+address: An integer representation of an IPv6 IP address.
 
 Returns:
 The binary representation of this address.
@@ -350,7 +350,7 @@
 else:
 if nets and nets[-1]._version != ip._version:
 raise TypeError("%s and %s are not of the same version" % (
-str(ip), str(ips[-1])))
+str(ip), str(nets[-1])))
 nets.append(ip)
 
 # sort and dedup
@@ -839,8 +839,8 @@
 """
 return 

commit calligra-l10n for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package calligra-l10n for openSUSE:Factory 
checked in at 2016-02-09 13:32:21

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


Package is "calligra-l10n"

Changes:

--- /work/SRC/openSUSE:Factory/calligra-l10n/calligra-l10n.changes  
2015-12-16 17:43:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.calligra-l10n.new/calligra-l10n.changes 
2016-02-09 13:32:23.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb  5 12:26:58 UTC 2016 - wba...@tmo.at
+
+- Update to 2.9.11
+
+---

Old:

  calligra-l10n-bs-2.9.10.tar.xz
  calligra-l10n-ca-2.9.10.tar.xz
  calligra-l10n...@valencia-2.9.10.tar.xz
  calligra-l10n-cs-2.9.10.tar.xz
  calligra-l10n-da-2.9.10.tar.xz
  calligra-l10n-de-2.9.10.tar.xz
  calligra-l10n-el-2.9.10.tar.xz
  calligra-l10n-en_GB-2.9.10.tar.xz
  calligra-l10n-es-2.9.10.tar.xz
  calligra-l10n-et-2.9.10.tar.xz
  calligra-l10n-fi-2.9.10.tar.xz
  calligra-l10n-fr-2.9.10.tar.xz
  calligra-l10n-gl-2.9.10.tar.xz
  calligra-l10n-hu-2.9.10.tar.xz
  calligra-l10n-it-2.9.10.tar.xz
  calligra-l10n-ja-2.9.10.tar.xz
  calligra-l10n-kk-2.9.10.tar.xz
  calligra-l10n-nb-2.9.10.tar.xz
  calligra-l10n-nl-2.9.10.tar.xz
  calligra-l10n-pl-2.9.10.tar.xz
  calligra-l10n-pt-2.9.10.tar.xz
  calligra-l10n-pt_BR-2.9.10.tar.xz
  calligra-l10n-ru-2.9.10.tar.xz
  calligra-l10n-sk-2.9.10.tar.xz
  calligra-l10n-sv-2.9.10.tar.xz
  calligra-l10n-tr-2.9.10.tar.xz
  calligra-l10n-uk-2.9.10.tar.xz
  calligra-l10n-zh_CN-2.9.10.tar.xz
  calligra-l10n-zh_TW-2.9.10.tar.xz

New:

  calligra-l10n-bs-2.9.11.tar.xz
  calligra-l10n-ca-2.9.11.tar.xz
  calligra-l10n...@valencia-2.9.11.tar.xz
  calligra-l10n-cs-2.9.11.tar.xz
  calligra-l10n-da-2.9.11.tar.xz
  calligra-l10n-de-2.9.11.tar.xz
  calligra-l10n-el-2.9.11.tar.xz
  calligra-l10n-en_GB-2.9.11.tar.xz
  calligra-l10n-es-2.9.11.tar.xz
  calligra-l10n-et-2.9.11.tar.xz
  calligra-l10n-fi-2.9.11.tar.xz
  calligra-l10n-fr-2.9.11.tar.xz
  calligra-l10n-gl-2.9.11.tar.xz
  calligra-l10n-hu-2.9.11.tar.xz
  calligra-l10n-it-2.9.11.tar.xz
  calligra-l10n-ja-2.9.11.tar.xz
  calligra-l10n-kk-2.9.11.tar.xz
  calligra-l10n-nb-2.9.11.tar.xz
  calligra-l10n-nl-2.9.11.tar.xz
  calligra-l10n-pl-2.9.11.tar.xz
  calligra-l10n-pt-2.9.11.tar.xz
  calligra-l10n-pt_BR-2.9.11.tar.xz
  calligra-l10n-ru-2.9.11.tar.xz
  calligra-l10n-sk-2.9.11.tar.xz
  calligra-l10n-sv-2.9.11.tar.xz
  calligra-l10n-tr-2.9.11.tar.xz
  calligra-l10n-uk-2.9.11.tar.xz
  calligra-l10n-zh_CN-2.9.11.tar.xz
  calligra-l10n-zh_TW-2.9.11.tar.xz



Other differences:
--
++ calligra-l10n.spec ++
--- /var/tmp/diff_new_pack.UnHpYu/_old  2016-02-09 13:32:26.0 +0100
+++ /var/tmp/diff_new_pack.UnHpYu/_new  2016-02-09 13:32:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package calligra-l10n
 #
-# 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
@@ -22,7 +22,7 @@
 %define autocorrect_languages de_DE it_IT ru_RU uk_UA
 
 Name:   calligra-l10n
-Version:2.9.10
+Version:2.9.11
 Release:0
 Summary:Translations for Calligra Suite
 License:GPL-2.0+

++ calligra-l10n-bs-2.9.10.tar.xz -> calligra-l10n-bs-2.9.11.tar.xz ++
 22509 lines of diff (skipped)

++ calligra-l10n-ca-2.9.10.tar.xz -> calligra-l10n-ca-2.9.11.tar.xz ++
 22999 lines of diff (skipped)

++ calligra-l10n...@valencia-2.9.10.tar.xz -> 
calligra-l10n...@valencia-2.9.11.tar.xz ++
 22470 lines of diff (skipped)

++ calligra-l10n-cs-2.9.10.tar.xz -> calligra-l10n-cs-2.9.11.tar.xz ++
 22179 lines of diff (skipped)

++ calligra-l10n-da-2.9.10.tar.xz -> calligra-l10n-da-2.9.11.tar.xz ++
 26559 lines of diff (skipped)

++ calligra-l10n-de-2.9.10.tar.xz -> calligra-l10n-de-2.9.11.tar.xz ++
 26138 lines of diff (skipped)

++ calligra-l10n-el-2.9.10.tar.xz -> calligra-l10n-el-2.9.11.tar.xz ++
 26302 lines of diff (skipped)

++ calligra-l10n-en_GB-2.9.10.tar.xz -> calligra-l10n-en_GB-2.9.11.tar.xz 
++
 24506 lines of diff (skipped)

++ calligra-l10n-es-2.9.10.tar.xz -> calligra-l10n-es-2.9.11.tar.xz ++
 23694 lines of diff (skipped)

++ calligra-l10n-et-2.9.10.tar.xz -> calligra-l10n-et-2.9.11.tar.xz ++
 26407 lines of diff (skipped)

++ calligra-l10n-fi-2.9.10.tar.xz -> calligra-l10n-fi-2.9.11.tar.xz ++
 15763 lines of diff (skipped)

++ 

commit webkit2gtk3 for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package webkit2gtk3 for openSUSE:Factory 
checked in at 2016-02-09 13:31:06

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


Package is "webkit2gtk3"

Changes:

--- /work/SRC/openSUSE:Factory/webkit2gtk3/webkit2gtk3.changes  2015-12-09 
22:36:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.webkit2gtk3.new/webkit2gtk3.changes 
2016-02-09 13:31:07.0 +0100
@@ -1,0 +2,17 @@
+Wed Feb  3 19:02:39 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.10.7:
+  + Fix the build with GTK+ < 3.16.
+
+---
+Thu Jan 28 10:20:35 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.10.6:
+  + Fix a deadlock in the Web Process when JavaScript garbage
+collector was running for a web worker thread that made google
+maps to hang.
+  + Fix media controls displaying without controls attribute.
+  + Fix a Web Process crash when quickly attempting many DnD
+operations.
+
+---

Old:

  webkitgtk-2.10.4.tar.xz

New:

  webkitgtk-2.10.7.tar.xz



Other differences:
--
++ webkit2gtk3.spec ++
--- /var/tmp/diff_new_pack.JGJ5Gv/_old  2016-02-09 13:31:08.0 +0100
+++ /var/tmp/diff_new_pack.JGJ5Gv/_new  2016-02-09 13:31:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package webkit2gtk3
 #
-# 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
@@ -26,7 +26,7 @@
 %define _pkgconfig_suffix gtk-3.0
 %define _name webkitgtk
 Name:   webkit2gtk3
-Version:2.10.4
+Version:2.10.7
 Release:0
 Summary:Library for rendering web content, GTK+ Port
 License:LGPL-2.0+ and BSD-3-Clause

++ webkitgtk-2.10.4.tar.xz -> webkitgtk-2.10.7.tar.xz ++
/work/SRC/openSUSE:Factory/webkit2gtk3/webkitgtk-2.10.4.tar.xz 
/work/SRC/openSUSE:Factory/.webkit2gtk3.new/webkitgtk-2.10.7.tar.xz differ: 
char 26, line 1




commit ghostscript-fonts-grops for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package ghostscript-fonts-grops for 
openSUSE:Factory checked in at 2016-02-09 13:31:35

Comparing /work/SRC/openSUSE:Factory/ghostscript-fonts-grops (Old)
 and  /work/SRC/openSUSE:Factory/.ghostscript-fonts-grops.new (New)


Package is "ghostscript-fonts-grops"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghostscript-fonts-grops/ghostscript-fonts-grops.changes
  2015-11-04 15:32:53.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghostscript-fonts-grops.new/ghostscript-fonts-grops.changes
 2016-02-09 13:31:36.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec 10 16:25:12 UTC 2015 - sch...@suse.de
+
+- Use %requires_eq
+
+---



Other differences:
--
++ ghostscript-fonts-grops.spec ++
--- /var/tmp/diff_new_pack.Khiaew/_old  2016-02-09 13:31:36.0 +0100
+++ /var/tmp/diff_new_pack.Khiaew/_new  2016-02-09 13:31:36.0 +0100
@@ -31,6 +31,7 @@
 BuildRequires:  fontforge
 BuildRequires:  ghostscript
 BuildRequires:  groff-full
+%requires_eqgroff
 
 %description
 A version of PostScript® driver for Groff to support characters outside ISO 
Latin 1 character set.
@@ -38,9 +39,6 @@
 %prep
 
 %build
-%define groff_version  $(readlink %{_datadir}/groff/current)
-%define _use_internal_dependency_generator 0
-%define __find_requires sh -c "echo groff = %{groff_version}; exec 
/usr/lib/rpm/find-requires"a
 %define gs_fonts %{_datadir}/ghostscript/fonts
 %define import_font() ln -s -T "%{gs_fonts}/%1.afm" "%2.afm" && pfbtopfa 
"%{gs_fonts}/%1.pfb" "devps/%1.pfa"
 




commit libfdatetime for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libfdatetime for openSUSE:Factory 
checked in at 2016-02-09 13:31:38

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


Package is "libfdatetime"

Changes:

--- /work/SRC/openSUSE:Factory/libfdatetime/libfdatetime.changes
2015-01-10 23:05:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.libfdatetime.new/libfdatetime.changes   
2016-02-09 13:31:39.0 +0100
@@ -1,0 +2,6 @@
+Wed Jan 27 12:31:00 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20150507
+   * fix in POSIX timestamp for missing sign check
+
+---

Old:

  libfdatetime-alpha-20150104.tar.gz

New:

  libfdatetime-alpha-20150507.tar.gz



Other differences:
--
++ libfdatetime.spec ++
--- /var/tmp/diff_new_pack.CmSsPj/_old  2016-02-09 13:31:40.0 +0100
+++ /var/tmp/diff_new_pack.CmSsPj/_new  2016-02-09 13:31:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libfdatetime
 #
-# Copyright (c) 2015 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
@@ -18,7 +18,7 @@
 
 Name:   libfdatetime
 %define lname  libfdatetime1
-%define timestamp 20150104
+%define timestamp 20150507
 Version:0~%timestamp
 Release:0
 Summary:A library for date and time data types

++ libfdatetime-alpha-20150104.tar.gz -> libfdatetime-alpha-20150507.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfdatetime-20150104/ChangeLog 
new/libfdatetime-20150507/ChangeLog
--- old/libfdatetime-20150104/ChangeLog 2015-01-04 12:14:12.0 +0100
+++ new/libfdatetime-20150507/ChangeLog 2015-05-07 09:18:33.0 +0200
@@ -22,6 +22,9 @@
 HFS date/time
 * implement
 
+20150507
+* fix in POSIX timestamp for missing sign check
+
 20150104
 * 2015 update
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfdatetime-20150104/common/config.h 
new/libfdatetime-20150507/common/config.h
--- old/libfdatetime-20150104/common/config.h   2015-01-04 12:15:33.0 
+0100
+++ new/libfdatetime-20150507/common/config.h   2015-05-07 09:18:55.0 
+0200
@@ -270,7 +270,7 @@
 #define PACKAGE_NAME "libfdatetime"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "libfdatetime 20150104"
+#define PACKAGE_STRING "libfdatetime 20150507"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "libfdatetime"
@@ -279,7 +279,7 @@
 #define PACKAGE_URL ""
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "20150104"
+#define PACKAGE_VERSION "20150507"
 
 /* The size of `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 8
@@ -297,7 +297,7 @@
 /* #undef STRERROR_R_CHAR_P */
 
 /* Version number of package */
-#define VERSION "20150104"
+#define VERSION "20150507"
 
 /* Enable large inode numbers on Mac OS X 10.5.  */
 #ifndef _DARWIN_USE_64_BIT_INODE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfdatetime-20150104/configure 
new/libfdatetime-20150507/configure
--- old/libfdatetime-20150104/configure 2015-01-04 12:23:33.0 +0100
+++ new/libfdatetime-20150507/configure 2015-05-07 09:23:12.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libfdatetime 20150104.
+# Generated by GNU Autoconf 2.69 for libfdatetime 20150507.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='libfdatetime'
 PACKAGE_TARNAME='libfdatetime'
-PACKAGE_VERSION='20150104'
-PACKAGE_STRING='libfdatetime 20150104'
+PACKAGE_VERSION='20150507'
+PACKAGE_STRING='libfdatetime 20150507'
 PACKAGE_BUGREPORT='joachim.m...@gmail.com'
 PACKAGE_URL=''
 
@@ -1383,7 +1383,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 libfdatetime 20150104 to adapt to many kinds of 
systems.
+\`configure' configures libfdatetime 20150507 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1453,7 +1453,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of libfdatetime 20150104:";;
+ short | recursive ) 

commit python-Cython for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package python-Cython for openSUSE:Factory 
checked in at 2016-02-09 13:30:56

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


Package is "python-Cython"

Changes:

--- /work/SRC/openSUSE:Factory/python-Cython/python-Cython.changes  
2015-08-29 20:02:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Cython.new/python-Cython.changes 
2016-02-09 13:30:58.0 +0100
@@ -1,0 +2,161 @@
+Mon Feb  1 10:30:06 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 0.23.4:
+  * Memory leak when calling Python functions in PyPy.
+  * Compilation problem with MSVC in C99-ish mode.
+  * Warning about unused values in a helper macro.
+- update to version 0.23.3:
+  * Invalid C code for some builtin methods. This fixes ticket 856
+again.
+  * Incorrect C code in helper functions for PyLong conversion and
+string decoding. This fixes ticket 863, ticket 864 and ticket
+865. Original patch by Nikolaus Rath.
+  * Large folded or inserted integer constants could use too small C
+integer types and thus trigger a value wrap-around.
+  * The coroutine and generator types of Cython now also register
+directly with the Coroutine and Generator ABCs in the
+backports_abc module if it can be imported. This fixes ticket 870.
+- update to version 0.23.2:
+  * Compiler crash when analysing some optimised expressions.
+  * Coverage plugin was adapted to coverage.py 4.0 beta 2.
+  * C++ destructor calls could fail when '&' operator is overwritten.
+  * Incorrect C literal generation for large integers in compile-time
+evaluated DEF expressions and constant folded expressions.
+  * Byte string constants could end up as Unicode strings when
+originating from compile-time evaluated DEF expressions.
+  * Invalid C code when caching known builtin methods. This fixes
+ticket 860.
+  * ino_t in posix.types was not declared as unsigned.
+  * Declarations in libcpp/memory.pxd were missing operator!(). Patch
+by Leo Razoumov.
+  * Static cdef methods can now be declared in .pxd files.
+- update to version 0.23.1:
+  * Invalid C code for generators. This fixes ticket 858.
+  * Invalid C code for some builtin methods. This fixes ticket 856.
+  * Invalid C code for unused local buffer variables. This fixes
+ticket 154.
+  * Test failures on 32bit systems. This fixes ticket 857.
+  * Code that uses "from xyz import *" and global C struct/union/array
+variables could fail to compile due to missing helper
+functions. This fixes ticket 851.
+  * Misnamed PEP 492 coroutine property cr_yieldfrom renamed to
+cr_await to match CPython.
+  * Missing deallocation code for C++ object attributes in certain
+extension class hierarchies.
+  * Crash when async coroutine was not awaited.
+  * Compiler crash on yield in signature annotations and default
+argument values. Both are forbidden now.
+  * Compiler crash on certain constructs in finally clauses.
+  * Cython failed to build when CPython's pgen is installed.
+- update to version 0.23:
+  * Features added
++ PEP 492 (async/await) was implemented. See
+  https://www.python.org/dev/peps/pep-0492/
++ PEP 448 (Additional Unpacking Generalizations) was
+  implemented. See https://www.python.org/dev/peps/pep-0448/
++ Support for coverage.py 4.0+ can be enabled by adding the plugin
+  "Cython.Coverage" to the ".coveragerc" config file.
++ Annotated HTML source pages can integrate (XML) coverage
+  reports.
++ Tracing is supported in nogil functions/sections and module init
+  code.
++ When generators are used in a Cython module and the module
+  imports the modules "inspect" and/or "asyncio", Cython enables
+  interoperability by patching these modules during the import to
+  recognise Cython's internal generator and coroutine types. This
+  can be disabled by C compiling the module with "-D
+  CYTHON_PATCH_ASYNCIO=0" or "-D CYTHON_PATCH_INSPECT=0"
++ When generators or coroutines are used in a Cython module, their
+  types are registered with the Generator and Coroutine ABCs in
+  the collections or collections.abc stdlib module at import time
+  to enable interoperability with code that needs to detect and
+  process Python generators/coroutines. These ABCs were added in
+  CPython 3.5 and are available for older Python versions through
+  the backports_abc module on PyPI. See
+  https://bugs.python.org/issue24018
++ Adding/subtracting/dividing/modulus and equality comparisons
+  with constant Python floats and small integers are faster.
++ Binary and/or/xor/rshift operations with small constant Python
+  integers are faster.
++ When called on 

commit libfwsi for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libfwsi for openSUSE:Factory checked 
in at 2016-02-09 13:31:45

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


Package is "libfwsi"

Changes:

--- /work/SRC/openSUSE:Factory/libfwsi/libfwsi.changes  2015-01-30 
15:03:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.libfwsi.new/libfwsi.changes 2016-02-09 
13:31:48.0 +0100
@@ -1,0 +2,16 @@
+Tue Dec  1 20:08:40 UTC 2015 - greg.freem...@gmail.com
+
+- update to v0~20150701
+   * bug fix for shared usage
+
+---
+Wed Jul  1 22:29:21 UTC 2015 - greg.freem...@gmail.com
+
+- update to v0~20150614
+   * bug fix for shared usage
+   * changes for shell item being created outside of list
+   * fix for missing libfwsi_notify_set_verbose
+- make pyfwsi provide version info
+- for the python sub-package add a Requires libfwsi
+
+---

Old:

  libfwsi-experimental-20150105.tar.gz

New:

  libfwsi-experimental-20150701.tar.gz



Other differences:
--
++ libfwsi.spec ++
--- /var/tmp/diff_new_pack.iOcHd8/_old  2016-02-09 13:31:49.0 +0100
+++ /var/tmp/diff_new_pack.iOcHd8/_new  2016-02-09 13:31:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libfwsi
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 %define lname  libfwsi1
-%define timestamp 20150105
+%define timestamp 20150701
 Name:   libfwsi
 Version:0~%{timestamp}
 Release:0
@@ -29,16 +29,16 @@
 Source2:Windows_Shell_Item_format.pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
-BuildRequires:  pkgconfig(libcerror) >= 20140105
 BuildRequires:  pkgconfig(libcdata) >= 20140105
-BuildRequires:  pkgconfig(libcnotify)
+BuildRequires:  pkgconfig(libcerror) >= 20140105
 BuildRequires:  pkgconfig(libclocale)
+BuildRequires:  pkgconfig(libcnotify)
+BuildRequires:  pkgconfig(libcstring) >= 20150101
+BuildRequires:  pkgconfig(libcthreads) >= 20130723
 BuildRequires:  pkgconfig(libfdatetime)
 BuildRequires:  pkgconfig(libfguid)
-BuildRequires:  pkgconfig(libuna)
-BuildRequires:  pkgconfig(libcthreads) >= 20130723
-BuildRequires:  pkgconfig(libcstring) >= 20150101
 BuildRequires:  pkgconfig(libfole)
+BuildRequires:  pkgconfig(libuna)
 # not (yet) packaged in OBS
 #BuildRequires:  pkgconfig(libfwps)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -72,8 +72,9 @@
 Summary:Python bindings for libfwsi
 License:LGPL-3.0+
 Group:  Development/Libraries/Python
+Requires:   %{lname} = %{version}
 Requires:   python
-Provides:  pyfwsi
+Provides:   pyfwsi = %{version}
 
 %description -n python-%name
 Python bindings for libfwsi, a library to access Windows Shell Items.

++ libfwsi-experimental-20150105.tar.gz -> 
libfwsi-experimental-20150701.tar.gz ++
 18533 lines of diff (skipped)




commit liblnk for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package liblnk for openSUSE:Factory checked 
in at 2016-02-09 13:31:41

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


Package is "liblnk"

Changes:

--- /work/SRC/openSUSE:Factory/liblnk/liblnk.changes2015-01-30 
15:06:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.liblnk.new/liblnk.changes   2016-02-09 
13:31:42.0 +0100
@@ -1,0 +2,14 @@
+Wed Jan 27 15:38:22 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160107
+   * 2016 update
+   * applied updates
+   * worked on Python 3 support
+ - added support for distributed link tracker functions
+   * worked on Python bindings
+   * worked on tests
+   * worked on setup.py
+   * bug fixes after fuzzing with AFL
+   * Bug fix for handling volume label
+
+---
@@ -11 +24,0 @@
-

Old:

  liblnk-alpha-20150105.tar.gz

New:

  liblnk-alpha-20160107.tar.gz



Other differences:
--
++ liblnk.spec ++
--- /var/tmp/diff_new_pack.nBrjx8/_old  2016-02-09 13:31:43.0 +0100
+++ /var/tmp/diff_new_pack.nBrjx8/_new  2016-02-09 13:31:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package liblnk
 #
-# Copyright (c) 2015 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
@@ -18,7 +18,7 @@
 
 Name:   liblnk
 %define lname  liblnk1
-%define timestamp  20150105
+%define timestamp  20160107
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows Shortcut File (LNK) 
format

++ liblnk-alpha-20150105.tar.gz -> liblnk-alpha-20160107.tar.gz ++
 31879 lines of diff (skipped)




commit yast2-users for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package yast2-users for openSUSE:Factory 
checked in at 2016-02-09 13:31:10

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


Package is "yast2-users"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes  2016-01-16 
11:56:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-users.new/yast2-users.changes 
2016-02-09 13:31:11.0 +0100
@@ -1,0 +2,20 @@
+Thu Feb  4 10:05:57 UTC 2016 - jreidin...@suse.com
+
+- Drop the Receive System Mail checkbox from the installation
+  workflow (FATE#320448)
+- 3.1.44
+
+---
+Fri Jan 29 13:19:20 UTC 2016 - an...@suse.com
+
+- Small visual improvements in the "local user" installation
+  dialog (bsc#893825)
+- 3.1.43
+
+---
+Wed Jan 27 13:36:05 UTC 2016 - an...@suse.com
+
+- Redesign of the installation dialogs (bsc#893825)
+- 3.1.42
+
+---

Old:

  yast2-users-3.1.41.tar.bz2

New:

  yast2-users-3.1.44.tar.bz2



Other differences:
--
++ yast2-users.spec ++
--- /var/tmp/diff_new_pack.P4WBCj/_old  2016-02-09 13:31:12.0 +0100
+++ /var/tmp/diff_new_pack.P4WBCj/_new  2016-02-09 13:31:12.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-users
-Version:3.1.41
+Version:3.1.44
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,6 +37,7 @@
 BuildRequires:  yast2-perl-bindings
 BuildRequires:  yast2-security
 BuildRequires:  yast2-testsuite
+BuildRequires:  rubygem(rspec)
 
 Requires:   cracklib
 Requires:   perl-Digest-SHA1
@@ -58,6 +59,8 @@
 Provides:   yast2-trans-inst-user
 Provides:   yast2-trans-users
 Conflicts:  autoyast2 < 3.1.92
+# older storage uses removed deprecated method, see 
https://github.com/yast/yast-storage/pull/187
+Conflicts:  yast2-storage < 3.1.75
 
 # y2usernote, y2useritem
 Requires:   yast2-perl-bindings >= 2.18.0
@@ -65,8 +68,8 @@
 # this forces using yast2-ldap with orrect LDAP object names (fate#303596)
 Requires:   yast2-ldap >= 3.1.2
 
-# Syslog.ycp
-Requires:   yast2 >= 2.23.7
+# UI::InstallationDialog
+Requires:   yast2 >= 3.1.167
 # cryptsha256, cryptsha516
 Requires:   yast2-core >= 2.21.0
 
@@ -107,6 +110,7 @@
 %{yast_moduledir}/UsersUI.rb
 %{yast_moduledir}/YaPI/*.pm
 %{yast_yncludedir}/users/*
+%{yast_libdir}/users
 %{yast_schemadir}/autoyast/rnc/users.rnc
 #agents:
 %{yast_scrconfdir}/*.scr

++ yast2-users-3.1.41.tar.bz2 -> yast2-users-3.1.44.tar.bz2 ++
 4881 lines of diff (skipped)




commit kdenlive for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package kdenlive for openSUSE:Factory 
checked in at 2016-02-09 13:32:24

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


Package is "kdenlive"

Changes:

--- /work/SRC/openSUSE:Factory/kdenlive/kdenlive.changes2016-01-28 
17:21:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdenlive.new/kdenlive.changes   2016-02-09 
13:32:36.0 +0100
@@ -1,0 +2,5 @@
+Sun Feb  7 01:47:06 UTC 2016 - wba...@tmo.at
+
+- Add BuildRequires: pkgconfig(libv4l2) to fix boo#959174
+
+---



Other differences:
--
++ kdenlive.spec ++
--- /var/tmp/diff_new_pack.ekafFo/_old  2016-02-09 13:32:37.0 +0100
+++ /var/tmp/diff_new_pack.ekafFo/_new  2016-02-09 13:32:37.0 +0100
@@ -34,6 +34,7 @@
 BuildRequires:  pkgconfig(gl)
 BuildRequires:  pkgconfig(glu)
 BuildRequires:  pkgconfig(glew)
+BuildRequires:  pkgconfig(libv4l2)
 BuildRequires:  libmlt-devel
 BuildRequires:  pkgconfig(mlt++) >= %{mlt_version}
 BuildRequires:  pkgconfig(mlt-framework) >= %{mlt_version}




commit libqcow for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libqcow for openSUSE:Factory checked 
in at 2016-02-09 13:32:14

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


Package is "libqcow"

Changes:

--- /work/SRC/openSUSE:Factory/libqcow/libqcow.changes  2015-01-30 
15:04:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqcow.new/libqcow.changes 2016-02-09 
13:32:15.0 +0100
@@ -1,0 +2,11 @@
+Wed Jan 27 22:52:05 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160123
+   * worked on fallback inflate implementation
+   * Changes to Python bindings
+   * fixes for rpmbuild
+   * 2016 update
+   * Changes to Python bindings
+   * worked on tests
+
+---

Old:

  libqcow-alpha-20150105.tar.gz

New:

  libqcow-alpha-20160123.tar.gz



Other differences:
--
++ libqcow.spec ++
--- /var/tmp/diff_new_pack.4anfnt/_old  2016-02-09 13:32:16.0 +0100
+++ /var/tmp/diff_new_pack.4anfnt/_new  2016-02-09 13:32:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqcow
 #
-# Copyright (c) 2015 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 @@
 
 
 %define lname  libqcow1
-%define timestamp 20150105
+%define timestamp 20160123
 Name:   libqcow
 Version:0~%{timestamp}
 Release:0

++ libqcow-alpha-20150105.tar.gz -> libqcow-alpha-20160123.tar.gz ++
 36637 lines of diff (skipped)




commit libevt for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libevt for openSUSE:Factory checked 
in at 2016-02-09 13:32:08

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


Package is "libevt"

Changes:

--- /work/SRC/openSUSE:Factory/libevt/libevt.changes2015-01-30 
15:02:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevt.new/libevt.changes   2016-02-09 
13:32:10.0 +0100
@@ -1,0 +2,15 @@
+Wed Jan 27 23:12:04 UTC 2016 - greg.freem...@gmail.com
+
+- update to 0~20160107
+   * 2016 update
+   * worked on Python 3 support
+   * applied updates
+   * updated libfwnt
+   * worked on Python bindings
+   * worked on tests
+   * worked on setup.py
+   * worked on check signature
+   * bug fixes
+- use internal versions of libcerror, libfvalue, and libfwnt 
+
+---

Old:

  libevt-alpha-20150105.tar.gz

New:

  libevt-alpha-20160107.tar.gz



Other differences:
--
++ libevt.spec ++
--- /var/tmp/diff_new_pack.XaXXdO/_old  2016-02-09 13:32:11.0 +0100
+++ /var/tmp/diff_new_pack.XaXXdO/_new  2016-02-09 13:32:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libevt
 #
-# Copyright (c) 2015 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
@@ -18,7 +18,7 @@
 
 Name:   libevt
 %define lname  libevt1
-%define timestamp  20150105
+%define timestamp  20160107
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows Event Log (EVT) format
@@ -31,29 +31,32 @@
 BuildRequires:  python-devel
 BuildRequires:  pkgconfig(libbfio) >= 20120426
 BuildRequires:  pkgconfig(libcdata) >= 20120425
+BuildRequires:  pkgconfig(libcdirectory) >= 20120423
 BuildRequires:  pkgconfig(libcfile) >= 20120526
 BuildRequires:  pkgconfig(libclocale) >= 20120425
 BuildRequires:  pkgconfig(libcnotify) >= 20120425
 BuildRequires:  pkgconfig(libcpath) >= 20120701
 BuildRequires:  pkgconfig(libcsplit) >= 20120701
+BuildRequires:  pkgconfig(libcsystem) >= 20120425
 BuildRequires:  pkgconfig(libcthreads) >= 20130723
+BuildRequires:  pkgconfig(libexe) >= 20120405
+BuildRequires:  pkgconfig(libfcache) >= 20120405
+BuildRequires:  pkgconfig(libfdata) >= 20120405
 BuildRequires:  pkgconfig(libfdatetime) >= 20120522
 BuildRequires:  pkgconfig(libfguid) >= 20120426
+BuildRequires:  pkgconfig(libfwevt) >= 20160103
 BuildRequires:  pkgconfig(libregf) >= 20120405
 BuildRequires:  pkgconfig(libuna) >= 20120425
 BuildRequires:  pkgconfig(libwrc) >= 20120405
-BuildRequires:  pkgconfig(libcerror) >= 20130904
-BuildRequires:  pkgconfig(libcdirectory) >= 20120423
-BuildRequires:  pkgconfig(libcsystem) >= 20120425
-BuildRequires:  pkgconfig(libexe) >= 20120405
-BuildRequires:  pkgconfig(libfcache) >= 20120405
-BuildRequires:  pkgconfig(libfdata) >= 20120405
-BuildRequires:  pkgconfig(libfvalue) >= 20120428
-BuildRequires:  pkgconfig(libfwevt) >= 20120426
-BuildRequires:  pkgconfig(libfwnt) >= 20120426
+
+#plaso/run_tests.py fails with this external package
+#verified 2.1.2016
+#BuildRequires:  pkgconfig(libfvalue) >= 20151226
+#BuildRequires:  pkgconfig(libfwnt) >= 20151206
 # build fails with version in factory, use internal version
-#verified 1.12.2015
-#BuildRequires:  pkgconfig(libcstring) >= 20120425
+#verified 2.1.2016
+#BuildRequires:  pkgconfig(libcstring) >= 20150101
+#BuildRequires:  pkgconfig(libcerror) >= 20150407
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ libevt-alpha-20150105.tar.gz -> libevt-alpha-20160107.tar.gz ++
 38473 lines of diff (skipped)




commit abootimg for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package abootimg for openSUSE:Factory 
checked in at 2016-02-09 13:32:31

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


Package is "abootimg"

Changes:

--- /work/SRC/openSUSE:Factory/abootimg/abootimg.changes2012-09-20 
14:55:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.abootimg.new/abootimg.changes   2016-02-09 
13:33:06.0 +0100
@@ -1,0 +2,6 @@
+Sat Feb  6 11:38:12 UTC 2016 - mplus...@suse.com
+
+- Use optflags when building
+- Cleanup spec file with spec-cleaner
+
+---



Other differences:
--
++ abootimg.spec ++
--- /var/tmp/diff_new_pack.2QtgVs/_old  2016-02-09 13:33:07.0 +0100
+++ /var/tmp/diff_new_pack.2QtgVs/_new  2016-02-09 13:33:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package abootimg
 #
-# 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
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   abootimg
 Version:0.6
 Release:0
@@ -35,20 +36,20 @@
 
 %build
 # First make clean as a binary already exists in the tarball
-make clean
-make %{?_smp_mflags}
+make %{?_smp_mflags} clean
+make %{?_smp_mflags} CFLAGS="%{optflags}"
 
 %install
-install -m 755 -d %{buildroot}/%{_bindir}
-install -m 755 abootimg %{buildroot}/%{_bindir}
-install -m 755 abootimg-unpack-initrd %{buildroot}/%{_bindir}
-install -m 755 abootimg-pack-initrd %{buildroot}/%{_bindir}
-install -m 755 -d %{buildroot}/%{_mandir}/man1
-cat debian/abootimg.1 | gzip -9 > %{buildroot}/%{_mandir}/man1/abootimg.1.gz
+install -D -m 0755 abootimg %{buildroot}/%{_bindir}/abootimg
+install -D -m 0755 abootimg-unpack-initrd 
%{buildroot}/%{_bindir}/abootimg-unpack-initrd
+install -D -m 0755 abootimg-pack-initrd 
%{buildroot}/%{_bindir}/abootimg-pack-initrd
+install -D -m 0644 debian/abootimg.1 %{buildroot}/%{_mandir}/man1/abootimg.1
 
 %files
 %defattr(-,root,root)
-%{_bindir}/*
-%{_mandir}/man1/*
+%{_bindir}/abootimg
+%{_bindir}/abootimg-pack-initrd
+%{_bindir}/abootimg-unpack-initrd
+%{_mandir}/man1/abootimg.1%{ext_man}
 
 %changelog




commit perl-XML-XPath for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-XPath for openSUSE:Factory 
checked in at 2016-02-09 13:31:24

Comparing /work/SRC/openSUSE:Factory/perl-XML-XPath (Old)
 and  /work/SRC/openSUSE:Factory/.perl-XML-XPath.new (New)


Package is "perl-XML-XPath"

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-XPath/perl-XML-XPath.changes
2016-01-23 01:15:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-XML-XPath.new/perl-XML-XPath.changes   
2016-02-09 13:31:26.0 +0100
@@ -1,0 +2,35 @@
+Sun Feb  7 10:57:01 UTC 2016 - co...@suse.com
+
+- updated to 1.30
+   see /usr/share/doc/packages/perl-XML-XPath/Changes
+
+  1.30  2016-02-04 MANWAR
+- Fixed issue RT #15902 (Quoting warnings with translate).
+- Fixed issue RT #21154 (translate() function does not remove 
characters or support -)
+  
+  1.29  2016-02-03 MANWAR
+- Fixed issue RT# 26144 (createNode doesn't honor position() 
predicate).
+  
+  1.28  2016-01-31 MANWAR
+- Changed the LICENSE information about the package 
XML::XPath::PerlSAX as per
+  Matt Sergeant email response (dated 2016-01-30).
+  
+  1.27  2016-01-30 MANWAR
+- Fixed issue RT# 32012 (Debian bug #187583, 
http://bugs.debian.org/187583).
+
+---
+Wed Jan 27 10:53:13 UTC 2016 - co...@suse.com
+
+- updated to 1.26
+   see /usr/share/doc/packages/perl-XML-XPath/Changes
+
+  1.26  2016-01-25 MANWAR
+- Fixed inconsistent version issue (CPANTS).
+- Added key 'provides' to the Makefile.PL script.
+- Added unit test scripts t/meta-json.t and t/meta-yml.t
+  
+  1.25  2016-01-20 MANWAR
+- Merged in GitHub PR #2, thanks to sdeseille.
+- Merged t/45overloading_number_operator.t and t/99rt_11724.t into 
t/45cmp_nodeset.t
+
+---

Old:

  XML-XPath-1.24.tar.gz

New:

  XML-XPath-1.30.tar.gz



Other differences:
--
++ perl-XML-XPath.spec ++
--- /var/tmp/diff_new_pack.UK5fsn/_old  2016-02-09 13:31:26.0 +0100
+++ /var/tmp/diff_new_pack.UK5fsn/_new  2016-02-09 13:31:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-XML-XPath
-Version:1.24
+Version:1.30
 Release:0
 %define cpan_name XML-XPath
 Summary:Parse and evaluate XPath statements
@@ -30,6 +30,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Path::Tiny) >= 0.076
 BuildRequires:  perl(XML::Parser) >= 2.23
 Requires:   perl(XML::Parser) >= 2.23
 %{perl_requires}

++ XML-XPath-1.24.tar.gz -> XML-XPath-1.30.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-XPath-1.24/Changes new/XML-XPath-1.30/Changes
--- old/XML-XPath-1.24/Changes  2016-01-19 12:29:56.0 +0100
+++ new/XML-XPath-1.30/Changes  2016-02-04 15:05:15.0 +0100
@@ -1,5 +1,28 @@
 Revision history for XML::XPath
 
+1.30  2016-02-04 MANWAR
+  - Fixed issue RT #15902 (Quoting warnings with translate).
+  - Fixed issue RT #21154 (translate() function does not remove characters 
or support -)
+
+1.29  2016-02-03 MANWAR
+  - Fixed issue RT# 26144 (createNode doesn't honor position() predicate).
+
+1.28  2016-01-31 MANWAR
+  - Changed the LICENSE information about the package XML::XPath::PerlSAX 
as per
+Matt Sergeant email response (dated 2016-01-30).
+
+1.27  2016-01-30 MANWAR
+  - Fixed issue RT# 32012 (Debian bug #187583, 
http://bugs.debian.org/187583).
+
+1.26  2016-01-25 MANWAR
+  - Fixed inconsistent version issue (CPANTS).
+  - Added key 'provides' to the Makefile.PL script.
+  - Added unit test scripts t/meta-json.t and t/meta-yml.t
+
+1.25  2016-01-20 MANWAR
+  - Merged in GitHub PR #2, thanks to sdeseille.
+  - Merged t/45overloading_number_operator.t and t/99rt_11724.t into 
t/45cmp_nodeset.t
+
 1.24  2016-01-19 MANWAR
   - Fixed issue RT# 111278 (XML::XPath::PerlSAX doesn't compile).
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-XPath-1.24/MANIFEST new/XML-XPath-1.30/MANIFEST
--- old/XML-XPath-1.24/MANIFEST 2016-01-19 12:30:34.0 +0100
+++ new/XML-XPath-1.30/MANIFEST 2016-02-04 15:13:30.0 +0100
@@ -73,10 +73,16 @@
 t/42create_node.t
 t/43op_div.t
 t/44test_compare.t
+t/45cmp_nodeset.t
+t/46context.t
+t/47position.t
+t/48translate.t
 t/rdf.t
 t/remove.t
 t/insert.t
 t/stress.t
+t/meta-json.t
+t/meta-yml.t
 examples/test.xml
 examples/xpath
 META.yml Module YAML meta-data (added by 
MakeMaker)
diff -urN 

commit yast2-storage for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2016-02-09 13:31:14

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


Package is "yast2-storage"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2015-12-27 01:58:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2016-02-09 13:31:15.0 +0100
@@ -0,0 +1,15 @@
+---
+Thu Feb  5 10:21:35 UTC 2016 - an...@suse.com
+
+- Fixed expert partioner to only offer the option to enable Btrfs
+  snapshots for the root (/) filesystem (bsc#944252)
+- Fixed expert partitioner to not forget fstab options when dealing
+  with Btrfs partitions (bsc#954691)
+- 3.1.75
+
+
+Thu Feb  4 11:45:44 UTC 2016 - jreidin...@suse.com
+
+- Simplify encrypted home proposal as installer no longer allows
+  network based user authentication (FATE#314695)
+

Old:

  yast2-storage-3.1.74.tar.bz2

New:

  yast2-storage-3.1.75.tar.bz2



Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.x4l5e8/_old  2016-02-09 13:31:16.0 +0100
+++ /var/tmp/diff_new_pack.x4l5e8/_new  2016-02-09 13:31:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-storage
 #
-# 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,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.74
+Version:3.1.75
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-storage-3.1.74.tar.bz2 -> yast2-storage-3.1.75.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.74/package/yast2-storage.changes 
new/yast2-storage-3.1.75/package/yast2-storage.changes
--- old/yast2-storage-3.1.74/package/yast2-storage.changes  2015-12-22 
14:58:11.0 +0100
+++ new/yast2-storage-3.1.75/package/yast2-storage.changes  2016-02-05 
11:13:09.0 +0100
@@ -1,3 +1,18 @@
+---
+Thu Feb  5 10:21:35 UTC 2016 - an...@suse.com
+
+- Fixed expert partioner to only offer the option to enable Btrfs
+  snapshots for the root (/) filesystem (bsc#944252)
+- Fixed expert partitioner to not forget fstab options when dealing
+  with Btrfs partitions (bsc#954691)
+- 3.1.75
+
+
+Thu Feb  4 11:45:44 UTC 2016 - jreidin...@suse.com
+
+- Simplify encrypted home proposal as installer no longer allows
+  network based user authentication (FATE#314695)
+
 
 Wed Dec 17 15:15:29 UTC 2015 - usha...@linux.com
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.74/package/yast2-storage.spec 
new/yast2-storage-3.1.75/package/yast2-storage.spec
--- old/yast2-storage-3.1.74/package/yast2-storage.spec 2015-12-22 
14:58:11.0 +0100
+++ new/yast2-storage-3.1.75/package/yast2-storage.spec 2016-02-05 
11:13:09.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.74
+Version:3.1.75
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.1.74/src/clients/partitions_proposal.rb 
new/yast2-storage-3.1.75/src/clients/partitions_proposal.rb
--- old/yast2-storage-3.1.74/src/clients/partitions_proposal.rb 2015-12-22 
14:58:11.0 +0100
+++ new/yast2-storage-3.1.75/src/clients/partitions_proposal.rb 2016-02-05 
11:13:09.0 +0100
@@ -232,12 +232,6 @@
   if !Builtins.isempty(part) && !Ops.get_boolean(part, "format", false)
 Builtins.y2milestone("/home partition will not be formatted")
 
-Yast.import "UsersSimple"
-if UsersSimple.AfterAuth != "users"
-  Builtins.y2milestone("non-local user authentication")
-  return true
-end
-
 device = Ops.get_string(part, "device", "")
 resize_info = {}
 content_info = {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.1.74/src/include/partitioning/custom_part_dialogs.rb 

commit perl-Test-Warnings for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Warnings for 
openSUSE:Factory checked in at 2016-02-09 13:30:22

Comparing /work/SRC/openSUSE:Factory/perl-Test-Warnings (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Warnings.new (New)


Package is "perl-Test-Warnings"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Warnings/perl-Test-Warnings.changes
2016-01-04 09:20:20.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Warnings.new/perl-Test-Warnings.changes   
2016-02-09 13:30:23.0 +0100
@@ -1,0 +2,23 @@
+Wed Jan 27 10:43:06 UTC 2016 - co...@suse.com
+
+- updated to 0.026
+   see /usr/share/doc/packages/perl-Test-Warnings/Changes
+
+  0.026 2016-01-27 03:13:25Z
+- fixed use of modules loaded by t/zzz-check-breaks.t
+- fix stderr suppression on perl 5.6
+
+---
+Tue Jan 26 11:01:02 UTC 2016 - co...@suse.com
+
+- updated to 0.025
+   see /usr/share/doc/packages/perl-Test-Warnings/Changes
+
+  0.025 2016-01-24 02:59:28Z
+- prereqs lowered from required to suggested:
+  - CPAN::Meta::Check
+  - CPAN::Meta::Requirements
+- tests are now quieter to avoid causing confusion, by suppressing
+  the printing of stderr in tests
+
+---

Old:

  Test-Warnings-0.024.tar.gz

New:

  Test-Warnings-0.026.tar.gz



Other differences:
--
++ perl-Test-Warnings.spec ++
--- /var/tmp/diff_new_pack.Qe65yO/_old  2016-02-09 13:30:23.0 +0100
+++ /var/tmp/diff_new_pack.Qe65yO/_new  2016-02-09 13:30:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Warnings
 #
-# 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,7 +17,7 @@
 
 
 Name:   perl-Test-Warnings
-Version:0.024
+Version:0.026
 Release:0
 %define cpan_name Test-Warnings
 Summary:Test for warnings and the lack of them
@@ -30,8 +30,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(CPAN::Meta::Check) >= 0.011
-BuildRequires:  perl(CPAN::Meta::Requirements)
 BuildRequires:  perl(Test::More) >= 0.94
 BuildRequires:  perl(parent)
 Requires:   perl(parent)

++ Test-Warnings-0.024.tar.gz -> Test-Warnings-0.026.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Warnings-0.024/Changes 
new/Test-Warnings-0.026/Changes
--- old/Test-Warnings-0.024/Changes 2015-12-24 19:44:36.0 +0100
+++ new/Test-Warnings-0.026/Changes 2016-01-27 04:13:30.0 +0100
@@ -1,5 +1,16 @@
 Revision history for Test-Warnings
 
+0.026 2016-01-27 03:13:25Z
+  - fixed use of modules loaded by t/zzz-check-breaks.t
+  - fix stderr suppression on perl 5.6
+
+0.025 2016-01-24 02:59:28Z
+  - prereqs lowered from required to suggested:
+- CPAN::Meta::Check
+- CPAN::Meta::Requirements
+  - tests are now quieter to avoid causing confusion, by suppressing
+the printing of stderr in tests
+
 0.024 2015-12-24 18:44:29Z
   - remove diagnostics accidentally left in new test
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Warnings-0.024/MANIFEST 
new/Test-Warnings-0.026/MANIFEST
--- old/Test-Warnings-0.024/MANIFEST2015-12-24 19:44:36.0 +0100
+++ new/Test-Warnings-0.026/MANIFEST2016-01-27 04:13:30.0 +0100
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.042.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.043.
 CONTRIBUTING
 Changes
 INSTALL
@@ -41,6 +41,7 @@
 t/18-propagate-subname-package.t
 t/19-propagate-nonexistent-subname.t
 t/20-propagate-stub.t
+t/lib/SilenceStderr.pm
 t/zzz-check-breaks.t
 xt/author/00-compile.t
 xt/author/clean-namespaces.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Warnings-0.024/META.json 
new/Test-Warnings-0.026/META.json
--- old/Test-Warnings-0.024/META.json   2015-12-24 19:44:36.0 +0100
+++ new/Test-Warnings-0.026/META.json   2016-01-27 04:13:30.0 +0100
@@ -4,7 +4,7 @@
   "Karen Etheridge "
],
"dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 5.042, 

commit squashfs for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package squashfs for openSUSE:Factory 
checked in at 2016-02-09 13:30:12

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


Package is "squashfs"

Changes:

--- /work/SRC/openSUSE:Factory/squashfs/squashfs.changes2015-11-08 
14:35:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.squashfs.new/squashfs.changes   2016-02-09 
13:30:13.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 21 16:45:45 UTC 2016 - dmuel...@suse.com
+
+- fix build for SLE12 and older
+
+---



Other differences:
--
++ squashfs.spec ++
--- /var/tmp/diff_new_pack.hlUQE8/_old  2016-02-09 13:30:13.0 +0100
+++ /var/tmp/diff_new_pack.hlUQE8/_new  2016-02-09 13:30:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package squashfs
 #
-# 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
@@ -29,7 +29,9 @@
 Patch1: 0001-mksquashfs-fix-rare-race-in-fragment-waiting-in-file.patch
 # PATCH-FIX-UPSTREAM 0002-Fix-2GB-limit-of-the-is_fragment-.-function.patch 
boo#953723
 Patch2: 0002-Fix-2GB-limit-of-the-is_fragment-.-function.patch
+%if %{?suse_version} > 1315
 BuildRequires:  liblz4-devel
+%endif
 BuildRequires:  lzma-devel
 BuildRequires:  lzo-devel
 BuildRequires:  zlib-devel
@@ -48,7 +50,10 @@
 
 %build
 sed -i -e "s,-O2,%{optflags}," squashfs-tools/Makefile
-make %{?_smp_mflags} -C squashfs-tools XZ_SUPPORT=1 LZO_SUPPORT=1 LZ4_SUPPORT=1
+make %{?_smp_mflags} -C squashfs-tools XZ_SUPPORT=1 LZO_SUPPORT=1 \
+%if %{?suse_version} > 1315
+   LZ4_SUPPORT=1
+%endif
 
 %install
 mkdir -p %{buildroot}%{_bindir}




commit yast2-theme for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package yast2-theme for openSUSE:Factory 
checked in at 2016-02-09 13:30:17

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


Package is "yast2-theme"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-theme/yast2-theme-SLE.changes  
2015-10-25 15:10:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme-SLE.changes 
2016-02-09 13:30:18.0 +0100
@@ -1,0 +2,7 @@
+Thu Jan 28 17:06:29 UTC 2016 - alarr...@suse.com
+
+- add yast-modem icon which is needed by the Communication package group
+  in the Yast2's software manager (bnc#953027)
+- 3.1.36
+
+---

Old:

  yast2-theme-3.1.35.tar.bz2

New:

  yast2-theme-3.1.36.tar.bz2



Other differences:
--
++ yast2-theme-SLE.spec ++
--- /var/tmp/diff_new_pack.bVKcBc/_old  2016-02-09 13:30:19.0 +0100
+++ /var/tmp/diff_new_pack.bVKcBc/_new  2016-02-09 13:30:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-theme-SLE
 #
-# 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,7 +17,7 @@
 
 
 Name:   yast2-theme-SLE
-Version:3.1.35
+Version:3.1.36
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

yast2-theme.spec: same change
++ yast2-theme-3.1.35.tar.bz2 -> yast2-theme-3.1.36.tar.bz2 ++
/work/SRC/openSUSE:Factory/yast2-theme/yast2-theme-3.1.35.tar.bz2 
/work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme-3.1.36.tar.bz2 differ: 
char 11, line 1




commit kiwi for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2016-02-09 16:48:59

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


Package is "kiwi"

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2016-01-28 
17:18:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2016-02-09 
16:49:01.0 +0100
@@ -1,0 +2,117 @@
+Fri Feb  5 16:02:19 CET 2016 - m...@suse.de
+
+- v7.03.53 released
+  
+---
+Fri Feb  5 16:00:16 CET 2016 - m...@suse.de
+  
+- Fixed disk bundler for install stick target
+  
+  The bundler looked up the wrong extension. This fixes #542
+  
+---
+Fri Feb  5 15:43:12 CET 2016 - m...@suse.de
+  
+- Preserve package cache only if it exists
+  
+---
+Fri Feb  5 09:56:08 CET 2016 - m...@suse.de
+  
+- v7.03.52 released
+  
+---
+Fri Feb  5 09:44:31 CET 2016 - m...@suse.de
+  
+- Fixed use of noglob shell option
+  
+---
+Wed Feb  3 15:55:40 CET 2016 - m...@suse.de
+  
+- v7.03.51 released
+  
+---
+Wed Feb  3 12:27:11 CET 2016 - m...@suse.de
+  
+- Fixed updateRootDeviceFstab
+  
+  Support by-label mount entries for btrfs subvolumes
+  This fixes bnc#964474
+  
+---
+Tue Feb  2 16:33:03 CET 2016 - m...@suse.de
+  
+- Don't add kernel filesystems to fstab
+  
+  Systems with systemd which this kiwi version aims for, doesn't
+  need proc, sysfs, debugfs and friends to be part of the fstab
+  This fixes bnc#964472
+  
+---
+Mon Feb  1 09:02:57 CET 2016 - m...@suse.de
+  
+- Update rhel6 template
+  
+  Added Vagrantfile to build via dice
+  
+---
+Mon Feb  1 09:02:23 CET 2016 - m...@suse.de
+  
+- Update rhel6 template
+  
+  delete unused oracle linux build target
+  
+---
+Fri Jan 29 13:43:57 CET 2016 - m...@suse.de
+  
+- v7.03.50 released
+  
+---
+Wed Jan 27 16:16:35 CET 2016 - m...@suse.de
+  
+- Allow system to be installed on btrfs snapshot
+  
+  This fixes (bnc#946648)
+  
+---
+Wed Jan 27 15:15:54 CET 2016 - m...@suse.de
+  
+- Put kiwi_btrfs_root_is_snapshot to boot profile
+  
+  This is related to (bnc#946648)
+  
+---
+Wed Jan 27 14:57:07 CET 2016 - m...@suse.de
+  
+- Evaluate kiwi_btrfs_root_is_snapshot in boot code
+  
+  If set it's required to mount the subvolumes like it is
+  done with lvm volumes. In addition this patch fixes the
+  update of the fstab file which has to contain an entry
+  for each subvolume excluding snapshots and the toplevel
+  This is related to (bnc#946648)
+  
+---
+Wed Jan 27 14:46:19 CET 2016 - m...@suse.de
+  
+- Added get/set(er) for btrfs_root_is_snapshot attr
+  
+  This is related to (bnc#946648)
+  
+---
+Wed Jan 27 14:40:42 CET 2016 - m...@suse.de
+  
+- Added btrfs_root_is_snapshot attribute
+  
+  This is related to (bnc#946648)
+  
+---
+Wed Jan 20 12:16:46 CET 2016 - m...@suse.de
+  
+- Fixed pxe type setup for s390 SLE12-community-JeOS
+  
+---
+Wed Jan 20 12:01:47 CET 2016 - m...@suse.de
+  
+- Added util-linux to SLE12-community-JeOS for s390
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.YqHHrK/_old  2016-02-09 16:49:03.0 +0100
+++ /var/tmp/diff_new_pack.YqHHrK/_new  2016-02-09 16:49:03.0 +0100
@@ -27,7 +27,7 @@
 Name:   kiwi
 License:GPL-2.0
 Group:  System/Management
-Version:7.03.49
+Version:7.03.53
 Provides:   kiwi-schema = 6.2
 Provides:   kiwi-image:aci
 Provides:   kiwi-image:lxc

++ kiwi-docu.tar.bz2 ++

++ kiwi-repo.tar.bz2 ++

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit dtb-source for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package dtb-source for openSUSE:Factory 
checked in at 2016-02-09 16:49:39

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


Package is "dtb-source"

Changes:

--- /work/SRC/openSUSE:Factory/dtb-source/dtb-aarch64.changes   2016-01-05 
21:54:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.dtb-source.new/dtb-aarch64.changes  
2016-02-09 16:50:06.0 +0100
@@ -1,0 +2,35 @@
+Mon Feb  8 15:06:25 UTC 2016 - dmuel...@suse.com
+
+- fix build for non-ARM architectures
+- remove builddeps from dtb-source package
+
+---
+Sun Jan 31 13:10:10 UTC 2016 - dmuel...@suse.com
+
+- add dtb-bcm2836 (RPi2 upstream version)
+
+---
+Fri Jan 22 00:34:58 UTC 2016 - stefan.bru...@rwth-aachen.de
+
+- Do not copy kernel source but build out-of-tree
+
+---
+Wed Jan 20 18:59:08 UTC 2016 - afaer...@suse.de
+
+- Re-enable meson8b, new in kernel 4.4
+
+---
+Fri Jan 15 16:03:34 UTC 2016 - stefan.bru...@rwth-aachen.de
+
+- Change summary/description for bcm2835 from RPi B to RPi 1, to
+  distinguish between RPi 2 B and RPi B (original version). Also
+  list models (A+, B, B+) to make it easier to find the right
+  package.
+  Support for A+ and B+ is new in Kernel 4.4.0
+
+---
+Wed Jan 13 15:59:26 UTC 2016 - ag...@suse.com
+
+- Add dtb-hisilicon64 package for 64bit hisilicon SoCs
+
+---
dtb-armv6l.changes: same change
dtb-armv7l.changes: same change
dtb-source.changes: same change



Other differences:
--
++ dtb-aarch64.spec ++
--- /var/tmp/diff_new_pack.x8GZJa/_old  2016-02-09 16:50:07.0 +0100
+++ /var/tmp/diff_new_pack.x8GZJa/_new  2016-02-09 16:50:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dtb-aarch64
 #
-# 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,25 +16,25 @@
 #
 
 
-Name:   dtb-aarch64
-BuildRequires:  kernel-source
 %define kernel_version %(rpm -q --qf "%{VERSION}" kernel-source | grep -v "is 
not")
 %define kernel_release %(rpm -q --qf "%{RELEASE}" kernel-source | grep -v "is 
not" | cut -d. -f 1)
-Version:%kernel_version
+Name:   dtb-aarch64
+Version:%{kernel_version}
 Release:0
 Summary:Device Tree files for $MACHINES
 License:GPL-2.0
 Group:  System/Boot
 Url:http://www.kernel.org/
+BuildRequires:  kernel-source
+ExclusiveArch:  aarch64
 %if "dtb-aarch64" == "dtb-source"
 Source99:   pre_checkin.pl
-%endif
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   kernel = %kernel_version
+%else
 BuildRequires:  cpp
 BuildRequires:  dtc >= 1.4.0
 BuildRequires:  xz
-ExclusiveArch:  aarch64
+Requires:   kernel = %{kernel_version}
+%endif
 
 %description
 Device Tree files for $MACHINES.
@@ -75,28 +75,45 @@
 %description -n dtb-rtsm_ve-aemv8a
 Device Tree Files for RTSM VE AEMv8A board (compatible with Vexpress64).
 
+%package -n dtb-hisilicon64
+Summary:HiSilicon based arm64 systems
+Group:  System/Boot
+Provides:   multiversion(dtb)
+Requires(post): coreutils
+
+%description -n dtb-hisilicon64
+Device Tree Files for HiSilicon based arm64 systems.
+
 
 
 %prep
 
 %build
-cp /usr/src/linux/COPYING .
-cp -r /usr/src/linux/ .
-chmod -R ug+rw linux
+cp %{_prefix}/src/linux/COPYING .
+%if "dtb-aarch64" != "dtb-source"
+mkdir pp
+PPDIR=`pwd`/pp
+export DTC_FLAGS="-R 4 -p 0x1000"
+
+cd %{_prefix}/src/linux/arch/arm64/boot/dts
+for dts in apm/apm-mustang.dts cavium/thunder-88xx.dts arm/foundation-v8.dts 
arm/rtsm_ve-aemv8a.dts hisilicon/*.dts ; do
+   target=${dts%*.dts}
+   mkdir -p $PPDIR/$(dirname $target)
+   cpp -x assembler-with-cpp -undef -D__DTS__ -nostdinc -I. -I./include/ 
-P $target.dts -o $PPDIR/$target.dts
+   dtc $DTC_FLAGS -I dts -O dtb -i ./$(dirname $target) -o 
$PPDIR/$target.dtb $PPDIR/$target.dts
+done
+%endif
 
 %define dtbdir /boot/dtb-%{kernel_version}-%{kernel_release}
 
 %install
 %if "dtb-aarch64" != "dtb-source"
-export DTC_FLAGS="-R 4 -p 0x1000"
-mkdir -p %{buildroot}%{dtbdir}
 
-cd linux/arch/arm64/boot/dts
-for dts in apm/apm-mustang.dts cavium/thunder-88xx.dts 

commit libreoffice for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libreoffice for openSUSE:Factory 
checked in at 2016-02-09 16:49:29

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


Package is "libreoffice"

Changes:

--- /work/SRC/openSUSE:Factory/libreoffice/libreoffice.changes  2016-01-23 
01:15:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.libreoffice.new/libreoffice.changes 
2016-02-09 16:49:42.0 +0100
@@ -1,0 +2,24 @@
+Sat Feb  6 12:54:39 UTC 2016 - tchva...@suse.com
+
+- Un-split the gtk3 from separate module 5.1 should be stable enough
+
+---
+Sat Feb  6 12:45:55 UTC 2016 - tchva...@suse.com
+
+- Do not install the appdata xml files twice bnc#965294
+
+---
+Fri Jan 29 13:00:44 UTC 2016 - tchva...@suse.com
+
+- Version update to 5.1.0.3:
+  * Various small fixes on road to final tag
+  * Update internal tarballs for sle11 build
+
+---
+Thu Jan 21 14:02:08 UTC 2016 - tchva...@suse.com
+
+- Fix requires on libmysqlclient_r18 on SLE11
+- Fix a bug on es provides with en-GB
+- Provide l10n-pt from pt-PT
+
+---

Old:

  libcdr-0.1.1.tar.bz2
  libetonyek-0.1.5.tar.bz2
  libodfgen-0.1.5.tar.bz2
  libreoffice-5.1.0.2.tar.xz
  libreoffice-help-5.1.0.2.tar.xz
  libreoffice-translations-5.1.0.2.tar.xz
  librevenge-0.0.2.tar.bz2
  libvisio-0.1.3.tar.bz2
  libwpd-0.10.0.tar.bz2
  libwpg-0.3.0.tar.bz2

New:

  libcdr-0.1.2.tar.bz2
  libetonyek-0.1.6.tar.bz2
  libodfgen-0.1.6.tar.bz2
  libreoffice-5.1.0.3.tar.xz
  libreoffice-help-5.1.0.3.tar.xz
  libreoffice-translations-5.1.0.3.tar.xz
  librevenge-0.0.4.tar.bz2
  libvisio-0.1.5.tar.bz2
  libwpd-0.10.1.tar.bz2
  libwpg-0.3.1.tar.bz2



Other differences:
--
++ libreoffice.spec ++
--- /var/tmp/diff_new_pack.WhcDeZ/_old  2016-02-09 16:49:59.0 +0100
+++ /var/tmp/diff_new_pack.WhcDeZ/_new  2016-02-09 16:49:59.0 +0100
@@ -64,7 +64,7 @@
 %endif
 # This is used due to the need for beta releases
 Name:   libreoffice
-Version:5.1.0.2
+Version:5.1.0.3
 Release:0
 Summary:A Free Office Suite (Framework)
 License:Apache-2.0 and Artistic-1.0 and BSD-3-Clause and BSD-4-Clause 
and GPL-2.0+ and LPPL-1.3c and LGPL-2.1+ and LGPL-3.0 and MPL-1.1 and MIT and 
SUSE-Public-Domain and W3C
@@ -99,20 +99,20 @@
 Source2005: 
%{external_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
 # Bundled sources for without-system-libs build
 Source2006: 
%{external_url}/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz
-Source2007: %{external_url}/librevenge-0.0.2.tar.bz2
+Source2007: %{external_url}/librevenge-0.0.4.tar.bz2
 Source2008: 
%{external_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-Source2009: %{external_url}/libetonyek-0.1.5.tar.bz2
+Source2009: %{external_url}/libetonyek-0.1.6.tar.bz2
 Source2010: %{external_url}/libe-book-0.1.2.tar.bz2
 Source2011: %{external_url}/libfreehand-0.1.1.tar.bz2
-Source2012: %{external_url}/libodfgen-0.1.5.tar.bz2
-Source2013: %{external_url}/libcdr-0.1.1.tar.bz2
+Source2012: %{external_url}/libodfgen-0.1.6.tar.bz2
+Source2013: %{external_url}/libcdr-0.1.2.tar.bz2
 Source2014: %{external_url}/libmspub-0.1.2.tar.bz2
 Source2015: %{external_url}/libmwaw-0.3.7.tar.bz2
 Source2016: %{external_url}/libpagemaker-0.0.2.tar.bz2
-Source2017: %{external_url}/libvisio-0.1.3.tar.bz2
+Source2017: %{external_url}/libvisio-0.1.5.tar.bz2
 Source2018: 
%{external_url}/5821b806a98e6c38370970e682ce76e8-libcmis-0.5.0.tar.gz
-Source2019: %{external_url}/libwpd-0.10.0.tar.bz2
-Source2020: %{external_url}/libwpg-0.3.0.tar.bz2
+Source2019: %{external_url}/libwpd-0.10.1.tar.bz2
+Source2020: %{external_url}/libwpg-0.3.1.tar.bz2
 Source2021: %{external_url}/libwps-0.4.2.tar.bz2
 Source2022: %{external_url}/libabw-0.1.1.tar.bz2
 Source2023: %{external_url}/lcms2-2.6.tar.gz
@@ -632,15 +632,6 @@
 %description gnome
 This package contains some GNOME extensions for LibreOffice.
 
-%package gtk3
-Summary:Gtk3 interface for LibreOffice
-License:LGPL-3.0
-Group:  Productivity/Office/Suite
-Requires:   %{name}-gnome = %{version}
-
-%description gtk3
-This package contains Gtk3 interface rendering option for LibreOffice.
-
 %package kde4
 Summary:KDE4 Extensions for LibreOffice
 License:LGPL-3.0
@@ -714,7 +705,11 @@
 Requires:   libreoffice-base = %{version}
 # This 

commit python3-decorator for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package python3-decorator for 
openSUSE:Factory checked in at 2016-02-09 16:49:41

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


Package is "python3-decorator"

Changes:

--- /work/SRC/openSUSE:Factory/python3-decorator/python3-decorator.changes  
2016-02-08 09:48:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-decorator.new/python3-decorator.changes 
2016-02-09 16:50:07.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  8 16:47:24 UTC 2016 - a...@gmx.de
+
+- update to version 4.0.9:
+  * Same as 4.0.7 and 4.0.8, re-uploaded due to issues on PyPI
+
+---

Old:

  decorator-4.0.7.tar.gz

New:

  decorator-4.0.9.tar.gz



Other differences:
--
++ python3-decorator.spec ++
--- /var/tmp/diff_new_pack.mgg38P/_old  2016-02-09 16:50:08.0 +0100
+++ /var/tmp/diff_new_pack.mgg38P/_new  2016-02-09 16:50:08.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-decorator
-Version:4.0.7
+Version:4.0.9
 Release:0
 Url:http://pypi.python.org/pypi/decorator
 Summary:Better living through Python with decorators

++ decorator-4.0.7.tar.gz -> decorator-4.0.9.tar.gz ++
 1796 lines of diff (skipped)




commit wayland-protocols for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package wayland-protocols for 
openSUSE:Factory checked in at 2016-02-09 16:49:34

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


Package is "wayland-protocols"

Changes:

--- /work/SRC/openSUSE:Factory/wayland-protocols/wayland-protocols.changes  
2016-01-22 01:10:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.wayland-protocols.new/wayland-protocols.changes 
2016-02-09 16:50:04.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  8 12:18:54 UTC 2016 - jeng...@inai.de
+
+- Add key files
+
+---

New:

  wayland-protocols-1.0.tar.xz.sig
  wayland-protocols.keyring



Other differences:
--
++ wayland-protocols.spec ++
--- /var/tmp/diff_new_pack.4zE375/_old  2016-02-09 16:50:05.0 +0100
+++ /var/tmp/diff_new_pack.4zE375/_new  2016-02-09 16:50:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package wayland-protocols
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2015 Bjørn Lie, Bryne, Norway.
 #
 # All modifications and additions to the file contributed by third parties
@@ -16,14 +16,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   wayland-protocols
 Version:1.0
 Release:0
-License:MIT
 Summary:Wayland protocols that adds functionality not available in the 
core protocol
-Url:http://wayland.freedesktop.org/
+License:MIT
 Group:  Development/Libraries/C and C++
-Source0:
http://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz
+Url:http://wayland.freedesktop.org/
+Source: 
http://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz
+Source2:
http://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz.sig
+Source3:%name.keyring
 BuildRequires:  pkg-config
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,6 +40,7 @@
 
 %package devel
 Summary:Wayland protocols that adds functionality not available in the 
core protocol
+Group:  Development/Libraries/C and C++
 
 %description devel
 This package contains Wayland protocols that adds functionality not
@@ -61,3 +65,4 @@
 %{_datadir}/pkgconfig/%{name}.pc
 %{_datadir}/%{name}/
 
+%changelog

++ wayland-protocols.keyring ++
pub   4096R/0xA6EEEC9E0136164A 2011-06-30 [expires: 2016-07-21]
  Key fingerprint = 8307 C0A2 24BA BDA1 BABD  0EB9 A6EE EC9E 0136 164A
uid [ unknown] Jonas Ådahl 
sub   4096R/0x3E1EB364649837DC 2011-06-30 [expires: 2016-07-21]

-BEGIN PGP PUBLIC KEY BLOCK-

mQINBE4ML3UBEAC9hCFA+W+myoJGcewuJVKZE+wqLoTgSUTWp4m/zWYa+bItRqRl
Zfh/lj4repo2V1Nii+sqKHOOJ4onuZT/2EfYkdmhX/nnXxramoDSn+qJx1dTEPGQ
Gz5IiwuOjFOxiA5RblmZZfl87mLdt7VlCWOdrTGP9swYP3ugQuOQLsJPiaLL73Bg
T7ROKwrg1QlsABtmCWULXvcDlQ1y1S1ohZtGmP3jOBt3Tu1xJBjxwFUKT3scbFFv
v5f8ia5qTMQ/5VcxnXgop03zDChkVbtb9iaZoFTBHMi3DVW5wbvWq6MXemBy3umD
4wcxcug3M7UYfFhhb3sz95V2DnQFLIsw0dF3okq6XLTqF+p8bCvfyF86QkmTd2dk
Rlz8bMqLSZrcCYwBgZD6PXo/427OqXetdOdxvoVg26iH73rMnEJBOqKbO20s2Dnr
WUY7ZCUpGR85OFy+aZPwZjxmRJu3xQt8tPQ1jU4r1/wZcij4w2TfvS8nl2AfwqGE
amh3biSfEP8NJoUxuQI4cOFEfFZ3NxzPoifjCNdV7dg+t9BClX2mQARd5ZwHs+bU
u3XeobTO/XO6+8IysnhSlW0RLYy8NtXq03NomcpAQIsKYmOOlvM3WqKKIrEaqOsX
tfxg+P8WHruNQQc/tM7xyAJ7quOIpjcg6ZdmUXD8RMuuiu2znSs5qYhplwARAQAB
tB9Kb25hcyDDhWRhaGwgPGphZGFobEBnbWFpbC5jb20+iQI+BBMBAgAoAhsDBgsJ
CAcDAgYVCAIJCgsEFgIDAQIeAQIXgAUCU866iQUJCYTyBQAKCRCm7uyeATYWSsbF
D/4mrezQm3Ow9oSePFVVHcEEnZ74avcEDuwj2xHUtepCtwCgjr2cRyMXvsLKWRwu
DLFXbAdDPvHchlrUynqpzXg0tUkJfeZhQR4cZTryCTrQx3jKfApTSrcBab2EvWDa
hVUb8K8aEolL4LnV07k0y9CCvsfHUesmVZ79B/kN7MrjbB5S0Kys1yqTY2BktvOL
zLGAWpR7KlYKj56/wrxmGN0hkFR3d4LBg3MaIqS+gQCiSHuKvK8qbT+mnwBXuxKM
/u/sEhUqqiFWaZVcbOka+R1m9yohgulGzQ34W+DuoNpTMXw6uhQaTFLGehi/a9NW
Bvu9pdG03C1IkWUNEfqy6AmPOmwadz26HU5Xz4oUgNziuOdWo2SzzhmtuqejOaLZ
53/NrSLfLE4Iu2u4JygIBKGsTOyvqKllih3dOEzMVE1WMKu/Bpt8LqbST6E8pkEd
+Bwi1m0nLH70W/h2f9jXNsUZKaT6sQu1xgMcvalrvN6tgQA7r9RF5hcf8xUgzGKF
eKsE//0OmrDB6fqQ0otyeaF3sgpv+1JmopqsoGVetB2oo8z7oHSjEg+gtb1JIcwb
ACZTyojlw9pzcW14QERA7wx736OkbT6zWnDpiYGdnjO6LGMep/8YgJjwIIsJJtyM
SgNeEulQkXe6diknSuZTzrjLaNoVYUQzOEIhAhwdrnE6lbkCDQRODC91ARAAsqgU
HtznFxvQ2CCkT/UcS9Nw69WMZ8Fc3XANCHVjrxVkHIfSxLF0as4ctO0etIUlZHQu
TskDRC81Up6zBxV5SW+j0AktmhhreWUWSgnojNS/1oI+9VFRPUpLC/UOs8JXTjsC
qt+qPWfiUCvbFDIkDAKkJe3bvPloOajzDiq4fdYE5ssaUy4e2kaZFtZTBUEZ2hxi
CfFrOU+IedllsGl3RABBw4dysg8rbmQZMpQHPK3YHqSdG0P5lPLwpaSmMfvGRga0
c50apFiBbIqmQR+lRIcpr0dhhYm3cuJRkiGqCC3ly3jwUXN1yuPBSC7p1dJU3kUs

commit libressl for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libressl for openSUSE:Factory 
checked in at 2016-02-09 16:49:58

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.changes2015-12-14 
10:15:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.libressl.new/libressl.changes   2016-02-09 
16:50:21.0 +0100
@@ -1,0 +2,12 @@
+Tue Feb  2 11:24:16 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 2.3.2
+* Added EVP_aead_chacha20_poly1305_ietf() which matches the AEAD
+  construction introduced in RFC 7539, which is different than
+  that already used in TLS with EVP_aead_chacha20_poly1305().
+* Avoid a potential undefined C99+ behavior due to shift overflow
+  in AES_decrypt.
+- Remove 0001-Fix-for-OpenSSL-CVE-2015-3194.patch,
+  0001-Fix-for-OpenSSL-CVE-2015-3195.patch (included)
+
+---

Old:

  0001-Fix-for-OpenSSL-CVE-2015-3194.patch
  0001-Fix-for-OpenSSL-CVE-2015-3195.patch
  libressl-2.3.1.tar.gz
  libressl-2.3.1.tar.gz.asc

New:

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



Other differences:
--
++ libressl.spec ++
--- /var/tmp/diff_new_pack.cLQ9mZ/_old  2016-02-09 16:50:22.0 +0100
+++ /var/tmp/diff_new_pack.cLQ9mZ/_new  2016-02-09 16:50:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libressl
 #
-# 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,7 +17,7 @@
 
 
 Name:   libressl
-Version:2.3.1
+Version:2.3.2
 Release:0
 Summary:An SSL/TLS protocol implementation
 License:OpenSSL
@@ -31,8 +31,6 @@
 Source2:
http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/%name-%version.tar.gz.asc
 Source3:%name.keyring
 Source4:baselibs.conf
-Patch1: 0001-Fix-for-OpenSSL-CVE-2015-3194.patch
-Patch2: 0001-Fix-for-OpenSSL-CVE-2015-3195.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  pkg-config
@@ -44,31 +42,31 @@
 OpenSSL, with the aim of refactoring the OpenSSL code so as to
 provide a more secure implementation.
 
-%package -n libcrypto36
+%package -n libcrypto37
 Summary:An SSL/TLS protocol implementation
 Group:  System/Libraries
 
-%description -n libcrypto36
+%description -n libcrypto37
 The "crypto" library implements a wide range of cryptographic
 algorithms used in various Internet standards. The services provided
 by this library are used by the LibreSSL implementations of SSL, TLS
 and S/MIME, and they have also been used to implement SSH, OpenPGP,
 and other cryptographic standards.
 
-%package -n libssl37
+%package -n libssl38
 Summary:An SSL/TLS protocol implementation
 Group:  System/Libraries
 
-%description -n libssl37
+%description -n libssl38
 LibreSSL is an open-source implementation of the Secure Sockets Layer
 (SSL) and Transport Layer Security (TLS) protocols. It derives from
 OpenSSL and intends to provide a more secure implementation.
 
-%package -n libtls9
+%package -n libtls10
 Summary:A simplified interface for the OpenSSL/LibreSSL TLS protocol 
implementation
 Group:  System/Libraries
 
-%description -n libtls9
+%description -n libtls10
 LibreSSL is an open-source implementation of the Secure Sockets Layer
 (SSL) and Transport Layer Security (TLS) protocols. It derives from
 OpenSSL and intends to provide a more secure implementation.
@@ -79,9 +77,9 @@
 %package devel
 Summary:Development files for LibreSSL, an SSL/TLS protocol 
implementation
 Group:  Development/Libraries/C and C++
-Requires:   libcrypto36 = %version
-Requires:   libssl37 = %version
-Requires:   libtls9 = %version
+Requires:   libcrypto37 = %version
+Requires:   libssl38 = %version
+Requires:   libtls10 = %version
 Conflicts:  libopenssl-devel
 
 %description devel
@@ -109,7 +107,6 @@
 
 %prep
 %setup -q
-%patch -P 1 -P 2 -p5
 
 %build
 %configure --disable-static --enable-libtls
@@ -134,12 +131,12 @@
exit 1
 fi
 
-%post   -n libcrypto36 -p /sbin/ldconfig
-%postun -n libcrypto36 -p /sbin/ldconfig
-%post   -n libssl37 -p /sbin/ldconfig
-%postun -n libssl37 -p /sbin/ldconfig
-%post   -n libtls9 -p /sbin/ldconfig
-%postun -n libtls9 -p /sbin/ldconfig
+%post   -n libcrypto37 -p /sbin/ldconfig
+%postun -n libcrypto37 -p /sbin/ldconfig
+%post   -n 

commit wvstreams for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package wvstreams for openSUSE:Factory 
checked in at 2016-02-09 16:49:37

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


Package is "wvstreams"

Changes:

--- /work/SRC/openSUSE:Factory/wvstreams/wvstreams.changes  2015-06-23 
11:57:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.wvstreams.new/wvstreams.changes 2016-02-09 
16:50:05.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb  7 17:07:56 UTC 2016 - crrodrig...@opensuse.org
+
+- wvstreams-openssl.patch: RAND_pseudo_bytes() is gone
+ in openSSL 1.1.x, use RAND_bytes instead and always do error 
+ checking.
+
+---



Other differences:
--
++ wvstreams.spec ++
--- /var/tmp/diff_new_pack.tySeyv/_old  2016-02-09 16:50:06.0 +0100
+++ /var/tmp/diff_new_pack.tySeyv/_new  2016-02-09 16:50:06.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package wvstreams
 #
-# 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

++ wvstreams-openssl.patch ++
--- /var/tmp/diff_new_pack.tySeyv/_old  2016-02-09 16:50:06.0 +0100
+++ /var/tmp/diff_new_pack.tySeyv/_new  2016-02-09 16:50:06.0 +0100
@@ -1,7 +1,5 @@
-Index: wvstreams-4.4.1/crypto/wvx509.cc
-===
 wvstreams-4.4.1.orig/crypto/wvx509.cc  2007-08-17 07:15:30.0 
+0200
-+++ wvstreams-4.4.1/crypto/wvx509.cc   2010-04-19 20:46:51.0 +0200
+--- wvstreams-4.4.1.orig/crypto/wvx509.cc
 wvstreams-4.4.1/crypto/wvx509.cc
 @@ -1102,7 +1102,7 @@ WvString WvX509::get_extension(int nid)
  
  if (ext)
@@ -11,3 +9,27 @@
  if (!method)
  {
  WvDynBuf buf;
+--- wvstreams-4.4.1.orig/crypto/wvblowfish.cc
 wvstreams-4.4.1/crypto/wvblowfish.cc
+@@ -77,7 +77,8 @@ bool WvBlowfishEncoder::_encode(WvBuf 
+ // if flushing on encryption, add some randomized padding
+ size_t padlen = 8 - remainder;
+ unsigned char *pad = in.alloc(padlen);
+-RAND_pseudo_bytes(pad, padlen);
++if (RAND_bytes(pad, padlen) != 1)
++return false;
+ len += 8;
+ }
+ else // nothing we can do here, flushing does not make sense!
+--- wvstreams-4.4.1.orig/crypto/wvtripledes.cc
 wvstreams-4.4.1/crypto/wvtripledes.cc
+@@ -77,7 +77,8 @@ bool WvTripleDESEncoder::_encode(WvBuf &
+   // if flushing on encryption, add some randomized padding
+   size_t padlen = 8 - remainder;
+   unsigned char *pad = in.alloc(padlen);
+-  RAND_pseudo_bytes(pad, padlen);
++  if(RAND_bytes(pad, padlen) != 1)
++return false;
+   len += 8;
+   }
+   else // nothing we can do here, flushing does not make sense!




commit plasma5-pk-updates for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package plasma5-pk-updates for 
openSUSE:Factory checked in at 2016-02-09 16:48:49

Comparing /work/SRC/openSUSE:Factory/plasma5-pk-updates (Old)
 and  /work/SRC/openSUSE:Factory/.plasma5-pk-updates.new (New)


Package is "plasma5-pk-updates"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-pk-updates/plasma5-pk-updates.changes
2015-10-26 12:48:48.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.plasma5-pk-updates.new/plasma5-pk-updates.changes   
2016-02-09 16:48:50.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb  5 07:56:14 UTC 2016 - tittiatc...@gmail.com
+
+- Change the obsoletes for apper to a higher version number to 
+  make sure that it gets removed. Current apper version is 0.9.2 and 
+  therefore higher than the version of plasma5-pk-updates
+
+---



Other differences:
--
++ plasma5-pk-updates.spec ++
--- /var/tmp/diff_new_pack.ygoge9/_old  2016-02-09 16:48:50.0 +0100
+++ /var/tmp/diff_new_pack.ygoge9/_new  2016-02-09 16:48:50.0 +0100
@@ -40,8 +40,9 @@
 BuildRequires:  pkgconfig(Qt5Quick)
 BuildRequires:  pkgconfig(Qt5Widgets)
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
-Provides:   apper = %{version}
-Obsoletes:  apper < %{version}
+# Use a fake version number as that the apper version is higher than 0.2 
+Provides:   apper = 1.0
+Obsoletes:  apper < 1.0
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 




commit alsa for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package alsa for openSUSE:Factory checked in 
at 2016-02-09 16:48:35

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


Package is "alsa"

Changes:

--- /work/SRC/openSUSE:Factory/alsa/alsa.changes2015-11-12 
19:37:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.alsa.new/alsa.changes   2016-02-09 
16:48:36.0 +0100
@@ -1,0 +2,18 @@
+Wed Feb  3 17:56:41 CET 2016 - ti...@suse.de
+
+- Backports from upstream: minor PCM fixes, topology API updates,
+  and a few build cleanup:
+  0002-pcm-simple-Fix-asserts.patch
+  0003-topology-open-topology-files-with-O_TRUNC.patch
+  0004-topology-Remove-unused-function-write_data_block.patch
+  0005-topology-Remove-unused-variables.patch
+  0006-topology-Fix-comparison-of-unsigned-expression-0.patch
+  0007-topology-Not-compare-a-for-loop-iterator-with-ABI-__.patch
+  0008-topology-Quit-and-show-error-message-on-big-endian-m.patch
+  0009-config-files-do-not-include-ucm-topology-configurati.patch
+  0010-control-add-missing-asserts-to-ctl_elem_set-function.patch
+  0011-pcm_hw-fix-possible-memory-leak-coverity.patch
+  0012-coverity-fixes.patch
+  0013-topology-fix-debug-output-to-print-correct-max-value.patch
+
+---

New:

  0002-pcm-simple-Fix-asserts.patch
  0003-topology-open-topology-files-with-O_TRUNC.patch
  0004-topology-Remove-unused-function-write_data_block.patch
  0005-topology-Remove-unused-variables.patch
  0006-topology-Fix-comparison-of-unsigned-expression-0.patch
  0007-topology-Not-compare-a-for-loop-iterator-with-ABI-__.patch
  0008-topology-Quit-and-show-error-message-on-big-endian-m.patch
  0009-config-files-do-not-include-ucm-topology-configurati.patch
  0010-control-add-missing-asserts-to-ctl_elem_set-function.patch
  0011-pcm_hw-fix-possible-memory-leak-coverity.patch
  0012-coverity-fixes.patch
  0013-topology-fix-debug-output-to-print-correct-max-value.patch



Other differences:
--
++ alsa.spec ++
--- /var/tmp/diff_new_pack.FVrDKD/_old  2016-02-09 16:48:37.0 +0100
+++ /var/tmp/diff_new_pack.FVrDKD/_new  2016-02-09 16:48:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package alsa
 #
-# 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
@@ -50,6 +50,18 @@
 # Patch:  alsa-lib-git-fixes.diff
 # upstream fixes
 Patch1: 0001-topology-Add-missing-include-sys-stat.h.patch
+Patch2: 0002-pcm-simple-Fix-asserts.patch
+Patch3: 0003-topology-open-topology-files-with-O_TRUNC.patch
+Patch4: 0004-topology-Remove-unused-function-write_data_block.patch
+Patch5: 0005-topology-Remove-unused-variables.patch
+Patch6: 0006-topology-Fix-comparison-of-unsigned-expression-0.patch
+Patch7: 0007-topology-Not-compare-a-for-loop-iterator-with-ABI-__.patch
+Patch8: 0008-topology-Quit-and-show-error-message-on-big-endian-m.patch
+Patch9: 0009-config-files-do-not-include-ucm-topology-configurati.patch
+Patch10:0010-control-add-missing-asserts-to-ctl_elem_set-function.patch
+Patch11:0011-pcm_hw-fix-possible-memory-leak-coverity.patch
+Patch12:0012-coverity-fixes.patch
+Patch13:0013-topology-fix-debug-output-to-print-correct-max-value.patch
 # rest suse patches
 Patch99:alsa-lib-doxygen-avoid-crash-for-11.3.diff
 # suppress timestamp in documents
@@ -121,6 +133,18 @@
 %setup -q -n alsa-lib-%{package_version}
 # %patch -p1
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch7 -p1
+%patch8 -p1
+%patch9 -p1
+%patch10 -p1
+%patch11 -p1
+%patch12 -p1
+%patch13 -p1
 %if 0%{?suse_version} == 1130
 %patch99 -p1
 %endif

++ 0002-pcm-simple-Fix-asserts.patch ++
>From 57ae61ce274964c100f8df372f2d3b4c68ac17b8 Mon Sep 17 00:00:00 2001
From: Peter Rosin 
Date: Wed, 11 Nov 2015 16:11:10 +0100
Subject: [PATCH] pcm: simple: Fix asserts

Do not error out on the boundaries.

Signed-off-by: Peter Rosin 
Signed-off-by: Jaroslav Kysela 
---
 src/pcm/pcm_simple.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/pcm/pcm_simple.c b/src/pcm/pcm_simple.c
index f943ec09b396..ce110833922e 100644
--- a/src/pcm/pcm_simple.c
+++ b/src/pcm/pcm_simple.c
@@ -173,8 +173,8 @@ int snd_spcm_init(snd_pcm_t *pcm,
snd_pcm_sw_params_alloca(_params);
 
assert(pcm);
-   assert(rate > 5000 && rate < 192000);

commit cdrtools for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package cdrtools for openSUSE:Factory 
checked in at 2016-02-09 16:48:30

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


Package is "cdrtools"

Changes:

--- /work/SRC/openSUSE:Factory/cdrtools/cdrtools.changes2016-01-11 
19:10:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.cdrtools.new/cdrtools.changes   2016-02-09 
16:48:30.0 +0100
@@ -1,0 +2,12 @@
+Thu Jan 28 23:40:24 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 3.02~a06
+* libscg: fixed a copy/paste problem in the Linux transport that
+  could cause libscg to assume a timeout when no timeout occurred.
+* libscg: add a new generic option interface.
+* libscg: New option "ignore-resid" to work around a Linux kernel
+  problem.
+* mkisofs: better warning messages for rotten directories when in
+  multi-session mode.
+
+---

Old:

  cdrtools-3.02a05.tar.bz2

New:

  cdrtools-3.02a06.tar.bz2



Other differences:
--
++ cdrtools.spec ++
--- /var/tmp/diff_new_pack.8ZhVSD/_old  2016-02-09 16:48:31.0 +0100
+++ /var/tmp/diff_new_pack.8ZhVSD/_new  2016-02-09 16:48:31.0 +0100
@@ -17,9 +17,9 @@
 
 
 Name:   cdrtools
-Version:3.02~a05
+Version:3.02~a06
 Release:0
-%define rver   3.02a05
+%define rver   3.02a06
 Summary:Tools for recording CD/DVD/BluRay media
 License:CDDL-1.0 and GPL-2.0 and GPL-2.0+ and BSD-2-Clause and 
BSD-3-Clause and HPND and ISC
 Group:  Productivity/Multimedia/CD/Record

++ schily-libs.spec ++
--- /var/tmp/diff_new_pack.8ZhVSD/_old  2016-02-09 16:48:31.0 +0100
+++ /var/tmp/diff_new_pack.8ZhVSD/_new  2016-02-09 16:48:31.0 +0100
@@ -17,9 +17,9 @@
 
 
 Name:   schily-libs
-Version:3.02~a05
+Version:3.02~a06
 Release:0
-%define rver   3.02a05
+%define rver   3.02a06
 Summary:A collection of libraries to support cdrtools
 License:CDDL-1.0 and GPL-2.0 and GPL-2.0+ and BSD-2-Clause and 
BSD-3-Clause and HPND and ISC
 Group:  Development/Libraries/C and C++

++ cdrtools-3.02a05.tar.bz2 -> cdrtools-3.02a06.tar.bz2 ++
 2099 lines of diff (skipped)




commit alsa-plugins for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package alsa-plugins for openSUSE:Factory 
checked in at 2016-02-09 16:48:43

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


Package is "alsa-plugins"

Changes:

--- /work/SRC/openSUSE:Factory/alsa-plugins/alsa-plugins.changes
2015-12-03 13:27:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.alsa-plugins.new/alsa-plugins.changes   
2016-02-09 16:48:44.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb  3 18:09:33 CET 2016 - ti...@suse.de
+
+- Backport upstream fixes: build fixes with the recent ffmpeg
+  0001-speex-Add-missing-include-config.h.patch
+  0002-a52-fix-reported-input-channel-order.patch
+  0003-pph-include-config.h-from-rate_speexrate.c.patch
+- Drop the obsoleted patch:
+  alsa-plugins-include-config.h.patch
+
+---

Old:

  alsa-plugins-include-config.h.patch

New:

  0001-speex-Add-missing-include-config.h.patch
  0002-a52-fix-reported-input-channel-order.patch
  0003-pph-include-config.h-from-rate_speexrate.c.patch



Other differences:
--
++ alsa-plugins.spec ++
--- /var/tmp/diff_new_pack.PttP1j/_old  2016-02-09 16:48:45.0 +0100
+++ /var/tmp/diff_new_pack.PttP1j/_new  2016-02-09 16:48:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package alsa-plugins
 #
-# 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
@@ -35,7 +35,9 @@
 Source1:asound-pulse.conf
 Source2:alsa-pulse.conf
 Source3:baselibs.conf
-Patch0: alsa-plugins-include-config.h.patch
+Patch1: 0001-speex-Add-missing-include-config.h.patch
+Patch2: 0002-a52-fix-reported-input-channel-order.patch
+Patch3: 0003-pph-include-config.h-from-rate_speexrate.c.patch
 BuildRequires:  alsa-devel
 BuildRequires:  dbus-1-devel
 BuildRequires:  libjack-devel
@@ -132,7 +134,9 @@
 
 %prep
 %setup -q -n %{name}-%{package_version}
-%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
 export AUTOMAKE_JOBS="%{?_smp_mflags}"

++ 0001-speex-Add-missing-include-config.h.patch ++
>From 4e98854b590db9fd8faab0fea262277805bc7769 Mon Sep 17 00:00:00 2001
From: Takashi Iwai 
Date: Mon, 9 Nov 2015 11:53:22 +0100
Subject: [PATCH] speex: Add missing include config.h

Signed-off-by: Takashi Iwai 
---
 speex/pcm_speex.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/speex/pcm_speex.c b/speex/pcm_speex.c
index 757a400e5b1b..f1406d7a7774 100644
--- a/speex/pcm_speex.c
+++ b/speex/pcm_speex.c
@@ -18,6 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  */
 
+#include "config.h"
 #include 
 #include 
 #include 
-- 
2.7.0

++ 0002-a52-fix-reported-input-channel-order.patch ++
>From cdff2e32537440bf16329c8440d0d02d7ac02d38 Mon Sep 17 00:00:00 2001
From: Tom Yan 
Date: Tue, 12 Jan 2016 15:57:39 +0800
Subject: [PATCH] a52: fix reported input channel order

a52 plugin expects the input to be in ALSA order and remaps it to general order 
when encoding. However it reports that the input it takes should be in general 
order.

This fix should make programs (e.g. mpv) that is aware of channel layout 
reported by ALSA remap sources appropriately before sending when necessary.

It should not cause any regression to programs (e.g. mplayer) that does not 
check the reported channel layout (hence not affected by the issue) and remaps 
sources anyway.

Signed-off-by: Tom Yan 
Signed-off-by: Takashi Iwai 
---
 a52/pcm_a52.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c
index 4e4c5f77aa92..88529eb84ace 100644
--- a/a52/pcm_a52.c
+++ b/a52/pcm_a52.c
@@ -663,8 +663,8 @@ static unsigned int chmap4[4] = {
 };
 static unsigned int chmap6[6] = {
SND_CHMAP_FL, SND_CHMAP_FR,
-   SND_CHMAP_FC, SND_CHMAP_LFE,
SND_CHMAP_RL, SND_CHMAP_RR,
+   SND_CHMAP_FC, SND_CHMAP_LFE,
 };
 
 static snd_pcm_chmap_query_t **a52_query_chmaps(snd_pcm_ioplug_t *io 
ATTRIBUTE_UNUSED)
-- 
2.7.0

++ 0003-pph-include-config.h-from-rate_speexrate.c.patch ++
>From e1760840dc4710146a22458e4a804cbfc91e7630 Mon Sep 17 00:00:00 2001
From: Tanu Kaskinen 
Date: Wed, 27 Jan 2016 13:45:51 +0200
Subject: [PATCH] pph: include config.h from rate_speexrate.c

Fixes compilation against libspeexdsp 1.2rc3.

rate_speexrate.c includes speex_resampler.h, which depends on 

commit xterm for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package xterm for openSUSE:Factory checked 
in at 2016-02-09 16:48:54

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


Package is "xterm"

Changes:

--- /work/SRC/openSUSE:Factory/xterm/xterm.changes  2015-09-08 
17:37:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.xterm.new/xterm.changes 2016-02-09 
16:48:55.0 +0100
@@ -1,0 +2,85 @@
+Mon Jan 25 10:58:33 UTC 2016 - pce...@suse.com
+
+- Patch #322 - 2016/01/02
+  * fix regression due to incorrect fix for compiler warning when
+allocating storage for /etc/shells (reports by Ashish Shukla,
+Debian #809646).
+- Patch #321 - 2015/12/31
+  * add resource keepClipboard, escape sequence and action
+keep-clipboard.
+  * add optional feature to capture text copied to clipboard at
+the time of copying rather than at the time the clipboard
+contents are requested for pasting (patch by Milan Mehner).
+  * improve a special case where the -e option was used to pass a
+single-quoted command via luit, by wrapping it in a “sh -c”
+(report by Keith Hedger).
+  * minor fix for type-cleanliness when allocating storage for
+/etc/shells (Tobias Stoeckmann).
+  * fix a typo in manual page (Dan Church).
+  * fix minor file-descriptor leak; after calling openpty, the
+slave's file descriptor is not needed (report by Juha
+Nurmela).
+  * editorial change to ctlseqs.ms (report by David Gomboc).
+  * minor updates for autoconf macros.
+  * update config.guess, config.sub
+- vttest 20140305
+  * save/restore color enable-flag for menu 11.6 in a couple of
+places so that the ISO-6429 tests do not reset it
+unexpectedly.
+  * amend the REP test to not reset colors if it happens to be
+run via the menu entry for BCE-related tests.
+- vttest 20140116
+  * cosmetic changes (suggested by Itay Chamiel):
++ clear screen just before resetting SCS in menu #3 character
+  sets, in case a VT100 emulator does not simply ignore VT220
+  G2/G3 selections when it does not implement them.
++ add check for maximum operating level before deciding
+  whether to send a DECSCL to set it to VT100-level.
++ adjust starting point of items for menu #9 "Test of known
+  bugs" to avoid overwriting part of the description of the
+  test.
+  * add configure check for -Wlogical-op to gcc-warnings
+  * update config.guess, config.sub
+- vttest 20130915
+  * when NRCS is active, suppress ISO Latin-1 from menu to avoid
+confusion with British NRCS.
+  * do not highlight ISO Latin-1 for NRCS, since it is a
+96-character set, not applicable to NRCS.
+  * correct position of ruler for SD and REP screens, which
+obscured the result.
+  * expand menu 11.6.6 to demonstrate bce with top-level menus 1
+and 2 in addition to the existing menu 8.
+  * correct description for DA response 24; it denotes VT320.
+  * correct highlighting for French NRC mapping; "`" is not
+mapped.
+  * add port-files from FreeBSD for test-builds.
+  * add highlighting information for VT320 Portuguese NRC
+mapping.
+  * add highlighting information for VT220 DEC Supplemental NRC
+mapping.
+  * updated configure-macros to add msys changes from ncurses
+20130907.
+  * update config.guess, config.sub
+- vttest 20130818
+  * modify character-sets screens to optionally highlight the
+characters which do not correspond to ISO-8859-1.  This makes
+the National Replacement Characters easier to see.
+  * modify DSR cursor-position report to check if the terminal
+accounts for origin-mode.
+  * support --datarootdir option in makefile.in, to match
+configure script updates.
+  * updated configure macros:
++ change from byacc for autoheader
++ improved checks for gcc attributes
++ improved checks for gcc version
++ miscellaneous fixes in CF_XOPEN_SOURCE
+  * update config.guess, config.sub
+- vttest 20120603
+  * change cursor-position before IL/DL in "Test of VT102-style
+features with BCE (Insert/Delete Char/Line)" to demonstrate
+whether the terminal sets the cursor to the first column as a
+side-effect, as noted in VT220 reference manual.
+- remove vttest-config_update_aarch64.patch since the current
+  vttest sports newer config version
+
+---

Old:

  vttest-20120506.tgz
  vttest-20120506.tgz.asc
  vttest-config_update_aarch64.patch
  xterm-320.tgz
  xterm-320.tgz.asc

New:

  vttest-20140305.tgz
  vttest-20140305.tgz.asc
  xterm-322.tgz
  xterm-322.tgz.asc



Other differences:
--
++ xterm.spec ++
--- /var/tmp/diff_new_pack.pQgltA/_old  2016-02-09 

commit thin-provisioning-tools for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package thin-provisioning-tools for 
openSUSE:Factory checked in at 2016-02-09 16:49:11

Comparing /work/SRC/openSUSE:Factory/thin-provisioning-tools (Old)
 and  /work/SRC/openSUSE:Factory/.thin-provisioning-tools.new (New)


Package is "thin-provisioning-tools"

Changes:

--- 
/work/SRC/openSUSE:Factory/thin-provisioning-tools/thin-provisioning-tools.changes
  2016-02-03 10:17:40.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.thin-provisioning-tools.new/thin-provisioning-tools.changes
 2016-02-09 16:49:17.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  6 09:04:44 UTC 2016 - mplus...@suse.com
+
+- Update to 0.6.1
+  * enable builds with static cxx library
+- Make building more verbose
+
+---

Old:

  v0.6.0.tar.gz

New:

  v0.6.1.tar.gz



Other differences:
--
++ thin-provisioning-tools.spec ++
--- /var/tmp/diff_new_pack.siTcKM/_old  2016-02-09 16:49:17.0 +0100
+++ /var/tmp/diff_new_pack.siTcKM/_new  2016-02-09 16:49:17.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   thin-provisioning-tools
-Version:0.6.0
+Version:0.6.1
 Release:0
 Summary:Thin Provisioning Tools
 License:GPL-3.0
@@ -42,13 +42,13 @@
 %setup -q
 
 %build
-export CFLAGS="%{optflags}"
-export CXXFLAGS="%{optflags}"
 autoreconf -fiv
 %configure \
   --bindir=%{_sbindir} \
-  --with-optimisation=""
-make %{?_smp_mflags}
+  --with-optimisation="%{optflags}"
+# In generated Makefile V=@ is used, in order to achieve verbose build ve
+# must override it as V=""
+make %{?_smp_mflags} V=""
 
 %install
 make STRIP="/bin/true" DESTDIR=%{buildroot} install %{?_smp_mflags}

++ v0.6.0.tar.gz -> v0.6.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thin-provisioning-tools-0.6.0/CHANGES 
new/thin-provisioning-tools-0.6.1/CHANGES
--- old/thin-provisioning-tools-0.6.0/CHANGES   2016-01-20 19:11:48.0 
+0100
+++ new/thin-provisioning-tools-0.6.1/CHANGES   2016-02-04 16:29:47.0 
+0100
@@ -1,3 +1,8 @@
+v0.6.1
+==
+
+./configure --enable-static-cxx
+
 v0.6.0
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thin-provisioning-tools-0.6.0/Makefile.in 
new/thin-provisioning-tools-0.6.1/Makefile.in
--- old/thin-provisioning-tools-0.6.0/Makefile.in   2016-01-20 
19:11:48.0 +0100
+++ new/thin-provisioning-tools-0.6.1/Makefile.in   2016-02-04 
16:29:47.0 +0100
@@ -110,8 +110,11 @@
 CXXFLAGS+=@CXXDEBUG_FLAG@
 CXXFLAGS+=@CXX_STRERROR_FLAG@
 CXXFLAGS+=@LFS_FLAGS@
+CXXFLAGS+=@STATIC_LINK_FLAGS@
+LDFLAGS+=@STATIC_LINK_FLAGS@
 INCLUDES+=-I$(TOP_BUILDDIR) -I$(TOP_DIR) -I$(TOP_DIR)/thin-provisioning
-LIBS:=-lstdc++ -laio -lexpat
+LIBS:=-laio -lexpat
+LIBS+=@DYNAMIC_LINK_FLAGS@
 INSTALL:=@INSTALL@
 PREFIX:=@prefix@
 BINDIR:=$(DESTDIR)$(PREFIX)/sbin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thin-provisioning-tools-0.6.0/VERSION 
new/thin-provisioning-tools-0.6.1/VERSION
--- old/thin-provisioning-tools-0.6.0/VERSION   2016-01-20 19:11:48.0 
+0100
+++ new/thin-provisioning-tools-0.6.1/VERSION   2016-02-04 16:29:47.0 
+0100
@@ -1 +1 @@
-0.6.0
+0.6.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thin-provisioning-tools-0.6.0/configure.ac 
new/thin-provisioning-tools-0.6.1/configure.ac
--- old/thin-provisioning-tools-0.6.0/configure.ac  2016-01-20 
19:11:48.0 +0100
+++ new/thin-provisioning-tools-0.6.1/configure.ac  2016-02-04 
16:29:47.0 +0100
@@ -138,6 +138,22 @@
 AC_MSG_RESULT($TESTING)
 
 

+dnl -- Enable static libstdc++
+AC_MSG_CHECKING(whether to statically link libstdc++)
+AC_ARG_ENABLE(static_cxx,
+  AC_HELP_STRING(--enable-static-cxx, [enable static link of 
libstdc++]),
+  STATIC_CXX=$enableval, STATIC_CXX=no)
+AC_MSG_RESULT($STATIC_CXX)
+
+if test x$STATIC_CXX = xyes; then
+   STATIC_LINK_FLAGS=-static-libstdc++
+   DYNAMIC_LINK_FLAGS=
+else
+   STATIC_LINK_FLAGS=
+   DYNAMIC_LINK_FLAGS=-lstdc++
+fi
+
+
 dnl -- Check for getopt
 AC_CHECK_HEADERS(getopt.h, AC_DEFINE([HAVE_GETOPTLONG], 1, [Define to 1 if 
getopt_long is available.]))
 
@@ -164,6 +180,8 @@
 AC_SUBST(RELEASE_DATE)
 AC_SUBST(TESTING)
 AC_SUBST(THIN_PROVISIONING_TOOLS_VERSION)
+AC_SUBST(STATIC_LINK_FLAGS)
+AC_SUBST(DYNAMIC_LINK_FLAGS)
 
 

commit git for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2016-02-09 16:49:05

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


Package is "git"

Changes:

--- /work/SRC/openSUSE:Factory/git/git.changes  2016-02-03 10:17:12.0 
+0100
+++ /work/SRC/openSUSE:Factory/.git.new/git.changes 2016-02-09 
16:49:11.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb  6 08:30:57 UTC 2016 - astie...@suse.com
+
+- git 2.7.1:
+  * fix hooks and aliases fixes with GIT_WORK_TREE 
+  * fix "git send-email" reading escaped quotes in mutt alias files
+  * fix some crashes and regressions
+
+---

Old:

  git-2.7.0.tar.sign
  git-2.7.0.tar.xz

New:

  git-2.7.1.tar.sign
  git-2.7.1.tar.xz



Other differences:
--
++ git.spec ++
--- /var/tmp/diff_new_pack.tc8PHN/_old  2016-02-09 16:49:12.0 +0100
+++ /var/tmp/diff_new_pack.tc8PHN/_new  2016-02-09 16:49:12.0 +0100
@@ -26,7 +26,7 @@
 %endif
 
 Name:   git
-Version:2.7.0
+Version:2.7.1
 Release:0
 Summary:Fast, scalable, distributed revision control system
 License:GPL-2.0

++ git-2.7.0.tar.xz -> git-2.7.1.tar.xz ++
 14089 lines of diff (skipped)




commit python3-pycurl for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package python3-pycurl for openSUSE:Factory 
checked in at 2016-02-09 16:49:16

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


Package is "python3-pycurl"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pycurl/python3-pycurl.changes
2016-02-05 00:30:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pycurl.new/python3-pycurl.changes   
2016-02-09 16:49:18.0 +0100
@@ -1,0 +2,13 @@
+Sat Feb  6 04:43:19 UTC 2016 - a...@gmx.de
+
+- update to version 7.43.0:
+  * Highlights of this release:
++ Binary wheels are now built for Windows systems.
++ setopt_string method added to Curl objects to permit setting
+  string libcurl options that PycURL does not know about.
++ curl module can now be imported on Windows again.
++ OPENSOCKETFUNCTION callback is now invoked with the address as
+  bytes on Python 3 as was documented.
++ Support for many libcurl options and constants was added.
+
+---

Old:

  pycurl-7.21.5.tar.gz

New:

  pycurl-7.43.0.tar.gz



Other differences:
--
++ python3-pycurl.spec ++
--- /var/tmp/diff_new_pack.vMvEyE/_old  2016-02-09 16:49:19.0 +0100
+++ /var/tmp/diff_new_pack.vMvEyE/_new  2016-02-09 16:49:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pycurl
-Version:7.21.5
+Version:7.43.0
 Release:0
 Summary:PycURL -- cURL library module
 License:LGPL-2.1+ and MIT

++ pycurl-7.21.5.tar.gz -> pycurl-7.43.0.tar.gz ++
 5153 lines of diff (skipped)




commit diffstat for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package diffstat for openSUSE:Factory 
checked in at 2016-02-09 16:49:22

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


Package is "diffstat"

Changes:

--- /work/SRC/openSUSE:Factory/diffstat/diffstat.changes2015-08-07 
00:16:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.diffstat.new/diffstat.changes   2016-02-09 
16:49:23.0 +0100
@@ -1,0 +2,10 @@
+Sun Feb  7 07:51:45 UTC 2016 - mplus...@suse.com
+
+- Update to 1.61
+  * add -T option to show amount of changes next to histogram.
+  * if -S option is given, check for unmodified files and add those
+to the report.
+  * update configure macros
+  * update config.guess, config.sub
+
+---

Old:

  diffstat-1.60.tgz
  diffstat-1.60.tgz.asc

New:

  diffstat-1.61.tgz
  diffstat-1.61.tgz.asc



Other differences:
--
++ diffstat.spec ++
--- /var/tmp/diff_new_pack.QYJK1J/_old  2016-02-09 16:49:24.0 +0100
+++ /var/tmp/diff_new_pack.QYJK1J/_new  2016-02-09 16:49:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package diffstat
 #
-# 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,7 +17,7 @@
 
 
 Name:   diffstat
-Version:1.60
+Version:1.61
 Release:0
 Summary:Utility That Provides Statistics Based on the Output of diff
 License:MIT
@@ -38,12 +38,11 @@
 %patch0
 
 %build
-export CFLAGS="%{optflags} -Wall"
 %configure
-make %{?_smp_mflags}
+make %{?_smp_mflags} CFLAGS="%{optflags}"
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 
 %check
 make %{?_smp_mflags} check
@@ -52,6 +51,6 @@
 %defattr(-,root,root)
 %doc README CHANGES COPYING
 %{_bindir}/diffstat
-%doc %{_mandir}/man1/diffstat.1*
+%{_mandir}/man1/diffstat.1%{ext_man}
 
 %changelog

++ diffstat-1.60.tgz -> diffstat-1.61.tgz ++
 2916 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/diffstat-1.60/CHANGES new/diffstat-1.61/CHANGES
--- old/diffstat-1.60/CHANGES   2015-07-07 01:21:00.0 +0200
+++ new/diffstat-1.61/CHANGES   2016-01-14 02:11:58.0 +0100
@@ -1,6 +1,19 @@
--- $Id: CHANGES,v 1.91 2015/07/06 23:21:00 tom Exp $
+-- $Id: CHANGES,v 1.94 2016/01/14 01:11:58 tom Exp $
+
+2016/01/14 (diffstat 1.61)
+   + add -T option to show amount of changes next to histogram.
+
+   + if -S option is given, check for unmodified files and add those to
+ the report.
+
+   + update configure macros
+
+   + update config.guess, config.sub
 
 2015/07/07 (diffstat 1.60)
+   + handle double-quotes, e.g., from diffutils 3.3 when filenames have
+ embedded spaces.
+
+ add configure option --with-man2html
 
+ update configure macros
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/diffstat-1.60/COPYING new/diffstat-1.61/COPYING
--- old/diffstat-1.60/COPYING   2015-07-07 01:29:04.0 +0200
+++ new/diffstat-1.61/COPYING   2016-01-03 18:45:14.0 +0100
@@ -1,4 +1,4 @@
-Copyright 1994-2014,2015 by Thomas E. Dickey
+Copyright 1994-2015,2016 by Thomas E. Dickey
 All Rights Reserved.
 
 Permission to use, copy, modify, and distribute this software and its
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/diffstat-1.60/COPYING.asc new/diffstat-1.61/COPYING.asc
--- old/diffstat-1.60/COPYING.asc   2015-07-07 01:29:25.0 +0200
+++ new/diffstat-1.61/COPYING.asc   2016-01-03 18:45:34.0 +0100
@@ -1,8 +1,8 @@
 -BEGIN PGP SIGNATURE-
-Version: GnuPG v1.4.10 (GNU/Linux)
+Version: GnuPG v1.4.12 (GNU/Linux)