commit i3lock for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package i3lock for openSUSE:Factory checked 
in at 2016-04-30 23:31:11

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


Package is "i3lock"

Changes:

--- /work/SRC/openSUSE:Factory/i3lock/i3lock.changes2015-05-15 
07:43:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.i3lock.new/i3lock.changes   2016-04-30 
23:31:16.0 +0200
@@ -1,0 +2,18 @@
+Tue Apr 26 12:25:06 UTC 2016 - mimi...@gmail.com
+
+- update to 2.7
+- refresh i3lock-2.5-use-unix2_chkpwd.diff 
+* Die when the X11 connection breaks during runtime
+* Implement logging the number of failed attempts
+* Ignore password validation is pam is in wrong state
+* Get current user with getpwuid() instead of using $ENV{USER}
+* Add support for Compose and dead-keys with libxkbcommon.
+   Requires libxkbcommon ≥ 0.5.0
+* Format the source using clang-format.
+* Refresh pam credentials on successful authentication (for Kerberos and the
+   like)
+* List pressed modifiers on failed authentication
+* Only redraw the screen if the unlock indicator is actually used
+* Make pkg-config configurable for cross-compilation
+
+---

Old:

  i3lock-2.6.tar.bz2

New:

  i3lock-2.7.tar.bz2



Other differences:
--
++ i3lock.spec ++
--- /var/tmp/diff_new_pack.0YQZ2A/_old  2016-04-30 23:31:17.0 +0200
+++ /var/tmp/diff_new_pack.0YQZ2A/_new  2016-04-30 23:31:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package i3lock
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 B1 Systems GmbH, Vohburg, Germany.
 # Copyright (c) 2012 Pascal Bleser 
 #
@@ -21,7 +21,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 
 Name:   i3lock
-Version:2.6
+Version:2.7
 Release:0
 Summary:Screen Locker for the i3 Window Manager
 License:BSD-3-Clause
@@ -54,7 +54,7 @@
 BuildRequires:  pam-modules
 BuildRequires:  pkgconfig(xcb-image)
 BuildRequires:  pkgconfig(xcb-keysyms)
-BuildRequires:  pkgconfig(xkbcommon)
+BuildRequires:  pkgconfig(xkbcommon) >= 0.5.0
 
 %description
 i3lock is a simple screen locker like slock. After starting it, you will see a
@@ -62,7 +62,7 @@
 screen by entering your password.
 
 %package xlock-compat
-Summary:xlock-compatibility script which calls i3lock
+Summary:Xlock-compatibility script which calls i3lock
 Group:  System/GUI/Other
 Requires:   ImageMagick
 Requires:   xdpyinfo
@@ -108,7 +108,7 @@
 
 %files
 %defattr(-,root,root)
-%doc CHANGELOG LICENSE README
+%doc CHANGELOG LICENSE README.md
 %config(noreplace) %{_sysconfdir}/pam.d/%{name}
 %{_bindir}/i3lock
 %doc %{_mandir}/man1/i3lock.1*

++ i3lock-2.5-use-unix2_chkpwd.diff ++
--- /var/tmp/diff_new_pack.0YQZ2A/_old  2016-04-30 23:31:17.0 +0200
+++ /var/tmp/diff_new_pack.0YQZ2A/_new  2016-04-30 23:31:17.0 +0200
@@ -3,14 +3,14 @@
 
 add the option to use unix2_chkpwd instead of needing setgid shadow
 
-diff --git a/Makefile b/Makefile
-index 2633bef..27a471b 100644
 a/Makefile
-+++ b/Makefile
-@@ -13,7 +13,11 @@
+Index: i3lock-2.7/Makefile
+===
+--- i3lock-2.7.orig/Makefile
 i3lock-2.7/Makefile
+@@ -14,7 +14,11 @@ CFLAGS += -Wall
  CPPFLAGS += -D_GNU_SOURCE
- CFLAGS += $(shell pkg-config --cflags cairo xcb-dpms xcb-xinerama xcb-atom 
xcb-image xcb-xkb xkbcommon xkbcommon-x11)
- LIBS += $(shell pkg-config --libs cairo xcb-dpms xcb-xinerama xcb-atom 
xcb-image xcb-xkb xkbcommon xkbcommon-x11)
+ CFLAGS += $(shell $(PKG_CONFIG) --cflags cairo xcb-dpms xcb-xinerama xcb-atom 
xcb-image xcb-xkb xkbcommon xkbcommon-x11)
+ LIBS += $(shell $(PKG_CONFIG) --libs cairo xcb-dpms xcb-xinerama xcb-atom 
xcb-image xcb-xkb xkbcommon xkbcommon-x11)
 +ifeq ($(USE_UNIX2_CHKPWD),1)
 +CFLAGS += -DUSE_UNIX2_CHKPWD=1
 +else
@@ -19,11 +19,11 @@
  LIBS += -lev
  LIBS += -lm
  
-diff --git a/i3lock.c b/i3lock.c
-index 5a87999..70842c6 100644
 a/i3lock.c
-+++ b/i3lock.c
-@@ -17,7 +17,9 @@
+Index: i3lock-2.7/i3lock.c
+===
+--- i3lock-2.7.orig/i3lock.c
 i3lock-2.7/i3lock.c
+@@ -19,7 +19,9 @@
  #include 
  #include 
  #include 
@@ -33,7 +33,7 @@
  #include 
  #include 
  #include 
-@@ -28,6 +30,13 @@
+@@ -30,6 +32,13 @@
  #include 
  #include 
  
@@ -47,7 +47,7 @@
  #include "i3lock.h"
  #include "xcb.h"
  #include "cursors.h"
-@@ -40,7 +49,9 @@ char color[7] = "ff";
+@@ -51,7 +60,9 @@ int 

commit qconf for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package qconf for openSUSE:Factory checked 
in at 2016-04-30 23:31:34

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


Package is "qconf"

Changes:

--- /work/SRC/openSUSE:Factory/qconf/qconf.changes  2015-09-30 
05:53:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.qconf.new/qconf.changes 2016-04-30 
23:31:47.0 +0200
@@ -1,0 +2,8 @@
+Thu Apr 21 08:53:50 UTC 2016 - jsl...@suse.com
+
+- update to 20160309
+  * drop qt3 support
+  * better qt5 support
+  * many small fixes
+
+---

Old:

  qconf-20150608.4a9c329ba879.tar.xz

New:

  qconf-20160309.61a9b87f4f.tar.xz



Other differences:
--
++ qconf.spec ++
--- /var/tmp/diff_new_pack.7YWF9W/_old  2016-04-30 23:31:48.0 +0200
+++ /var/tmp/diff_new_pack.7YWF9W/_new  2016-04-30 23:31:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qconf
 #
-# 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
@@ -20,9 +20,11 @@
 %define with_qt5 1
 %endif
 
+%define version_unconverted 20160309.61a9b87f4f
+
 Name:   qconf
 Url:http://delta.affinix.com/qconf/
-Version:20150608.4a9c329ba879
+Version:20160309.61a9b87f4f
 Release:0
 Summary:Configuration tool for qmake
 License:GPL-2.0
@@ -59,7 +61,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING README TODO
+%doc COPYING README.md TODO
 %{_bindir}/qconf
 %{_datadir}/%{name}
 

++ _service ++
--- /var/tmp/diff_new_pack.7YWF9W/_old  2016-04-30 23:31:48.0 +0200
+++ /var/tmp/diff_new_pack.7YWF9W/_new  2016-04-30 23:31:48.0 +0200
@@ -2,6 +2,7 @@
   
 git://github.com/psi-plus/qconf.git
 git
+configure.exe
 qconf
 %ad.%h
   

++ qconf-20150608.4a9c329ba879.tar.xz -> qconf-20160309.61a9b87f4f.tar.xz 
++
 1615 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/qconf-20150608.4a9c329ba879/AUTHORS new/qconf-20160309.61a9b87f4f/AUTHORS
--- old/qconf-20150608.4a9c329ba879/AUTHORS 2015-09-29 14:54:51.0 
+0200
+++ new/qconf-20160309.61a9b87f4f/AUTHORS   2016-04-21 14:39:18.0 
+0200
@@ -1 +1,3 @@
 Justin Karneges 
+Sergey Ilinykh 
+Ivan Romanov 
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/qconf-20150608.4a9c329ba879/README new/qconf-20160309.61a9b87f4f/README
--- old/qconf-20150608.4a9c329ba879/README  2015-09-29 14:54:51.0 
+0200
+++ new/qconf-20160309.61a9b87f4f/README1970-01-01 01:00:00.0 
+0100
@@ -1,115 +0,0 @@
-QConf v1.5
---
-Date: May 30th, 2008
-Website: http://delta.affinix.com/qconf/
-Mailing List: Delta Project 
-
-Author: Justin Karneges 
-
-Description:
-
-  QConf allows you to have a nice configure script for your qmake-based
-  project.  It is intended for developers who don't need (or want) to use
-  the more complex GNU autotools.
-
-  Scripts generated by QConf are meant for unix.  This means it should only
-  be used with projects based on Qt/X11, Qt/Mac, or Qt/Embedded.  No effort
-  has been made in supporting Qt/Windows based projects (yet).
-
-  NOTE: QConf is a Qt 4 program as of version 1.2.  However, it can still
-generate configure scripts for Qt 3 apps.  See below for information.
-
-
-Using QConf is easy:
-
-  1) First, install qconf:
-
- $ ./configure
- $ make
- # make install
-
-  2) Now, create a project.qc file.  It is in an XML format:
- 
-   MyProject <-- a friendly string
-   project.pro <-- your qmake profile
- 
-
-  3) Then run qconf on your file:
-
- $ qconf project.qc
-
- Assuming all goes well, this will output a 'configure' script.  Simply
- copy this into your application package.  Make sure to include(conf.pri)
- in your project.pro 

commit vm-install for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package vm-install for openSUSE:Factory 
checked in at 2016-04-30 23:31:48

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


Package is "vm-install"

Changes:

--- /work/SRC/openSUSE:Factory/vm-install/vm-install.changes2016-04-22 
16:26:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.vm-install.new/vm-install.changes   
2016-04-30 23:32:01.0 +0200
@@ -1,0 +2,7 @@
+Wed Apr 20 13:12:36 MDT 2016 - carn...@suse.com
+
+- bsc#976500 - vm-install: failure due to incorrectly parsing the
+  output of sfdisk
+- Version 0.8.51
+
+---

Old:

  vm-install-0.8.50.tar.bz2

New:

  vm-install-0.8.51.tar.bz2



Other differences:
--
++ vm-install.spec ++
--- /var/tmp/diff_new_pack.Nx8Kbw/_old  2016-04-30 23:32:02.0 +0200
+++ /var/tmp/diff_new_pack.Nx8Kbw/_new  2016-04-30 23:32:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vm-install
 #
-# Copyright (c) 2016 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
@@ -27,12 +27,12 @@
 %endif
 # For directory ownership:
 BuildRequires:  yast2
-Version:0.8.50
+Version:0.8.51
 Release:0
 Summary:Tool to Define a Virtual Machine and Install Its Operating 
System
 License:GPL-2.0
 Group:  System/Emulators/PC
-Source0:%{name}-0.8.50.tar.bz2
+Source0:%{name}-0.8.51.tar.bz2
 Source1:vm-install.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   dbus-1-python

++ vm-install-0.8.50.tar.bz2 -> vm-install-0.8.51.tar.bz2 ++
 156340 lines of diff (skipped)




commit mysql-community-server for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mysql-community-server for 
openSUSE:Factory checked in at 2016-04-30 23:31:07

Comparing /work/SRC/openSUSE:Factory/mysql-community-server (Old)
 and  /work/SRC/openSUSE:Factory/.mysql-community-server.new (New)


Package is "mysql-community-server"

Changes:

--- 
/work/SRC/openSUSE:Factory/mysql-community-server/mysql-community-server.changes
2016-02-05 00:32:10.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.mysql-community-server.new/mysql-community-server.changes
   2016-04-30 23:31:10.0 +0200
@@ -1,0 +2,26 @@
+Mon Apr 25 12:33:26 UTC 2016 - kstreit...@suse.com
+
+- update to 5.6.30
+  * changes
+http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-30.html
+http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-29.html
+  * fixed CVEs:
+CVE-2016-0705, CVE-2016-0639, CVE-2015-3194, CVE-2016-0640,
+CVE-2016-2047, CVE-2016-0644, CVE-2016-0646, CVE-2016-0647,
+CVE-2016-0648, CVE-2016-0649, CVE-2016-0650, CVE-2016-0665,
+CVE-2016-0666, CVE-2016-0641, CVE-2016-0642, CVE-2016-0655,
+CVE-2016-0661, CVE-2016-0668, CVE-2016-0643
+  * fix [bnc#962779], [bnc#959724]
+- don't delete the log data when migration fails
+- add 'log-error' and 'secure-file-priv' configuration options
+  (added via configuration-tweaks.tar.bz2) [bsc#963810]
+  * add '/etc/my.cnf.d/error_log.conf' that specifies
+'log-error = /var/log/mysql/mysqld.log'. If no path is set, the error
+log is written to '/var/lib/mysql/$HOSTNAME.err', which is not picked
+up by logrotate.
+  * add '/etc/my.cnf.d/secure_file_priv.conf' which specifies that
+'LOAD DATA', 'SELECT ... INTO' and 'LOAD FILE()' will only work with
+files in the directory specified by 'secure-file-priv' option
+(='/var/lib/mysql-files'). 
+
+---

Old:

  mysql-5.6.28.tar.gz

New:

  mysql-5.6.30.tar.gz



Other differences:
--
++ mysql-community-server.spec ++
--- /var/tmp/diff_new_pack.34qi5C/_old  2016-04-30 23:31:12.0 +0200
+++ /var/tmp/diff_new_pack.34qi5C/_new  2016-04-30 23:31:12.0 +0200
@@ -36,7 +36,9 @@
 %endif
 %if 0%{build_extras} > 0
 %define with_jemalloc 1
-%define with_oqgraph 1
+#temporarily disable OQGraph (see MDEV-9479)
+#%define with_oqgraph 1
+%define with_oqgraph 0
 %define with_cassandra 1
 %else
 %define with_jemalloc 0
@@ -44,7 +46,7 @@
 %define with_cassandra 0
 %endif
 Name:   mysql-community-server
-Version:5.6.28
+Version:5.6.30
 Release:0
 Summary:Server part of %{pretty_name}
 License:SUSE-GPL-2.0-with-FLOSS-exception
@@ -487,6 +489,13 @@
 
 mv %{buildroot}%{_datadir}/mysql-test/lib/My/SafeProcess/my_safe_process 
%{buildroot}%{_bindir}
 
+# Remove unused services for mariadb_101
+%if "%{extra_provides}" == "mariadb_101"
+rm -f %{buildroot}'%{_libexecdir}/systemd/system/mariadb.service'
+rm -f %{buildroot}'%{_libexecdir}/systemd/system/mariadb@.service'
+rm -f 
%{buildroot}'%{_libexecdir}/systemd/system/mariadb@bootstrap.service.d/use_galera_new_cluster.conf'
+%endif
+
 # Generate various filelists
 filelist innochecksum my_print_defaults myisam_ftdump myisamchk myisamlog 
myisampack mysql_fix_extensions mysql_fix_privilege_tables mysql_ssl_rsa_setup 
mysql_install_db mysql_secure_installation mysql_upgrade mysqlbug mysqld 
mysqld_multi mysqld_safe mysqlbinlog mysqldumpslow mysqlmanager mroonga 
resolve_stack_dump resolveip {m,}aria_chk {m,}aria_dump_log {m,}aria_ftdump 
{m,}aria_pack {m,}aria_read_log xtstat tokuft_logprint tokuftdump >mysql.files
 
@@ -621,6 +630,9 @@
 # Unwanted packaged stuff
 rm -rf '%{buildroot}'%{_datadir}/mysql/{solaris,SELinux}
 
+# Create the directory specified in 'secure-file-priv' option
+mkdir -p '%{buildroot}'/var/lib/mysql-files
+
 %check
 cd build
 
@@ -768,6 +780,23 @@
 %dir %{_libdir}/mysql/plugin
 %{_libdir}/mysql/plugin/[!d]*.so
 %ghost %{_localstatedir}/adm/update-messages/%{name}-%{version}-%{release}
+%dir %attr(0750, mysql, mysql) /var/lib/mysql-files
+# Pack files for mariadb_101
+%if "%{extra_provides}" == "mariadb_101"
+%{_bindir}/galera_new_cluster
+%{_bindir}/mariadb-service-convert
+%dir %{_datadir}/mysql/policy
+%dir %{_datadir}/mysql/policy/apparmor
+%{_datadir}/mysql/policy/apparmor/README
+%{_datadir}/mysql/policy/apparmor/usr.sbin.mysqld*
+%dir %{_datadir}/mysql/policy/selinux
+%{_datadir}/mysql/policy/selinux/README
+%{_datadir}/mysql/policy/selinux/mariadb-server.*
+%dir %{_datadir}/mysql/systemd
+%{_datadir}/mysql/systemd/mariadb.service
+%{_datadir}/mysql/systemd/mariadb@.service
+%{_datadir}/mysql/systemd/use_galera_new_cluster.conf
+%endif
 
 %files errormessages -f 

commit lshw for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package lshw for openSUSE:Factory checked in 
at 2016-04-30 23:31:10

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


Package is "lshw"

Changes:

--- /work/SRC/openSUSE:Factory/lshw/lshw.changes2015-08-01 
11:35:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.lshw.new/lshw.changes   2016-04-30 
23:31:14.0 +0200
@@ -1,0 +2,12 @@
+Tue Apr 26 19:39:38 UTC 2016 - mplus...@suse.com
+
+- Update to B.02.18
+  * no changelog available
+- Use pkgconfig style dependencies
+- Update dependencies
+- Build gui and cli at same time
+- Drop no longer needed patches
+  * lshw-gcc43.patch
+  * lshw-stack-corruption.patch
+
+---

Old:

  lshw-B.02.17.tar.gz
  lshw-gcc43.patch
  lshw-stack-corruption.patch

New:

  lshw-B.02.18.tar.gz



Other differences:
--
++ lshw.spec ++
--- /var/tmp/diff_new_pack.tkPa6a/_old  2016-04-30 23:31:15.0 +0200
+++ /var/tmp/diff_new_pack.tkPa6a/_new  2016-04-30 23:31:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lshw
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   lshw
-Version:B.02.17
+Version:B.02.18
 Release:0
 Summary:HardWare LiSter
 License:GPL-2.0
@@ -27,18 +27,24 @@
 Source: http://ezix.org/software/files/lshw-%{version}.tar.gz
 Source1:lshw.desktop.in
 Source2:lshw.png
-Patch1: lshw-gcc43.patch
-Patch2: lshw-stack-corruption.patch
 BuildRequires:  gcc-c++
-BuildRequires:  gtk2-devel >= 2.4.0
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  libglade2-devel
 BuildRequires:  libpng-devel
-BuildRequires:  libstdc++-devel
-BuildRequires:  pango-devel
-BuildRequires:  sqlite3-devel
+BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
-BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(gail) >= 2.4.0
+BuildRequires:  pkgconfig(gdk-2.0) >= 2.4.0
+BuildRequires:  pkgconfig(gdk-x11-2.0) >= 2.4.0
+BuildRequires:  pkgconfig(gtk+-2.0) >= 2.4.0
+BuildRequires:  pkgconfig(gtk+-unix-print-2.0) >= 2.4.0
+BuildRequires:  pkgconfig(gtk+-x11-2.0) >= 2.4.0
+BuildRequires:  pkgconfig(libglade-2.0)
+BuildRequires:  pkgconfig(pango)
+BuildRequires:  pkgconfig(pangocairo)
+BuildRequires:  pkgconfig(pangoft2)
+BuildRequires:  pkgconfig(pangoxft)
+BuildRequires:  pkgconfig(sqlite3)
+BuildRequires:  pkgconfig(zlib)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -59,6 +65,10 @@
 Group:  Hardware/Other
 Requires:   %{name} = %{version}-%{release}
 Requires:   hicolor-icon-theme
+Requires(post): hicolor-icon-theme
+Requires(post): update-desktop-files
+Requires(postun): hicolor-icon-theme
+Requires(postun): update-desktop-files
 
 %description gui
 lshw (Hardware Lister) is a small tool to provide detailed informaton on the
@@ -76,8 +86,6 @@
 
 %prep
 %setup -q
-%patch1
-%patch2
 
 %build
 make %{?_smp_mflags} \
@@ -89,32 +97,11 @@
 CC="gcc" \
 RPM_OPT_FLAGS="%{optflags}" \
 STRIP=touch \
-all
-
-make %{?_smp_mflags} \
-PREFIX="%{_prefix}" \
-SBINDIR="%{_sbindir}" \
-MANDIR="%{_mandir}" \
-DATADIR="%{_datadir}" \
-CXX="g++" \
-CC="gcc" \
-RPM_OPT_FLAGS="%{optflags}" \
-STRIP=touch \
+all \
 gui
 
 %install
-make %{?_smp_flags} \
-DESTDIR=%{buildroot} \
-PREFIX="%{_prefix}" \
-SBINDIR="%{_sbindir}" \
-MANDIR="%{_mandir}" \
-DATADIR="%{_datadir}" \
-CXX="g++" \
-CC="gcc" \
-OPTFLAGS="%{optflags}" \
-install
-
-make %{?_smp_flags} \
+make  %{?_smp_mflags} \
 DESTDIR=%{buildroot} \
 PREFIX="%{_prefix}" \
 SBINDIR="%{_sbindir}" \
@@ -123,6 +110,7 @@
 CXX="g++" \
 CC="gcc" \
 OPTFLAGS="%{optflags}" \
+install \
 install-gui
 
 install -d "%{buildroot}%{_datadir}/applications"
@@ -145,7 +133,7 @@
 
 %files -f lshw.lang
 %defattr(-,root,root,0755)
-%doc README COPYING docs/TODO docs/Changelog docs/lshw.xsd
+%doc README.md COPYING docs/TODO docs/Changelog docs/lshw.xsd
 %attr(0755,root,root) %{_sbindir}/lshw
 %dir %{_datadir}/lshw
 %{_datadir}/lshw/*.txt

++ lshw-B.02.17.tar.gz -> lshw-B.02.18.tar.gz ++
 490414 lines of diff (skipped)





commit php7 for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

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

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


Package is "php7"

Changes:

--- /work/SRC/openSUSE:Factory/php7/php7.changes2016-04-22 
16:24:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.php7.new/php7.changes   2016-04-30 
23:31:44.0 +0200
@@ -1,0 +2,17 @@
+Thu Apr 28 11:56:53 UTC 2016 - pgaj...@suse.com
+
+- updated to 7.0.6: This is a security release. Several security
+  bugs were fixed in this release.
+  * removed upstreamed php7-no-reentrant-crypt.patch
+
+---
+Mon Apr 25 09:47:49 UTC 2016 - sch...@linux-m68k.org
+
+- aarch64-mult.patch: fix asm constraints in aarch64 multiply macro
+
+---
+Thu Apr  7 08:19:27 UTC 2016 - pgaj...@suse.com
+
+- build for sle12
+
+---

Old:

  php-7.0.5.tar.xz
  php-7.0.5.tar.xz.asc
  php7-no-reentrant-crypt.patch

New:

  aarch64-mult.patch
  php-7.0.6.tar.xz
  php-7.0.6.tar.xz.asc



Other differences:
--
++ php7.spec ++
--- /var/tmp/diff_new_pack.YXBNj6/_old  2016-04-30 23:31:45.0 +0200
+++ /var/tmp/diff_new_pack.YXBNj6/_new  2016-04-30 23:31:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package php7
 #
-# 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
@@ -51,7 +51,7 @@
 %define need_libxml2_hack %(if [ -e %{_includedir}/libxml/parser.h ]; then if 
grep -q XML_PARSE_OLDSAX %{_includedir}/libxml/parser.h; then echo 1; else echo 
0; fi; else echo 0; fi)
 
 Name:   php7
-Version:7.0.5
+Version:7.0.6
 Release:0
 Summary:PHP7 Core Files
 License:PHP-3.01
@@ -91,12 +91,12 @@
 # from their checking as I indicated in crypt-tests.patch yet, or php will
 # silently use his own implementation again
 Patch12:php7-crypt-tests.patch
-# related to previous patch; !(defined(_REENTRANT) || defined(_THREAD_SAFE))
-Patch13:php7-no-reentrant-crypt.patch
 # https://bugs.php.net/bug.php?id=53007
 Patch14:php7-odbc-cmp-int-cast.patch
 # https://bugs.php.net/bug.php?id=70461
 Patch15:php7-fix_net-snmp_disable_MD5.patch
+# https://bugs.php.net/bug.php?id=70015
+Patch16:aarch64-mult.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  apache-rpm-macros
@@ -165,8 +165,7 @@
 %if %{with firebird}
 BuildRequires:  firebird-devel
 # libfbclient2-devel pkg split in 12.2
-# 'on all openSUSE from 12.1 (no sle12)', sigh
-%if 0%{suse_version} > 1210 && (0%{?is_opensuse} || 0%{suse_version} != 1315)
+%if 0%{suse_version} > 1210
 BuildRequires:  libfbclient2-devel
 %endif
 %endif
@@ -645,7 +644,6 @@
 PHP functions for access to firebird database servers.
 %endif
 
-
 %package odbc
 Summary:PHP7 Extension Module
 Group:  Development/Libraries/PHP
@@ -765,7 +763,6 @@
 functionality.
 %endif
 
-
 %package readline
 Summary:PHP7 readline extension
 Group:  Development/Libraries/PHP
@@ -869,7 +866,6 @@
 is compatible to 3rd party binary extension like ZendOptimizer.
 %endif
 
-
 %package sysvmsg
 Summary:PHP7 Extension Module
 Group:  Development/Libraries/PHP
@@ -1041,9 +1037,9 @@
 echo "*** SKIPPING LIBMXL2.7 FIX ***"
 %endif
 %patch12
-%patch13
 %patch14
 %patch15
+%patch16 -p1
 
 # Safety check for API version change.
 vapi=`sed -n '/#define PHP_API_VERSION/{s/.* //;p}' main/php.h`

++ aarch64-mult.patch ++
Index: php-7.0.5/Zend/zend_multiply.h
===
--- php-7.0.5.orig/Zend/zend_multiply.h
+++ php-7.0.5/Zend/zend_multiply.h
@@ -53,8 +53,8 @@
__asm__("mul %0, %2, %3\n"  
\
"smulh %1, %2, %3\n"
\
"sub %1, %1, %0, asr #63\n" 
\
-   : "=X"(__tmpvar), "=X"(usedval) 
\
-   : "X"(a), "X"(b));  
\
+   : "="(__tmpvar), "="(usedval)   
\

commit python3-websocket-client for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package python3-websocket-client for 
openSUSE:Factory checked in at 2016-04-30 23:31:41

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


Package is "python3-websocket-client"

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-websocket-client/python3-websocket-client.changes
2016-04-28 16:56:24.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-websocket-client.new/python3-websocket-client.changes
   2016-04-30 23:31:54.0 +0200
@@ -1,0 +2,10 @@
+Tue Apr 12 04:42:10 UTC 2016 - a...@gmx.de
+
+- update to version 0.36.0:
+  * added support for using custom connection class (#235)
+  * use Named logger (#238)
+  * implement ping/pong timeout (#241)
+  * Corrects the syntax highlight code (#243)
+  * fixed failure to join thread before it is started (#242)
+
+---

Old:

  websocket_client-0.35.0.tar.gz

New:

  websocket_client-0.36.0.tar.gz



Other differences:
--
++ python3-websocket-client.spec ++
--- /var/tmp/diff_new_pack.irRTwO/_old  2016-04-30 23:31:55.0 +0200
+++ /var/tmp/diff_new_pack.irRTwO/_new  2016-04-30 23:31:55.0 +0200
@@ -16,7 +16,7 @@
 #
 
 Name:   python3-websocket-client
-Version:0.35.0
+Version:0.36.0
 Release:0
 Summary:WebSocket client implementation
 License:LGPL-2.1

++ websocket_client-0.35.0.tar.gz -> websocket_client-0.36.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.35.0/ChangeLog 
new/websocket_client-0.36.0/ChangeLog
--- old/websocket_client-0.35.0/ChangeLog   2016-01-04 09:04:27.0 
+0100
+++ new/websocket_client-0.36.0/ChangeLog   2016-04-12 02:00:24.0 
+0200
@@ -1,6 +1,13 @@
 ChangeLog
 
 
+- 0.36.0
+  - added support for using custom connection class (#235)
+  - use Named logger (#238)
+  - implement ping/pong timeout (#241)
+  - Corrects the syntax highlight code (#243)
+  - fixed failure to join thread before it is started (#242)
+
 - 0.35.0
   - Prints timings in console (#217)
   - use inspect.getfullargspec with Python 3.x (#219)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/websocket_client-0.35.0/PKG-INFO 
new/websocket_client-0.36.0/PKG-INFO
--- old/websocket_client-0.35.0/PKG-INFO2016-01-04 09:05:17.0 
+0100
+++ new/websocket_client-0.36.0/PKG-INFO2016-04-12 02:02:42.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: websocket_client
-Version: 0.35.0
+Version: 0.36.0
 Summary: WebSocket client for python. hybi13 is supported.
 Home-page: https://github.com/liris/websocket-client
 Author: liris
@@ -51,7 +51,9 @@
 Current implementation of websocket-client is using "CONNECT" method 
via proxy.
 
 
-example::
+example
+
+.. code:: python
 
 import websocket
 ws = websocket.WebSocket()
@@ -63,7 +65,9 @@
 Example
 =
 
-Low Level API example::
+Low Level API example
+
+.. code:: python
 
 from websocket import create_connection
 ws = create_connection("ws://echo.websocket.org/")
@@ -77,14 +81,33 @@
 
 If you want to customize socket options, set sockopt.
 
-sockopt example::
+sockopt example
+
+.. code:: python
 
 from websocket import create_connection
 ws = create_connection("ws://echo.websocket.org/",
 sockopt=((socket.IPPROTO_TCP, 
socket.TCP_NODELAY),))
 
+You can also use your own class for the connection.
+
+custom connection class example
+
+..code:: python
+
+from websocket import create_connection, WebSocket
+class MyWebSocket(WebSocket):
+def recv_frame(self):
+frame = super().recv_frame()
+print('yay! I got this frame: ', frame)
+return frame
+
+ws = create_connection("ws://echo.websocket.org/",
+sockopt=((socket.IPPROTO_TCP, 
socket.TCP_NODELAY),), class_=MyWebSocket)
+
+JavaScript websocket-like API example
 
-JavaScript websocket-like API example::
+.. code:: python
 
 import websocket
 import thread
@@ -128,17 +151,23 @@
  

commit libchipcard for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libchipcard for openSUSE:Factory 
checked in at 2016-04-30 23:31:53

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


Package is "libchipcard"

Changes:

--- /work/SRC/openSUSE:Factory/libchipcard/libchipcard.changes  2014-02-24 
10:02:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.libchipcard.new/libchipcard.changes 
2016-04-30 23:32:06.0 +0200
@@ -1,0 +2,13 @@
+Wed Apr  6 11:03:21 UTC 2016 - nico.kru...@gmail.com
+
+- Update to version 5.0.4:
+  + change build system to support newer distributions
+- Update to version 5.0.3beta:
+  + remove special handling for the cyberJack reader
+(it was unclear whether this was actually needed)
+  + now, cyberJack readers get the same commands as any other
+reader (this hopefully fixes some problems with them)
+  + if problems with cyberJack continue, please contact the
+Reiner SCT support
+
+---

Old:

  libchipcard-5.0.2.tar.bz2

New:

  libchipcard-5.0.4.tar.gz



Other differences:
--
++ libchipcard.spec ++
--- /var/tmp/diff_new_pack.ZWB1k5/_old  2016-04-30 23:32:07.0 +0200
+++ /var/tmp/diff_new_pack.ZWB1k5/_new  2016-04-30 23:32:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libchipcard
 #
-# Copyright (c) 2011 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
@@ -16,27 +16,27 @@
 #
 
 
-
 Name:   libchipcard
-Version:5.0.2
-Release:1
-License:GPL-2.0+
+Version:5.0.4
+Release:0
 Summary:Library That Allows Easy Access to Smart Cards (Chipcards)
-Url:http://www.aquamaniac.de/sites/libchipcard/index.php
+License:GPL-2.0+
 Group:  Hardware/Other
-Source: %{name}-%{version}.tar.bz2
-#Source:
http://www.aquamaniac.de/sites/download/download.php?package=02=26=01=libchipcard-5.0.2.tar.gz
+Url:http://www.aquamaniac.de/sites/libchipcard/index.php
+Source: %{name}-%{version}.tar.gz
+#Source:
http://www2.aquamaniac.de/sites/download/download.php?package=02=200=01=libchipcard-5.0.4.tar.gz
 Source100:  libchipcard-rpmlintrc
 Patch0: libchipcard-buildsrcdoc.patch
 BuildRequires:  doxygen
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gd
 BuildRequires:  gwenhywfar-devel
 BuildRequires:  gwenhywfar-tools
 BuildRequires:  pcsc-lite-devel
+BuildRequires:  pkg-config
 BuildRequires:  zlib-devel
-BuildRequires:  fdupes
 PreReq: %insserv_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -49,7 +49,6 @@
 Reiner-SCT readers.
 
 %package -n libchipcard6
-License:GPL-2.0+
 Summary:Library That Allows Easy Access to Smart Cards (Chipcards)
 Group:  System/Libraries
 Requires:   %{name} >= %{version}
@@ -59,7 +58,6 @@
 to develop applications that require these.
 
 %package devel
-License:GPL-2.0+
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}




commit calibre for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2016-04-30 23:31:47

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


Package is "calibre"

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2016-04-17 
22:17:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2016-04-30 
23:31:59.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 29 09:42:18 UTC 2016 - corne...@solcon.nl
+
+- Update to 2.56.0:
+  * For details see http://calibre-ebook.com/whats-new
+
+---

Old:

  calibre-2.55.0.tar.xz

New:

  calibre-2.56.0.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.OmCUSP/_old  2016-04-30 23:32:01.0 +0200
+++ /var/tmp/diff_new_pack.OmCUSP/_new  2016-04-30 23:32:01.0 +0200
@@ -20,7 +20,7 @@
 License:GPL-3.0
 Group:  Productivity/Other
 Name:   calibre
-Version:2.55.0
+Version:2.56.0
 Release:0
 Url:http://calibre-ebook.com
 Source0:
http://download.calibre-ebook.com/%{version}/calibre-%{version}.tar.xz

++ calibre-2.55.0.tar.xz -> calibre-2.56.0.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-2.55.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-2.56.0.tar.xz differ: char 27, 
line 1




commit qtractor for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package qtractor for openSUSE:Factory 
checked in at 2016-04-30 23:31:35

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


Package is "qtractor"

Changes:

--- /work/SRC/openSUSE:Factory/qtractor/qtractor.changes2016-04-08 
09:39:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.qtractor.new/qtractor.changes   2016-04-30 
23:31:48.0 +0200
@@ -1,0 +2,22 @@
+Thu Apr 28 10:23:46 UTC 2016 - ec...@opensuse.org
+
+- update to 0.7.7
+  - LV2 UI Touch feature/interface support added.
+  - MIDI aware plug-ins are now void from multiple or parallel 
+instantiation.
+  - MIDI tracks and buses plug-in chains now honor the number of 
+effective audio channels from the assigned audio output bus; 
+dedicated audio output ports will keep default to the stereo 
+two channels.
+  - Plug-in rescan option has been added to plug-ins selection 
+dialog (yet another suggestion by Frank Neumann, thanks).
+  - Dropped the --enable-qt5 from configure as found redundant 
+given that's the build default anyway
+  - Immediate visual sync has been added to main and MIDI clip 
+editor thumb-views
+  - Fixed an old MIDI clip editor contents disappearing bug,
+which manifested when drawing free-hand 
+(ie. Edit/Select Mode/Edit Draw is on) over and behind its 
+start/beginning position (while in the lower view pane).
+
+---

Old:

  qtractor-0.7.6.tar.gz

New:

  qtractor-0.7.7.tar.gz



Other differences:
--
++ qtractor.spec ++
--- /var/tmp/diff_new_pack.nsEvl6/_old  2016-04-30 23:31:49.0 +0200
+++ /var/tmp/diff_new_pack.nsEvl6/_new  2016-04-30 23:31:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   qtractor
-Version:0.7.6
+Version:0.7.7
 Release:0
 Summary:An Audio/MIDI multi-track sequencer
 License:GPL-2.0+

++ qtractor-0.7.6.tar.gz -> qtractor-0.7.7.tar.gz ++
 12309 lines of diff (skipped)




commit subversion for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package subversion for openSUSE:Factory 
checked in at 2016-04-30 23:31:37

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


Package is "subversion"

Changes:

--- /work/SRC/openSUSE:Factory/subversion/subversion.changes2016-03-07 
13:27:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.subversion.new/subversion.changes   
2016-04-30 23:31:50.0 +0200
@@ -1,0 +2,30 @@
+Thu Apr 28 00:00:00 UTC 2016 - astie...@suse.com
+
+- Apache Subversion 1.9.4, fixing two server-side vulnerabilities:
+  * CVE-2016-2167: svnserve/sasl may authenticate users using the
+wrong realm (boo#976849)
+  * CVE-2016-2168: Remotely triggerable DoS vulnerability in
+mod_authz_svn during COPY/MOVE authorization check (boo#976850)
+- Client-side bugfixes:
+  * diff: support '--summarize --ignore-properties'
+  * checkout: fix performance regression on NFS
+  * gpg-agent: properly handle passwords with percent characters
+  * svn-graph.pl: fix assertion about a non-canonical path
+  * hot-backup.py: better input validation
+  * commit: abort on Ctrl-C in plaintext password prompt
+  * diff: produce proper forward binary diffs with --git
+  * ra_serf: fix deleting directories with many files
+- Server-side bugfixes:
+  * improve documentation for AuthzSVNGroupsFile and groups-db
+  * fsfs: reduce peak memory usage when listing large directories
+  * fsfs: fix a rare source of incomplete dump files and reports
+- Client-side and server-side bugfixes:
+  * update INSTALL documentation file
+  * fix potential memory access bugs
+  * fix potential out of bounds read in svn_repos_get_logs5()
+- Bindings bugfixes:
+  * ignore absent nodes in javahl version of svn status -u
+- API changes:
+  * properly interpret parameters in svn_wc_get_diff_editor6()
+
+---

Old:

  subversion-1.9.3.tar.bz2
  subversion-1.9.3.tar.bz2.asc

New:

  subversion-1.9.4.tar.bz2
  subversion-1.9.4.tar.bz2.asc



Other differences:
--
++ subversion.spec ++
--- /var/tmp/diff_new_pack.y8ru5T/_old  2016-04-30 23:31:51.0 +0200
+++ /var/tmp/diff_new_pack.y8ru5T/_new  2016-04-30 23:31:51.0 +0200
@@ -36,7 +36,7 @@
 %bcond_without python_ctypes
 %bcond_withall_regression_tests
 Name:   subversion
-Version:1.9.3
+Version:1.9.4
 Release:0
 Summary:Subversion version control system
 License:Apache-2.0
@@ -53,7 +53,7 @@
 Source15:   svnserve.tmpfiles
 Source42:   subversion.svngrep.sh
 Source43:   subversion.svndiff.sh
-Source50:   
https://people.apache.org/keys/group/subversion-pmc.asc#/subversion.keyring
+Source50:   
https://people.apache.org/keys/group/subversion.asc#/subversion.keyring
 Source51:   
https://www.apache.org/dist/subversion/%{name}-%{version}.tar.bz2.asc
 Source92:   %{name}.rpmlintrc
 Patch11:subversion.libtool-verbose.patch


++ subversion-1.9.3.tar.bz2 -> subversion-1.9.4.tar.bz2 ++
/work/SRC/openSUSE:Factory/subversion/subversion-1.9.3.tar.bz2 
/work/SRC/openSUSE:Factory/.subversion.new/subversion-1.9.4.tar.bz2 differ: 
char 11, line 1

++ subversion-no-build-date.patch ++
--- /var/tmp/diff_new_pack.y8ru5T/_old  2016-04-30 23:31:52.0 +0200
+++ /var/tmp/diff_new_pack.y8ru5T/_new  2016-04-30 23:31:52.0 +0200
@@ -13,10 +13,10 @@
  subversion/tests/cmdline/getopt_tests_data/svn--version_stdout
|1 -
  5 files changed, 6 insertions(+), 12 deletions(-)
 
-Index: 
subversion-1.9.0/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java
+Index: 
subversion-1.9.4/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java
 ===
 
subversion-1.9.0.orig/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java
2015-08-10 22:02:38.0 +0200
-+++ 
subversion-1.9.0/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java
 2015-08-10 22:03:00.0 +0200
+--- 
subversion-1.9.4.orig/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java
 
subversion-1.9.4/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java
 @@ -144,10 +144,10 @@ public class BasicTests extends SVNTests
  {
  vx = client.getVersionExtended(false);
@@ -30,10 +30,10 @@
  throw new Exception("Build time empty");
  result = vx.getBuildHost();
  if (result == null || result.trim().length() == 0)
-Index: 

commit varnish for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package varnish for openSUSE:Factory checked 
in at 2016-04-30 23:31:50

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


Package is "varnish"

Changes:

--- /work/SRC/openSUSE:Factory/varnish/varnish.changes  2016-03-17 
16:48:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.varnish.new/varnish.changes 2016-04-30 
23:32:03.0 +0200
@@ -1,0 +2,10 @@
+Fri Apr 22 14:15:43 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 4.1.2
+* vmods: Passing VCL ACL to a vmod is now possible.
+* vmods: VRT_MINOR_VERSION increase due to new function:
+  VRT_acl_match()
+* Be stricter when parsing a HTTP request to avoid potential HTTP
+  smuggling attacks against vulnerable backends.
+
+---

Old:

  varnish-4.1.1.tar.gz

New:

  varnish-4.1.2.tar.gz



Other differences:
--
++ varnish.spec ++
--- /var/tmp/diff_new_pack.yUgfN2/_old  2016-04-30 23:32:04.0 +0200
+++ /var/tmp/diff_new_pack.yUgfN2/_new  2016-04-30 23:32:04.0 +0200
@@ -21,7 +21,7 @@
 %define pkg_logdir   %_localstatedir/log/%name
 %define pkg_cachedir %_localstatedir/cache/%name
 Name:   varnish
-Version:4.1.1
+Version:4.1.2
 Release:0
 Summary:High-performance HTTP accelerator
 License:BSD-2-Clause

++ varnish-4.1.1.tar.gz -> varnish-4.1.2.tar.gz ++
 9817 lines of diff (skipped)




commit mplus-fonts for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mplus-fonts for openSUSE:Factory 
checked in at 2016-04-30 23:31:51

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


Package is "mplus-fonts"

Changes:

--- /work/SRC/openSUSE:Factory/mplus-fonts/mplus-fonts.changes  2014-03-14 
15:17:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.mplus-fonts.new/mplus-fonts.changes 
2016-04-30 23:32:05.0 +0200
@@ -1,0 +2,15 @@
+Sat Apr 30 03:58:29 UTC 2016 - ft...@geeko.jp
+
+- update to testflight 061
+  * new 100 glyphs; the number of kanji glyphs is now 5100 
+
+---
+Fri Nov 13 19:03:47 UTC 2015 - ft...@geeko.jp
+
+- update to testflight 060
+  * new 100 glyphs; the number of kanji glyphs is 5000
+- update to testflight 059
+  * new 100 glyphs; 
+- update the project URLs
+
+---

Old:

  mplus-TESTFLIGHT-058.tar.xz

New:

  mplus-TESTFLIGHT-061.tar.xz



Other differences:
--
++ mplus-fonts.spec ++
--- /var/tmp/diff_new_pack.BsqEFX/_old  2016-04-30 23:32:06.0 +0200
+++ /var/tmp/diff_new_pack.BsqEFX/_new  2016-04-30 23:32:06.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mplus-fonts
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,15 @@
 
 
 Name:   mplus-fonts
-Version:1.0.58
+Version:1.0.61
 Release:0
-%define mplusname mplus-TESTFLIGHT-058
+%define mplusname mplus-TESTFLIGHT-061
 Summary:Free Fonts Set Incorporates All Kanji Until Level 2 and Latin 
Glyphs
 License:SUSE-mplus
 Group:  System/X11/Fonts
-Url:
http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/index-en.html
+Url:https://mplus-fonts.osdn.jp/
 
-Source0:
http://iij.dl.sourceforge.jp/mplus-fonts/6650/%{mplusname}.tar.xz
+Source0:%{mplusname}.tar.xz
 BuildRequires:  fontpackages-devel
 BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ mplus-TESTFLIGHT-058.tar.xz -> mplus-TESTFLIGHT-061.tar.xz ++
/work/SRC/openSUSE:Factory/mplus-fonts/mplus-TESTFLIGHT-058.tar.xz 
/work/SRC/openSUSE:Factory/.mplus-fonts.new/mplus-TESTFLIGHT-061.tar.xz differ: 
char 26, line 1




commit kdeedu3 for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package kdeedu3 for openSUSE:Factory checked 
in at 2016-04-30 23:31:32

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


Package is "kdeedu3"

Changes:

--- /work/SRC/openSUSE:Factory/kdeedu3/kdeedu3.changes  2012-04-02 
11:23:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdeedu3.new/kdeedu3.changes 2016-04-30 
23:31:45.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr 27 11:23:40 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- add kdeedu3_isnan_ppc64le_cast.patch
+
+---

New:

  kdeedu3_isnan_ppc64le_cast.patch



Other differences:
--
++ kdeedu3.spec ++
--- /var/tmp/diff_new_pack.lvM9qb/_old  2016-04-30 23:31:47.0 +0200
+++ /var/tmp/diff_new_pack.lvM9qb/_new  2016-04-30 23:31:47.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package kdeedu3 (Version 3.5.10)
+# spec file for package kdeedu3
 #
-# Copyright (c) 2008 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
@@ -13,19 +13,23 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 Name:   kdeedu3
 BuildRequires:  kdelibs3-devel
+Summary:Education Applications
 License:GPL-2.0+
 Group:  System/GUI/KDE
-Summary:Education Applications
 Version:3.5.10
-Release:1
+Release:0
 Url:http://www.kde.org
 BuildRequires:  fdupes
-Provides:   kgeo,keduca
+Provides:   keduca
+Provides:   kgeo
 Source0:kdeedu-%{version}.tar.bz2
 Patch0: 3_5_BRANCH.diff
+Patch1: kdeedu3_isnan_ppc64le_cast.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -51,6 +55,7 @@
 %prep
 %setup -n kdeedu-%{version} -q
 %patch0
+%patch1 -p1
 . /etc/opt/kde3/common_options
 update_admin
 

++ kdeedu3_isnan_ppc64le_cast.patch ++
From: Michel Normand 
Subject: kdeedu3 isnan ppc64le cast
Date: Wed, 27 Apr 2016 13:10:23 +0200

avoid compilation error for ppc64le
===
fitsviewer.cpp: In member function 'float* FITSViewer::loadData(const char*, 
float*)':
fitsviewer.cpp:339:9: error: non-floating-point argument in call to function 
'__builtin_isnan'
if (isnan(pixval_32)) pixval_32 = 0;
^
===

Signed-off-by: Michel Normand 
---
 kstars/kstars/fitsviewer.cpp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: kdeedu-3.5.10/kstars/kstars/fitsviewer.cpp
===
--- kdeedu-3.5.10.orig/kstars/kstars/fitsviewer.cpp
+++ kdeedu-3.5.10/kstars/kstars/fitsviewer.cpp
@@ -336,7 +336,7 @@ float * FITSViewer::loadData(const char
 {
 FITS_GETBITPIX32(tempData, pixval_32);
 //pixval_32 = ntohl(pixval_32);
-if (isnan(pixval_32)) pixval_32 = 0;
+if (isnan(float(pixval_32))) pixval_32 = 0;
 buffer[i] = pixval_32;
 tempData+=4;
}



commit openscap for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package openscap for openSUSE:Factory 
checked in at 2016-04-30 23:31:39

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


Package is "openscap"

Changes:

--- /work/SRC/openSUSE:Factory/openscap/openscap.changes2016-03-26 
15:27:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.openscap.new/openscap.changes   2016-04-30 
23:31:53.0 +0200
@@ -1,0 +2,32 @@
+Fri Apr 22 13:50:51 UTC 2016 - meiss...@suse.com
+
+- openscap 1.2.9 release
+  - New features
+- oscap-chroot - a tool for offline scanning of filesystems mounted at 
arbitrary paths
+- enabled offline scanning in many probes
+- support for SCE in data streams
+- many improvements of verbose mode
+- verbose messages can be written on stderr
+- runlevel probe supports SUSE systems
+- new upstream tests
+  - Maintenance
+- a lot of refactoring
+- fixes in various tests
+- OCILs are correctly placed in datastreams (issue #364)
+- oscap-vm can work with fusermount when guestunmount is not available
+- fixed oscap-docker HTTP communication issues (issue #304)
+- fixed oscap-docker tracebacks (issue #303, #317)
+- fixed container mounting in oscap-docker (issue #329)
+- added Fedora 25 CPE
+- only non-empty profiles are built (rhbz#1256879, rhbz#1302230)
+- fixed compiler errors on RHEL5 and SLES11
+- fixed sorting of groups in HTML report (issue #342)
+- fixed version/@time and version/@update in XCCDF Benchmark
+- fixed CPE definitions to work also in offline mode
+- fixed sysctl probe (issue #258)
+- fixed manual page for oscap-ssh (rhbz#1299969)
+- updated user manuals and manual pages
+- updated .gitignore
+- dropped fix-missing-include.dif, not needed anymore
+
+---

Old:

  fix-missing-include.dif
  openscap-1.2.8.tar.gz
  openscap-1.2.8.tar.gz.sha1sum

New:

  openscap-1.2.9.tar.gz
  openscap-1.2.9.tar.gz.sha1sum



Other differences:
--
++ openscap.spec ++
--- /var/tmp/diff_new_pack.fmdONn/_old  2016-04-30 23:31:54.0 +0200
+++ /var/tmp/diff_new_pack.fmdONn/_new  2016-04-30 23:31:54.0 +0200
@@ -20,7 +20,7 @@
 %define with_bindings 0
 
 Name:   openscap
-Version:1.2.8
+Version:1.2.9
 Release:1.0
 Source: 
https://fedorahosted.org/releases/o/p/openscap/%name-%version.tar.gz
 Source5:
https://fedorahosted.org/releases/o/p/openscap/%name-%version.tar.gz.sha1sum
@@ -31,7 +31,6 @@
 # Generated from http://gitorious.org/test-suite/scap
 Source3:scap-yast2sec-xccdf.xml
 Source4:scap-yast2sec-oval.xml
-Patch0: fix-missing-include.dif
 Url:http://www.open-scap.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libacl-devel
@@ -163,7 +162,6 @@
 
 %prep
 %setup -q
-%patch0 -p1 
 
 %build
 
@@ -291,6 +289,7 @@
 %{_bindir}/oscap
 %{_bindir}/oscap-vm
 %{_bindir}/oscap-ssh
+%{_bindir}/oscap-chroot
 %{_bindir}/scap-as-rpm
 %config %{_sysconfdir}/bash_completion.d/*
 

++ openscap-1.2.8.tar.gz -> openscap-1.2.9.tar.gz ++
/work/SRC/openSUSE:Factory/openscap/openscap-1.2.8.tar.gz 
/work/SRC/openSUSE:Factory/.openscap.new/openscap-1.2.9.tar.gz differ: char 5, 
line 1

++ openscap-1.2.8.tar.gz.sha1sum -> openscap-1.2.9.tar.gz.sha1sum ++
--- /work/SRC/openSUSE:Factory/openscap/openscap-1.2.8.tar.gz.sha1sum   
2016-01-22 01:09:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.openscap.new/openscap-1.2.9.tar.gz.sha1sum  
2016-04-30 23:31:53.0 +0200
@@ -1 +1 @@
-1bdd600be54e50160cfc59c3ab7262fced362c7a  openscap-1.2.8.tar.gz
+d9d4aa979f3545e2584eb8a086cb1f58bfd8e843  openscap-1.2.9.tar.gz






commit python3-pyquery for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package python3-pyquery for openSUSE:Factory 
checked in at 2016-04-30 23:31:45

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


Package is "python3-pyquery"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyquery/python3-pyquery.changes  
2016-02-08 09:47:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pyquery.new/python3-pyquery.changes 
2016-04-30 23:31:57.0 +0200
@@ -1,0 +2,11 @@
+Sat Apr 23 16:23:21 UTC 2016 - a...@gmx.de
+
+- update to version 1.2.13:
+  * Note explicit support for Python 3.5
+
+- changes from version 1.2.12:
+  * make_links_absolute now take care of whitespaces
+  * added pseudo selector :has()
+  * add cookies arguments as allowed arguments for requests
+
+---

Old:

  pyquery-1.2.11.tar.gz

New:

  pyquery-1.2.13.tar.gz



Other differences:
--
++ python3-pyquery.spec ++
--- /var/tmp/diff_new_pack.H22osg/_old  2016-04-30 23:31:57.0 +0200
+++ /var/tmp/diff_new_pack.H22osg/_new  2016-04-30 23:31:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pyquery
-Version:1.2.11
+Version:1.2.13
 Release:0
 Summary:A jQuery-like library for python
 License:BSD-3-Clause

++ pyquery-1.2.11.tar.gz -> pyquery-1.2.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyquery-1.2.11/CHANGES.rst 
new/pyquery-1.2.13/CHANGES.rst
--- old/pyquery-1.2.11/CHANGES.rst  2016-02-02 12:41:44.0 +0100
+++ new/pyquery-1.2.13/CHANGES.rst  2016-04-12 18:02:16.0 +0200
@@ -1,3 +1,18 @@
+1.2.13 (2016-04-12)
+---
+
+- Note explicit support for Python 3.5
+
+1.2.12 (2016-04-12)
+---
+
+- make_links_absolute now take care of whitespaces
+
+- added pseudo selector :has()
+
+- add cookies arguments as allowed arguments for requests
+
+
 1.2.11 (2016-02-02)
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyquery-1.2.11/PKG-INFO new/pyquery-1.2.13/PKG-INFO
--- old/pyquery-1.2.11/PKG-INFO 2016-02-02 12:41:58.0 +0100
+++ new/pyquery-1.2.13/PKG-INFO 2016-04-12 18:02:17.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyquery
-Version: 1.2.11
+Version: 1.2.13
 Summary: A jquery-like library for python
 Home-page: https://github.com/gawel/pyquery
 Author: Gael Pasgrimaud
@@ -73,6 +73,21 @@
 News
 
 
+1.2.13 (2016-04-12)
+---
+
+- Note explicit support for Python 3.5
+
+1.2.12 (2016-04-12)
+---
+
+- make_links_absolute now take care of whitespaces
+
+- added pseudo selector :has()
+
+- add cookies arguments as allowed arguments for requests
+
+
 1.2.11 (2016-02-02)
 ---
 
@@ -253,3 +268,4 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyquery-1.2.11/docs/pseudo_classes.rst 
new/pyquery-1.2.13/docs/pseudo_classes.rst
--- old/pyquery-1.2.11/docs/pseudo_classes.rst  2016-02-02 12:41:44.0 
+0100
+++ new/pyquery-1.2.13/docs/pseudo_classes.rst  2016-04-12 18:02:16.0 
+0200
@@ -160,6 +160,25 @@
 
 
 
+:has()
+==
+Matches elements which contain at least one element that matches the
+specified selector. https://api.jquery.com/has-selector/
+
+>>> from pyquery import PyQuery
+>>> d = PyQuery('')
+>>> d('.foo:has(".baz")')
+[]
+>>> d('.foo:has(".foo")')
+[]
+>>> d('.foo:has(".bar")')
+[]
+>>> d('.foo:has(div)')
+[]
+
+
+
+
 :header
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyquery-1.2.11/pyquery/cssselectpatch.py 
new/pyquery-1.2.13/pyquery/cssselectpatch.py
--- old/pyquery-1.2.11/pyquery/cssselectpatch.py2016-02-02 
12:41:44.0 +0100
+++ new/pyquery-1.2.13/pyquery/cssselectpatch.py2016-04-12 
18:02:16.0 +0200
@@ -419,3 +419,30 @@
 value = self.xpath_literal(function.arguments[0].value)
 xpath.add_post_condition('contains(., %s)' % value)
 return xpath
+
+def xpath_has_function(self, xpath, function):
+ 

commit chromium for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2016-04-30 23:31:27

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-04-22 
16:24:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2016-04-30 
23:31:33.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 22 14:06:30 UTC 2016 - jsl...@suse.com
+
+- _constraints: increase memory. It takes 1.2G to build some .o, and
+  with -j4 this results in OOM.
+
+---



Other differences:
--
++ _constraints ++
--- /var/tmp/diff_new_pack.fdBd9q/_old  2016-04-30 23:31:43.0 +0200
+++ /var/tmp/diff_new_pack.fdBd9q/_new  2016-04-30 23:31:43.0 +0200
@@ -6,7 +6,7 @@
23000
 
 
-  4000
+  6000
 
   
   
@@ -20,4 +20,4 @@
   
 
   
-
\ No newline at end of file
+





commit python3-path.py for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package python3-path.py for openSUSE:Factory 
checked in at 2016-04-30 23:31:43

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


Package is "python3-path.py"

Changes:

--- /work/SRC/openSUSE:Factory/python3-path.py/python3-path.py.changes  
2016-04-11 10:26:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-path.py.new/python3-path.py.changes 
2016-04-30 23:31:56.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr 23 16:23:58 UTC 2016 - a...@gmx.de
+
+- update to version 8.2.1:
+  * #112: Update Travis CI usage to only deploy on Python 3.5.
+
+---

Old:

  path.py-8.2.tar.gz

New:

  path.py-8.2.1.tar.gz



Other differences:
--
++ python3-path.py.spec ++
--- /var/tmp/diff_new_pack.U2vOaw/_old  2016-04-30 23:31:56.0 +0200
+++ /var/tmp/diff_new_pack.U2vOaw/_new  2016-04-30 23:31:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-path.py
-Version:8.2
+Version:8.2.1
 Release:0
 Summary:A module wrapper for os.path
 License:MIT

++ path.py-8.2.tar.gz -> path.py-8.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/path.py-8.2/.hgtags new/path.py-8.2.1/.hgtags
--- old/path.py-8.2/.hgtags 2016-04-08 14:03:35.0 +0200
+++ new/path.py-8.2.1/.hgtags   2016-04-16 16:30:23.0 +0200
@@ -34,3 +34,4 @@
 06219e4168be20471a7ceedf617f7464c0e63f6b 8.1
 095ad9f1f5db19d1dfc69f67d66e63b38f50270b 8.1.1
 66874c317d1692313127a0c7310e19f64fdc7bd0 8.1.2
+487d9a027220c215b1ddd04823aa5289ebc1120a 8.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/path.py-8.2/.travis.yml new/path.py-8.2.1/.travis.yml
--- old/path.py-8.2/.travis.yml 2016-04-08 14:03:35.0 +0200
+++ new/path.py-8.2.1/.travis.yml   2016-04-16 16:30:23.0 +0200
@@ -15,8 +15,8 @@
   on:
 tags: true
 all_branches: true
+python: 3.5
   user: jaraco
   distributions: release
-  python: 3.5
   password:
 secure: 
fggUs33qP6DB+j/q7KGScfohgGq7OwsW5BMW6ZZvSlq+9pnNDZxSVrfCw0wb9vdq/Hb9nH4Of+wDoyh+Ul6GN28GRX7qj1HTjbc65nhRp9aA1Ib9Y3KJwGR8k5gPJZmx/zKP0r7COSXsOdXDkVSJ/UjCfuKhcsSHpi0lAYG6BSA=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/path.py-8.2/CHANGES.rst new/path.py-8.2.1/CHANGES.rst
--- old/path.py-8.2/CHANGES.rst 2016-04-08 14:03:35.0 +0200
+++ new/path.py-8.2.1/CHANGES.rst   2016-04-16 16:30:23.0 +0200
@@ -1,3 +1,8 @@
+8.2.1
+-
+
+- #112: Update Travis CI usage to only deploy on Python 3.5.
+
 8.2
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/path.py-8.2/PKG-INFO new/path.py-8.2.1/PKG-INFO
--- old/path.py-8.2/PKG-INFO2016-04-08 14:04:07.0 +0200
+++ new/path.py-8.2.1/PKG-INFO  2016-04-16 16:32:17.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: path.py
-Version: 8.2
+Version: 8.2.1
 Summary: A module wrapper for os.path
 Home-page: https://github.com/jaraco/path.py
 Author: Jason R. Coombs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/path.py-8.2/path.py.egg-info/PKG-INFO 
new/path.py-8.2.1/path.py.egg-info/PKG-INFO
--- old/path.py-8.2/path.py.egg-info/PKG-INFO   2016-04-08 14:04:07.0 
+0200
+++ new/path.py-8.2.1/path.py.egg-info/PKG-INFO 2016-04-16 16:32:17.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: path.py
-Version: 8.2
+Version: 8.2.1
 Summary: A module wrapper for os.path
 Home-page: https://github.com/jaraco/path.py
 Author: Jason R. Coombs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/path.py-8.2/setup.cfg new/path.py-8.2.1/setup.cfg
--- old/path.py-8.2/setup.cfg   2016-04-08 14:04:07.0 +0200
+++ new/path.py-8.2.1/setup.cfg 2016-04-16 16:32:17.0 +0200
@@ -6,7 +6,7 @@
 universal = 1
 
 [egg_info]
-tag_build = 
 tag_date = 0
+tag_build = 
 tag_svn_revision = 0
 




commit mate-tweak for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mate-tweak for openSUSE:Factory 
checked in at 2016-04-30 23:31:26

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


Package is "mate-tweak"

Changes:

--- /work/SRC/openSUSE:Factory/mate-tweak/mate-tweak.changes2016-04-15 
19:11:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.mate-tweak.new/mate-tweak.changes   
2016-04-30 23:31:32.0 +0200
@@ -1,0 +2,8 @@
+Thu Apr 28 06:45:38 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.5.10:
+  * Modified composited window manager .desktop files to add a
+phase delayed startup (lp#1553070).
+  * Update translations.
+
+---

Old:

  mate-tweak-3.5.9.tar.gz

New:

  mate-tweak-3.5.10.tar.gz



Other differences:
--
++ mate-tweak.spec ++
--- /var/tmp/diff_new_pack.nL041Q/_old  2016-04-30 23:31:33.0 +0200
+++ /var/tmp/diff_new_pack.nL041Q/_new  2016-04-30 23:31:33.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define _name   mate_tweak
-%define _revd90d62bc967d
+%define _rev22374775981c
 Name:   mate-tweak
-Version:3.5.9
+Version:3.5.10
 Release:0
 Summary:MATE desktop tweak tool
 License:GPL-2.0+

++ mate-tweak-3.5.9.tar.gz -> mate-tweak-3.5.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ubuntu-mate-mate-tweak-d90d62bc967d/data/marco-compton.desktop 
new/ubuntu-mate-mate-tweak-22374775981c/data/marco-compton.desktop
--- old/ubuntu-mate-mate-tweak-d90d62bc967d/data/marco-compton.desktop  
2016-04-01 17:48:40.0 +0200
+++ new/ubuntu-mate-mate-tweak-22374775981c/data/marco-compton.desktop  
2016-04-11 15:19:13.0 +0200
@@ -12,6 +12,7 @@
 X-MATE-Bugzilla-Bugzilla=MATE
 X-MATE-Bugzilla-Product=marco
 X-MATE-Bugzilla-Component=general
-X-MATE-Autostart-Phase=WindowManager
+X-MATE-Autostart-Phase=Applications
 X-MATE-Provides=windowmanager
 X-MATE-Autostart-Notify=true
+X-MATE-Autostart-Delay=2
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ubuntu-mate-mate-tweak-d90d62bc967d/data/metacity-compton.desktop 
new/ubuntu-mate-mate-tweak-22374775981c/data/metacity-compton.desktop
--- old/ubuntu-mate-mate-tweak-d90d62bc967d/data/metacity-compton.desktop   
2016-04-01 17:48:40.0 +0200
+++ new/ubuntu-mate-mate-tweak-22374775981c/data/metacity-compton.desktop   
2016-04-11 15:19:13.0 +0200
@@ -12,7 +12,11 @@
 X-GNOME-Bugzilla-Bugzilla=GNOME
 X-GNOME-Bugzilla-Product=metacity
 X-GNOME-Bugzilla-Component=general
-X-GNOME-Autostart-Phase=WindowManager
+X-GNOME-Autostart-Phase=Applications
+X-MATE-Autostart-Phase=Applications
 X-GNOME-Provides=windowmanager
 X-GNOME-Autostart-Notify=true
 X-Ubuntu-Gettext-Domain=metacity
+X-GNOME-Autostart-Delay=2
+X-MATE-Autostart-Delay=2
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ubuntu-mate-mate-tweak-d90d62bc967d/mate-tweak 
new/ubuntu-mate-mate-tweak-22374775981c/mate-tweak
--- old/ubuntu-mate-mate-tweak-d90d62bc967d/mate-tweak  2016-04-01 
17:48:40.0 +0200
+++ new/ubuntu-mate-mate-tweak-22374775981c/mate-tweak  2016-04-11 
15:19:13.0 +0200
@@ -56,7 +56,7 @@
 # Workaround introspection bug, gnome bug 622084
 signal.signal(signal.SIGINT, signal.SIG_DFL)
 
-__VERSION__ = '3.5.9'
+__VERSION__ = '3.5.10'
 
 __SYNAPSE__ = """[Desktop Entry]
 Name=Synapse
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ubuntu-mate-mate-tweak-d90d62bc967d/po/be.po 
new/ubuntu-mate-mate-tweak-22374775981c/po/be.po
--- old/ubuntu-mate-mate-tweak-d90d62bc967d/po/be.po2016-04-01 
17:48:40.0 +0200
+++ new/ubuntu-mate-mate-tweak-22374775981c/po/be.po2016-04-11 
15:19:13.0 +0200
@@ -9,8 +9,8 @@
 "Project-Id-Version: MATE Desktop Environment\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-04-01 16:42+0100\n"
-"PO-Revision-Date: 2016-04-01 15:44+\n"
-"Last-Translator: Martin Wimpress \n"
+"PO-Revision-Date: 2016-04-01 16:39+\n"
+"Last-Translator: Mihail Varantsou \n"
 "Language-Team: Belarusian (http://www.transifex.com/mate/MATE/language/be/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -54,7 +54,7 @@
 msgid ""
 "You are currently using an unknown and unsupported window manager. Thus we "
 "cannot guarantee that changes made here will be effective."
-msgstr ""
+msgstr "Вы выкарыстоўваеце невядомы кіраўнік вокнаў. Ён не падтрымліваецца. 
Таму мы не можам 

commit xplayer for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package xplayer for openSUSE:Factory checked 
in at 2016-04-30 23:31:22

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


Package is "xplayer"

Changes:

--- /work/SRC/openSUSE:Factory/xplayer/xplayer.changes  2016-02-25 
22:49:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.xplayer.new/xplayer.changes 2016-04-30 
23:31:29.0 +0200
@@ -1,0 +2,10 @@
+Wed Apr 27 16:43:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.0.3:
+  * Improve scroll seeking in shorter videos/music.
+  * Fix not scrolling backwards.
+  * Add support for Grilo 0.3.x.
+  * Update translations.
+- Add dependencies for Python plugins.
+
+---

Old:

  xplayer-1.0.2.tar.gz

New:

  xplayer-1.0.3.tar.gz



Other differences:
--
++ xplayer.spec ++
--- /var/tmp/diff_new_pack.PvBCuP/_old  2016-04-30 23:31:30.0 +0200
+++ /var/tmp/diff_new_pack.PvBCuP/_new  2016-04-30 23:31:30.0 +0200
@@ -18,7 +18,7 @@
 
 %define build_zeitgeist_plugin 1
 Name:   xplayer
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:Generic media player
 License:GPL-2.0+ and LGPL-2.1+
@@ -32,6 +32,9 @@
 # For gst-inspect tool
 BuildRequires:  gstreamer-utils >= 0.11.93
 BuildRequires:  lirc-devel
+BuildRequires:  pkg-config
+BuildRequires:  python3-devel
+BuildRequires:  python3-pylint
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  vala >= 0.14.1
@@ -42,7 +45,6 @@
 BuildRequires:  pkgconfig(clutter-gtk-1.0) >= 1.0.2
 BuildRequires:  pkgconfig(dbus-glib-1) >= 0.82
 BuildRequires:  pkgconfig(glib-2.0) >= 2.33.0
-BuildRequires:  pkgconfig(grilo-0.2) >= 0.1.16
 BuildRequires:  pkgconfig(gsettings-desktop-schemas)
 BuildRequires:  pkgconfig(gstreamer-1.0) >= 0.11.93
 BuildRequires:  pkgconfig(gstreamer-plugins-bad-1.0) >= 1.0.2
@@ -69,6 +71,11 @@
 Suggests:   %{name}-browser-plugin
 Suggests:   gnome-dvb-daemon
 %glib2_gsettings_schema_requires
+%if 0%{?suse_version} > 1320
+BuildRequires:  pkgconfig(grilo-0.3)
+%else
+BuildRequires:  pkgconfig(grilo-0.2)
+%endif
 %if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
 BuildRequires:  pkgconfig(clutter-gst-3.0) >= 2.99.2
 # Required for cluttersink.
@@ -221,7 +228,7 @@
 %glib2_gsettings_schema_postun
 
 %files
-%defattr(-, root, root)
+%defattr(-,root,root)
 %doc AUTHORS COPYING ChangeLog NEWS README
 %doc %{_datadir}/help/C/%{name}/
 %{_bindir}/%{name}*
@@ -251,7 +258,7 @@
 %defattr(-,root,root)
 
 %files plugins
-%defattr(-, root, root)
+%defattr(-,root,root)
 # Explicitly list plugins.
 %{_libdir}/%{name}/plugins/apple-trailers/
 %{_libdir}/%{name}/plugins/autoload-subtitles/
@@ -278,12 +285,12 @@
 
 %if %{build_zeitgeist_plugin}
 %files plugin-zeitgeist
-%defattr(-, root, root)
+%defattr(-,root,root)
 %{_libdir}/%{name}/plugins/zeitgeist-dp/
 %endif
 
 %files browser-plugin
-%defattr(-, root, root)
+%defattr(-,root,root)
 %doc browser-plugin/README.browser-plugin
 %{_libexecdir}/%{name}-plugin-viewer
 %{_libdir}/browser-plugins/lib%{name}-cone-plugin*
@@ -291,15 +298,15 @@
 %{_libdir}/browser-plugins/lib%{name}-narrowspace-plugin*
 
 %files browser-plugin-gmp
-%defattr(-, root, root)
+%defattr(-,root,root)
 %{_libdir}/browser-plugins/lib%{name}-gmp-plugin*
 
 %files browser-plugin-vegas
-%defattr(-, root, root)
+%defattr(-,root,root)
 %{_libdir}/browser-plugins/lib%{name}-vegas-plugin*
 
 %files devel
-%defattr(-, root, root)
+%defattr(-,root,root)
 %{_includedir}/%{name}/
 %{_libdir}/lib%{name}.so
 %{_libdir}/pkgconfig/%{name}.pc

++ xplayer-1.0.2.tar.gz -> xplayer-1.0.3.tar.gz ++
 263529 lines of diff (skipped)




commit mate-menu for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mate-menu for openSUSE:Factory 
checked in at 2016-04-30 23:31:24

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


Package is "mate-menu"

Changes:

--- /work/SRC/openSUSE:Factory/mate-menu/mate-menu.changes  2016-04-15 
19:11:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.mate-menu.new/mate-menu.changes 2016-04-30 
23:31:31.0 +0200
@@ -1,0 +2,11 @@
+Thu Apr 28 06:45:38 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 5.7.1:
+  * Fix configuring a custom heading colour (lp#1560332).
+  * Display the Software Boutique as package manager if it is
+available (lp#1568170).
+  * Ensure the menu is always drawn over existing windows
+(lp#1569563)
+- Rebase 0001-xterm-no-symlink-dep.patch, 0002-yast2-software.patch.
+
+---

Old:

  mate-menu-5.7.0.tar.gz

New:

  mate-menu-5.7.1.tar.gz



Other differences:
--
++ mate-menu.spec ++
--- /var/tmp/diff_new_pack.9NSZz7/_old  2016-04-30 23:31:32.0 +0200
+++ /var/tmp/diff_new_pack.9NSZz7/_new  2016-04-30 23:31:32.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define _name   mate_menu
-%define _rev77ef996a35b8
+%define _rev6b637f9272b2
 Name:   mate-menu
-Version:5.7.0
+Version:5.7.1
 Release:0
 Summary:Advanced MATE menu
 License:GPL-2.0+
@@ -32,7 +32,7 @@
 Patch1: 0002-yast2-software.patch
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
-BuildRequires:  python >= 2.4
+BuildRequires:  python >= 2.7
 BuildRequires:  python-distutils-extra
 BuildRequires:  python-setuptools
 BuildRequires:  update-desktop-files

++ 0001-xterm-no-symlink-dep.patch ++
--- /var/tmp/diff_new_pack.9NSZz7/_old  2016-04-30 23:31:32.0 +0200
+++ /var/tmp/diff_new_pack.9NSZz7/_new  2016-04-30 23:31:32.0 +0200
@@ -1,7 +1,6 @@
-diff -aur a/mate_menu/easybuttons.py b/mate_menu/easybuttons.py
 --- a/mate_menu/easybuttons.py
 +++ b/mate_menu/easybuttons.py
-@@ -399,9 +399,11 @@
+@@ -399,9 +399,11 @@ class ApplicationLauncher( easyButton ):
  def execute( self, *args ):
  if self.appExec:
  if self.useTerminal:
@@ -14,10 +13,9 @@
  Execute(cmd, self.appPath)
  else:
  Execute(self.appExec, self.appPath)
-diff -aur a/mate_menu/plugins/system_management.py 
b/mate_menu/plugins/system_management.py
 --- a/mate_menu/plugins/system_management.py
 +++ b/mate_menu/plugins/system_management.py
-@@ -169,8 +169,10 @@ class pluginclass( object ):
+@@ -166,8 +166,10 @@ class pluginclass( object ):
  Button4 = easyButton( "terminal", self.iconsize, [_("Terminal")], 
-1, -1 )
  if os.path.exists("/usr/bin/mate-terminal"):
  Button4.connect( "clicked", self.ButtonClicked, 
"mate-terminal" )

++ 0002-yast2-software.patch ++
--- /var/tmp/diff_new_pack.9NSZz7/_old  2016-04-30 23:31:32.0 +0200
+++ /var/tmp/diff_new_pack.9NSZz7/_new  2016-04-30 23:31:32.0 +0200
@@ -1,29 +1,27 @@
 --- a/mate_menu/plugins/system_management.py
 +++ b/mate_menu/plugins/system_management.py
-@@ -142,18 +142,15 @@ class pluginclass( object ):
+@@ -142,15 +142,16 @@ class pluginclass( object ):
  def do_standard_items( self ):
  
  if ( self.showPackageManager == True ):
--if os.path.exists("/usr/bin/software-center") or \
--   os.path.exists("/usr/bin/synaptic-pkexec") or \
--   
os.path.exists("/usr/share/applications/ubuntu-mate-software.desktop"):
--if os.path.exists("/usr/bin/synaptic-pkexec"):
--Button2 = easyButton("synaptic", self.iconsize, 
[_("Package Manager")], -1, -1 )
--Button2.connect( "clicked", self.ButtonClicked, 
"/usr/bin/synaptic-pkexec" )
--elif os.path.exists("/usr/bin/software-center"):
--Button2 = easyButton("softwarecenter", self.iconsize, 
[_("Package Manager")], -1, -1 )
--Button2.connect( "clicked", self.ButtonClicked, 
"/usr/bin/software-center" )
--elif 
os.path.exists("/usr/share/applications/ubuntu-mate-software.desktop"):
-+if os.path.exists("/usr/bin/gpk-application") or \
-+   os.path.exists("/sbin/yast2") or \
+-if os.path.exists("/usr/bin/synaptic-pkexec"):
+-Button2 = easyButton("synaptic", self.iconsize, [_("Package 
Manager")], -1, -1 )
+-Button2.connect( "clicked", self.ButtonClicked, 
"/usr/bin/synaptic-pkexec" )
+-elif 

commit marco for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package marco for openSUSE:Factory checked 
in at 2016-04-30 23:31:21

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


Package is "marco"

Changes:

--- /work/SRC/openSUSE:Factory/marco/marco.changes  2016-04-15 
19:12:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.marco.new/marco.changes 2016-04-30 
23:31:27.0 +0200
@@ -1,0 +2,8 @@
+Wed Apr 20 14:36:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.14.1:
+  * Fix a crash on showing Alt-Tab thumbnails with compositor on.
+  * Update translations.
+- Remove marco-1.14.0-fix-thumb-crash.patch.
+
+---

Old:

  marco-1.14.0-fix-thumb-crash.patch
  marco-1.14.0.tar.xz

New:

  marco-1.14.1.tar.xz



Other differences:
--
++ marco.spec ++
--- /var/tmp/diff_new_pack.OlWP86/_old  2016-04-30 23:31:28.0 +0200
+++ /var/tmp/diff_new_pack.OlWP86/_new  2016-04-30 23:31:28.0 +0200
@@ -20,15 +20,13 @@
 %define sover   0
 %define _version 1.14
 Name:   marco
-Version:1.14.0
+Version:1.14.1
 Release:0
 Summary:MATE window manager
 License:GPL-2.0+
 Group:  System/GUI/Other
 Url:http://mate-desktop.org/
 Source: 
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM marco-1.14.0-fix-thumb-crash.patch -- Fix a crash on 
showing Alt-Tab thumbnails.
-Patch0: %{name}-1.14.0-fix-thumb-crash.patch
 BuildRequires:  fdupes
 BuildRequires:  mate-common >= %{_version}
 BuildRequires:  update-desktop-files
@@ -92,7 +90,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 NOCONFIGURE=1 mate-autogen

++ marco-1.14.0.tar.xz -> marco-1.14.1.tar.xz ++
 32060 lines of diff (skipped)




commit ndctl for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ndctl for openSUSE:Factory checked 
in at 2016-04-30 23:31:12

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


Package is "ndctl"

Changes:

--- /work/SRC/openSUSE:Factory/ndctl/ndctl.changes  2016-04-05 
10:43:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.ndctl.new/ndctl.changes 2016-04-30 
23:31:17.0 +0200
@@ -1,0 +2,11 @@
+Wed Apr 27 11:47:49 UTC 2016 - jthumsh...@suse.com
+
+- NVDIMM is not defined for any CPU architecture other than x86_64 at the
+  moment.
+
+---
+Sun Apr 24 06:43:26 UTC 2016 - jeng...@inai.de
+
+- RPM group and description update
+
+---



Other differences:
--
++ ndctl.spec ++
--- /var/tmp/diff_new_pack.cmAjFN/_old  2016-04-30 23:31:18.0 +0200
+++ /var/tmp/diff_new_pack.cmAjFN/_new  2016-04-30 23:31:18.0 +0200
@@ -23,13 +23,14 @@
 
 Name:   ndctl
 Version:52
-Release:1%{?dist}
+Release:1
 Summary:Manage "libnvdimm" subsystem devices (Non-volatile Memory)
 License:GPL-2.0
 Group:  Hardware/Other
 Url:https://github.com/pmem/ndctl
 # Snapshot tarball can be created using: ./make-git-shapshot.sh [gitcommit]
 Source0:%{name}-%{version}.tar.gz
+ExclusiveArch:  x86_64
 
 BuildRequires:  asciidoc
 BuildRequires:  autoconf
@@ -43,30 +44,35 @@
 BuildRequires:  pkgconfig(uuid)
 
 %description
-Utility library for managing the "libnvdimm" subsystem.  The "libnvdimm"
-subsystem defines a kernel device model and control message interface for
-platform NVDIMM resources like those defined by the ACPI 6.0 NFIT (NVDIMM
-Firmware Interface Table).
-
+Utility library for managing the "libnvdimm" subsystem, used for
+platform NVDIMM resources like those defined by the ACPI 6.0 NFIT
+(NVDIMM Firmware Interface Table).
 
 %package -n %dname
 Summary:Development files for libndctl
 License:LGPL-2.1+
-Group:  Development/Libraries/Other
-Requires:   %{lname}%{?_isa} = %{version}-%{release}
+Group:  Development/Libraries/C and C++
+Requires:   %lname = %version-%release
 
 %description -n %dname
+Utility library for managing the "libnvdimm" subsystem, which defines
+a kernel device model and control message interface for platform
+NVDIMM resources like those defined by the ACPI 6.0 NFIT (NVDIMM
+Firmware Interface Table).
+
 The %{name}-devel package contains libraries and header files for
 developing applications that use %{name}.
 
-
 %package -n %lname
 Summary:Management library for "libnvdimm" subsystem devices 
(Non-volatile Memory)
 License:LGPL-2.1+
 Group:  System/Libraries
 
 %description -n %lname
-Libraries for %{name}.
+Utility library for managing the "libnvdimm" subsystem, which defines
+a kernel device model and control message interface for platform
+NVDIMM resources like those defined by the ACPI 6.0 NFIT (NVDIMM
+Firmware Interface Table).
 
 %prep
 %setup
@@ -79,7 +85,7 @@
 
 %install
 %make_install
-find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+find "%buildroot" -type f -name "*.la" -delete
 
 %check
 make check




commit filezilla for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package filezilla for openSUSE:Factory 
checked in at 2016-04-30 23:31:15

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


Package is "filezilla"

Changes:

--- /work/SRC/openSUSE:Factory/filezilla/filezilla.changes  2016-01-23 
01:16:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.filezilla.new/filezilla.changes 2016-04-30 
23:31:19.0 +0200
@@ -1,0 +2,93 @@
+Wed Apr 27 12:03:27 UTC 2016 - joerg.loren...@ki.tng.de
+
+- update to 3.17.0
+  - *nix: Removed a label on the filter dialog that doesn't apply
+to *nix builds.
+  - Fix compilation if Nettle is installed in a custom location.
+  - Fix potential issues with destruction order when closing
+FileZilla.
+- update to 3.17.0-rc1
+  + Recursivly queuing local files for upload now displays the
+progress below the local file list.
+  + MSW: Use dynamic TCP send buffer sizes to improve upload
+speeds on high-latency connections.
+  + SFTP: Use hardware-accelerated AES on x86_64 CPUs if available
+by using the AES implementation from Nettle instead of PuTTY.
+  + Building FileZilla now depends on the Nettle library,
+version 3.1 or later.
+  + Building FileZilla now depends on libfilezilla >= 0.5.0
+(https://lib.filezilla-project.org/).
+  - MSW: The installer now warns if it detects old versions of
+FileZilla outside of the installation directory.
+  - Improve compatibility with directory listings where midnight
+is represented as 24:00:00 of the prior day.
+  - SFTP: Failed downloads due to write failures, e.g. due to a
+full disk, no longer show up as successful.
+  - SFTP: Fix transfer failures if multiple transfers try to list
+the same directory.
+  - SFTP: Updated PuTTY components.
+  - FTP over TLS: Debug logs now contain additional information
+about the TLS handshake.
+- Fixed putty-no_DATE_and_TIME_.patch.
+
+---
+Thu Mar 17 12:28:59 UTC 2016 - ec...@opensuse.org
+
+- update to 3.16.1
+  - Updated PuTTY components
+  - Updated translations
+  - Official binaries now link against GnuTLS 3.4.10
+  - Official binaries now link against SQLite 3.11.1
+- update to 3.16.0
+  + Make notification bubble on queue completion configurable 
+though the queue's context menu
+  + Selected queue completion action is now remembered, 
+excluding the system shutdown/sleep actions.
+  + Added new servertype to the Site Manager for servers using 
+MS-DOS style paths with forward slashes as separators
+  + Building FileZilla now depends on libfilezilla >= 0.4.0 
+(https://lib.filezilla-project.org/).
+  - Fixes for network configuration wizard leading to incorrect 
+test result
+  - Small fix for remembering queue completion actions
+
+---
+Sun Feb 28 09:49:47 UTC 2016 - ec...@opensuse.org
+
+- update to 3.15.0.2
+  - Restore focused item if changing directory listing sort order
+  - Fix restoring the column widths of the failed transfers tab in 
+the queue when starting FileZilla
+- update to 3.15.0.1
+  - Fix for search dialog not displaying the results from the last 
+visited directory of a search
+- update to 3.15.0
+  - no changes for *nix
+- update to 3.15.0-rc1 
+  - Fix regression from 3.16.0-beta1 where extra data being 
+appended to some downloaded files
+  - Fix setting initial pane sizes when creating new tabs
+  - Updated SFTP components from PuTTY
+  - Official binaries now link against GnuTLS 3.4.8
+  - Official binaries now link against SQLite 3.10.2
+- update to 3.15.0-beta1
+  - Building FileZilla now depends on libfilezilla 0.3.0 
+(https://lib.filezilla-project.org/).
+  - Added support for downloading and deleting multiple unrelated 
+directories from the search dialog
+  - *nix: Vastly speed up line-ending conversion when downloading 
+files using the ASCII data type
+  - Improved compatibility with broken servers omitting the 
+mandatory 1yz reply to transfer commands
+  - Fix handling of SFTP keyfiles with non-ASCII characters in
+their paths
+  - Add missing directory comparison checkbox to new bookmark
+dialog
+  - Updated built-in pugixml
+
+- Drop filezilla-3.14.1_wxstring.patch: now in upstream
+- Drop filezilla-3.14.1_xml.patch: now in upstream
+- add BuildRequires libfilezilla
+- add Requires libpugixml1 boo#966384
+
+---

Old:

  FileZilla_3.14.1_src.tar.bz2
  filezilla-3.14.1_wxstring.patch
  filezilla-3.14.1_xml.patch

New:

  FileZilla_3.17.0_src.tar.bz2



Other differences:

commit wrk for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

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

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


Package is "wrk"

Changes:

--- /work/SRC/openSUSE:Factory/wrk/wrk.changes  2016-01-28 17:23:48.0 
+0100
+++ /work/SRC/openSUSE:Factory/.wrk.new/wrk.changes 2016-04-30 
23:31:18.0 +0200
@@ -1,0 +2,11 @@
+Wed Apr 27 11:13:53 UTC 2016 - mplus...@suse.com
+
+- Update to 4.0.2
+  * Send hostname using TLS SNI.
+  * Add optional WITH_OPENSSL and WITH_LUAJIT to use system libs.
+  * Bundle OpenSSL 1.0.2.
+  * delay() can return milliseconds to delay sending next request.
+- Use pretty source name
+- Refresh wrk-3.1.2_distrofixes.patch
+
+---

Old:

  4.0.1.tar.gz

New:

  wrk-4.0.2.tar.gz



Other differences:
--
++ wrk.spec ++
--- /var/tmp/diff_new_pack.Xey2b0/_old  2016-04-30 23:31:19.0 +0200
+++ /var/tmp/diff_new_pack.Xey2b0/_new  2016-04-30 23:31:19.0 +0200
@@ -17,16 +17,18 @@
 
 
 Name:   wrk
-Version:4.0.1
+Version:4.0.2
 Release:0
 Summary:Modern HTTP benchmarking tool
 License:Apache-2.0
 Group:  Productivity/Networking/Web/Utilities
 Url:https://github.com/wg/wrk
-Source: https://github.com/wg/wrk/archive/%{version}.tar.gz
+Source: 
https://github.com/wg/wrk/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Patch0: wrk-3.1.2_distrofixes.patch
-BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
+#BuildRequires:  pkgconfig(luajit)
+BuildRequires:  pkgconfig(openssl)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExcludeArch:aarch64 ppc ppc64 ppc64le
 
@@ -37,15 +39,17 @@
 
 An optional LuaJIT script can perform HTTP request generation, response
 processing, and custom reporting. Several example scripts are located in
-scripts/
+scripts.
 
 %prep
 %setup -q
 %patch0
 
 %build
-make %{?_smp_mflags} -C deps/luajit/src BUILDMODE=static CCOPT="%{optflags} 
-fomit-frame-pointer"
-make %{?_smp_mflags} OPTFLAGS="%{optflags}"
+# current luajit in TW seems to be broken
+# sed -i 's|luajit-2.0|luajit-5_1-2.0|g' src/*
+# make %{?_smp_mflags} OPTFLAGS="%{optflags}" WITH_OPENSSL=/usr 
WITH_LUAJIT=/usr
+make %{?_smp_mflags} OPTFLAGS="%{optflags}" WITH_OPENSSL=%{_prefix}
 
 %install
 install -D -m 0755 wrk %{buildroot}%{_bindir}/wrk

++ wrk-3.1.2_distrofixes.patch ++
--- /var/tmp/diff_new_pack.Xey2b0/_old  2016-04-30 23:31:19.0 +0200
+++ /var/tmp/diff_new_pack.Xey2b0/_new  2016-04-30 23:31:19.0 +0200
@@ -3,34 +3,18 @@
 --- Makefile.orig
 +++ Makefile
 @@ -1,4 +1,4 @@
--CFLAGS  := -std=c99 -Wall -O2 -D_REENTRANT
+-CFLAGS  += -std=c99 -Wall -O2 -D_REENTRANT
 +CFLAGS  := -std=c99 -Wall -O2 -D_REENTRANT $(OPTFLAGS)
- LIBS:= -lpthread -lm -lcrypto -lssl
+ LIBS:= -lpthread -lm -lssl -lcrypto
  
  TARGET  := $(shell uname -s | tr '[A-Z]' '[a-z]' 2>/dev/null || echo unknown)
-@@ -49,8 +49,7 @@ $(ODIR)/bytecode.o: src/wrk.lua
-   @$(SHELL) -c 'cd $(LDIR) && ./luajit -b $(CURDIR)/$< $(CURDIR)/$@'
+@@ -66,8 +66,7 @@ $(ODIR)/version.o:
+   @echo 'const char *VERSION="$(VER)";' | $(CC) -xc -c -o $@ -
  
  $(ODIR)/%.o : %.c
 -  @echo CC $<
 -  @$(CC) $(CFLAGS) -c -o $@ $<
 +  $(CC) $(CFLAGS) -c -o $@ $<
  
- $(LDIR)/libluajit.a:
-   @echo Building LuaJIT...
-Index: deps/luajit/src/Makefile
-===
 deps/luajit/src/Makefile.orig
-+++ deps/luajit/src/Makefile
-@@ -559,9 +559,9 @@ endif
- endif
- endif
+ # Dependencies
  
--Q= @
-+#Q= @
- E= @echo
--#Q=
-+Q=
- #E= @:
- 
- ##




commit httperf for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package httperf for openSUSE:Factory checked 
in at 2016-04-30 23:31:17

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


Package is "httperf"

Changes:

--- /work/SRC/openSUSE:Factory/httperf/httperf.changes  2015-04-10 
09:52:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.httperf.new/httperf.changes 2016-04-30 
23:31:24.0 +0200
@@ -1,0 +2,13 @@
+Wed Apr 27 13:24:06 UTC 2016 - mplus...@suse.com
+
+- Update to version 0.9.0+git.20160311:
+  * Fix building when OpenSSL was compiled -nossl2  or -noss3
+  * Style changes.
+  * Change --server to --servers.
+  * Restore the original --server and --server_name options.
+  * Adding idleconn manpage
+  * Added a contrib dir and idleconn manpage source
+- Add _service and switch to version from git (stable release is 
+  more than 8 years old)
+
+---

Old:

  httperf-0.9.0.tar.gz

New:

  _service
  httperf-0.9.0+git.20160311.tar.xz



Other differences:
--
++ httperf.spec ++
--- /var/tmp/diff_new_pack.zwvzSp/_old  2016-04-30 23:31:25.0 +0200
+++ /var/tmp/diff_new_pack.zwvzSp/_new  2016-04-30 23:31:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package httperf
 #
-# 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,16 +17,20 @@
 
 
 Name:   httperf
-Version:0.9.0
+Version:0.9.0+git.20160311
 Release:0
 Summary:A tool for measuring web server performance
 License:SUSE-GPL-2.0+-with-openssl-exception
 Group:  Productivity/Networking/Web/Utilities
 Url:https://github.com/httperf/httperf
-Source0:ftp://ftp.hpl.hp.com/pub/httperf/httperf-%{version}.tar.gz
+Source0:%{name}-%{version}.tar.xz
 Source1:   %{name}.changes
-BuildRequires:  openssl-devel
-BuildRequires:  pkg-config
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
+BuildRequires:  pkgconfig
+BuildRequires:  xz
+BuildRequires:  pkgconfig(openssl)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -43,19 +47,19 @@
 find .  -name '*.[ch]' |\
 xargs sed -i "s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g"
 
-
 %build
+autoreconf -fiv
 %configure
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS ChangeLog NEWS README TODO
+%doc %attr(644,-,-) AUTHORS ChangeLog NEWS README.md TODO
 %{_bindir}/httperf
-%{_bindir}/idleconn
-%{_mandir}/man1/httperf.1.gz
+%{_mandir}/man1/httperf.1%{ext_man}
+%{_mandir}/man1/idleconn.1%{ext_man}
 
 %changelog

++ _service ++

  
git://github.com/httperf/httperf
git
.git
enable
httperf
0.9.0+git.%cd
  
  
*.tar
xz
  
  




commit postgrey for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package postgrey for openSUSE:Factory 
checked in at 2016-04-30 23:31:02

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


Package is "postgrey"

Changes:

--- /work/SRC/openSUSE:Factory/postgrey/postgrey.changes2016-01-07 
00:24:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.postgrey.new/postgrey.changes   2016-04-30 
23:31:03.0 +0200
@@ -2 +2,7 @@
-Mon Dec 14 15:24:07 UTC 2016 - benedikt.schind...@gsx.de
+Sun Apr 24 18:01:19 UTC 2016 - w...@rosenauer.org
+
+- installing sysconfig via fillup macro was lost in systemd migration
+  (boo#976963)
+
+---
+Mon Dec 14 15:24:07 UTC 2015 - benedikt.schind...@gsx.de



Other differences:
--
++ postgrey.spec ++
--- /var/tmp/diff_new_pack.HfU1D8/_old  2016-04-30 23:31:04.0 +0200
+++ /var/tmp/diff_new_pack.HfU1D8/_new  2016-04-30 23:31:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package postgrey
 #
-# 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
@@ -53,6 +53,7 @@
 BuildRequires:  systemd
 %systemd_requires
 %endif
+Requires(post): %fillup_prereq
 
 %description
 Postgrey is a Postfix policy server implementing greylisting. When a
@@ -129,6 +130,7 @@
 %post
 %if 0%{?suse_version} > 1210
 %service_add_post %{name}.service
+%fillup_only
 %else
 %{fillup_and_insserv %{name}}
 %endif




commit ghc-tls for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-tls for openSUSE:Factory checked 
in at 2016-04-30 23:30:40

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


Package is "ghc-tls"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-tls/ghc-tls.changes  2016-01-08 
15:22:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-tls.new/ghc-tls.changes 2016-04-30 
23:30:42.0 +0200
@@ -1,0 +2,9 @@
+Sun Apr 10 19:02:03 UTC 2016 - mimi...@gmail.com
+
+- update to 1.3.5
+* Fix a bug with ECDHE based cipher where serialization
+* Improve tests
+* Debugging: Add a way to print random seed and a way to side-load 
+a seed for replayability
+
+---

Old:

  tls-1.3.4.tar.gz

New:

  tls-1.3.5.tar.gz



Other differences:
--
++ ghc-tls.spec ++
--- /var/tmp/diff_new_pack.0jmYOG/_old  2016-04-30 23:30:43.0 +0200
+++ /var/tmp/diff_new_pack.0jmYOG/_new  2016-04-30 23:30:43.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-tls
-Version:1.3.4
+Version:1.3.5
 Release:0
 Summary:TLS/SSL protocol native implementation (Server and Client)
 License:BSD-3-Clause

++ tls-1.3.4.tar.gz -> tls-1.3.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tls-1.3.4/Benchmarks/Benchmarks.hs 
new/tls-1.3.5/Benchmarks/Benchmarks.hs
--- old/tls-1.3.4/Benchmarks/Benchmarks.hs  2015-12-12 15:51:40.0 
+0100
+++ new/tls-1.3.5/Benchmarks/Benchmarks.hs  2016-04-09 15:47:25.0 
+0200
@@ -35,7 +35,7 @@
 }
 (pubKey, privKey) = getGlobalRSAPair
 
-runTLSPipe params tlsServer tlsClient d name = bench name $ do
+runTLSPipe params tlsServer tlsClient d name = bench name . nfIO $ do
 (startQueue, resultQueue) <- establishDataPipe params tlsServer tlsClient
 writeChan startQueue d
 readChan resultQueue
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tls-1.3.4/CHANGELOG.md new/tls-1.3.5/CHANGELOG.md
--- old/tls-1.3.4/CHANGELOG.md  2015-12-12 15:51:40.0 +0100
+++ new/tls-1.3.5/CHANGELOG.md  2016-04-09 15:47:25.0 +0200
@@ -1,3 +1,17 @@
+## Version 1.3.5
+
+- Fix a bug with ECDHE based cipher where serialization
+- Debugging: Add a way to print random seed and a way to side-load a seed for 
replayability
+- Improve tests
+
+## Version 1.3.4
+
+- Fix tests on 32 bits `time_t` machines (time not within bound)
+- VirtualHost: Add a way to load credentials related to the hostname used by 
the client (Julian Beaumont)
+- VirtualHost: Expose an API to query which hostname the client has contacted 
(Julian Beaumont)
+- Add a way to disable empty packet that are use for security when
+  using old versions + old CBC based cipher (Anton Dessiatov)
+
 ## Version 1.3.3
 
 - Add support for Hans (Haskell Network Stack) (Adam Wick)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tls-1.3.4/Network/TLS/Context.hs 
new/tls-1.3.5/Network/TLS/Context.hs
--- old/tls-1.3.4/Network/TLS/Context.hs2015-12-12 15:51:40.0 
+0100
+++ new/tls-1.3.5/Network/TLS/Context.hs2016-04-09 15:47:25.0 
+0200
@@ -98,6 +98,7 @@
 instance TLSParams ClientParams where
 getTLSCommonParams cparams = ( clientSupported cparams
  , clientShared cparams
+ , clientDebug cparams
  )
 getTLSRole _ = ClientRole
 getCiphers cparams = supportedCiphers $ clientSupported cparams
@@ -107,6 +108,7 @@
 instance TLSParams ServerParams where
 getTLSCommonParams sparams = ( serverSupported sparams
  , serverShared sparams
+ , serverDebug sparams
  )
 getTLSRole _ = ServerRole
 -- on the server we filter our allowed ciphers here according
@@ -144,11 +146,17 @@
 contextNew backend params = liftIO $ do
 initializeBackend backend
 
-rng <- newStateRNG
+let (supported, shared, debug) = getTLSCommonParams params
+
+seed <- case debugSeed debug of
+Nothing -> do seed <- seedNew
+  debugPrintSeed debug $ seed
+  return seed
+Just determ -> return determ
+let rng = newStateRNG seed
 
 let role = getTLSRole params
 st   = newTLSState rng role
-(supported, shared) = getTLSCommonParams params
 ciphers = getCiphers params
 
 when (null ciphers) 

commit ghc-file-embed for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-file-embed for openSUSE:Factory 
checked in at 2016-04-30 23:30:18

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


Package is "ghc-file-embed"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-file-embed/ghc-file-embed.changes
2016-01-28 17:25:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-file-embed.new/ghc-file-embed.changes   
2016-04-30 23:30:19.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:25:43 UTC 2016 - mimi...@gmail.com
+
+- update to 0.0.10
+* makeRelativeToProject
+
+---

Old:

  file-embed-0.0.9.1.tar.gz

New:

  file-embed-0.0.10.tar.gz



Other differences:
--
++ ghc-file-embed.spec ++
--- /var/tmp/diff_new_pack.V9LzF2/_old  2016-04-30 23:30:20.0 +0200
+++ /var/tmp/diff_new_pack.V9LzF2/_new  2016-04-30 23:30:20.0 +0200
@@ -21,7 +21,7 @@
 %bcond_without tests
 
 Name:   ghc-file-embed
-Version:0.0.9.1
+Version:0.0.10
 Release:0
 Summary:Use Template Haskell to embed file contents directly
 License:BSD-2-Clause

++ file-embed-0.0.9.1.tar.gz -> file-embed-0.0.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/file-embed-0.0.9.1/ChangeLog.md 
new/file-embed-0.0.10/ChangeLog.md
--- old/file-embed-0.0.9.1/ChangeLog.md 2016-01-20 08:30:52.0 +0100
+++ new/file-embed-0.0.10/ChangeLog.md  2016-04-21 17:33:11.0 +0200
@@ -1,3 +1,7 @@
+## 0.0.10
+
+* `makeRelativeToProject`
+
 ## 0.0.9
 
 * embedStringFile [#14](https://github.com/snoyberg/file-embed/pull/14)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/file-embed-0.0.9.1/Data/FileEmbed.hs 
new/file-embed-0.0.10/Data/FileEmbed.hs
--- old/file-embed-0.0.9.1/Data/FileEmbed.hs2016-01-20 08:30:52.0 
+0100
+++ new/file-embed-0.0.10/Data/FileEmbed.hs 2016-04-21 17:33:11.0 
+0200
@@ -35,6 +35,8 @@
 , injectFile
 , injectWith
 , injectFileWith
+  -- * Relative path manipulation
+, makeRelativeToProject
   -- * Internal
 , stringToBs
 , bsToExp
@@ -50,12 +52,13 @@
 #endif
 , Q
 , runIO
+, qLocation, loc_filename
 #if MIN_VERSION_template_haskell(2,7,0)
 , Quasi(qAddDependentFile)
 #endif
 )
 import System.Directory (doesDirectoryExist, doesFileExist,
- getDirectoryContents)
+ getDirectoryContents, canonicalizePath)
 import Control.Exception (throw, ErrorCall(..))
 import Control.Monad (filterM)
 import qualified Data.ByteString as B
@@ -64,7 +67,7 @@
 import Control.Applicative ((<$>))
 import Data.ByteString.Unsafe (unsafePackAddressLen)
 import System.IO.Unsafe (unsafePerformIO)
-import System.FilePath (())
+import System.FilePath ((), takeDirectory, takeExtension)
 import Data.String (fromString)
 import Prelude as P
 
@@ -336,3 +339,42 @@
 available, you can use the non-@With@ variants.
 
 -}
+
+-- | Take a relative file path and attach it to the root of the current
+-- project.
+--
+-- The idea here is that, when building with Stack, the build will always be
+-- executed with a current working directory of the root of the project (where
+-- your .cabal file is located). However, if you load up multiple projects with
+-- @stack ghci@, the working directory may be something else entirely.
+--
+-- This function looks at the source location of the Haskell file calling it,
+-- finds the first parent directory with a .cabal file, and uses that as the
+-- root directory for fixing the relative path.
+--
+-- @@@
+-- $(makeRelativeToProject "data/foo.txt" >>= fileEmbed)
+-- @@@
+--
+-- @since 0.0.10
+makeRelativeToProject :: FilePath -> Q FilePath
+makeRelativeToProject rel = do
+loc <- qLocation
+runIO $ do
+srcFP <- canonicalizePath $ loc_filename loc
+mdir <- findProjectDir srcFP
+case mdir of
+Nothing -> error $ "Could not find .cabal file for path: " ++ srcFP
+Just dir -> return $ dir  rel
+  where
+findProjectDir x = do
+let dir = takeDirectory x
+if dir == x
+then return Nothing
+else do
+contents <- getDirectoryContents dir
+if any isCabalFile contents
+then return (Just dir)
+else findProjectDir dir
+
+isCabalFile fp = takeExtension fp == ".cabal"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/file-embed-0.0.9.1/file-embed.cabal 

commit ghc-turtle for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-turtle for openSUSE:Factory 
checked in at 2016-04-30 23:30:42

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


Package is "ghc-turtle"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-turtle/ghc-turtle.changes2016-04-12 
19:38:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-turtle.new/ghc-turtle.changes   
2016-04-30 23:30:43.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 26 09:12:20 UTC 2016 - mimi...@gmail.com
+
+- update to 1.2.7
+
+---

Old:

  turtle-1.2.6.tar.gz

New:

  turtle-1.2.7.tar.gz



Other differences:
--
++ ghc-turtle.spec ++
--- /var/tmp/diff_new_pack.2447ke/_old  2016-04-30 23:30:44.0 +0200
+++ /var/tmp/diff_new_pack.2447ke/_new  2016-04-30 23:30:44.0 +0200
@@ -19,8 +19,8 @@
 
 %bcond_with tests
 
-Name:   ghc-%{pkg_name}
-Version:1.2.6
+Name:   ghc-turtle
+Version:1.2.7
 Release:0
 Summary:Shell programming, Haskell-style
 Group:  System/Libraries

++ turtle-1.2.6.tar.gz -> turtle-1.2.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/turtle-1.2.6/turtle.cabal 
new/turtle-1.2.7/turtle.cabal
--- old/turtle-1.2.6/turtle.cabal   2016-04-03 20:32:35.0 +0200
+++ new/turtle-1.2.7/turtle.cabal   2016-04-25 02:54:40.0 +0200
@@ -1,5 +1,5 @@
 Name: turtle
-Version: 1.2.6
+Version: 1.2.7
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
@@ -48,7 +48,7 @@
 Build-Depends:
 base >= 4.5 && < 5  ,
 async>= 2.0.0.0 && < 2.2,
-clock>= 0.4.1.2 && < 0.7,
+clock>= 0.4.1.2 && < 0.8,
 directory>= 1.0.7   && < 1.3,
 foldl>= 1.1 && < 1.3,
 hostname   < 1.1,




commit xdg-app for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package xdg-app for openSUSE:Factory checked 
in at 2016-04-30 23:31:05

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


Package is "xdg-app"

Changes:

--- /work/SRC/openSUSE:Factory/xdg-app/xdg-app.changes  2016-04-16 
22:08:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.xdg-app.new/xdg-app.changes 2016-04-30 
23:31:07.0 +0200
@@ -1,0 +2,29 @@
+Wed Apr 20 11:19:06 UTC 2016 - dims...@opensuse.org
+
+- Update to version 0.5.2:
+  + The way locale extensions work has changed. Now we build a
+single extension for all locales, but we allow you to specify a
+subset of it during installation and update time using the
+--subpath commandline flag. The main reason for this is that
+the many extensions didn't scale, both in technical terms
+(large ostree summary file size), but also in terms of the UI
+listing hundreds of uninteresting things.
+  + We no longer use sizes in the commit objects to get installed
+and download size, instead we store some extra metadata in the
+summary file. This allows us to get much faster access to
+these, as with recent ostree versions we can cache the summary
+file.
+  + New command xdg-app build-sign that lets you sign a commit at
+any time.
+  + New argument xdg-app build --force-clean that removes
+pre-existing build dirs.
+  + xdg-app run now uses the "current" version as the default if
+you specify no branch or arch. It used to default to the
+"master" branch. This will default to the last installed
+version, but can be changed with xdg-app make-current.
+  + Added config-opts to the build-options in xdg-app-builder. This
+allows you to extend the configure flags in an arch dependent
+way.
+  + Documentation updates.
+
+---

Old:

  xdg-app-0.5.1.tar.xz

New:

  xdg-app-0.5.2.tar.xz



Other differences:
--
++ xdg-app.spec ++
--- /var/tmp/diff_new_pack.zM4a8u/_old  2016-04-30 23:31:08.0 +0200
+++ /var/tmp/diff_new_pack.zM4a8u/_new  2016-04-30 23:31:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xdg-app
-Version:0.5.1
+Version:0.5.2
 Release:0
 Summary:Manage OSTree based application bundles
 License:LGPL-2.1+

++ _service ++
--- /var/tmp/diff_new_pack.zM4a8u/_old  2016-04-30 23:31:08.0 +0200
+++ /var/tmp/diff_new_pack.zM4a8u/_new  2016-04-30 23:31:08.0 +0200
@@ -5,7 +5,7 @@
 @PARENT_TAG@
 enable
 enable
-refs/tags/0.5.1
+refs/tags/0.5.2
   
   
 *.tar

++ _servicedata ++
--- /var/tmp/diff_new_pack.zM4a8u/_old  2016-04-30 23:31:08.0 +0200
+++ /var/tmp/diff_new_pack.zM4a8u/_new  2016-04-30 23:31:08.0 +0200
@@ -3,4 +3,4 @@
 https://github.com/alexlarsson/xdg-app.git
   4f73eaf10b7059fa81ed489bb9f0798d03f4f7ce
 git://anongit.freedesktop.org/xdg-app/xdg-app
-  619e1f1025851179dee3e616000e5de2ccde9412
\ No newline at end of file
+  8d6ba78a1d24a52a05173aefda636f68aa45f2c7
\ No newline at end of file

++ xdg-app-0.5.1.tar.xz -> xdg-app-0.5.2.tar.xz ++
 2674 lines of diff (skipped)




commit froxlor for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package froxlor for openSUSE:Factory checked 
in at 2016-04-30 23:30:57

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


Package is "froxlor"

Changes:

--- /work/SRC/openSUSE:Factory/froxlor/froxlor.changes  2016-02-11 
12:38:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.froxlor.new/froxlor.changes 2016-04-30 
23:30:59.0 +0200
@@ -1,0 +2,30 @@
+Tue Apr 26 10:42:41 CEST 2016 - ase...@suse.de
+
+- upstream upgrade to version 0.9.35 (bnc#846355)
+Bug #1519: Deleting and recreating a mail account ends up with no mail account
+Bug #1543: Customer cant create subdomain
+Bug #1564: Redirect-Code unveränderbar
+Bug #1569: Selection of custom PHP config has no effect once FCGID is enabled
+Bug #1599: vHost Template not work
+Bug #1600: ssl_cert_chainfile should only contain the intermediate certificate 
#334
+Bug #1601: FTP-SubUser kann Ordner "lib" nicht erstellen/löschen
+Bug #1603: Apache Configuration for Wheezy contains an error in acme.conf
+Bug #1604: Wrong acme configuration for Apache 2
+Bug #1609: Sometimes PHP Warning in letsencrypt cronjob Feature #1484: add 
missing directives in apache-config for php-fpm on freebsd 10.1
+Feature #1611: Show if a domain uses LetsEncrypt in domainlist (admin-account)
+
+- upstream upgrade to version 0.9.35-rc1 (bnc#846355)
+Bug #1522: ProFTPd - relax TLS Options to prevent clients from failing at 
upload
+Bug #1585: Cannot login after timeout
+Bug #1586: Directory protection (apache basic auth) broken
+Bug #1588: FreeBSD: /scripts/jobs/cron_tasks.php - pw user mod -> pw usermod 
und loop
+Bug #1589: mail clients
+Bug #1590: Letsencrypt + Custom SSL
+Bug #1591: Entering an IPv6-Adress in the list of allowed AXFR servers leads 
to an error
+Bug #1595: insufficient error handling in admin_configfiles.php
+Bug #1598: specialsettingsforsubdomains doesn't get passed along if security 
question is asked while editing a domain
+Feature #1470: Please support letsencrypt.org for fully automatic DV TLS 
certificate issuance / revocation
+Feature #1509: Mehrere Standard-IPs
+Feature #1594: Make keysize for LE CSRs configurable
+
+---

Old:

  froxlor-0.9.34.2.tar.bz2

New:

  froxlor-0.9.35.1.tar.bz2



Other differences:
--
++ froxlor.spec ++
--- /var/tmp/diff_new_pack.faW9Wv/_old  2016-04-30 23:31:00.0 +0200
+++ /var/tmp/diff_new_pack.faW9Wv/_new  2016-04-30 23:31:00.0 +0200
@@ -20,7 +20,7 @@
 %define apache_serverroot /srv/www/htdocs
 
 Name:   froxlor
-Version:0.9.34.2
+Version:0.9.35.1
 Release:0
 Source0:froxlor-%{version}.tar.bz2
 Patch0: froxlor.sql.patch  

++ froxlor-0.9.34.2.tar.bz2 -> froxlor-0.9.35.1.tar.bz2 ++
 15189 lines of diff (skipped)

++ froxlor.sql.patch ++
--- /var/tmp/diff_new_pack.faW9Wv/_old  2016-04-30 23:31:01.0 +0200
+++ /var/tmp/diff_new_pack.faW9Wv/_new  2016-04-30 23:31:01.0 +0200
@@ -1,6 +1,6 @@
 install/froxlor.sql.orig   2016-02-10 14:40:21.803176583 +0100
-+++ install/froxlor.sql2016-02-10 14:42:13.755460921 +0100
-@@ -1,3 +1,14 @@
+--- install/froxlor.sql.orig   2016-04-26 10:53:42.303370421 +0200
 install/froxlor.sql2016-04-26 10:57:24.858822646 +0200
+@@ -1,3 +1,15 @@
 +# change path from /var to /srv
 +# webspaces: /srv/customers/webs
 +# logs: /srv/customers/logs/
@@ -10,12 +10,13 @@
 +# fcgi: /srv/www/php-fcgi-scripts
 +# backup: /srv/customers/backups/
 +# doc documentroot_prefix /srv/customers/webs/
-+# asemen 20150210
++# asemen 20160426
++
 +
  DROP TABLE IF EXISTS `ftp_groups`;
  CREATE TABLE `ftp_groups` (
`id` int(20) NOT NULL auto_increment,
-@@ -385,7 +396,7 @@
+@@ -392,7 +404,7 @@
('customredirect', 'enabled', '1'),
('customredirect', 'default', '1'),
('perl', 'suexecworkaround', '0'),
@@ -24,7 +25,7 @@
('login', 'domain_login', '0'),
('login', 'maxloginattempts', '3'),
('login', 'deactivatetime', '900'),
-@@ -398,13 +409,13 @@
+@@ -405,13 +417,13 @@
('phpfpm', 'min_spare_servers', '5'),
('phpfpm', 'max_spare_servers', '35'),
('phpfpm', 'max_requests', '0'),
@@ -40,7 +41,7 @@
('phpfpm', 'defaultini', '1'),
('phpfpm', 'vhost_defaultini', '2'),
('phpfpm', 'fastcgi_ipcdir', '/var/lib/apache2/fastcgi/'),
-@@ -412,14 +423,14 @@
+@@ -419,14 +431,14 @@
('nginx', 'fastcgiparams', '/etc/nginx/fastcgi_params'),
('system', 'lastaccountnumber', '0'),
('system', 'lastguid', ''),
@@ -58,14 +59,45 @@
('system', 'vmail_maildirname', 

commit freshplayerplugin for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package freshplayerplugin for 
openSUSE:Factory checked in at 2016-04-30 23:31:08

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


Package is "freshplayerplugin"

Changes:

--- /work/SRC/openSUSE:Factory/freshplayerplugin/freshplayerplugin.changes  
2016-01-01 19:49:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.freshplayerplugin.new/freshplayerplugin.changes 
2016-04-30 23:31:13.0 +0200
@@ -1,0 +2,12 @@
+Tue Apr 26 16:10:00 UTC 2016 - h...@urpla.net
+
+- Update to v0.3.5:
+  * video: try /dev/video* instead of /dev/v4l/by-path/*
+  * network: fix byte order in PPB_NetAddress
+  * network: partially implement PPB_HostResolver;1.0 and
+  PPB_UDPSocket;1.2
+  * mics: keep task order in PPB_MessageLoop
+
+- refresh clean patch
+
+---

Old:

  freshplayerplugin-0.3.4.tar.gz

New:

  freshplayerplugin-0.3.5.tar.gz



Other differences:
--
++ freshplayerplugin.spec ++
--- /var/tmp/diff_new_pack.AtEHIo/_old  2016-04-30 23:31:14.0 +0200
+++ /var/tmp/diff_new_pack.AtEHIo/_new  2016-04-30 23:31:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package freshplayerplugin
 #
-# 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
@@ -19,7 +19,7 @@
 %bcond_with restricted
 %bcond_with gtk3
 Name:   freshplayerplugin
-Version:0.3.4
+Version:0.3.5
 Release:0
 Summary:PPAPI2NPAPI compatibility layer
 License:MIT

++ clean.patch ++
 1300 lines (skipped)
 between /work/SRC/openSUSE:Factory/freshplayerplugin/clean.patch
 and /work/SRC/openSUSE:Factory/.freshplayerplugin.new/clean.patch

++ freshplayerplugin-0.3.4.tar.gz -> freshplayerplugin-0.3.5.tar.gz ++
 3075 lines of diff (skipped)




commit shake for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package shake for openSUSE:Factory checked 
in at 2016-04-30 23:30:29

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


Package is "shake"

Changes:

--- /work/SRC/openSUSE:Factory/shake/shake.changes  2015-10-01 
09:29:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.shake.new/shake.changes 2016-04-30 
23:30:31.0 +0200
@@ -1,0 +2,58 @@
+Wed Apr 20 11:31:19 UTC 2016 - mimi...@gmail.com
+
+- update to 0.15.6
+* Require the primitive package
+* make it an error to need a directory
+* add orderOnlyAction, a general version of orderOnly
+* explain that alwaysRerun has no immediate effect
+* add --digest-not flag to select ChangeModtime
+* export ShakeValue from the main module only
+* improve the grammar in the profiling document
+* explain what in getDirectoryFiles is tracked
+* add getDirectoryFilesIO, an untracked version
+* document getDirectoryFiles exception behaviour
+* fix getDirectoryFiles error on pattern directory missing
+* detect indirect recursion in build rules
+* give better errors on recursive rules
+* clarify the docs for putQuiet/putLoud
+* make sure phony targets with \ work on Windows
+* only require old-time with GHC 7.4
+* make Rules an instance of MonadIO
+* add shakeExtra field to ShakeOptions for user data
+* make --debug=file write out newlines
+* make sure Shell and AutoDeps work together
+* fix unicode output with putNormal
+* add parallel execution via parallel/forP/par
+* preserve quoting around cmd
+* optimise the random pool, up to 20% faster
+* add deriving Read instances for more types
+* Add Development.Shake.Forward for forward-defined systems
+* export :->
+* fix the docs for &%>
+* make  run the query profile viewer
+* make profiling work with newer Chrome
+* Add AutoDeps feature
+* add FileStdin to specify the stdin comes from a file
+* Make an empty Stdin different from no Stdin (inherit) in cmd
+* add ** as a relative-only alternative to // in patterns
+* change the semantics of removeFiles, no implicit deletes
+* speed up getDirectoryFiles on patterns involving literals
+* Work with stack test
+* Add RemEnv cmd option
+* Fix a small space leak on Linux
+* Fix a space leak in profile summary information
+* Properly handle *//* in file pattern (at least one directory)
+* allow ninja rule names to have dots in them
+* Properly handle /// in file pattern (a wildcard then /)
+* Make sure Windows separators work in |%> FilePattern rules
+* fix multifile rules when using --digest-and-input
+* document the relationship between getEnv and lookupEnv
+* improve the documentation for phony/alwaysRerun
+* fix the documentation for normaliseEx
+* add getProgress
+* support MonadFix for Rules, allows recursive cache
+* discount time spent waiting for a cache
+* give better error messages if you hit GHC bug #10793
+* add a lock file to stop corrupting databases
+
+---

Old:

  shake-0.15.5.tar.gz

New:

  shake-0.15.6.tar.gz



Other differences:
--
++ shake.spec ++
--- /var/tmp/diff_new_pack.yMf3Xe/_old  2016-04-30 23:30:32.0 +0200
+++ /var/tmp/diff_new_pack.yMf3Xe/_new  2016-04-30 23:30:32.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name shake
 %bcond_with tests
 Name:   shake
-Version:0.15.5
+Version:0.15.6
 Release:0
 Summary:Build system library, like Make, but more accurate dependencies
 Group:  Development/Languages/Other
@@ -41,7 +41,8 @@
 BuildRequires:  ghc-hashable-devel
 BuildRequires:  ghc-js-flot-devel
 BuildRequires:  ghc-js-jquery-devel
-BuildRequires:  ghc-old-time-devel
+BuildRequires:  ghc-time-devel
+BuildRequires:  ghc-primitive-devel
 BuildRequires:  ghc-process-devel
 BuildRequires:  ghc-random-devel
 BuildRequires:  ghc-time-devel

++ shake-0.15.5.tar.gz -> shake-0.15.6.tar.gz ++
 9400 lines of diff (skipped)




commit ghc-blaze-builder for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-blaze-builder for 
openSUSE:Factory checked in at 2016-04-30 23:30:12

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


Package is "ghc-blaze-builder"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-blaze-builder/ghc-blaze-builder.changes  
2015-05-21 08:11:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-blaze-builder.new/ghc-blaze-builder.changes 
2016-04-30 23:30:13.0 +0200
@@ -1,0 +2,7 @@
+Tue Apr 19 12:18:49 UTC 2016 - mimi...@gmail.com
+
+- update to 0.4.0.2
+- remove useless _service
+* Fixed warnings on GHC 7.10
+
+---

Old:

  _service
  blaze-builder-0.4.0.1.tar.gz

New:

  blaze-builder-0.4.0.2.tar.gz



Other differences:
--
++ ghc-blaze-builder.spec ++
--- /var/tmp/diff_new_pack.WjXPQe/_old  2016-04-30 23:30:13.0 +0200
+++ /var/tmp/diff_new_pack.WjXPQe/_new  2016-04-30 23:30:13.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name blaze-builder
 
 Name:   ghc-blaze-builder
-Version:0.4.0.1
+Version:0.4.0.2
 Release:0
 Summary:Haskell library for efficient buffered output
 License:BSD-3-Clause

++ blaze-builder-0.4.0.1.tar.gz -> blaze-builder-0.4.0.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/blaze-builder-0.4.0.1/Blaze/ByteString/Builder/Compat/Write.hs 
new/blaze-builder-0.4.0.2/Blaze/ByteString/Builder/Compat/Write.hs
--- old/blaze-builder-0.4.0.1/Blaze/ByteString/Builder/Compat/Write.hs  
2015-02-24 00:32:49.0 +0100
+++ new/blaze-builder-0.4.0.2/Blaze/ByteString/Builder/Compat/Write.hs  
2016-04-18 21:47:02.0 +0200
@@ -16,9 +16,10 @@
 , writePrimBounded
 ) where
 
-import Foreign
-import Data.ByteString.Builder.Prim.Internal
-import Blaze.ByteString.Builder.Internal.Write
+import Data.ByteString.Builder.Prim.Internal (BoundedPrim, FixedPrim
+ , runB, runF, size, sizeBound)
+import Blaze.ByteString.Builder.Internal.Write (Poke(..), Write
+   , boundedWrite, exactWrite)
 
 writePrimFixed :: FixedPrim a -> a -> Write
 writePrimFixed fe a = exactWrite (size fe) (runF fe a)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/blaze-builder-0.4.0.1/Blaze/ByteString/Builder/HTTP.hs 
new/blaze-builder-0.4.0.2/Blaze/ByteString/Builder/HTTP.hs
--- old/blaze-builder-0.4.0.1/Blaze/ByteString/Builder/HTTP.hs  2015-02-24 
00:32:49.0 +0100
+++ new/blaze-builder-0.4.0.2/Blaze/ByteString/Builder/HTTP.hs  2016-04-18 
21:47:02.0 +0200
@@ -1,4 +1,4 @@
-{-# LANGUAGE BangPatterns, CPP, MagicHash, OverloadedStrings, MonoPatBinds #-}
+{-# LANGUAGE BangPatterns, CPP, MagicHash, OverloadedStrings #-}
 --
 -- |
 -- Module:  Blaze.ByteString.Builder.HTTP
@@ -30,7 +30,6 @@
 
 import Foreign
 
-import Data.Monoid
 import qualified Data.ByteString   as S
 import Data.ByteString.Char8 ()
 
@@ -41,6 +40,10 @@
 
 import qualified Blaze.ByteString.Builder.Char8 as Char8
 
+#if !MIN_VERSION_base(4,8,0)
+import Data.Monoid
+#endif
+
 
 {-# INLINE shiftr_w32 #-}
 shiftr_w32 :: Word32 -> Int -> Word32
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/blaze-builder-0.4.0.1/Blaze/ByteString/Builder/Internal/Write.hs 
new/blaze-builder-0.4.0.2/Blaze/ByteString/Builder/Internal/Write.hs
--- old/blaze-builder-0.4.0.1/Blaze/ByteString/Builder/Internal/Write.hs
2015-02-24 00:32:49.0 +0100
+++ new/blaze-builder-0.4.0.2/Blaze/ByteString/Builder/Internal/Write.hs
2016-04-18 21:47:02.0 +0200
@@ -1,4 +1,4 @@
-{-# LANGUAGE CPP, BangPatterns, MonoPatBinds #-}
+{-# LANGUAGE CPP, BangPatterns #-}
 
 -- |
 -- Module  : Blaze.ByteString.Builder.Internal.Poke
@@ -49,12 +49,14 @@
 
 import Foreign
 
-import Data.Monoid
-
 import Control.Monad
 
 import Data.ByteString.Builder.Internal
 
+#if !MIN_VERSION_base(4,8,0)
+import Data.Monoid
+#endif
+
 --
 -- Poking a buffer and writing to a buffer
 --
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-builder-0.4.0.1/CHANGES 
new/blaze-builder-0.4.0.2/CHANGES
--- old/blaze-builder-0.4.0.1/CHANGES   2015-02-24 00:32:49.0 +0100
+++ new/blaze-builder-0.4.0.2/CHANGES   2016-04-18 

commit ghc-mime-types for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-mime-types for openSUSE:Factory 
checked in at 2016-04-30 23:30:22

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


Package is "ghc-mime-types"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-mime-types/ghc-mime-types.changes
2015-05-22 09:51:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-mime-types.new/ghc-mime-types.changes   
2016-04-30 23:30:23.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:31:40 UTC 2016 - mimi...@gmail.com
+
+- update to 0.1.0.7
+* Add support for .less files
+
+---

Old:

  mime-types-0.1.0.6.tar.gz

New:

  mime-types-0.1.0.7.tar.gz



Other differences:
--
++ ghc-mime-types.spec ++
--- /var/tmp/diff_new_pack.ukBGpe/_old  2016-04-30 23:30:24.0 +0200
+++ /var/tmp/diff_new_pack.ukBGpe/_new  2016-04-30 23:30:24.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name mime-types
 
 Name:   ghc-mime-types
-Version:0.1.0.6
+Version:0.1.0.7
 Release:0
 Summary:Basic mime-type handling types and functions
 License:MIT

++ mime-types-0.1.0.6.tar.gz -> mime-types-0.1.0.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mime-types-0.1.0.6/ChangeLog.md 
new/mime-types-0.1.0.7/ChangeLog.md
--- old/mime-types-0.1.0.6/ChangeLog.md 2015-03-18 17:56:01.0 +0100
+++ new/mime-types-0.1.0.7/ChangeLog.md 2016-04-21 13:27:45.0 +0200
@@ -1,3 +1,7 @@
+## 0.1.0.7
+
+* Add support for .less files [#534](https://github.com/yesodweb/wai/pull/534)
+
 ## 0.1.0.6
 
 * Add woff2 mime type [#350](https://github.com/yesodweb/wai/pull/350)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mime-types-0.1.0.6/Network/Mime.hs 
new/mime-types-0.1.0.7/Network/Mime.hs
--- old/mime-types-0.1.0.6/Network/Mime.hs  2015-03-18 17:56:01.0 
+0100
+++ new/mime-types-0.1.0.7/Network/Mime.hs  2016-04-21 13:27:18.0 
+0200
@@ -468,6 +468,11 @@
 , ("lbd", "application/vnd.llamagraphics.life-balance.desktop")
 , ("lbe", "application/vnd.llamagraphics.life-balance.exchange+xml")
 , ("les", "application/vnd.hhe.lesson-player")
+
+-- Added after deliberation in PR 
(https://github.com/yesodweb/wai/pull/534)
+-- Accepted mainly because of StackOverflow 
(http://stackoverflow.com/questions/7319555/how-to-add-less-to-iis-7-0)
+, ("less", "text/css")
+
 , ("lha", "application/x-lzh-compressed")
 , ("link66", "application/vnd.route66.link66+xml")
 , ("list", "text/plain")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mime-types-0.1.0.6/mime-types.cabal 
new/mime-types-0.1.0.7/mime-types.cabal
--- old/mime-types-0.1.0.6/mime-types.cabal 2015-03-18 17:56:01.0 
+0100
+++ new/mime-types-0.1.0.7/mime-types.cabal 2016-04-21 13:27:46.0 
+0200
@@ -1,5 +1,5 @@
 name:mime-types
-version: 0.1.0.6
+version: 0.1.0.7
 synopsis:Basic mime-type handling types and functions
 description: API docs and the README are available at 
.
 homepage:https://github.com/yesodweb/wai




commit ghc-fast-logger for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-fast-logger for openSUSE:Factory 
checked in at 2016-04-30 23:30:16

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


Package is "ghc-fast-logger"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-fast-logger/ghc-fast-logger.changes  
2016-04-22 16:25:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-fast-logger.new/ghc-fast-logger.changes 
2016-04-30 23:30:18.0 +0200
@@ -1,0 +2,9 @@
+Tue Apr 26 08:23:17 UTC 2016 - mimi...@gmail.com
+
+- update to 2.4.5
+- refreshed remove-bytestring-builder.patch
+* Bringing backward compatibility back
+* New API: newFastLogger and ewTimedFastLogger.
+* LogType and date cache are transferred from wai-logger.
+
+---

Old:

  fast-logger-2.4.3.tar.gz

New:

  fast-logger-2.4.5.tar.gz



Other differences:
--
++ ghc-fast-logger.spec ++
--- /var/tmp/diff_new_pack.2nyoYu/_old  2016-04-30 23:30:19.0 +0200
+++ /var/tmp/diff_new_pack.2nyoYu/_new  2016-04-30 23:30:19.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-fast-logger
-Version:2.4.3
+Version:2.4.5
 Release:0
 Summary:A fast logging system
 Group:  System/Libraries
@@ -39,8 +39,11 @@
 BuildRequires:  ghc-auto-update-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-directory-devel
+BuildRequires:  ghc-easy-file-devel
 BuildRequires:  ghc-filepath-devel
 BuildRequires:  ghc-text-devel
+BuildRequires:  ghc-unix-devel
+BuildRequires:  ghc-unix-time-devel
 %if %{with tests}
 BuildRequires:  ghc-hspec-devel
 %endif
@@ -95,7 +98,7 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
-%doc README.md
+%doc README.md ChangeLog.md
 
 
 %changelog

++ fast-logger-2.4.3.tar.gz -> fast-logger-2.4.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fast-logger-2.4.3/ChangeLog.md 
new/fast-logger-2.4.5/ChangeLog.md
--- old/fast-logger-2.4.3/ChangeLog.md  2016-04-12 06:20:01.0 +0200
+++ new/fast-logger-2.4.5/ChangeLog.md  2016-04-15 15:44:48.0 +0200
@@ -1,3 +1,8 @@
+## 2.4.4
+
+* New API: newFastLogger and ewTimedFastLogger.
+* LogType and date cache are transferred from wai-logger.
+
 ## 2.4.3
 
 * Opening files in the append mode on Windows.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fast-logger-2.4.3/System/Log/FastLogger/Date.hs 
new/fast-logger-2.4.5/System/Log/FastLogger/Date.hs
--- old/fast-logger-2.4.3/System/Log/FastLogger/Date.hs 1970-01-01 
01:00:00.0 +0100
+++ new/fast-logger-2.4.5/System/Log/FastLogger/Date.hs 2016-04-15 
15:44:48.0 +0200
@@ -0,0 +1,75 @@
+{-# LANGUAGE CPP #-}
+{-# LANGUAGE OverloadedStrings #-}
+
+-- |
+-- Formatting time is slow.
+-- This package provides mechanisms to cache formatted date.
+module System.Log.FastLogger.Date (
+  -- * Types
+TimeFormat
+  , FormattedTime
+  -- * Date cacher
+  , newTimeCache
+  , simpleTimeFormat
+  , simpleTimeFormat'
+  ) where
+
+import Control.AutoUpdate (mkAutoUpdate, defaultUpdateSettings, updateAction)
+import Data.ByteString (ByteString)
+#if WINDOWS
+import qualified Data.ByteString.Char8 as BS
+import Data.Time (UTCTime, formatTime, getCurrentTime, utcToLocalZonedTime)
+# if MIN_VERSION_time(1,5,0)
+import Data.Time (defaultTimeLocale)
+# else
+import System.Locale (defaultTimeLocale)
+# endif
+#else
+import Data.UnixTime (formatUnixTime, fromEpochTime)
+import System.Posix (EpochTime, epochTime)
+#endif
+
+
+
+-- | Type aliaes for date format and formatted date.
+type FormattedTime = ByteString
+type TimeFormat = ByteString
+
+
+
+#if WINDOWS
+-- | Get date using UTC.
+getTime :: IO UTCTime
+getTime = getCurrentTime
+-- | Format UTC date.
+formatDate :: TimeFormat -> UTCTime -> IO FormattedTime
+formatDate fmt ut = do
+  zt <- utcToLocalZonedTime ut
+  return $ BS.pack $ formatTime defaultTimeLocale (BS.unpack fmt) zt
+#else
+-- | Get date using UnixTime.
+getTime :: IO EpochTime
+getTime = epochTime
+-- | Format unix EpochTime date.
+formatDate :: TimeFormat -> EpochTime -> IO FormattedTime
+formatDate fmt = formatUnixTime fmt . fromEpochTime
+#endif
+
+
+
+-- |  Make 'IO' action which get cached formatted local time.
+-- Use this to avoid the cost of frequently time formatting by caching an
+-- auto updating formatted time, this cache update every 1 second.

commit dice for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package dice for openSUSE:Factory checked in 
at 2016-04-30 23:30:54

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


Package is "dice"

Changes:

--- /work/SRC/openSUSE:Factory/dice/dice.changes2015-11-26 
17:03:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.dice.new/dice.changes   2016-04-30 
23:30:55.0 +0200
@@ -1,0 +2,27 @@
+Tue Apr 19 11:59:28 CEST 2016 - m...@suse.de
+
+- Run build and bundle in UTF-8 locale
+  
+---
+Mon Apr 18 16:13:43 CEST 2016 - m...@suse.de
+  
+- add option to skip dockerhub container update
+  
+---
+Mon Apr 18 09:25:58 CEST 2016 - m...@suse.de
+  
+- Move to kiwi next generation
+  
+---
+Sun Apr 17 15:43:04 CEST 2016 - m...@suse.de
+  
+- Fixed evaluation of yast2 dist URI's
+  
+---
+Sun Apr 17 15:07:54 CEST 2016 - m...@suse.de
+  
+- Fixed unit test for create_solv
+  
+  Check for raise condition was incomplete
+  
+---



Other differences:
--
++ dice.spec ++
--- /var/tmp/diff_new_pack.LFUzaI/_old  2016-04-30 23:30:55.0 +0200
+++ /var/tmp/diff_new_pack.LFUzaI/_new  2016-04-30 23:30:55.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dice
 #
-# 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

++ dice-0.7.7.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/cli.rb new/lib/cli.rb
--- old/lib/cli.rb  2015-11-16 15:09:34.0 +0100
+++ new/lib/cli.rb  2016-04-19 12:03:14.0 +0200
@@ -83,14 +83,26 @@
   LONGDESC
   arg "RECIPE-PATH"
   command :build do |c|
-c.switch ["force", :f], :required => false, :negatable => false,
+c.switch ["force", :f],
+  :required => false,
+  :negatable => false,
   :desc => "Force building even if status is up to data"
-c.switch ["skip-missing", :i], :required => false, :negatable => false,
+c.switch ["skip-missing", :i],
+  :required => false,
+  :negatable => false,
   :desc => "Skip packages not found in the repositories"
-c.flag ["kiwitype", :t], :kiwitype => String, :required => false,
+c.flag ["kiwitype", :t],
+  :kiwitype => String,
+  :required => false,
   :desc => "Set kiwi build type"
-c.flag ["kiwiprofile", :p], :kiwiprofile => String, :required => false,
+c.flag ["kiwiprofile", :p],
+  :kiwiprofile => String,
+  :required => false,
   :desc => "Set kiwi build profile"
+c.switch ["skip-container-update", :s],
+  :required => false,
+  :negatable => false,
+  :desc => "Skip build system container update from dockerhub"
 c.action do |global_options,options,args|
   Dice.setup_options(options)
   description = shift_arg(args, "RECIPE-PATH")
@@ -111,7 +123,9 @@
   LONGDESC
   arg "RECIPE-PATH"
   command :buildlog do |c|
-c.switch ["show", :s], :required => false, :negatable => false,
+c.switch ["show", :s],
+  :required => false,
+  :negatable => false,
   :desc => "Just show the log if present, skip test for build process"
 c.action do |global_options,options,args|
   Dice.setup_options(options)
@@ -151,7 +165,9 @@
   LONGDESC
   arg "RECIPE-PATH"
   command :status do |c|
-c.switch ["skip-missing", :i], :required => false, :negatable => false,
+c.switch ["skip-missing", :i],
+  :required => false,
+  :negatable => false,
   :desc => "Skip packages not found in the repositories"
 c.action do |global_options,options,args|
   Dice.setup_options(options)
@@ -194,7 +210,9 @@
   LONGDESC
   arg "RECIPE-PATH"
   command :cleanup do |c|
-c.switch ["lock", :l], :required => false, :negatable => false,
+c.switch ["lock", :l],
+  :required => false,
+  :negatable => false,
   :desc => "Cleanup stale semaphore lock if present"
 c.action do |global_options,options,args|
   Dice.setup_options(options)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/docker_build_system.rb 
new/lib/docker_build_system.rb
--- old/lib/docker_build_system.rb  2015-11-16 

commit abcde for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package abcde for openSUSE:Factory checked 
in at 2016-04-30 23:31:01

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


Package is "abcde"

Changes:

--- /work/SRC/openSUSE:Factory/abcde/abcde.changes  2016-01-05 
21:55:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.abcde.new/abcde.changes 2016-04-30 
23:31:02.0 +0200
@@ -1,0 +2,29 @@
+Mon Apr 25 11:43:45 UTC 2016 - p.drou...@gmail.com
+
+- Update to version 2.7.2
+  * When using musicbrainz, don't assume that there will be release
+events attached to a particular CD release. Bug fix for the addition
+of year information support in 2.7.1.
+  * Support for output to the Matroska container (mka). Encoder
+is FFmpeg (or avconv). Typical conf file syntax would be:
+
+ MKAENCODERSYNTAX=ffmpeg
+ FFMPEG=ffmpeg
+ FFMPEGENCOPTS="-c:a ac3 -b:a 448k"
+ OUTPUTTYPE="mka"
+  * Add id3tag mp3 tagger as this is the tagger available to
+OpenBSD users.
+  * Allow for cddb response 500. This closes Issue 26:
+http://abcde.einval.com/bugzilla/show_bug.cgi?id=26
+  * Fix for 'expansion of $REDIR' bug on MacOSX. This closes Issue 22:
+http://abcde.einval.com/bugzilla/show_bug.cgi?id=22
+  * Makefile adjusted to allow the sample abcde.conf file to be
+installed by default to /etc rather than $(prefix)/etc.
+https://bugs.archlinux.org/task/46671
+  * Allow getalbumart to correctly place cover image when single
+track is selected. This closes Issue 25:
+http://abcde.einval.com/bugzilla/show_bug.cgi?id=25
+- Update abcde-quote.patch
+- Set BuildArch as noarch; the package doesn't contain any binary
+
+---

Old:

  abcde-2.7.1.tar.gz

New:

  abcde-2.7.2.tar.gz



Other differences:
--
++ abcde.spec ++
--- /var/tmp/diff_new_pack.g799XN/_old  2016-04-30 23:31:03.0 +0200
+++ /var/tmp/diff_new_pack.g799XN/_new  2016-04-30 23:31:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   abcde
-Version:2.7.1
+Version:2.7.2
 Release:0
 Summary:A Better CD Encoder
 License:GPL-2.0+
@@ -26,7 +26,6 @@
 Source0:http://abcde.einval.com/download/%{name}-%{version}.tar.gz
 # bug 419800
 Patch0: abcde-quote.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   cd-discid
 Requires:   cdparanoia
 Requires:   wget
@@ -35,6 +34,7 @@
 Recommends: vorbis-tools
 # lame is often used for mp3 encoding
 Suggests:   lame
+BuildArch:  noarch
 
 %description
 A front-end program to cdparanoia, wget, cd-discid, id3, and your

++ abcde-2.7.1.tar.gz -> abcde-2.7.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/abcde-2.7.1/FAQ new/abcde-2.7.2/FAQ
--- old/abcde-2.7.1/FAQ 2015-10-04 11:30:28.0 +0200
+++ new/abcde-2.7.2/FAQ 2016-04-06 10:47:56.0 +0200
@@ -451,7 +451,18 @@
OUTPUTTYPE="mp2"

So currently FFmpeg supports: alac, wavpack and mp2. FFmpeg native aac 
support will
-   be added when it comes out of 'experimental'.
+   be added when it comes out of 'experimental'. FFmpeg is also used as the 
default
+   encoder for the Matroska or mka container. A typical example, using the 
FFmpeg
+   native ac3 encoder, is:
+
+   MKAENCODERSYNTAX=ffmpeg
+   FFMPEG=ffmpeg
+   FFMPEGENCOPTS="-c:a ac3 -b:a 448k"
+   OUTPUTTYPE="mka"
+
+   Other suitable codecs for this usage are Vorbis, MP2, MP3, LC-AAC, HE-AAC, 
WMAv1,
+   WMAv2, eAC3 and Opus. There is much more to come in the future for abcde 
and FFmpeg!
+
 
 5. USEPIPES

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/abcde-2.7.1/Makefile new/abcde-2.7.2/Makefile
--- old/abcde-2.7.1/Makefile2015-10-04 11:30:28.0 +0200
+++ new/abcde-2.7.2/Makefile2016-04-06 10:47:56.0 +0200
@@ -1,10 +1,10 @@
-abcde_version = abcde-2.7.1
+abcde_version = abcde-2.7.2
 INSTALL = /usr/bin/install -c
 
 prefix = /usr/local
 exec_prefix = $(prefix)
 bindir = $(exec_prefix)/bin
-sysconfdir = $(prefix)/etc
+sysconfdir = /etc
 datarootdir = $(prefix)/share
 docdir = $(datarootdir)/doc/$(abcde_version)
 mandir = $(datarootdir)/man
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/abcde-2.7.1/README new/abcde-2.7.2/README
--- old/abcde-2.7.1/README  2015-10-04 11:30:28.0 +0200
+++ new/abcde-2.7.2/README  2016-04-06 10:47:56.0 +0200
@@ -22,6 +22,12 @@
 MAJOR CHANGES
 =
 
+Changes in 2.7.2
+* Support for output to the Matroska container (mka).
+* Add 

commit texmath for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package texmath for openSUSE:Factory checked 
in at 2016-04-30 23:30:39

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


Package is "texmath"

Changes:

--- /work/SRC/openSUSE:Factory/texmath/texmath.changes  2016-04-03 
23:07:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.texmath.new/texmath.changes 2016-04-30 
23:30:40.0 +0200
@@ -1,0 +2,9 @@
+Tue Apr 26 09:04:55 UTC 2016 - mimi...@gmail.com
+
+- update to 0.8.6.2
+* Fixed array alignment issues
+* Use 1 and 0 for _Hide attributes, rather than on and off.
+* Fixed EUnderOver for omml output.  Previously both the under and
+the over part were being placed under
+
+---

Old:

  texmath-0.8.6.1.tar.gz

New:

  texmath-0.8.6.2.tar.gz



Other differences:
--
++ texmath.spec ++
--- /var/tmp/diff_new_pack.8WQjBd/_old  2016-04-30 23:30:41.0 +0200
+++ /var/tmp/diff_new_pack.8WQjBd/_new  2016-04-30 23:30:41.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name texmath
 
 Name:   texmath
-Version:0.8.6.1
+Version:0.8.6.2
 Release:0
 Summary:Conversion of LaTeX math formulas to MathML or OMML
 License:GPL-2.0

++ texmath-0.8.6.1.tar.gz -> texmath-0.8.6.2.tar.gz ++
 33033 lines of diff (skipped)




commit mkvtoolnix for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mkvtoolnix for openSUSE:Factory 
checked in at 2016-04-30 23:31:03

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


Package is "mkvtoolnix"

Changes:

--- /work/SRC/openSUSE:Factory/mkvtoolnix/mkvtoolnix.changes2016-03-31 
13:03:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.mkvtoolnix.new/mkvtoolnix.changes   
2016-04-30 23:31:04.0 +0200
@@ -1,0 +2,21 @@
+Mon Apr 25 17:38:18 UTC 2016 - r...@fthiessen.de
+
+- Update to new upstream release 9.1.0:
+* mkvmerge: bug fix: AVC/h.264: fixed handling of interlaced frames
+   with bottom field first.
+  bug fix: mkvmerge will no longer abort reading a Matroska file
+   with a structural error right before the first cluster.
+  bug fix: the "text_subtitles" property of the JSON/verbose
+   identification modes was always set to true for all subtitle
+   tracks, even for those that aren't text subtitles (VobSub, PG).
+  bug fix: the language code signaled in the MPEG TS PMT is taken
+   into account when selecting the character encoding to use
+   during decoding of the teletext subtitles, not just the
+   "national character set" stored in the teletext page headers.
+* MKVToolNix GUI: bug fix: Fixed huge memory consumption in the
+   JSON library by updating said JSON library.
+  bug fix: In merge-tool: when adding playlists the GUI won't ask
+   the user whether or not to scan if there's only a single
+   playlist in that directory.
+
+---

Old:

  mkvtoolnix-9.0.1.tar.xz

New:

  mkvtoolnix-9.1.0.tar.xz



Other differences:
--
++ mkvtoolnix.spec ++
--- /var/tmp/diff_new_pack.JipwSx/_old  2016-04-30 23:31:05.0 +0200
+++ /var/tmp/diff_new_pack.JipwSx/_new  2016-04-30 23:31:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mkvtoolnix
-Version:9.0.1
+Version:9.1.0
 Release:0
 Summary:Tools to Create, Alter, and Inspect Matroska Files
 License:GPL-2.0+

++ mkvtoolnix-9.0.1.tar.xz -> mkvtoolnix-9.1.0.tar.xz ++
 135484 lines of diff (skipped)




commit ghc-vector-binary-instances for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-vector-binary-instances for 
openSUSE:Factory checked in at 2016-04-30 23:30:44

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


Package is "ghc-vector-binary-instances"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-vector-binary-instances/ghc-vector-binary-instances.changes
  2016-03-16 10:36:37.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-vector-binary-instances.new/ghc-vector-binary-instances.changes
 2016-04-30 23:30:45.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 26 09:14:52 UTC 2016 - mimi...@gmail.com
+
+- update to 0.2.3.2 
+
+---

Old:

  vector-binary-instances-0.2.3.1.tar.gz

New:

  vector-binary-instances-0.2.3.2.tar.gz



Other differences:
--
++ ghc-vector-binary-instances.spec ++
--- /var/tmp/diff_new_pack.yEzB4K/_old  2016-04-30 23:30:45.0 +0200
+++ /var/tmp/diff_new_pack.yEzB4K/_new  2016-04-30 23:30:45.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name vector-binary-instances
 
 Name:   ghc-vector-binary-instances
-Version:0.2.3.1
+Version:0.2.3.2
 Release:0
 Summary:Instances of Data.Binary and Data.Serialize for vector
 License:BSD-3-Clause

++ vector-binary-instances-0.2.3.1.tar.gz -> 
vector-binary-instances-0.2.3.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vector-binary-instances-0.2.3.1/benchmarks/Benchmarks.hs 
new/vector-binary-instances-0.2.3.2/benchmarks/Benchmarks.hs
--- old/vector-binary-instances-0.2.3.1/benchmarks/Benchmarks.hs
2016-03-13 12:20:32.0 +0100
+++ new/vector-binary-instances-0.2.3.2/benchmarks/Benchmarks.hs
2016-04-21 21:46:41.0 +0200
@@ -1,11 +1,16 @@
 import Criterion.Main
 import Data.Binary
 import Data.Binary.Get
+import Data.Binary.Put
 
 import qualified Data.ByteString.Lazy as BS
 import qualified Data.Vector.Unboxed as U
 import Data.Vector.Binary
 
+-- We take care to avoid using the @Binary@ instances here to avoid issues with
+-- overlapping instances as the install plan will involve two different 
versions
+-- of k@vector-binary-instances@ (as @Criterion@ transitively depends upon
+-- @vector-binary-instances@). See #7 for details.
 
 vec1,vec2,vec3,vec4,vec5 :: U.Vector Int
 vec1 = U.enumFromN 0 3
@@ -15,11 +20,11 @@
 vec5 = U.enumFromN 0 30
 
 bs1,bs2,bs3,bs4,bs5 :: BS.ByteString
-bs1 = encode vec1
-bs2 = encode vec2
-bs3 = encode vec3
-bs4 = encode vec4
-bs5 = encode vec5
+bs1 = encodeVector vec1
+bs2 = encodeVector vec2
+bs3 = encodeVector vec3
+bs4 = encodeVector vec4
+bs5 = encodeVector vec5
 
 naiveGet :: (Binary a, U.Unbox a) => Get (U.Vector a)
 naiveGet = do
@@ -36,20 +41,23 @@
 
 type V = BS.ByteString -> U.Vector Int
 
+encodeVector :: U.Vector Int -> BS.ByteString
+encodeVector = runPut . genericPutVector
+
 benchGetSize :: String -> BS.ByteString -> Benchmark
 benchGetSize name bs = bgroup name
-[ bench "U.Vector Int" $ nf (decode :: V) bs
-, bench "naive U.Vector Int"   $ nf (runGet naiveGet :: V) bs
-, bench "noinline naive U.Vector Int"  $ nf (runGet naiveGet' :: V) bs
+[ bench "U.Vector Int" $ nf (runGet genericGetVector :: V) 
bs
+, bench "naive U.Vector Int"   $ nf (runGet naiveGet :: V) 
bs
+, bench "noinline naive U.Vector Int"  $ nf (runGet naiveGet':: V) 
bs
 ]
 
 main = defaultMain
   [ bgroup "encode"
-[ bench "U.Vector Int 3"  $ nf encode vec1
-, bench "U.Vector Int 30" $ nf encode vec2
-, bench "U.Vector Int 300"$ nf encode vec3
-, bench "U.Vector Int 3"  $ nf encode vec4
-, bench "U.Vector Int 30" $ nf encode vec5
+[ bench "U.Vector Int 3"  $ nf encodeVector vec1
+, bench "U.Vector Int 30" $ nf encodeVector vec2
+, bench "U.Vector Int 300"$ nf encodeVector vec3
+, bench "U.Vector Int 3"  $ nf encodeVector vec4
+, bench "U.Vector Int 30" $ nf encodeVector vec5
 ]
   , bgroup "decode"
 [ benchGetSize "size=3" bs1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vector-binary-instances-0.2.3.1/vector-binary-instances.cabal 
new/vector-binary-instances-0.2.3.2/vector-binary-instances.cabal
--- old/vector-binary-instances-0.2.3.1/vector-binary-instances.cabal   
2016-03-13 12:20:32.0 +0100
+++ new/vector-binary-instances-0.2.3.2/vector-binary-instances.cabal   
2016-04-21 21:46:41.0 +0200
@@ -1,5 +1,5 @@
 Name:

commit ghc-shakespeare for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-shakespeare for openSUSE:Factory 
checked in at 2016-04-30 23:30:31

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


Package is "ghc-shakespeare"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-shakespeare/ghc-shakespeare.changes  
2016-04-22 16:25:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-shakespeare.new/ghc-shakespeare.changes 
2016-04-30 23:30:32.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 26 08:46:49 UTC 2016 - mimi...@gmail.com
+
+- update to 2.0.8.2 
+
+---

Old:

  shakespeare-2.0.8.1.tar.gz

New:

  shakespeare-2.0.8.2.tar.gz



Other differences:
--
++ ghc-shakespeare.spec ++
--- /var/tmp/diff_new_pack.gU27AD/_old  2016-04-30 23:30:33.0 +0200
+++ /var/tmp/diff_new_pack.gU27AD/_new  2016-04-30 23:30:33.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-shakespeare
-Version:2.0.8.1
+Version:2.0.8.2
 Release:0
 Summary:A toolkit for making compile-time interpolated templates
 Group:  System/Libraries

++ shakespeare-2.0.8.1.tar.gz -> shakespeare-2.0.8.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shakespeare-2.0.8.1/Text/MkSizeType.hs 
new/shakespeare-2.0.8.2/Text/MkSizeType.hs
--- old/shakespeare-2.0.8.1/Text/MkSizeType.hs  2016-04-15 11:13:43.0 
+0200
+++ new/shakespeare-2.0.8.2/Text/MkSizeType.hs  2016-04-24 15:29:13.0 
+0200
@@ -31,7 +31,7 @@
 derives = map mkName ["Eq", "Ord"]
 
 showInstanceDec :: Name -> String -> Dec
-showInstanceDec name unit' = InstanceD [] (instanceType "Show" name) [showDec]
+showInstanceDec name unit' = instanceD [] (instanceType "Show" name) [showDec]
   where showSize = VarE $ mkName "showSize"
 x = mkName "x"
 unit = LitE $ StringL unit'
@@ -40,17 +40,17 @@
 showBody = NormalB $ AppE (AppE showSize $ VarE x) unit
 
 numInstanceDec :: Name -> Dec
-numInstanceDec name = InstanceD [] (instanceType "Num" name) decs
+numInstanceDec name = instanceD [] (instanceType "Num" name) decs
   where decs = map (binaryFunDec name) ["+", "*", "-"] ++
map (unariFunDec1 name) ["abs", "signum"] ++
[unariFunDec2 name "fromInteger"]
 
 fractionalInstanceDec :: Name -> Dec
-fractionalInstanceDec name = InstanceD [] (instanceType "Fractional" name) decs
+fractionalInstanceDec name = instanceD [] (instanceType "Fractional" name) decs
   where decs = [binaryFunDec name "/", unariFunDec2 name "fromRational"]
 
 toCssInstanceDec :: Name -> Dec
-toCssInstanceDec name = InstanceD [] (instanceType "ToCss" name) [toCssDec]
+toCssInstanceDec name = instanceD [] (instanceType "ToCss" name) [toCssDec]
   where toCssDec = FunD (mkName "toCss") [Clause [] showBody []]
 showBody = NormalB $ (AppE dot from) `AppE` ((AppE dot pack) `AppE` 
show')
 from = VarE 'fromLazyText
@@ -92,3 +92,10 @@
 notStrict :: Strict
 notStrict = NotStrict
 #endif
+
+instanceD :: Cxt -> Type -> [Dec] -> Dec
+#if MIN_VERSION_template_haskell(2,11,0)
+instanceD = InstanceD Nothing
+#else
+instanceD = InstanceD
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shakespeare-2.0.8.1/Text/Shakespeare/I18N.hs 
new/shakespeare-2.0.8.2/Text/Shakespeare/I18N.hs
--- old/shakespeare-2.0.8.1/Text/Shakespeare/I18N.hs2016-04-15 
11:13:43.0 +0200
+++ new/shakespeare-2.0.8.2/Text/Shakespeare/I18N.hs2016-04-24 
15:29:13.0 +0200
@@ -177,7 +177,7 @@
 #endif
 (map (toCon dt) sdef) []) :)
else id)
-[ InstanceD
+[ instanceD
 []
 (ConT ''RenderMessage `AppT` (ConT $ mkName master) `AppT` ConT 
mname)
 [ FunD (mkName "renderMessage") $ c1 ++ c2 ++ [c3]
@@ -414,3 +414,10 @@
 notStrict :: Strict
 notStrict = NotStrict
 #endif
+
+instanceD :: Cxt -> Type -> [Dec] -> Dec
+#if MIN_VERSION_template_haskell(2,11,0)
+instanceD = InstanceD Nothing
+#else
+instanceD = InstanceD
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shakespeare-2.0.8.1/shakespeare.cabal 
new/shakespeare-2.0.8.2/shakespeare.cabal
--- old/shakespeare-2.0.8.1/shakespeare.cabal   2016-04-15 11:13:43.0 
+0200
+++ new/shakespeare-2.0.8.2/shakespeare.cabal   2016-04-24 15:29:42.0 
+0200
@@ -1,5 +1,5 @@
 name:shakespeare
-version: 2.0.8.1
+version: 2.0.8.2
 license: MIT
 license-file:LICENSE
 author:  Michael Snoyman 

commit yast2-auth-client for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package yast2-auth-client for 
openSUSE:Factory checked in at 2016-04-30 23:30:59

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


Package is "yast2-auth-client"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-auth-client/yast2-auth-client.changes  
2015-11-26 17:03:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-auth-client.new/yast2-auth-client.changes 
2016-04-30 23:31:01.0 +0200
@@ -1,0 +2,12 @@
+Tue Mar 22 09:55:56 UTC 2016 - h...@suse.com
+
+- Introduce many new features:
+* Simplify SSSD management interface.
+* Enroll to AD directly from SSSD management interface.
+* Edit settings for NSS/PAM LDAP.
+* Edit settings for Kerberos.
+
+Implements: fate#319137 fate#320407
+Partly implements: fate#316205 fate#320364
+
+---

Old:

  yast2-auth-client-3.3.6.tar.bz2

New:

  yast2-auth-client-3.3.7.tar.bz2



Other differences:
--
++ yast2-auth-client.spec ++
--- /var/tmp/diff_new_pack.X2O0nL/_old  2016-04-30 23:31:02.0 +0200
+++ /var/tmp/diff_new_pack.X2O0nL/_new  2016-04-30 23:31:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-auth-client
 #
-# 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,8 +17,9 @@
 
 
 Name:   yast2-auth-client
-Version:3.3.6
+Version:3.3.7
 Release:0
+Url:https://github.com/yast/yast-auth-client
 Summary:YaST2 - Centralised System Authentication Configuration
 License:GPL-2.0
 Group:  System/YaST
@@ -48,7 +49,6 @@
 
 %description
 With this YaST2 module you may configure centralised system authentication, on 
a single or multipe network domains.
-The authentication capabilities are provided by SSSD.
 
 %prep
 %setup -n %{name}-%{version}
@@ -58,16 +58,13 @@
 %install
 rake install DESTDIR="%{buildroot}"
 
-%post
-
 %files
 %defattr(-,root,root)
-%{yast_desktopdir}/auth-client.desktop
-%{yast_moduledir}/AuthClient.rb
-%{yast_clientdir}/auth-client*.rb
-%{yast_schemadir}/autoyast/rnc/auth-client.rnc
-%dir %{yast_libdir}/yauthclient
-%{yast_libdir}/yauthclient/*
 %doc %{yast_docdir}
+%{yast_libdir}/
+%{yast_desktopdir}/
+%{yast_clientdir}/
+%{yast_libdir}/
+%{yast_scrconfdir}/
 
 %changelog

++ yast2-auth-client-3.3.6.tar.bz2 -> yast2-auth-client-3.3.7.tar.bz2 ++
 11079 lines of diff (skipped)




commit rofi for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package rofi for openSUSE:Factory checked in 
at 2016-04-30 23:30:56

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


Package is "rofi"

Changes:

--- /work/SRC/openSUSE:Factory/rofi/rofi.changes2016-03-17 
16:47:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.rofi.new/rofi.changes   2016-04-30 
23:30:57.0 +0200
@@ -1,0 +2,39 @@
+Tue Apr 19 09:56:02 UTC 2016 - mvet...@suse.com
+
+- Update to version 1.0.0
+- Uses xcb instead of xlib now
+New Features:
+  * Blinking cursor
+  * Separate configuration file
+  * History in drun mode (#343)
+  * Context menu mode, show rofi at the mouse pointer
+Improvement:
+  * auto select and single item on dmenu mode (#281)
+  * Unlimited window title length.
+  * Correctly follow the active desktop, instead of active window.
+  * If requesting modi that is not enabled, show it anyway.
+  * DMenu password mode. (#315)
+  * Levenshtein sort is now UTF-8 aware.
+  * Use xcb instead of large xlib library.
+  * Use GLib mainloop for cleaner code and easier external event based 
handling in future.
+  * Run dialog: Try to convert between locale, fs encoding and utf8. Fixing 
problems with non-utf8 filesystem encodings.
+  * Try to display non-utf8 strings as good as possible.
+  * Autocomplete bang hint in combi mode (#380)
+  * Remove magic line length limits by switching to getline from fgets.
+  * Print git version for git builds in version string.
+   Bug fixes:
+  * Fix subpixel rendering. (#303)
+  * Fix basic tests on OpenBSD (#272)
+  * Fix wrong use of memcpy (thx to Jasperia).
+  * Work around for sigwaitinfo on OpenBSD.
+  * Ignore invalid entries (non-utf8) in dmenu mode.
+  * Glib signal handling.
+  * Fix connecting to i3 on bsd.
+  * Be able to distinguish between empty and cancel in dmenu mode. (#323)
+  * Fix memcpy on single memory region. (#312)
+  * Fix opening file with mode a+ and using fseek to overwrite on bsd.
+   Regressions
+  * Removal of old themeing method. Given it was incomplete.
+  * Removal of daemon mode, given this duplicates Window Manager functionality.
+
+---

Old:

  rofi-0.15.12.tar.gz

New:

  rofi-1.0.0.tar.gz



Other differences:
--
++ rofi.spec ++
--- /var/tmp/diff_new_pack.WpExAh/_old  2016-04-30 23:30:57.0 +0200
+++ /var/tmp/diff_new_pack.WpExAh/_new  2016-04-30 23:30:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rofi
-Version:0.15.12
+Version:1.0.0
 Release:0
 Summary:A window switcher, run dialog and dmenu replacement
 License:MIT
@@ -28,12 +28,13 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  cairo-devel
-BuildRequires:  libX11-devel
-BuildRequires:  libXft-devel
-BuildRequires:  libXinerama-devel
+BuildRequires:  libxkbcommon-devel
+BuildRequires:  libxkbcommon-x11-devel
 BuildRequires:  make
 BuildRequires:  pango-devel
 BuildRequires:  startup-notification-devel
+BuildRequires:  xcb-util-devel
+BuildRequires:  xcb-util-wm-devel
 BuildRequires:  xorg-x11-devel
 Requires:   xdg-utils
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ rofi-0.15.12.tar.gz -> rofi-1.0.0.tar.gz ++
 20829 lines of diff (skipped)

++ xdg-terminal.patch ++
--- /var/tmp/diff_new_pack.WpExAh/_old  2016-04-30 23:30:58.0 +0200
+++ /var/tmp/diff_new_pack.WpExAh/_new  2016-04-30 23:30:58.0 +0200
@@ -1,23 +1,23 @@
-diff -urEbwB rofi-0.15.12/config/config.c rofi-0.15.12.new/config/config.c
 rofi-0.15.12/config/config.c   2015-12-26 13:46:13.0 +0100
-+++ rofi-0.15.12.new/config/config.c   2016-03-07 10:42:24.070762155 +0100
-@@ -78,16 +78,16 @@
- .menu_hlbg_urgent = "#DC322F",
- .menu_hlbg_active = "#268BD2",
+diff -urEbwB rofi-1.0.0/config/config.c rofi-1.0.0.new/config/config.c
+--- rofi-1.0.0/config/config.c 2016-04-03 13:34:33.0 +0200
 rofi-1.0.0.new/config/config.c 2016-04-19 11:47:04.843817905 +0200
+@@ -56,16 +56,16 @@
+ .color_window = "#fdf6e3,#002b36",
+ 
  /** Terminal to use. (for ssh and open in terminal) */
 -.terminal_emulator = "rofi-sensible-terminal",
 +.terminal_emulator = "xdg-terminal",
  .ssh_client= "ssh",
  /** Command when executing ssh. */
 -.ssh_command   = "{terminal} -e {ssh-client} {host}",
-+.ssh_command   = "xdg-terminal '{ssh-client} {host}'",
++.ssh_command   = "{terminal} {ssh-client} {host}",
  /** Command when running */
  .run_command   = "{cmd}",
  /** Command used to list executable commands. empty -> internal */
  

commit ghc-streaming-commons for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-streaming-commons for 
openSUSE:Factory checked in at 2016-04-30 23:30:35

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


Package is "ghc-streaming-commons"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-streaming-commons/ghc-streaming-commons.changes  
2016-03-16 10:33:44.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-streaming-commons.new/ghc-streaming-commons.changes
 2016-04-30 23:30:37.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:51:19 UTC 2016 - mimi...@gmail.com
+
+- update to 0.1.15.4
+* Fix benchmarks
+
+---
@@ -4 +10 @@
-- update to 0.1.15.1
+- update to 0.1.15.2

Old:

  streaming-commons-0.1.15.2.tar.gz

New:

  streaming-commons-0.1.15.4.tar.gz



Other differences:
--
++ ghc-streaming-commons.spec ++
--- /var/tmp/diff_new_pack.AG6YSR/_old  2016-04-30 23:30:37.0 +0200
+++ /var/tmp/diff_new_pack.AG6YSR/_new  2016-04-30 23:30:37.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-streaming-commons
-Version:0.1.15.2
+Version:0.1.15.4
 Release:0
 Summary:Common lower-level functions needed by various streaming data 
libraries
 License:MIT

++ streaming-commons-0.1.15.2.tar.gz -> streaming-commons-0.1.15.4.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/streaming-commons-0.1.15.2/ChangeLog.md 
new/streaming-commons-0.1.15.4/ChangeLog.md
--- old/streaming-commons-0.1.15.2/ChangeLog.md 2016-03-03 10:57:56.0 
+0100
+++ new/streaming-commons-0.1.15.4/ChangeLog.md 2016-04-21 19:23:04.0 
+0200
@@ -1,3 +1,7 @@
+## 0.1.15.3
+
+* Fix benchmarks
+
 ## 0.1.15.2
 
 * Document child process behavior in `waitForProcess`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/streaming-commons-0.1.15.2/Data/Streaming/Network/Internal.hs 
new/streaming-commons-0.1.15.4/Data/Streaming/Network/Internal.hs
--- old/streaming-commons-0.1.15.2/Data/Streaming/Network/Internal.hs   
2016-03-03 10:57:56.0 +0100
+++ new/streaming-commons-0.1.15.4/Data/Streaming/Network/Internal.hs   
2016-04-24 15:29:11.0 +0200
@@ -39,17 +39,22 @@
 --
 -- Note: The @IsString@ instance recognizes the following special values:
 --
--- * @*@ means @HostAny@
+-- * @*@ means @HostAny@ - "any IPv4 or IPv6 hostname"
 --
--- * @*4@ means @HostIPv4@
+-- * @*4@ means @HostIPv4@ - "any IPv4 or IPv6 hostname, IPv4 preferred"
 --
--- * @!4@ means @HostIPv4Only@
+-- * @!4@ means @HostIPv4Only@ - "any IPv4 hostname"
 --
--- * @*6@ means @HostIPv6@
+-- * @*6@ means @HostIPv6@@ - "any IPv4 or IPv6 hostname, IPv6 preferred"
 --
--- * @!6@ means @HostIPv6Only@
+-- * @!6@ means @HostIPv6Only@ - "any IPv6 hostname"
 --
--- Any other values is treated as a hostname. As an example, to bind to the
+-- Note that the permissive @*@ values allow binding to an IPv4 or an
+-- IPv6 hostname, which means you might be able to successfully bind
+-- to a port more times than you expect (eg once on the IPv4 localhost
+-- 127.0.0.1 and again on the IPv6 localhost 0:0:0:0:0:0:0:1).
+--
+-- Any other value is treated as a hostname. As an example, to bind to the
 -- IPv4 local host only, use \"127.0.0.1\".
 data HostPreference =
 HostAny
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/streaming-commons-0.1.15.2/bench/count-chars.hs 
new/streaming-commons-0.1.15.4/bench/count-chars.hs
--- old/streaming-commons-0.1.15.2/bench/count-chars.hs 2016-03-03 
10:57:56.0 +0100
+++ new/streaming-commons-0.1.15.4/bench/count-chars.hs 2016-04-21 
19:21:39.0 +0200
@@ -5,7 +5,7 @@
 import qualified Data.ByteString as S
 import qualified Data.ByteString.Lazy as L
 import Data.ByteString.Lazy.Internal (ByteString (..))
-import Data.Text.StreamDecoding
+import Data.Streaming.Text
 
 calcLen :: (S.ByteString -> DecodeResult)
 -> L.ByteString
@@ -36,10 +36,10 @@
 
 main :: IO ()
 main = defaultMain $ map handleEncoding
-[ ("UTF-8", TLE.encodeUtf8, TLE.decodeUtf8, streamUtf8)
-, ("UTF-8 pure", TLE.encodeUtf8, TLE.decodeUtf8, streamUtf8Pure)
-, ("UTF-16LE", TLE.encodeUtf16LE, TLE.decodeUtf16LE, streamUtf16LE)
-, ("UTF-16BE", TLE.encodeUtf16BE, TLE.decodeUtf16BE, streamUtf16BE)
-, ("UTF-32LE", TLE.encodeUtf32LE, TLE.decodeUtf32LE, streamUtf32LE)
-, ("UTF-32BE", TLE.encodeUtf32BE, TLE.decodeUtf32BE, streamUtf32BE)
+[ ("UTF-8", TLE.encodeUtf8, TLE.decodeUtf8, decodeUtf8)
+, ("UTF-8 pure", TLE.encodeUtf8, 

commit ghc-shelly for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-shelly for openSUSE:Factory 
checked in at 2016-04-30 23:30:34

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


Package is "ghc-shelly"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-shelly/ghc-shelly.changes2015-12-23 
08:49:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-shelly.new/ghc-shelly.changes   
2016-04-30 23:30:35.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:48:11 UTC 2016 - mimi...@gmail.com
+
+- update to  1.6.6
+* add prependToPath function
+
+---

Old:

  shelly-1.6.5.tar.gz

New:

  shelly-1.6.6.tar.gz



Other differences:
--
++ ghc-shelly.spec ++
--- /var/tmp/diff_new_pack.GY3LMD/_old  2016-04-30 23:30:35.0 +0200
+++ /var/tmp/diff_new_pack.GY3LMD/_new  2016-04-30 23:30:35.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-shelly
-Version:1.6.5
+Version:1.6.6
 Release:0
 Summary:Shell-like (systems) programming in Haskell
 License:BSD-3-Clause

++ shelly-1.6.5.tar.gz -> shelly-1.6.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shelly-1.6.5/ChangeLog.md 
new/shelly-1.6.6/ChangeLog.md
--- old/shelly-1.6.5/ChangeLog.md   2015-12-10 18:43:35.0 +0100
+++ new/shelly-1.6.6/ChangeLog.md   2016-04-21 18:31:23.0 +0200
@@ -1,3 +1,7 @@
+# 1.6.6
+
+* add prependToPath function
+
 # 1.6.5
 
 * expose MonadShControl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shelly-1.6.5/shelly.cabal 
new/shelly-1.6.6/shelly.cabal
--- old/shelly-1.6.5/shelly.cabal   2015-12-10 18:17:15.0 +0100
+++ new/shelly-1.6.6/shelly.cabal   2016-04-21 18:30:42.0 +0200
@@ -1,6 +1,6 @@
 Name:   shelly
 
-Version: 1.6.5
+Version: 1.6.6
 Synopsis:shell-like (systems) programming in Haskell
 
 Description: Shelly provides convenient systems programming in Haskell,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shelly-1.6.5/src/Shelly/Lifted.hs 
new/shelly-1.6.6/src/Shelly/Lifted.hs
--- old/shelly-1.6.5/src/Shelly/Lifted.hs   2015-12-08 00:20:05.0 
+0100
+++ new/shelly-1.6.6/src/Shelly/Lifted.hs   2016-04-21 18:30:42.0 
+0200
@@ -51,7 +51,7 @@
 
 
  -- * Modifying and querying environment.
- , setenv, get_env, get_env_text, get_env_all, appendToPath
+ , setenv, get_env, get_env_text, get_env_all, appendToPath, 
prependToPath
 
  -- * Environment directory
  , cd, chdir, chdir_p, pwd
@@ -156,19 +156,19 @@
 instance (Monoid w, MonadSh m) => MonadSh (WriterT w m) where
 liftSh m = WriterT $ do
 a <- liftSh m
-return (a, mempty)
+return (a, mempty :: w)
 instance (Monoid w, MonadSh m) => MonadSh (Strict.WriterT w m) where
 liftSh m = Strict.WriterT $ do
 a <- liftSh m
-return (a, mempty)
+return (a, mempty :: w)
 instance (Monoid w, MonadSh m) => MonadSh (RWS.RWST r w s m) where
 liftSh m = RWS.RWST $ \_ s -> do
 a <- liftSh m
-return (a, s, mempty)
+return (a, s, mempty :: w)
 instance (Monoid w, MonadSh m) => MonadSh (Strict.RWST r w s m) where
 liftSh m = Strict.RWST $ \_ s -> do
 a <- liftSh m
-return (a, s, mempty)
+return (a, s, mempty :: w)
 
 instance MonadSh m => S.ShellCmd (m Text) where
 cmdAll = (liftSh .) . S.run
@@ -223,7 +223,7 @@
  => MonadShControl (WriterT w m) where
 newtype ShM (WriterT w m) a = WriterTShM (ShM m (a, w))
 liftShWith f =
-WriterT $ liftM  (\x -> (x, mempty)) $ liftShWith $ \runInSh -> f $ \k 
->
+WriterT $ liftM  (\x -> (x, mempty :: w)) $ liftShWith $ \runInSh -> f 
$ \k ->
 liftM WriterTShM $ runInSh $ runWriterT k
 restoreSh (WriterTShM m) = WriterT . restoreSh $ m
 {-# INLINE liftShWith #-}
@@ -233,7 +233,7 @@
  => MonadShControl (Strict.WriterT w m) where
 newtype ShM (Strict.WriterT w m) a = StWriterTShM (ShM m (a, w))
 liftShWith f =
-Strict.WriterT $ liftM (\x -> (x, mempty)) $ liftShWith $ \runInSh -> 
f $ \k ->
+Strict.WriterT $ liftM (\x -> (x, mempty :: w)) $ liftShWith $ 
\runInSh -> f $ \k ->
 liftM StWriterTShM $ runInSh $ Strict.runWriterT k
 restoreSh (StWriterTShM m) = Strict.WriterT . restoreSh $ m
 {-# INLINE liftShWith #-}
@@ -280,7 +280,7 @@
  => MonadShControl (RWS.RWST r w s m) where
 newtype ShM (RWS.RWST r w s m) a = RWSTShM (ShM m (a, 

commit ghc-wai-extra for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-wai-extra for openSUSE:Factory 
checked in at 2016-04-30 23:30:50

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


Package is "ghc-wai-extra"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-wai-extra/ghc-wai-extra.changes  
2016-03-31 13:02:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-wai-extra.new/ghc-wai-extra.changes 
2016-04-30 23:30:51.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 09:19:11 UTC 2016 - mimi...@gmail.com
+
+- update to 3.0.15.1
+* don't use deprecated CRT functions on Windows
+
+---

Old:

  wai-extra-3.0.15.tar.gz

New:

  wai-extra-3.0.15.1.tar.gz



Other differences:
--
++ ghc-wai-extra.spec ++
--- /var/tmp/diff_new_pack.qUEMFg/_old  2016-04-30 23:30:51.0 +0200
+++ /var/tmp/diff_new_pack.qUEMFg/_new  2016-04-30 23:30:51.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-wai-extra
-Version:3.0.15
+Version:3.0.15.1
 Release:0
 Summary:Provides some basic WAI handlers and middleware
 License:MIT

++ wai-extra-3.0.15.tar.gz -> wai-extra-3.0.15.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-extra-3.0.15/ChangeLog.md 
new/wai-extra-3.0.15.1/ChangeLog.md
--- old/wai-extra-3.0.15/ChangeLog.md   2016-03-22 10:15:32.0 +0100
+++ new/wai-extra-3.0.15.1/ChangeLog.md 2016-04-25 15:20:48.0 +0200
@@ -1,3 +1,7 @@
+## 3.0.15.1
+
+* don't use deprecated CRT functions on Windows 
[#544](https://github.com/yesodweb/wai/pull/544)
+
 ## 3.0.15
 
 * add requestSizeCheck [#525](https://github.com/yesodweb/wai/pull/525)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-extra-3.0.15/Network/Wai/Handler/SCGI.hs 
new/wai-extra-3.0.15.1/Network/Wai/Handler/SCGI.hs
--- old/wai-extra-3.0.15/Network/Wai/Handler/SCGI.hs2016-03-22 
10:15:32.0 +0100
+++ new/wai-extra-3.0.15.1/Network/Wai/Handler/SCGI.hs  2016-04-25 
15:20:34.0 +0200
@@ -1,4 +1,4 @@
-{-# LANGUAGE ForeignFunctionInterface #-}
+{-# LANGUAGE CPP, ForeignFunctionInterface #-}
 module Network.Wai.Handler.SCGI
 ( run
 , runSendfile
@@ -86,6 +86,16 @@
 foreign import ccall unsafe "accept"
 c'accept :: CInt -> Ptr a -> Ptr a -> IO CInt
 
+#if WINDOWS
+foreign import ccall unsafe "_close"
+c'close :: CInt -> IO CInt
+
+foreign import ccall unsafe "_write"
+c'write :: CInt -> Ptr CChar -> CInt -> IO CInt
+
+foreign import ccall unsafe "_read"
+c'read :: CInt -> Ptr CChar -> CInt -> IO CInt
+#else
 foreign import ccall unsafe "close"
 c'close :: CInt -> IO CInt
 
@@ -94,3 +104,4 @@
 
 foreign import ccall unsafe "read"
 c'read :: CInt -> Ptr CChar -> CInt -> IO CInt
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-extra-3.0.15/wai-extra.cabal 
new/wai-extra-3.0.15.1/wai-extra.cabal
--- old/wai-extra-3.0.15/wai-extra.cabal2016-03-22 10:15:32.0 
+0100
+++ new/wai-extra-3.0.15.1/wai-extra.cabal  2016-04-25 15:20:53.0 
+0200
@@ -1,5 +1,5 @@
 Name:wai-extra
-Version: 3.0.15
+Version: 3.0.15.1
 Synopsis:Provides some basic WAI handlers and middleware.
 description:
   Provides basic WAI handler and middleware functionality:
@@ -82,7 +82,7 @@
   README.md
 
 Library
-  Build-Depends: base  >= 4 && < 5
+  Build-Depends: base  >= 4.6 && < 5
, bytestring>= 0.9.1.4
, wai   >= 3.0.3.0  && < 3.3
, old-locale>= 1.0.0.2  && < 1.1
@@ -95,8 +95,8 @@
, text  >= 0.7
, case-insensitive  >= 0.2
, data-default-class
-   , fast-logger   >= 2.1  && < 2.5
-   , wai-logger>= 2.0  && < 2.3
+   , fast-logger   >= 2.4.5&& < 2.5
+   , wai-logger>= 2.2.6&& < 2.3
, ansi-terminal
, resourcet >= 0.4.6&& < 1.2
, void  >= 0.5




commit ghc-wai-logger for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-wai-logger for openSUSE:Factory 
checked in at 2016-04-30 23:30:52

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


Package is "ghc-wai-logger"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-wai-logger/ghc-wai-logger.changes
2016-01-22 01:08:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-wai-logger.new/ghc-wai-logger.changes   
2016-04-30 23:30:53.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 26 09:22:36 UTC 2016 - mimi...@gmail.com
+
+- update to 2.2.7
+
+---

Old:

  wai-logger-2.2.5.tar.gz

New:

  wai-logger-2.2.7.tar.gz



Other differences:
--
++ ghc-wai-logger.spec ++
--- /var/tmp/diff_new_pack.CKW01b/_old  2016-04-30 23:30:53.0 +0200
+++ /var/tmp/diff_new_pack.CKW01b/_new  2016-04-30 23:30:53.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-wai-logger
-Version:2.2.5
+Version:2.2.7
 Release:0
 Summary:A logging system for WAI
 License:MIT
@@ -34,12 +34,10 @@
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
-BuildRequires:  ghc-auto-update-devel
 BuildRequires:  ghc-blaze-builder-devel
 BuildRequires:  ghc-byteorder-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-case-insensitive-devel
-BuildRequires:  ghc-easy-file-devel
 BuildRequires:  ghc-fast-logger-devel
 BuildRequires:  ghc-http-types-devel
 BuildRequires:  ghc-network-devel

++ wai-logger-2.2.5.tar.gz -> wai-logger-2.2.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-logger-2.2.5/Network/Wai/Logger/Apache.hs 
new/wai-logger-2.2.7/Network/Wai/Logger/Apache.hs
--- old/wai-logger-2.2.5/Network/Wai/Logger/Apache.hs   2016-01-13 
08:28:24.0 +0100
+++ new/wai-logger-2.2.7/Network/Wai/Logger/Apache.hs   2016-04-18 
07:47:40.0 +0200
@@ -14,7 +14,6 @@
 
 import Data.ByteString.Char8 (ByteString)
 import qualified Data.ByteString.Char8 as BS
-import Data.CaseInsensitive (CI)
 import Data.List (find)
 import Data.Maybe (fromMaybe)
 #if MIN_VERSION_base(4,5,0)
@@ -24,7 +23,6 @@
 #endif
 import Network.HTTP.Types (Status, statusCode)
 import Network.Wai (Request(..))
-import Network.Wai.Logger.Date
 import Network.Wai.Logger.IP
 import System.Log.FastLogger
 
@@ -42,7 +40,7 @@
   | FromFallback
 
 -- | Apache style log format.
-apacheLogStr :: IPAddrSource -> ZonedDate -> Request -> Status -> Maybe 
Integer -> LogStr
+apacheLogStr :: IPAddrSource -> FormattedTime -> Request -> Status -> Maybe 
Integer -> LogStr
 apacheLogStr ipsrc tmstr req status msize =
   toLogStr (getSourceIP ipsrc req)
   <> " - - ["
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-logger-2.2.5/Network/Wai/Logger/Date.hs 
new/wai-logger-2.2.7/Network/Wai/Logger/Date.hs
--- old/wai-logger-2.2.5/Network/Wai/Logger/Date.hs 2016-01-13 
08:28:24.0 +0100
+++ new/wai-logger-2.2.7/Network/Wai/Logger/Date.hs 1970-01-01 
01:00:00.0 +0100
@@ -1,88 +0,0 @@
-{-# LANGUAGE CPP, OverloadedStrings #-}
-
--- |
--- Formatting time is slow.
--- This package provides mechanisms to cache formatted date.
-module Network.Wai.Logger.Date (
-  -- * Types
-DateCacheGetter
-  , DateCacheUpdater
-  , ZonedDate
-  -- * Cache configuration
-  , DateCacheConf(..)
-  , zonedDateCacheConf
-  -- * Date cacher
-  , clockDateCacher
-  ) where
-
-import Control.AutoUpdate (mkAutoUpdate, defaultUpdateSettings, updateAction)
-import Data.ByteString (ByteString)
-#if WINDOWS
-import qualified Data.ByteString.Char8 as BS
-import Data.Time (UTCTime, formatTime, getCurrentTime, utcToLocalZonedTime)
-# if MIN_VERSION_time(1,5,0)
-import Data.Time (defaultTimeLocale)
-# else
-import System.Locale (defaultTimeLocale)
-# endif
-#else
-import Data.UnixTime (formatUnixTime, fromEpochTime)
-import System.Posix (EpochTime, epochTime)
-#endif
-
-
-
--- | Getting cached 'ZonedDate'.
-type DateCacheGetter = IO ZonedDate
--- | Updateing cached 'ZonedDate'. This should be called every second.
---   See the source code of 'withStdoutLogger'.
-type DateCacheUpdater = IO ()
-
-
-
--- | A type for zoned date.
-type ZonedDate = ByteString
-
-
-
-data DateCacheConf t = DateCacheConf {
--- | A function to get a time. E.g 'epochTime' and 'getCurrentTime'.
-getTime :: IO t
--- | A function to 

commit ghc-auto-update for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-auto-update for openSUSE:Factory 
checked in at 2016-04-30 23:30:10

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


Package is "ghc-auto-update"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-auto-update/ghc-auto-update.changes  
2016-01-07 00:25:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-auto-update.new/ghc-auto-update.changes 
2016-04-30 23:30:12.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:09:36 UTC 2016 - mimi...@gmail.com
+
+- update to 0.1.3.1
+* Doc improvements
+
+---

Old:

  auto-update-0.1.3.tar.gz

New:

  auto-update-0.1.3.1.tar.gz



Other differences:
--
++ ghc-auto-update.spec ++
--- /var/tmp/diff_new_pack.azeNDe/_old  2016-04-30 23:30:12.0 +0200
+++ /var/tmp/diff_new_pack.azeNDe/_new  2016-04-30 23:30:12.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name auto-update
 
 Name:   ghc-auto-update
-Version:0.1.3
+Version:0.1.3.1
 Release:0
 Summary:Efficiently run periodic, on-demand actions
 License:MIT

++ auto-update-0.1.3.tar.gz -> auto-update-0.1.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/auto-update-0.1.3/ChangeLog.md 
new/auto-update-0.1.3.1/ChangeLog.md
--- old/auto-update-0.1.3/ChangeLog.md  2015-12-16 07:13:54.0 +0100
+++ new/auto-update-0.1.3.1/ChangeLog.md2016-04-25 15:26:28.0 
+0200
@@ -1,2 +1,11 @@
-__0.1.3__ Adding a new AIP - reaperKill
-__0.1.2__ Added Control.Debounce
+## 0.1.3.1
+
+* Doc improvements
+
+## 0.1.3
+
+* Adding a new AIP - reaperKill
+
+## 0.1.2
+
+* Added Control.Debounce
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/auto-update-0.1.3/Control/AutoUpdate.hs 
new/auto-update-0.1.3.1/Control/AutoUpdate.hs
--- old/auto-update-0.1.3/Control/AutoUpdate.hs 2015-12-16 07:13:54.0 
+0100
+++ new/auto-update-0.1.3.1/Control/AutoUpdate.hs   2016-04-24 
15:33:08.0 +0200
@@ -1,21 +1,40 @@
--- | A common problem is the desire to have an action run at a scheduled
--- interval, but only if it is needed. For example, instead of having
--- every web request result in a new @getCurrentTime@ call, we'd like to
--- have a single worker thread run every second, updating an @IORef@.
--- However, if the request frequency is less than once per second, this is
--- a pessimization, and worse, kills idle GC.
---
--- This library allows you to define actions which will either be
--- performed by a dedicated thread or, in times of low volume, will be
--- executed by the calling thread.
+-- | In a multithreaded environment, running actions on a regularly scheduled
+-- background thread can dramatically improve performance.
+-- For example, web servers need to return the current time with each HTTP 
response.
+-- For a high-volume server, it's much faster for a dedicated thread to run 
every
+-- second, and write the current time to a shared 'IORef', than it is for each
+-- request to make its own call to 'getCurrentTime'.
+--
+-- But for a low-volume server, whose request frequency is less than once per 
+-- second, that approach will result in /more/ calls to 'getCurrentTime' than 
+-- necessary, and worse, kills idle GC.
+--
+-- This library solves that problem by allowing you to define actions which 
will
+-- either be performed by a dedicated thread, or, in times of low volume, will 
+-- be executed by the calling thread.
+--
+-- Example usage:
+--
+-- @
+-- import "Data.Time"
+-- import "Control.AutoUpdate"
+--
+-- getTime <- 'mkAutoUpdate' 'defaultUpdateSettings'
+--  { 'updateAction' = 'Data.Time.Clock.getCurrentTime'
+--  , 'updateFreq' = 100 -- The default frequency, once per 
second
+--  }
+-- currentTime <- getTime
+-- @
+--
+-- For more examples, 
.
 module Control.AutoUpdate (
   -- * Type
   UpdateSettings
 , defaultUpdateSettings
   -- * Accessors
+, updateAction
 , updateFreq
 , updateSpawnThreshold
-, updateAction
   -- * Creation
 , mkAutoUpdate
 ) where
@@ -27,9 +46,9 @@
 import   Control.Monad   (void)
 import   Data.IORef  (newIORef, readIORef, writeIORef)
 
--- | Default value for creating an @UpdateSettings@.
+-- | Default value for creating an 'UpdateSettings'.
 --
--- Since 0.1.0
+-- @since 0.1.0
 defaultUpdateSettings :: UpdateSettings ()
 

commit ghc-psqueues for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-psqueues for openSUSE:Factory 
checked in at 2016-04-30 23:30:27

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


Package is "ghc-psqueues"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-psqueues/ghc-psqueues.changes
2016-02-11 12:37:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-psqueues.new/ghc-psqueues.changes   
2016-04-30 23:30:28.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:39:18 UTC 2016 - mimi...@gmail.com
+
+- update to 0.2.2.1
+* Fix benchmark compilation with stack
+
+---

Old:

  psqueues-0.2.2.0.tar.gz

New:

  psqueues-0.2.2.1.tar.gz



Other differences:
--
++ ghc-psqueues.spec ++
--- /var/tmp/diff_new_pack.UburaB/_old  2016-04-30 23:30:29.0 +0200
+++ /var/tmp/diff_new_pack.UburaB/_new  2016-04-30 23:30:29.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-psqueues
-Version:0.2.2.0
+Version:0.2.2.1
 Release:0
 Summary:Pure priority search queues
 Group:  System/Libraries

++ psqueues-0.2.2.0.tar.gz -> psqueues-0.2.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/psqueues-0.2.2.0/CHANGELOG 
new/psqueues-0.2.2.1/CHANGELOG
--- old/psqueues-0.2.2.0/CHANGELOG  2016-02-06 11:43:26.0 +0100
+++ new/psqueues-0.2.2.1/CHANGELOG  2016-04-22 12:16:55.0 +0200
@@ -1,3 +1,6 @@
+- 0.2.2.1
+* Fix benchmark compilation with stack
+
 - 0.2.2.0
 * Fix import of Traversable on GHC 7.8
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/psqueues-0.2.2.0/benchmarks/BenchmarkTypes.hs 
new/psqueues-0.2.2.1/benchmarks/BenchmarkTypes.hs
--- old/psqueues-0.2.2.0/benchmarks/BenchmarkTypes.hs   1970-01-01 
01:00:00.0 +0100
+++ new/psqueues-0.2.2.1/benchmarks/BenchmarkTypes.hs   2016-04-22 
12:16:55.0 +0200
@@ -0,0 +1,28 @@
+
+module BenchmarkTypes where
+
+import Criterion
+
+type BElem = (Int, Int, ())
+
+data BenchmarkSet = BenchmarkSet
+{ bGroupName:: String
+, bMinView  :: Benchmarkable
+, bLookup   :: Benchmarkable
+, bInsertEmpty  :: Benchmarkable
+, bInsertNew:: Benchmarkable
+, bInsertDuplicates :: Benchmarkable
+, bDelete   :: Benchmarkable
+}
+
+runBenchmark :: [BenchmarkSet] -> [Benchmark]
+runBenchmark bset =
+[ bgroup "minView"  $ map (bench' bMinView)  bset
+, bgroup "lookup"   $ map (bench' bLookup)   bset
+, bgroup "insertEmpty"  $ map (bench' bInsertEmpty)  bset
+, bgroup "insertNew"$ map (bench' bInsertNew)bset
+, bgroup "insertDuplicates" $ map (bench' bInsertDuplicates) bset
+, bgroup "delete"   $ map (bench' bDelete)   bset
+]
+  where
+   bench' f x = bench (bGroupName x) (f x)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/psqueues-0.2.2.0/benchmarks/Data/FingerTree/PSQueue/Benchmark.hs 
new/psqueues-0.2.2.1/benchmarks/Data/FingerTree/PSQueue/Benchmark.hs
--- old/psqueues-0.2.2.0/benchmarks/Data/FingerTree/PSQueue/Benchmark.hs
1970-01-01 01:00:00.0 +0100
+++ new/psqueues-0.2.2.1/benchmarks/Data/FingerTree/PSQueue/Benchmark.hs
2016-04-22 12:16:55.0 +0200
@@ -0,0 +1,61 @@
+{-# LANGUAGE BangPatterns #-}
+
+-- | This module contains benchmarks for the 'PSQueue' type from the
+-- `fingertree-psqueue` package.
+module Data.FingerTree.PSQueue.Benchmark
+( benchmark
+) where
+
+import   Data.List (foldl')
+import   Data.FingerTree.PSQueue (Binding (..))
+import qualified Data.FingerTree.PSQueue as PSQueue
+import   Criterion.Main
+import   Prelude hiding (lookup)
+import   BenchmarkTypes
+import   Data.Maybe (fromMaybe)
+
+benchmark :: String -> [BElem] -> BenchmarkSet
+benchmark name elems = BenchmarkSet
+{ bGroupName= name
+, bMinView  = whnf bench_minView  initialPSQ
+, bLookup   = whnf (bench_lookup keys)initialPSQ
+, bInsertEmpty  = nf'  (bench_insert firstElems)  PSQueue.empty
+, bInsertNew= nf'  (bench_insert secondElems) initialPSQ
+, bInsertDuplicates = nf'  (bench_insert firstElems)  initialPSQ
+, bDelete   = nf'  (bench_delete firstKeys)   initialPSQ
+}
+  where
+(firstElems, secondElems) = splitAt (numElems `div` 2) elems
+numElems  = length elems
+keys  = map (\(x, _, _) -> x) elems
+   

commit ghc for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

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

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


Package is "ghc"

Changes:

--- /work/SRC/openSUSE:Factory/ghc/ghc.changes  2016-03-16 10:33:53.0 
+0100
+++ /work/SRC/openSUSE:Factory/.ghc.new/ghc.changes 2016-04-30 
23:30:22.0 +0200
@@ -1,0 +2,9 @@
+Tue Apr 19 12:50:38 UTC 2016 - mimi...@gmail.com
+
+- update haskeline to 0.7.2.3
+- refresh u_haskeline_update.patch
+* Fix hsc2hs-related warning on ghc-8
+* Fix the behavior of ctrl-W in the emacs bindings
+* Point to github instead of trac
+
+---



Other differences:
--
++ ghc.spec ++
--- /var/tmp/diff_new_pack.2gxAiC/_old  2016-04-30 23:30:23.0 +0200
+++ /var/tmp/diff_new_pack.2gxAiC/_new  2016-04-30 23:30:23.0 +0200
@@ -80,7 +80,7 @@
 Patch21:u_terminfo_0402.patch 
 # PATCH-FIX-UPSTREAM u_Cabal_update.patch mimi...@gmail.com -- update Cabal to 
1.22.6.0
 Patch22:u_Cabal_update.patch
-# PATCH-FIX-UPSTREAM u_haskeline_update.patch mimi...@gmail.com -- update 
haskeline to 0.7.2.2
+# PATCH-FIX-UPSTREAM u_haskeline_update.patch mimi...@gmail.com -- update 
haskeline to 0.7.2.3
 Patch23:u_haskeline_update.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -139,7 +139,7 @@
 %define ghc_pkg_obsoletes ghc-bin-package-db-devel < 0.0.0.0-%{release}
 %ghc_lib_subpackage -x ghc %{ghc_version_override}
 %undefine ghc_pkg_obsoletes
-%ghc_lib_subpackage haskeline 0.7.2.2
+%ghc_lib_subpackage haskeline 0.7.2.3
 %ghc_lib_subpackage hoopl 3.10.0.2
 %ghc_lib_subpackage hpc 0.6.0.2
 %ghc_lib_subpackage pretty 1.1.2.0

++ u_haskeline_update.patch ++
 1227 lines (skipped)
 between /work/SRC/openSUSE:Factory/ghc/u_haskeline_update.patch
 and /work/SRC/openSUSE:Factory/.ghc.new/u_haskeline_update.patch




commit ghc-cookie for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-cookie for openSUSE:Factory 
checked in at 2016-04-30 23:30:14

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


Package is "ghc-cookie"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-cookie/ghc-cookie.changes2015-06-30 
10:19:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-cookie.new/ghc-cookie.changes   
2016-04-30 23:30:16.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:12:25 UTC 2016 - mimi...@gmail.com
+
+- update to 0.4.2
+* Added SameSite
+
+---

Old:

  cookie-0.4.1.6.tar.gz

New:

  cookie-0.4.2.tar.gz



Other differences:
--
++ ghc-cookie.spec ++
--- /var/tmp/diff_new_pack.IgegJH/_old  2016-04-30 23:30:16.0 +0200
+++ /var/tmp/diff_new_pack.IgegJH/_new  2016-04-30 23:30:16.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name cookie
 
 Name:   ghc-cookie
-Version:0.4.1.6
+Version:0.4.2
 Release:0
 Summary:HTTP cookie parsing and rendering
 License:BSD-2-Clause
@@ -77,5 +77,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
+%doc README.md ChangeLog.md
 
 %changelog

++ cookie-0.4.1.6.tar.gz -> cookie-0.4.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cookie-0.4.1.6/ChangeLog.md 
new/cookie-0.4.2/ChangeLog.md
--- old/cookie-0.4.1.6/ChangeLog.md 1970-01-01 01:00:00.0 +0100
+++ new/cookie-0.4.2/ChangeLog.md   2016-04-20 07:22:10.0 +0200
@@ -0,0 +1,3 @@
+## 0.4.2
+
+* Added SameSite [#13](https://github.com/snoyberg/cookie/pull/13)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cookie-0.4.1.6/README.md new/cookie-0.4.2/README.md
--- old/cookie-0.4.1.6/README.md1970-01-01 01:00:00.0 +0100
+++ new/cookie-0.4.2/README.md  2016-04-20 07:22:10.0 +0200
@@ -0,0 +1,5 @@
+## cookie
+
+[![Build 
Status](https://travis-ci.org/snoyberg/cookie.svg?branch=master)](https://travis-ci.org/snoyberg/cookie)
+
+HTTP cookie parsing and rendering
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cookie-0.4.1.6/Web/Cookie.hs 
new/cookie-0.4.2/Web/Cookie.hs
--- old/cookie-0.4.1.6/Web/Cookie.hs2015-06-23 10:20:33.0 +0200
+++ new/cookie-0.4.2/Web/Cookie.hs  2016-04-20 07:22:10.0 +0200
@@ -12,6 +12,10 @@
 , setCookieDomain
 , setCookieHttpOnly
 , setCookieSecure
+, setCookieSameSite
+, SameSiteOption
+, sameSiteLax
+, sameSiteStrict
   -- ** Functions
 , parseSetCookie
 , renderSetCookie
@@ -100,7 +104,7 @@
`mappend` fromByteString v
 -- | Data type representing the key-value pair to use for a cookie, as well as 
configuration options for it.
 --
---  Creating a SetCookie 
+--  Creating a SetCookie
 --
 -- 'SetCookie' does not export a constructor; instead, use the 'Default' 
instance to create one and override values (see 
 for details):
 --
@@ -122,11 +126,24 @@
 , setCookieDomain :: Maybe S.ByteString -- ^ The domain for which the 
cookie should be sent. Default value: @Nothing@ (The browser defaults to the 
current domain).
 , setCookieHttpOnly :: Bool -- ^ Marks the cookie as "HTTP only", i.e. not 
accessible from Javascript. Default value: @False@
 , setCookieSecure :: Bool -- ^ Instructs the browser to only send the 
cookie over HTTPS. Default value: @False@
+, setCookieSameSite :: Maybe SameSiteOption -- ^ Marks the cookie as "same 
site", i.e. should not be sent with cross-site requests. Default value: 
@Nothing@
 }
 deriving (Eq, Show)
 
+-- | Data type representing the options for a SameSite cookie
+data SameSiteOption = Lax | Strict deriving (Show, Eq)
+
+instance NFData SameSiteOption where
+  rnf x = x `seq` ()
+
+sameSiteLax :: SameSiteOption
+sameSiteLax = Lax
+
+sameSiteStrict :: SameSiteOption
+sameSiteStrict = Strict
+
 instance NFData SetCookie where
-rnf (SetCookie a b c d e f g h) =
+rnf (SetCookie a b c d e f g h i) =
 a `seq`
 b `seq`
 rnfMBS c `seq`
@@ -134,7 +151,8 @@
 rnf e `seq`
 rnfMBS f `seq`
 rnf g `seq`
-rnf h
+rnf h `seq`
+rnf i
   where
 -- For backwards compatibility
 rnfMBS Nothing = ()
@@ -150,6 +168,7 @@
 , setCookieDomain   = Nothing
 , setCookieHttpOnly = False
 , setCookieSecure   = False
+, setCookieSameSite = Nothing
 }
 
 renderSetCookie :: 

commit ghc-MonadRandom for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-MonadRandom for openSUSE:Factory 
checked in at 2016-04-30 23:30:24

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


Package is "ghc-MonadRandom"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-MonadRandom/ghc-MonadRandom.changes  
2016-01-28 17:24:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-MonadRandom.new/ghc-MonadRandom.changes 
2016-04-30 23:30:26.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 26 08:33:51 UTC 2016 - mimi...@gmail.com
+
+- update to 0.4.2.3
+* Mark Control.Monad.Random as Trustworthy.
+
+---

Old:

  MonadRandom-0.4.2.2.tar.gz

New:

  MonadRandom-0.4.2.3.tar.gz



Other differences:
--
++ ghc-MonadRandom.spec ++
--- /var/tmp/diff_new_pack.jThAOw/_old  2016-04-30 23:30:26.0 +0200
+++ /var/tmp/diff_new_pack.jThAOw/_new  2016-04-30 23:30:26.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name MonadRandom
 
 Name:   ghc-MonadRandom
-Version:0.4.2.2
+Version:0.4.2.3
 Release:0
 Summary:Random-number generation monad
 License:MIT

++ MonadRandom-0.4.2.2.tar.gz -> MonadRandom-0.4.2.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MonadRandom-0.4.2.2/CHANGES.markdown 
new/MonadRandom-0.4.2.3/CHANGES.markdown
--- old/MonadRandom-0.4.2.2/CHANGES.markdown2016-01-18 18:09:08.0 
+0100
+++ new/MonadRandom-0.4.2.3/CHANGES.markdown2016-04-22 04:25:42.0 
+0200
@@ -1,3 +1,8 @@
+0.4.2.3 (21 April 2016)
+---
+
+  - Mark `Control.Monad.Random` as `Trustworthy`.
+
 0.4.2.2 (18 January 2016)
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MonadRandom-0.4.2.2/Control/Monad/Random.hs 
new/MonadRandom-0.4.2.3/Control/Monad/Random.hs
--- old/MonadRandom-0.4.2.2/Control/Monad/Random.hs 2016-01-18 
18:09:08.0 +0100
+++ new/MonadRandom-0.4.2.3/Control/Monad/Random.hs 2016-04-22 
04:25:42.0 +0200
@@ -2,6 +2,7 @@
 {-# LANGUAGE FlexibleInstances  #-}
 {-# LANGUAGE GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE MultiParamTypeClasses  #-}
+{-# LANGUAGE Trustworthy#-}
 {-# LANGUAGE UndecidableInstances   #-}
 {-# OPTIONS -fno-warn-orphans #-}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MonadRandom-0.4.2.2/MonadRandom.cabal 
new/MonadRandom-0.4.2.3/MonadRandom.cabal
--- old/MonadRandom-0.4.2.2/MonadRandom.cabal   2016-01-18 18:09:08.0 
+0100
+++ new/MonadRandom-0.4.2.3/MonadRandom.cabal   2016-04-22 04:25:42.0 
+0200
@@ -1,5 +1,5 @@
 name:MonadRandom
-version: 0.4.2.2
+version: 0.4.2.3
 synopsis:Random-number generation monad.
 description: Support for computations which consume random values.
 license: OtherLicense




commit python-s3transfer for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package python-s3transfer for 
openSUSE:Factory checked in at 2016-04-30 23:30:02

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


Package is "python-s3transfer"

Changes:

--- /work/SRC/openSUSE:Factory/python-s3transfer/python-s3transfer.changes  
2016-04-14 13:07:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-s3transfer.new/python-s3transfer.changes 
2016-04-30 23:30:03.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr 18 17:47:19 UTC 2016 - rjsch...@suse.com
+
+- Include in SLE 12 (FATE#320748, bsc#974993, bsc#975949)
+
+---
@@ -10 +15 @@
-- Initial build include in SLE 12 (FATE#320748, bsc#974993)
+- Initial build



Other differences:
--



commit libvirt for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libvirt for openSUSE:Factory checked 
in at 2016-04-30 23:30:04

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


Package is "libvirt"

Changes:

--- /work/SRC/openSUSE:Factory/libvirt/libvirt.changes  2016-04-22 
16:24:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt.new/libvirt.changes 2016-04-30 
23:30:05.0 +0200
@@ -1,0 +2,14 @@
+Mon Apr 18 21:32:37 UTC 2016 - jfeh...@suse.com
+
+- qemu: perf: Fix crash/memory corruption on failed VM start
+  03e8d5fb-qemu-perf-memory-corruption.patch
+  bsc#977131
+
+---
+Mon Apr 18 19:34:10 UTC 2016 - jfeh...@suse.com
+
+- Fix setting implicit video devices as primary
+  6d8b6d28-mark-implicit-video-primary.patch
+  bsc#977150
+
+---

New:

  03e8d5fb-qemu-perf-memory-corruption.patch
  6d8b6d28-mark-implicit-video-primary.patch



Other differences:
--
++ libvirt.spec ++
--- /var/tmp/diff_new_pack.Ohp4yE/_old  2016-04-30 23:30:07.0 +0200
+++ /var/tmp/diff_new_pack.Ohp4yE/_new  2016-04-30 23:30:07.0 +0200
@@ -461,6 +461,8 @@
 Source100:  %{name}-rpmlintrc
 # Upstream patches
 Patch0: 216650f1-libxl-build-fix.patch
+Patch1: 6d8b6d28-mark-implicit-video-primary.patch
+Patch2: 03e8d5fb-qemu-perf-memory-corruption.patch
 # Patches pending upstream review
 # Need to go upstream
 Patch150:   xen-pv-cdrom.patch
@@ -990,6 +992,8 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 %patch150 -p1
 %patch151 -p1
 %patch152 -p1

++ 03e8d5fb-qemu-perf-memory-corruption.patch ++
commit 03e8d5fb54c7c897225ed9ea56d83b894930f144
Author: Peter Krempa 
Date:   Thu Apr 7 12:50:15 2016 +0200

qemu: perf: Fix crash/memory corruption on failed VM start

The new perf code didn't bother to clear a pointer in 'priv' causing a
double free or other memory corruption goodness if a VM failed to start.

Clear the pointer after freeing the memory.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1324757

Index: libvirt-1.3.3/src/qemu/qemu_process.c
===
--- libvirt-1.3.3.orig/src/qemu/qemu_process.c
+++ libvirt-1.3.3/src/qemu/qemu_process.c
@@ -3444,6 +3444,7 @@ qemuDomainPerfRestart(virDomainObjPtr vm
 
  cleanup:
 virPerfFree(priv->perf);
+priv->perf = NULL;
 return -1;
 }
 
@@ -5959,6 +5960,7 @@ void qemuProcessStop(virQEMUDriverPtr dr
 virCgroupFree(>cgroup);
 
 virPerfFree(priv->perf);
+priv->perf = NULL;
 
 qemuProcessRemoveDomainStatus(driver, vm);
 
++ 6d8b6d28-mark-implicit-video-primary.patch ++
 914 lines (skipped)





commit ghc-attoparsec for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-attoparsec for openSUSE:Factory 
checked in at 2016-04-30 23:30:08

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


Package is "ghc-attoparsec"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-attoparsec/ghc-attoparsec.changes
2016-01-08 15:22:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-attoparsec.new/ghc-attoparsec.changes   
2016-04-30 23:30:09.0 +0200
@@ -1,0 +2,9 @@
+Tue Apr 26 07:59:37 UTC 2016 - mimi...@gmail.com
+
+- update to 0.13.0.2
+- remove useless _service
+* Restore the fast specialised character set implementation for Text
+* Move testsuite from test-framework to tasty
+* Performance optimization of takeWhile and takeWhile1
+
+---

Old:

  _service
  attoparsec-0.13.0.1.tar.gz

New:

  attoparsec-0.13.0.2.tar.gz



Other differences:
--
++ ghc-attoparsec.spec ++
--- /var/tmp/diff_new_pack.2CO8XX/_old  2016-04-30 23:30:10.0 +0200
+++ /var/tmp/diff_new_pack.2CO8XX/_new  2016-04-30 23:30:10.0 +0200
@@ -20,15 +20,15 @@
 
 %bcond_with tests
 
-Name:   ghc-%{pkg_name}
-Version:0.13.0.1
+Name:   ghc-attoparsec
+Version:0.13.0.2
 Release:0
 Summary:Fast combinator parsing for bytestrings and text
 License:BSD-3-Clause
 Group:  System/Libraries
 
-Url:http://hackage.haskell.org/package/%{pkg_name}
-Source0:
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
+Url:https://hackage.haskell.org/package/%{pkg_name}
+Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  ghc-Cabal-devel
@@ -44,8 +44,8 @@
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-quickcheck-unicode-devel
-BuildRequires:  ghc-test-framework-devel
-BuildRequires:  ghc-test-framework-quickcheck2-devel
+BuildRequires:  ghc-tasty-devel
+BuildRequires:  ghc-tasty-quickcheck-devel
 BuildRequires:  ghc-vector-devel
 %endif
 # End cabal-rpm deps
@@ -58,7 +58,6 @@
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
-Provides:   %{name}-static = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}

++ attoparsec-0.13.0.1.tar.gz -> attoparsec-0.13.0.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/attoparsec-0.13.0.1/Data/Attoparsec/ByteString/Internal.hs 
new/attoparsec-0.13.0.2/Data/Attoparsec/ByteString/Internal.hs
--- old/attoparsec-0.13.0.1/Data/Attoparsec/ByteString/Internal.hs  
2015-07-09 02:08:52.0 +0200
+++ new/attoparsec-0.13.0.2/Data/Attoparsec/ByteString/Internal.hs  
2016-04-22 02:38:31.0 +0200
@@ -257,15 +257,24 @@
 -- parsers loop until a failure occurs.  Careless use will thus result
 -- in an infinite loop.
 takeWhile :: (Word8 -> Bool) -> Parser ByteString
-takeWhile p = (B.concat . reverse) `fmap` go []
+takeWhile p = do
+s <- B8.takeWhile p <$> get
+continue <- inputSpansChunks (B.length s)
+if continue
+  then takeWhileAcc p [s]
+  else return s
+{-# INLINE takeWhile #-}
+
+takeWhileAcc :: (Word8 -> Bool) -> [ByteString] -> Parser ByteString
+takeWhileAcc p = go
  where
   go acc = do
 s <- B8.takeWhile p <$> get
 continue <- inputSpansChunks (B.length s)
 if continue
   then go (s:acc)
-  else return (s:acc)
-{-# INLINE takeWhile #-}
+  else return $ concatReverse (s:acc)
+{-# INLINE takeWhileAcc #-}
 
 takeRest :: Parser [ByteString]
 takeRest = go []
@@ -329,16 +338,13 @@
 -- parsers loop until a failure occurs.  Careless use will thus result
 -- in an infinite loop.
 scan :: s -> (s -> Word8 -> Maybe s) -> Parser ByteString
-scan = scan_ $ \_ chunks ->
-  case chunks of
-[x] -> return x
-xs  -> return $! B.concat $ reverse xs
+scan = scan_ $ \_ chunks -> return $! concatReverse chunks
 {-# INLINE scan #-}
 
 -- | Like 'scan', but generalized to return the final state of the
 -- scanner.
 runScanner :: s -> (s -> Word8 -> Maybe s) -> Parser (ByteString, s)
-runScanner = scan_ $ \s xs -> return (B.concat (reverse xs), s)
+runScanner = scan_ $ \s xs -> let !sx = concatReverse xs in return (sx, s)
 {-# INLINE runScanner #-}
 
 -- | Consume input as long as the predicate returns 'True', and return
@@ -358,8 +364,9 @@
 

commit ubuntu-themes for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ubuntu-themes for openSUSE:Factory 
checked in at 2016-04-30 23:30:06

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


Package is "ubuntu-themes"

Changes:

--- /work/SRC/openSUSE:Factory/ubuntu-themes/ubuntu-themes.changes  
2016-03-11 12:29:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.ubuntu-themes.new/ubuntu-themes.changes 
2016-04-30 23:30:07.0 +0200
@@ -1,0 +2,25 @@
+Tue Apr 19 07:30:12 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 14.04~bzr20160415:
+  * Add 1px padding to calendar widget elements; looks better.
+  * Suru icon theme: Normalisation of arrows used in mono icons,
+plus minor additions or updates to existing designs (lp#1518934).
+  * Add these fixes for Calendar: lp#1551744, lp#1558659.
+
+---
+Mon Apr 11 10:02:03 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 14.04~bzr20160324.1:
+  * Ambiance, Radiance: use inverted gradient in headerbar when in
+toolbar-mode (lp#1515810).
+  * Reduce the padding on flat entries, that's needed with Gtk 3.18
+otherwise the entry is displayed over new rows in listview when
+editing, that's also what the Gtk upstream themes are doing.
+  * Show the cursor index better in Totem videos (lp#1545026).
+  * Override box shadow and border settings for linked dialog
+buttons so they don't looked mashed together. Extra border
+radius is required to stop the button background bleeding
+through the border (lp#1513856).
+- Remove themes-csd-titlebar-fix.patch.
+
+---

Old:

  themes-csd-titlebar-fix.patch
  ubuntu-themes_14.04+16.04.20160209.orig.tar.gz

New:

  ubuntu-themes_14.04+16.04.20160415.orig.tar.gz



Other differences:
--
++ ubuntu-themes.spec ++
--- /var/tmp/diff_new_pack.ojS3qB/_old  2016-04-30 23:30:09.0 +0200
+++ /var/tmp/diff_new_pack.ojS3qB/_new  2016-04-30 23:30:09.0 +0200
@@ -16,19 +16,17 @@
 #
 
 
-%define _version 14.04+16.04.20160209
+%define _version 14.04+16.04.20160415
 Name:   ubuntu-themes
-Version:14.04~bzr20160209
+Version:14.04~bzr20160415
 Release:0
 Summary:Eyecandy from Ubuntu
 License:GPL-3.0+
 Group:  System/GUI/Other
 Url:https://launchpad.net/ubuntu-themes
 Source: 
http://archive.ubuntu.com/ubuntu/pool/main/u/%{name}/%{name}_%{_version}.orig.tar.gz
-# PATCH-FIX-UPSTREAM themes-csd-titlebar-fix.patch sor.ale...@meowr.ru -- Fix 
transparent titlebars in Gtk3 CSD.
-Patch0: themes-csd-titlebar-fix.patch
 # PATCH-FIX-UPSTREAM themes-mate-panel.patch sor.ale...@meowr.ru -- Add proper 
theming for mate-panel.
-Patch1: themes-mate-panel.patch
+Patch0: themes-mate-panel.patch
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  python-base
@@ -124,9 +122,8 @@
 Dark and Light panel icons to make desktop beautiful.
 
 %prep
-%setup -q -n %{name}-%{_version}
+%setup -q -c
 %patch0 -p1
-%patch1 -p1
 cp -f Ambiance/gtk-2.0/apps/mate-panel.rc Radiance/gtk-2.0/apps/mate-panel.rc
 
 %build

++ ubuntu-themes_14.04+16.04.20160209.orig.tar.gz -> 
ubuntu-themes_14.04+16.04.20160415.orig.tar.gz ++
/work/SRC/openSUSE:Factory/ubuntu-themes/ubuntu-themes_14.04+16.04.20160209.orig.tar.gz
 
/work/SRC/openSUSE:Factory/.ubuntu-themes.new/ubuntu-themes_14.04+16.04.20160415.orig.tar.gz
 differ: char 4, line 1




commit cinnamon for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package cinnamon for openSUSE:Factory 
checked in at 2016-04-30 23:29:20

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


Package is "cinnamon"

Changes:

--- /work/SRC/openSUSE:Factory/cinnamon/cinnamon.changes2016-04-01 
13:03:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.cinnamon.new/cinnamon.changes   2016-04-30 
23:29:21.0 +0200
@@ -1,0 +2,68 @@
+Mon Apr 25 05:00:35 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.0.0:
+  * Add option to show/hide favbox in menu applet.
+  * Add new default application buttons.
+  * Show panel-launchers actions.
+  * Tab indents into space indents, more item without dots.
+  * Move sound settings to python as a native module.
+  * Add a custom page to display when no input devices are
+available or applications are currently playing. Add a custom
+settings box for the sound effects page to prevent getting a
+very tall window when opening the settings. Make a few tweaks
+to the test sound dialog and add the relevant icons.
+  * Some visual tweaks to the sound settings.
+  * Sound settings: Add mute to all volume controls.
+  * cs_sound.py: Few fixes to the volume slider/mute button.
+  * layout.js: Remove code for interaction with the screensaver.
+  * cs_sound.py: Add padding to the end of stream names in
+applications page.
+  * Viber stealing focus fix.
+  * magnifier.js: Update the lens size as well as shape when we turn
+on lens mode.
+  * Generate new desktop files for sound and accessibility.
+  * Touchpad settings: Rename "natural scrolling" to
+"reverse scrolling direction".
+  * Fix middle click action in the photo frame.
+  * photoframe: Recurse subdirectories.
+  * Sound settings: Fix device not showing when its icon isn't
+found (fixes bluetooth devices not showing up).
+  * Power settings: Don't add the Gtk.Stack if it's empty.
+  * Power settings/applet: Let the user rename battery powered
+devices.
+  * Power settings: Fix power bars not being aligned.
+  * tooltips.js: Hide if the stage's key focus changes - prevents
+tooltips from becoming stuck if you use the keyboard to switch
+focus (hit the menu key while a window list preview is showing).
+  * cs_keyboard: Add a "wide" style class to the pane separator in
+the shortcuts page and remove some unneeded padding so this
+looks a little nicer in most newer themes.
+  * effects: Enable effects on dialogs and menus by default.
+  * Sound applet: Correctly identify changed artwork from Spotify
+(and add support for new URLs in version 0.27.x).
+  * Theme settings: Don't filter themes missing gtk-3.0 if they
+provide gtk-3.*.
+  * Show multi line descriptions in applet about.
+  * Sound applet: Use wget to download remote artwork covers.
+  * layout: Tweak the handling of menus in the top_window_group to
+match muffin changes.
+  * Cinnamon Settings: Fixed gi.require_version() warnings.
+  * Cinnamon Settings: Remove a couple of old debug output.
+  * Cinnamon Settings: Retire cinnamon-bluetooth
+(replaced with Blueberry).
+  * Revert "St-texture-cache: Don't monitor file changes (should
+increase performance, might cause regressions in cases where the
+St texture needs to be refreshed following a file change)".
+  * panel-launcher: Fix an undeclared variable warning.
+  * Fixed cinnamon slideshow error.
+  * Adjust to Muffin API changes for handling fullscreen windows.
+  * Extensions: Fix the "Disable all extensions" not working.
+  * Update generated files.
+  * Update pot file.
+- Remove cinnamon-fix-backgrounds-lookup.patch,
+  cinnamon-icon-themes-with-cursors.patch: merged upstream.
+- Rebase cinnamon-settings-native.patch,
+  cinnamon-no-gksu-requirement.patch,
+  cinnamon-favourite-applications.patch.
+
+---

Old:

  cinnamon-2.8.8.tar.gz
  cinnamon-fix-backgrounds-lookup.patch
  cinnamon-icon-themes-with-cursors.patch

New:

  cinnamon-3.0.0.tar.gz



Other differences:
--
++ cinnamon.spec ++
--- /var/tmp/diff_new_pack.BAkRC6/_old  2016-04-30 23:29:22.0 +0200
+++ /var/tmp/diff_new_pack.BAkRC6/_new  2016-04-30 23:29:22.0 +0200
@@ -16,12 +16,12 @@
 #
 
 
-%define __requires_exclude typelib\\((Cinnamon(|JS)|Gvc|St)\\)
+%define __requires_exclude typelib\\((Cinnamon(|JS)|St)\\)
 %define __provides_exclude typelib\\(.*\\)
 %define _name   Cinnamon
-%define _version 2.8.0
+%define _version 3.0.0
 Name:   cinnamon
-Version:2.8.8
+Version:3.0.0
 Release:0
 Summary:GNU/Linux Desktop featuring a traditional layout
 

commit CSXCAD for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

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

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


Package is "CSXCAD"

Changes:

--- /work/SRC/openSUSE:Factory/CSXCAD/CSXCAD.changes2015-11-26 
17:01:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.CSXCAD.new/CSXCAD.changes   2016-04-30 
23:29:10.0 +0200
@@ -1,0 +2,5 @@
+Sat Mar 12 20:55:07 UTC 2016 - dval...@suse.com
+
+- Fix building against VTK7 CSXCAD-vtk7.patch 
+
+---

New:

  CSXCAD-vtk7.patch



Other differences:
--
++ CSXCAD.spec ++
--- /var/tmp/diff_new_pack.jWaKDl/_old  2016-04-30 23:29:11.0 +0200
+++ /var/tmp/diff_new_pack.jWaKDl/_new  2016-04-30 23:29:11.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package CSXCAD
 #
-# 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
@@ -19,9 +19,9 @@
 Name:   CSXCAD
 %define octpkg  csxcad
 Version:0.6.0
+Release:0
 %define so_ver  0
 %define libname lib%{name}%{so_ver}
-Release:0
 Summary:A C++ library to describe geometrical objects and their 
properties
 License:LGPL-3.0
 Group:  System/Libraries
@@ -37,6 +37,8 @@
 Patch4: CSXCAD-octave-AppCSXCAD-load.patch
 # PATCH-FIX-OPENSUSE CSXCAD-readme-octave-package.patch -- Add correct 
instruction about Octave and MATLAB packages
 Patch5: CSXCAD-readme-octave-package.patch
+# PATCH-FIX-OPENSUSE CSXCAD-vtk7.patch -- Fix build against vtk7
+Patch6: CSXCAD-vtk7.patch
 BuildRequires:  boost-devel
 BuildRequires:  cgal-devel
 BuildRequires:  cmake
@@ -102,6 +104,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 cat > DESCRIPTION << 'EOF'
 Name: %{octpkg}

++ CSXCAD-vtk7.patch ++
Index: CSXCAD-0.6.0/CMakeLists.txt
===
--- CSXCAD-0.6.0.orig/CMakeLists.txt
+++ CSXCAD-0.6.0/CMakeLists.txt
@@ -122,6 +122,10 @@ include(${VTK_USE_FILE})
 INCLUDE_DIRECTORIES (${VTK_INCLUDE_DIR})
 if("${VTK_MAJOR_VERSION}" EQUAL 6)
 set( vtk_LIBS ${VTK_LIBRARIES} )
+elseif ("${VTK_MAJOR_VERSION}" EQUAL 7)
+set( vtk_LIBS
+vtkCommonCore
+)
 else()
 set( vtk_LIBS
 vtkCommon



commit muffin for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package muffin for openSUSE:Factory checked 
in at 2016-04-30 23:29:21

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


Package is "muffin"

Changes:

--- /work/SRC/openSUSE:Factory/muffin/muffin.changes2016-03-16 
10:35:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.muffin.new/muffin.changes   2016-04-30 
23:29:24.0 +0200
@@ -1,0 +2,39 @@
+Mon Apr 25 05:00:35 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.0.0:
+  * tiling: Wait to update window properties on tiled windows until
+after the window has been resized.
+  * tiling: Remove the tiling property when a window is no longer
+tiled.
+  * tiling: Remove a redundant check in the tiling keyboard handler.
+  * window.c: Fix maximisation state when using tile hotkeys, clean
+up tile flags fully when the window is restored to normal.
+  * tiling:  Fix mouse/keyboard resizing.
+  * Enable tiling from a non-drag-initiated mouse move (for
+instance, via hotkey or titlebar menu).
+  * keybindings.c: Get correct gravity during keyboard resize.
+  * window.c: Don't animate the end of a tile resizing.
+  * core: Assume we always have a compositor.
+  * muffin.c: Fix executable from crashing when x11 isn't
+explicitly set as the clutter backend. We do this for Cinnamon
+itself in Cinnamon's main.c - it needs to be set before
+g_type_init.
+  * theme.c: Get style context state instead of using
+GTK_STATE_FLAG_NORMAL, Gtk 3.20+ complains if the state passed
+doesn't match the context's current state. This quiets a lot of
+log spam when window focus changes.
+  * window.c: Don't send configure notifies for OR windows this
+causes popup placement issues with Gtk 3.20+, the assertion is
+left out, as we still need to send configure notifies for OR
+windows in other cases.
+  * prefs: Remove the live-hidden-windows preference.
+It's hardcoded to TRUE anyway.
+  * Pull some upstream changes for mapping and unmapping windows.
+  * compositor: Rework handling of our top_window_group.
+  * Improve tracking of fullscreen windows.
+  * Fix ppc64el packages build.
+  * Removed unneeded postinst and prerm files.
+- Rename and rebase muffin-2.4.0-SVID_SOURCE.patch to
+  muffin-svid-default-source.patch.
+
+---

Old:

  muffin-2.4.0-SVID_SOURCE.patch
  muffin-2.8.5.tar.gz

New:

  muffin-3.0.0.tar.gz
  muffin-svid-default-source.patch



Other differences:
--
++ muffin.spec ++
--- /var/tmp/diff_new_pack.zyMH8F/_old  2016-04-30 23:29:25.0 +0200
+++ /var/tmp/diff_new_pack.zyMH8F/_new  2016-04-30 23:29:25.0 +0200
@@ -20,18 +20,19 @@
 %define sover   0
 %define typelib typelib-1_0-MetaMuffin-0_0
 Name:   muffin
-Version:2.8.5
+Version:3.0.0
 Release:0
 Summary:Cinnamon Desktop default window manager
 License:GPL-2.0+ and MIT
 Group:  System/GUI/Other
 Url:https://github.com/linuxmint/muffin/tags
 Source: 
https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# PATCH-FIX-OPENSUSE muffin-2.4.0-SVID_SOURCE.patch marguer...@opensuse.org -- 
Change _SVID_SOURCE to _DEFAULT_SOURCE.
-Patch0: %{name}-2.4.0-SVID_SOURCE.patch
+# PATCH-FIX-OPENSUSE muffin-svid-default-source.patch marguer...@opensuse.org 
-- Change _SVID_SOURCE to _DEFAULT_SOURCE.
+Patch0: %{name}-svid-default-source.patch
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
 BuildRequires:  gtk-doc
+BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
 BuildRequires:  zenity
 BuildRequires:  pkgconfig(cairo) >= 1.10.0

++ muffin-2.8.5.tar.gz -> muffin-3.0.0.tar.gz ++
 4061 lines of diff (skipped)

++ muffin-svid-default-source.patch ++
--- a/src/core/keybindings.c
+++ b/src/core/keybindings.c
@@ -32,7 +32,7 @@
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE
 #endif
-#define _SVID_SOURCE /* for putenv() */
+#define _DEFAULT_SOURCE /* for putenv() */
 
 #include 
 #include "keybindings-private.h"
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -45,7 +45,7 @@
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE
 #endif
-#define _SVID_SOURCE /* for putenv() and some signal-related functions */
+#define _DEFAULT_SOURCE /* for putenv() and some signal-related functions */
 
 #include 
 #include 
--- a/src/core/window-props.c
+++ b/src/core/window-props.c
@@ -39,7 +39,7 @@
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE
 #endif
-#define _SVID_SOURCE /* for gethostname() */
+#define _DEFAULT_SOURCE /* for gethostname() */
 
 #include 
 #include "window-props.h"



commit jq for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package jq for openSUSE:Factory checked in 
at 2016-04-30 23:29:38

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


Package is "jq"

Changes:

--- /work/SRC/openSUSE:Factory/jq/jq.changes2015-08-23 17:41:07.0 
+0200
+++ /work/SRC/openSUSE:Factory/.jq.new/jq.changes   2016-04-30 
23:29:39.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr 25 11:48:27 UTC 2016 - idon...@suse.com
+
+- Add CVE-2015-8863.patch to fix a heap overflow bsc#976992 
+
+---

New:

  CVE-2015-8863.patch



Other differences:
--
++ jq.spec ++
--- /var/tmp/diff_new_pack.BgyXlK/_old  2016-04-30 23:29:40.0 +0200
+++ /var/tmp/diff_new_pack.BgyXlK/_new  2016-04-30 23:29:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jq
 #
-# 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
@@ -24,6 +24,7 @@
 Group:  Productivity/Text/Utilities
 Url:http://stedolan.github.io/jq/
 Source: 
https://github.com/stedolan/jq/releases/download/jq-%{version}/jq-%{version}.tar.gz
+Patch1: CVE-2015-8863.patch
 BuildRequires:  autoconf
 BuildRequires:  chrpath
 BuildRequires:  coreutils
@@ -54,6 +55,7 @@
 
 %prep
 %setup -q
+%patch1 -p2
 
 %build
 %configure --disable-static

++ CVE-2015-8863.patch ++
>From 8eb1367ca44e772963e704a700ef72ae2e12babd Mon Sep 17 00:00:00 2001
From: Nicolas Williams 
Date: Sat, 24 Oct 2015 17:24:57 -0500
Subject: [PATCH] Heap buffer overflow in tokenadd() (fix #105)

This was an off-by one: the NUL terminator byte was not allocated on
resize.  This was triggered by JSON-encoded numbers longer than 256
bytes.
---
 src/jv_parse.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/jv_parse.c b/src/jv_parse.c
index 3102ed4..84245b8 100644
--- a/src/jv_parse.c
+++ b/src/jv_parse.c
@@ -383,7 +383,7 @@ static pfunc stream_token(struct jv_parser* p, char ch) {
 
 static void tokenadd(struct jv_parser* p, char c) {
   assert(p->tokenpos <= p->tokenlen);
-  if (p->tokenpos == p->tokenlen) {
+  if (p->tokenpos >= (p->tokenlen - 1)) {
 p->tokenlen = p->tokenlen*2 + 256;
 p->tokenbuf = jv_mem_realloc(p->tokenbuf, p->tokenlen);
   }
@@ -485,7 +485,7 @@ static pfunc check_literal(struct jv_parser* p) {
 TRY(value(p, v));
   } else {
 // FIXME: better parser
-p->tokenbuf[p->tokenpos] = 0; // FIXME: invalid
+p->tokenbuf[p->tokenpos] = 0;
 char* end = 0;
 double d = jvp_strtod(>dtoa, p->tokenbuf, );
 if (end == 0 || *end != 0)



commit mosh for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mosh for openSUSE:Factory checked in 
at 2016-04-30 23:29:13

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


Package is "mosh"

Changes:

--- /work/SRC/openSUSE:Factory/mosh/mosh.changes2015-08-03 
17:22:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.mosh.new/mosh.changes   2016-04-30 
23:29:15.0 +0200
@@ -1,0 +2,10 @@
+Mon Apr  4 18:51:34 UTC 2016 - mplus...@suse.com
+
+- Update dependencies
+  * drop autotools and autoreconf calling (as patch needing it was
+dropped)
+  * add bash-completion as build dependnency and update install 
+path for completion
+- Make building more verbose
+
+---



Other differences:
--
++ mosh.spec ++
--- /var/tmp/diff_new_pack.9FppMG/_old  2016-04-30 23:29:15.0 +0200
+++ /var/tmp/diff_new_pack.9FppMG/_new  2016-04-30 23:29:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mosh
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Flavio Castelli.
 #
 # All modifications and additions to the file contributed by third parties
@@ -26,10 +26,8 @@
 Url:http://mosh.mit.edu/
 Source: http://mosh.mit.edu/%{name}-%{version}.tar.gz
 Source1:%{name}.SuSEfirewall
-BuildRequires:  autoconf
-BuildRequires:  automake
+BuildRequires:  bash-completion
 BuildRequires:  gcc-c++
-BuildRequires:  libtool
 BuildRequires:  ncurses-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
@@ -53,7 +51,6 @@
 %setup -q
 
 %build
-autoreconf -fi
 %configure \
   --enable-completion \
   --enable-client \
@@ -61,7 +58,7 @@
   --disable-examples  \
   --enable-hardening  \
   --enable-ufw
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %make_install
@@ -70,7 +67,6 @@
 
 %files
 %defattr(-,root,root)
-%config %{_sysconfdir}/bash_completion.d/mosh
 %config(noreplace) %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/mosh
 %dir %{_sysconfdir}/ufw/
 %dir %{_sysconfdir}/ufw/applications.d/
@@ -78,6 +74,7 @@
 %{_bindir}/mosh
 %{_bindir}/mosh-client
 %{_bindir}/mosh-server
+%{_datadir}/bash-completion
 %{_mandir}/man1/mosh.1%{?ext_man}
 %{_mandir}/man1/mosh-client.1%{?ext_man}
 %{_mandir}/man1/mosh-server.1%{?ext_man}




commit perl-Date-Holidays-CZ for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Date-Holidays-CZ for 
openSUSE:Factory checked in at 2016-04-30 23:29:32

Comparing /work/SRC/openSUSE:Factory/perl-Date-Holidays-CZ (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Date-Holidays-CZ.new (New)


Package is "perl-Date-Holidays-CZ"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Date-Holidays-CZ/perl-Date-Holidays-CZ.changes  
2016-04-22 16:23:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Date-Holidays-CZ.new/perl-Date-Holidays-CZ.changes
 2016-04-30 23:29:34.0 +0200
@@ -1,0 +2,7 @@
+Sat Apr 23 09:29:28 UTC 2016 - ncut...@suse.com
+
+- update to latest upstream version 0.13
+  + Good Friday from 2016 on
+  + add some basic unit tests
+
+---

Old:

  Date-Holidays-CZ-0.11.tar.gz

New:

  Date-Holidays-CZ-0.13.tar.gz



Other differences:
--
++ perl-Date-Holidays-CZ.spec ++
--- /var/tmp/diff_new_pack.NZr1hw/_old  2016-04-30 23:29:35.0 +0200
+++ /var/tmp/diff_new_pack.NZr1hw/_new  2016-04-30 23:29:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Date-Holidays-CZ
-Version:0.11
+Version:0.13
 Release:0
 %define cpan_name Date-Holidays-CZ
 Summary:Determine Czech holidays

++ Date-Holidays-CZ-0.11.tar.gz -> Date-Holidays-CZ-0.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.11/Changes 
new/Date-Holidays-CZ-0.13/Changes
--- old/Date-Holidays-CZ-0.11/Changes   2016-03-23 11:24:41.0 +0100
+++ new/Date-Holidays-CZ-0.13/Changes   2016-04-23 11:28:15.0 +0200
@@ -32,3 +32,10 @@
 - Update prerelease and release scripts to latest upstream
 - prerelease.sh: adapt to two significant digits in version number
 
+0.12 2016-04-23 11:26 CEST
+- release.sh: adapt to only two significant digits in version
+- Good Friday only from 2016 on
+
+0.13 2016-04-23 11:28 CEST
+- MANIFEST: add t/basic.t
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.11/MANIFEST 
new/Date-Holidays-CZ-0.13/MANIFEST
--- old/Date-Holidays-CZ-0.11/MANIFEST  2016-03-23 11:24:41.0 +0100
+++ new/Date-Holidays-CZ-0.13/MANIFEST  2016-04-23 11:28:15.0 +0200
@@ -9,5 +9,6 @@
 META.yml
 README
 t/00-load.t
+t/basic.t
 META.yml
 META.json
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.11/META.json 
new/Date-Holidays-CZ-0.13/META.json
--- old/Date-Holidays-CZ-0.11/META.json 2016-03-23 11:24:41.0 +0100
+++ new/Date-Holidays-CZ-0.13/META.json 2016-04-23 11:28:15.0 +0200
@@ -35,7 +35,7 @@
"provides" : {
   "Date::Holidays::CZ" : {
  "file" : "lib/Date/Holidays/CZ.pm",
- "version" : "0.11"
+ "version" : "0.13"
   }
},
"release_status" : "stable",
@@ -50,6 +50,6 @@
  "url" : "https://github.com/smithfarm/date-holidays-cz.git;
   }
},
-   "version" : "0.11",
+   "version" : "0.13",
"x_serialization_backend" : "JSON::PP version 2.27203"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.11/META.yml 
new/Date-Holidays-CZ-0.13/META.yml
--- old/Date-Holidays-CZ-0.11/META.yml  2016-03-23 11:24:41.0 +0100
+++ new/Date-Holidays-CZ-0.13/META.yml  2016-04-23 11:28:15.0 +0200
@@ -17,7 +17,7 @@
 provides:
   Date::Holidays::CZ:
 file: lib/Date/Holidays/CZ.pm
-version: '0.11'
+version: '0.13'
 requires:
   Date::Calc: '5'
   perl: '5.01'
@@ -25,5 +25,5 @@
   bugtracker: https://github.com/smithfarm/date-holidays-cz/issues
   license: http://opensource.org/licenses/bsd-license.php
   repository: https://github.com/smithfarm/date-holidays-cz.git
-version: '0.11'
+version: '0.13'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.012'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.11/lib/Date/Holidays/CZ.pm 
new/Date-Holidays-CZ-0.13/lib/Date/Holidays/CZ.pm
--- old/Date-Holidays-CZ-0.11/lib/Date/Holidays/CZ.pm   2016-03-23 
11:24:41.0 +0100
+++ new/Date-Holidays-CZ-0.13/lib/Date/Holidays/CZ.pm   2016-04-23 
11:28:15.0 +0200
@@ -39,11 +39,11 @@
 
 =head1 VERSION
 
-Version 0.11
+Version 0.13
 
 =cut
 
-our $VERSION   = '0.11';
+our $VERSION   = '0.13';
 
 
 
@@ -250,9 +250,11 @@
$holiday{'velp'} = _date2timestamp($y_velp, $m_velp, $d_velp);
 
 # Good Friday = Easter Sunday minus 2 days
-my ($y_velk, $m_velk, $d_velk) =
-Date::Calc::Add_Delta_Days($year, $month, $day, -2);
-

commit lua51-mpack for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package lua51-mpack for openSUSE:Factory 
checked in at 2016-04-30 23:29:54

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


Package is "lua51-mpack"

Changes:

New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ /work/SRC/openSUSE:Factory/.lua51-mpack.new/lua51-mpack.changes 
2016-04-30 23:29:55.0 +0200
@@ -0,0 +1,5 @@
+---
+Fri Apr 22 00:50:42 UTC 2016 - roni...@gmail.com
+
+- Initial version.
+

New:

  1.0.2.tar.gz
  lua51-mpack.changes
  lua51-mpack.spec



Other differences:
--
++ lua51-mpack.spec ++
#
# spec file for package lua51-mpack
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define lua_version %(lua -e 'print(_VERSION)' | cut -d ' ' -f 2)
%define lua_archdir %{_libdir}/lua/%{lua_version}
Name:   lua51-mpack
Version:1.0.2
Release:0
Summary:Implementation of MessagePack for Lua 5.1
License:MIT
Group:  Development/Libraries/Other
Url:https://github.com/tarruda/libmpack
Source: https://github.com/tarruda/libmpack/archive/%{version}.tar.gz
BuildRequires:  gcc
BuildRequires:  libtool
BuildRequires:  lua51-devel
Requires:   lua51

%description

mpack is a small binary serialization/RPC library that implements
both the msgpack and msgpack-rpc specifications.

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

%build
gcc -O2 -I%{_includedir}/lua/%{lua_version} -shared -fPIC -o mpack.so 
binding/lua/lmpack.c

%install
mkdir   -p %{buildroot}%{lua_archdir}
install -Dm755 mpack.so %{buildroot}%{lua_archdir}

%files
%defattr(-,root,root)
%doc LICENSE-MIT README.md
%dir %{lua_archdir}
%{lua_archdir}/*

%changelog



commit adms for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package adms for openSUSE:Factory checked in 
at 2016-04-30 23:29:41

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


Package is "adms"

Changes:

--- /work/SRC/openSUSE:Factory/adms/adms.changes2014-10-05 
20:31:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.adms.new/adms.changes   2016-04-30 
23:29:43.0 +0200
@@ -1,0 +2,32 @@
+Mon Apr 25 12:06:14 UTC 2016 - p.drou...@gmail.com
+
+- Update to version 2.3.5
+  * Change license to GPLv3.
+  * Add new simplified constants.vams and discplines.vams.
+Tested to work with models currently in use by Qucs, Ngspice, Xyce and 
Gnucap.
+Whenever these headers are used, adms informs the user about the
+availability of the standard headers at:
+http://accellera.org/downloads/standards/v-ams
+  * Remove non-GPL constants.vams and disciplines.vams headers.
+These files are copyright of Accellera. With the LRM v2.4.0 updated 
versions
+of these files are freely accessible. However modification is not allowed.
+Hence, these files are not GPL and should not be included in adms.
+  * Autotools, add back support for static and shared libraries build.
+Build shared libraries by default. Tested on Linux, Mac OSX, and MSYS2.
+See the configure --disable-shared flag to change that.
+CMake contiues to builds static libraries only.
+  * Fix out-of-tree build for Autotools and CMake.
+  * Check scaling factors againd LRM v2.4.0
+Add missing K scaling (uppercase kilo)
+standard scale_factor T|G|M|K|k|m|u|n|p|f|a
+Add testset (va and xml files) to test the scaling factors
+  * Handle non-standard scaling factors with warning E|P|D|h|d|c|A
+  * Relax Bison requirement, tested with (2.5, 3.0.2)
+  * Perl GD module is no longer required at build time.
+The GD module is becoming hard to install, and it is only used to create
+a few images used on the html documentation. If images need to be changed,
+run the mkimage.pl script and update the repository.
+- Change license to GPL-3.0, accordingly with upstream changes
+- Remove perl-GD build dependency; not needed anymore
+
+---

Old:

  adms-2.3.4.tar.gz

New:

  adms-2.3.5.tar.gz



Other differences:
--
++ adms.spec ++
--- /var/tmp/diff_new_pack.IWAoJO/_old  2016-04-30 23:29:44.0 +0200
+++ /var/tmp/diff_new_pack.IWAoJO/_new  2016-04-30 23:29:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package adms
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,10 +17,10 @@
 
 
 Name:   adms
-Version:2.3.4
+Version:2.3.5
 Release:0
 Summary:An automatic device model synthesizer
-License:LGPL-2.1
+License:GPL-3.0
 Group:  Productivity/Scientific/Electronics
 Url:http://sourceforge.net/projects/mot-adms/
 Source0:
http://downloads.sourceforge.net/mot-adms/%{name}-%{version}.tar.gz
@@ -30,7 +30,6 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
-BuildRequires:  perl-GD
 BuildRequires:  perl-XML-LibXML
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -45,17 +44,23 @@
 %patch1 -p1
 
 %build
-%configure
+%configure --disable-static
 make %{?_smp_mflags}
 
 %install
 %make_install
+find %{buildroot} -type f -name "*.la" -delete -print
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
 %doc AUTHORS ChangeLog COPYING
 %{_bindir}/admsCheck
 %{_bindir}/admsXml
+# Do not split out libraries for the moment; nothing else but adms (can) use 
them
+%{_libdir}/lib%{name}*.*
 %{_mandir}/man1/admsCheck.1.gz
 %{_mandir}/man1/admsXml.1.gz
 

++ adms-2.3.4.tar.gz -> adms-2.3.5.tar.gz ++
 46373 lines of diff (skipped)




commit nemo-extensions for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package nemo-extensions for openSUSE:Factory 
checked in at 2016-04-30 23:29:28

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


Package is "nemo-extensions"

Changes:

--- /work/SRC/openSUSE:Factory/nemo-extensions/nemo-extensions.changes  
2016-01-22 01:07:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.nemo-extensions.new/nemo-extensions.changes 
2016-04-30 23:29:29.0 +0200
@@ -1,0 +2,9 @@
+Mon Apr 25 05:00:35 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.0.0 (changes since 2.8.0):
+  * nemo-share: Purge useless samba auto-installation code.
+  * nemo-terminal: Change default shell from bash to user's shell.
+  * nemo-terminal: Change key event from release to press.
+  * nemo-compare, nemo-emblems, nemo-share: Update translations.
+
+---

Old:

  nemo-extensions-2.8.x.tar.gz

New:

  nemo-extensions-3.0.0.tar.gz



Other differences:
--
++ nemo-extensions.spec ++
--- /var/tmp/diff_new_pack.8WUjn1/_old  2016-04-30 23:29:30.0 +0200
+++ /var/tmp/diff_new_pack.8WUjn1/_new  2016-04-30 23:29:30.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nemo-extensions
 #
-# 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,16 +17,15 @@
 
 
 # Do not package nemo-extension-media-columns for now: slows Nemo down.
-
-%define _version 2.8.x
+%define _version 3.0.0
 Name:   nemo-extensions
-Version:2.8.0
+Version:3.0.0
 Release:0
 Summary:Set of extensions for Nemo, the Cinnamon file manager
 License:GPL-2.0 and GPL-3.0 and GPL-3.0+
 Group:  System/GUI/Other
 Url:https://github.com/linuxmint/nemo-extensions
-Source: 
https://github.com/linuxmint/%{name}/archive/%{_version}.tar.gz#/%{name}-%{_version}.tar.gz
+Source: 
https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM nemo-seahorse_gpg-2.1.patch ste...@fam-elser.de -- Add 
patch for GPG 2.1.
 Patch0: nemo-seahorse_gpg-2.1.patch
 # PATCH-FIX-UPSTREAM nemo-terminal_vte-2.91.patch
@@ -225,8 +224,8 @@
 Requires:   nemo >= %{_version}
 # nemo-preview was last used in openSUSE 13.2.
 Obsoletes:  nemo-preview < %{version}
-Provides:   nemo-preview = %{version}
 Provides:   nemo-extension-preview-devel = %{version}
+Provides:   nemo-preview = %{version}
 
 %description -n nemo-extension-preview
 This is NemoPreview, a quick previewer for Nemo, the Cinnamon
@@ -315,7 +314,7 @@
 directory in Nemo.
 
 %prep
-%setup -q -n %{name}-%{_version}
+%setup -q
 %patch0
 %patch1
 %patch2

++ nemo-extensions-2.8.x.tar.gz -> nemo-extensions-3.0.0.tar.gz ++
 2023 lines of diff (skipped)




commit nemo for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package nemo for openSUSE:Factory checked in 
at 2016-04-30 23:29:24

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


Package is "nemo"

Changes:

--- /work/SRC/openSUSE:Factory/nemo/nemo.changes2016-03-16 
10:35:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.nemo.new/nemo.changes   2016-04-30 
23:29:26.0 +0200
@@ -1,0 +2,29 @@
+Mon Apr 25 05:00:35 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.0.0:
+  * Fix wrong desktop size on Gtk 3.20+.
+  * Add missing includes.
+  * Fix pointer types, to avoid warning.
+  * Respect dbus_satisfied flag for menu enties on blank desktops.
+  * Fix printf format specifier.
+  * Don't draw the desktop on a cloned monitor.
+  * Fix some missing cast warnings.
+  * Fix fallback style for GTK 3.20+.
+  * Add style class nemo-window-pane.
+  * Add style class nemo-properties-dialog to GtkBuilder file.
+  * Add style class in nemo_desktop_window_init (same as Nautilus).
+  * Add style class to places sidebar.
+  * Add style class to nemo-window.
+  * Use a more specific class name for places sidebar.
+  * nemo-icon-info.c: Remove invalid
+GTK_ICON_LOOKUP_GENERIC_FALLBACK flag (triggers warnings in
+Gtk 3.20+).
+  * nemo-window: Add new flag NEMO_WINDOW_OPEN_FLAG_SEARCH and use
+the same slot if this flag is passed to
+nemo_window_slot_open_location_full to avoid opening a new
+window (and a crash) when starting a search with the open in
+new window preference enabled.
+  * Updated makepot and pot file.
+- Rebase nemo-void-return-no-return.patch.
+
+---

Old:

  nemo-2.8.7.tar.gz

New:

  nemo-3.0.0.tar.gz



Other differences:
--
++ nemo.spec ++
--- /var/tmp/diff_new_pack.fjnXoz/_old  2016-04-30 23:29:27.0 +0200
+++ /var/tmp/diff_new_pack.fjnXoz/_new  2016-04-30 23:29:27.0 +0200
@@ -20,7 +20,7 @@
 %define sover   1
 %define typelib typelib-1_0-Nemo-3_0
 Name:   nemo
-Version:2.8.7
+Version:3.0.0
 Release:0
 Summary:File browser for Cinnamon
 License:GPL-2.0+
@@ -35,6 +35,7 @@
 BuildRequires:  gnome-common
 BuildRequires:  gtk-doc
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  pkg-config
 BuildRequires:  python-gobject-devel
 BuildRequires:  python-polib
 BuildRequires:  shared-mime-info
@@ -64,10 +65,10 @@
 Requires:   shared-mime-info >= 0.50
 Recommends: gdk-pixbuf-loader-rsvg
 Recommends: gvfs-backends
-Suggests:   eog
-Suggests:   evince
-Suggests:   totem
 Suggests:   xdg-user-dirs
+Suggests:   xplayer
+Suggests:   xreader
+Suggests:   xviewer
 %glib2_gsettings_schema_requires
 
 %description

++ nemo-2.8.7.tar.gz -> nemo-3.0.0.tar.gz ++
 21357 lines of diff (skipped)

++ nemo-void-return-no-return.patch ++
--- /var/tmp/diff_new_pack.fjnXoz/_old  2016-04-30 23:29:27.0 +0200
+++ /var/tmp/diff_new_pack.fjnXoz/_new  2016-04-30 23:29:27.0 +0200
@@ -1,6 +1,6 @@
 --- a/libnemo-private/nemo-action.c
 +++ b/libnemo-private/nemo-action.c
-@@ -1307,6 +1307,7 @@ check_gsettings_condition (NemoAction *a
+@@ -1322,6 +1322,7 @@ check_gsettings_condition (NemoAction *a
  g_strfreev (split);
  return FALSE;
  }




commit phonon-backend-vlc for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package phonon-backend-vlc for 
openSUSE:Factory checked in at 2016-04-30 23:29:15

Comparing /work/SRC/openSUSE:Factory/phonon-backend-vlc (Old)
 and  /work/SRC/openSUSE:Factory/.phonon-backend-vlc.new (New)


Package is "phonon-backend-vlc"

Changes:

--- /work/SRC/openSUSE:Factory/phonon-backend-vlc/phonon-backend-vlc.changes
2016-04-11 10:26:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.phonon-backend-vlc.new/phonon-backend-vlc.changes   
2016-04-30 23:29:17.0 +0200
@@ -1,0 +2,11 @@
+Sat Apr 23 10:54:37 UTC 2016 - wba...@tmo.at
+
+- Remove now unused automoc4 BuildRequires
+
+---
+Sat Apr 23 00:02:57 UTC 2016 - wba...@tmo.at
+
+- Update to 0.9.0
+  * No changelog provided
+
+---

Old:

  phonon-backend-vlc-0.8.2.tar.xz

New:

  phonon-backend-vlc-0.9.0.tar.xz



Other differences:
--
++ phonon-backend-vlc.spec ++
--- /var/tmp/diff_new_pack.jNAwcR/_old  2016-04-30 23:29:17.0 +0200
+++ /var/tmp/diff_new_pack.jNAwcR/_new  2016-04-30 23:29:18.0 +0200
@@ -18,14 +18,13 @@
 
 %define _phonon_version 4.6.50
 Name:   phonon-backend-vlc
-Version:0.8.2
+Version:0.9.0
 Release:0
 Summary:Phonon VLC Backend
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://phonon.kde.org/
-Source: 
http://download.kde.org/stable/phonon/%{name}/%{version}/src/%{name}-%{version}.tar.xz
-BuildRequires:  automoc4
+Source: 
http://download.kde.org/stable/phonon/%{name}/%{version}/%{name}-%{version}.tar.xz
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  kde4-filesystem
@@ -47,7 +46,7 @@
 This is the VLC backend for Phonon.
 
 %prep
-%setup -q
+%setup -q -n phonon-vlc-%{version}
 
 %build
 %cmake_kde4 -d build

++ phonon-backend-vlc-0.8.2.tar.xz -> phonon-backend-vlc-0.9.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/phonon-backend-vlc-0.8.2/.gitignore 
new/phonon-vlc-0.9.0/.gitignore
--- old/phonon-backend-vlc-0.8.2/.gitignore 1970-01-01 01:00:00.0 
+0100
+++ new/phonon-vlc-0.9.0/.gitignore 2016-04-18 06:25:24.0 +0200
@@ -0,0 +1,12 @@
+.svn
+Makefile
+CMakeTmp
+CMakeCache.txt
+CMakeFiles/
+cmake_install.cmake
+cmake_uninstall.cmake
+lib/
+*.o
+*.so
+*.user
+build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/phonon-backend-vlc-0.8.2/.krazy 
new/phonon-vlc-0.9.0/.krazy
--- old/phonon-backend-vlc-0.8.2/.krazy 1970-01-01 01:00:00.0 +0100
+++ new/phonon-vlc-0.9.0/.krazy 2016-04-18 06:25:24.0 +0200
@@ -0,0 +1,2 @@
+SKIP /build
+SKIP /src/vlc.desktop.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/phonon-backend-vlc-0.8.2/CMakeLists.txt 
new/phonon-vlc-0.9.0/CMakeLists.txt
--- old/phonon-backend-vlc-0.8.2/CMakeLists.txt 2014-12-04 10:29:23.0 
+0100
+++ new/phonon-vlc-0.9.0/CMakeLists.txt 2016-04-18 06:25:24.0 +0200
@@ -1,6 +1,6 @@
+cmake_minimum_required(VERSION 2.8.9)
 project(PhononVLC)
 
-cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR)
 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
 
 # Phonon
@@ -10,8 +10,8 @@
 
 # LibVLC
 find_package(LIBVLC REQUIRED)
-macro_ensure_version("2.0.1" ${LIBVLC_VERSION} LIBVLC_FOUND)
-macro_log_feature(LIBVLC_FOUND "LibVLC" "VLC C API Library" 
"git://git.videolan.org/vlc.git" TRUE "2.0.1")
+macro_ensure_version("2.1.0" ${LIBVLC_VERSION} LIBVLC_FOUND)
+macro_log_feature(LIBVLC_FOUND "LibVLC" "VLC C API Library" 
"git://git.videolan.org/vlc.git" TRUE "2.1.0")
 
 if(PHONON_FOUND_EXPERIMENTAL)
   add_definitions(-DPHONON_EXPERIMENTAL)
@@ -24,8 +24,8 @@
 include_directories(${PHONON_INCLUDES} ${QT_INCLUDES} ${LIBVLC_INCLUDE_DIR} 
${LIBVLC_INCLUDE_DIR}/vlc/plugins)
 
 set(PHONON_VLC_MAJOR_VERSION "0")
-set(PHONON_VLC_MINOR_VERSION "8")
-set(PHONON_VLC_PATCH_VERSION "2")
+set(PHONON_VLC_MINOR_VERSION "9")
+set(PHONON_VLC_PATCH_VERSION "0")
 set(PHONON_VLC_VERSION 
"${PHONON_VLC_MAJOR_VERSION}.${PHONON_VLC_MINOR_VERSION}.${PHONON_VLC_PATCH_VERSION}")
 add_definitions(-DPHONON_VLC_VERSION="${PHONON_VLC_VERSION}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/phonon-backend-vlc-0.8.2/src/.gitignore 
new/phonon-vlc-0.9.0/src/.gitignore
--- old/phonon-backend-vlc-0.8.2/src/.gitignore 1970-01-01 01:00:00.0 
+0100
+++ new/phonon-vlc-0.9.0/src/.gitignore 2016-04-18 06:25:24.0 +0200
@@ -0,0 +1,4 @@
+.svn
+Makefile
+moc_*
+phonon_vlc_*
diff -urN 

commit sssd for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package sssd for openSUSE:Factory checked in 
at 2016-04-30 23:28:03

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


Package is "sssd"

Changes:

--- /work/SRC/openSUSE:Factory/sssd/sssd.changes2016-02-17 
12:25:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.sssd.new/sssd.changes   2016-04-30 
23:28:08.0 +0200
@@ -1,0 +2,47 @@
+Mon Apr 18 12:24:29 UTC 2016 - h...@suse.com
+
+- Enable PAC responder.
+  PAC is an extension element returned by domain controller, to speed
+  up resolution of authorisation data such as group memberships.
+
+---
+Thu Apr 14 17:20:11 UTC 2016 - mich...@stroeder.com
+
+- Update to new upstream release 1.13.4
+  * The IPA sudo provider was reimplemented. The new version reads the
+data from IPA's LDAP tree (as opposed to the compat tree populated by
+the slapi-nis plugin that was used previously). The benefit is that
+deployments which don't require the compat tree for other purposes,
+such as support for non-SSSD clients can disable those autogenerated
+LDAP trees to conserve resources that slapi-nis otherwise requires. There
+should be no visible changes to the end user.
+  * SSSD now has the ability to renew the machine credentials (keytabs)
+when the ad provider is used. Please note that a recent version of
+the adcli (0.8 or newer) package is required for this feature to work.
+  * The automatic ID mapping feature was improved so that the administrator
+is no longer required to manually set the range size in case a RID in
+the AD domain is larger than the default range size
+  * A potential infinite loop in the NFS ID mapping plugin that was
+resulting in an excessive memory usage was fixed
+  * Clients that are pinned to a particular AD site using the ad_site
+option no longer communicate with DCs outside that site during service
+discovery.
+  * The IPA identity provider is now able to resolve external
+(typically coming from a trusted AD forest) group members during
+get-group-information requests. Please note that resolving external
+group memberships for AD users during the initgroup requests used to
+work even prior to this update. This feature is mostly useful for cases
+where an IPA client is using the compat tree to resolve AD trust users.
+  * The IPA ID views feature now works correctly even for deployments
+without a trust relationship. Previously, the subdomains IPA provider
+failed to read the views data if no master domain record was created
+on the IPA server during trust establishment.
+  * A race condition in the client libraries between the SSSD closing
+the socket as idle and the client application using the socket was
+fixed. This bug manifested with a Broken Pipe error message on the
+client.
+  * SSSD is now able to resolve users with the same usernames in different
+OUs of an AD domain
+  * The smartcard authentication now works properly with gnome-screensaver
+
+---

Old:

  sssd-1.13.3.tar.gz
  sssd-1.13.3.tar.gz.asc

New:

  sssd-1.13.4.tar.gz
  sssd-1.13.4.tar.gz.asc



Other differences:
--
++ sssd.spec ++
--- /var/tmp/diff_new_pack.9YIG5K/_old  2016-04-30 23:28:09.0 +0200
+++ /var/tmp/diff_new_pack.9YIG5K/_new  2016-04-30 23:28:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sssd
-Version:1.13.3
+Version:1.13.4
 Release:0
 Summary:System Security Services Daemon
 License:GPL-3.0+ and LGPL-3.0+
@@ -81,6 +81,7 @@
 BuildRequires:  pkgconfig(talloc)
 BuildRequires:  pkgconfig(tdb) >= 1.1.3
 BuildRequires:  pkgconfig(tevent)
+BuildRequires:  pkgconfig(ndr_krb5pac)
 %{?systemd_requires}
 Requires:   sssd-ldap = %version-%release
 Requires(postun): pam-config
@@ -401,7 +402,6 @@
 --with-os=suse \
 --with-semanage=no \
 --disable-ldb-version-check \
---disable-pac-responder
 
 make %{?_smp_mflags} all
 
@@ -540,6 +540,7 @@
 %dir %_libdir/%name/
 %_libdir/%name/libsss_ad.so
 %dir %_libexecdir/%name/
+%_libexecdir/%name/sssd_pac
 %_libexecdir/%name/gpo_child
 %dir %_datadir/%name/
 %dir %_datadir/%name/sssd.api.d/

++ sssd-1.13.3.tar.gz -> sssd-1.13.4.tar.gz ++
 138517 lines of diff (skipped)




commit gyp for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gyp for openSUSE:Factory checked in 
at 2016-04-30 23:28:29

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


Package is "gyp"

Changes:

--- /work/SRC/openSUSE:Factory/gyp/gyp.changes  2016-03-26 15:09:53.0 
+0100
+++ /work/SRC/openSUSE:Factory/.gyp.new/gyp.changes 2016-04-30 
23:28:30.0 +0200
@@ -1,0 +2,15 @@
+Fri Apr 15 14:30:35 UTC 2016 - mplus...@suse.com
+
+- Update to version 0+git.20160413:
+  * ninja: Add target_rpath generator flag
+  * Add support for iOS Frameworks with header maps.
+  * Detect and warn on missing vcvarsall.bat
+  * Support DEVELOPER_DIR in gyp-ninja for mac.
+  * [GN] Use hard-link if possible when copying to bundle.
+  * Fix mac_tool.py copy-bundle-resource errors.
+  * [iOS/OS X] Copy file instead of hard-linking them.
+  * gyp-win-tool: Let LinkWrapper only transmogrify / when the host platform 
is Windows.
+  * gyp-win-tool: Fix regression from my last change.
+  * gyp-win-tool: Don't use shell=True on non-Windows hosts.
+
+---

Old:

  gyp-0~git.20160318.tar.xz

New:

  gyp-0+git.20160413.tar.xz



Other differences:
--
++ gyp.spec ++
--- /var/tmp/diff_new_pack.8r9JQ3/_old  2016-04-30 23:28:31.0 +0200
+++ /var/tmp/diff_new_pack.8r9JQ3/_new  2016-04-30 23:28:31.0 +0200
@@ -17,10 +17,10 @@
 #
 
 
-%define version_unconverted 0~git.20160318
+%define version_unconverted 0+git.20160413
 
 Name:   gyp
-Version:0~git.20160318
+Version:0+git.20160413
 Release:0
 Summary:Generate Your Projects
 License:BSD-3-Clause
@@ -42,7 +42,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
+%patch0
 for i in $(find pylib -name '*.py'); do
sed -e '\,#![ \t]*/.*python,{d}' $i > $i.new && touch -r $i $i.new && 
mv $i.new $i
 done

++ _service ++
--- /var/tmp/diff_new_pack.8r9JQ3/_old  2016-04-30 23:28:31.0 +0200
+++ /var/tmp/diff_new_pack.8r9JQ3/_new  2016-04-30 23:28:31.0 +0200
@@ -4,7 +4,7 @@
 git
 gyp
 enable
-0~git.%ad
+0+git.%ad
   
   
 *.tar

++ gyp-rpmoptflags.patch ++
--- /var/tmp/diff_new_pack.8r9JQ3/_old  2016-04-30 23:28:31.0 +0200
+++ /var/tmp/diff_new_pack.8r9JQ3/_new  2016-04-30 23:28:31.0 +0200
@@ -1,7 +1,7 @@
-Index: gyp-0~git.20160318/pylib/gyp/generator/make.py
+Index: pylib/gyp/generator/make.py
 ===
 gyp-0~git.20160318.orig/pylib/gyp/generator/make.py
-+++ gyp-0~git.20160318/pylib/gyp/generator/make.py
+--- pylib/gyp/generator/make.py.orig
 pylib/gyp/generator/make.py
 @@ -1183,6 +1183,7 @@ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(obj)
  # Write configuration-specific variables for CFLAGS, etc.
  for configname in sorted(configs.keys()):




commit libzypp for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2016-04-30 23:28:45

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


Package is "libzypp"

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2016-03-26 
15:11:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2016-04-30 
23:28:48.0 +0200
@@ -1,0 +2,23 @@
+Mon Apr 25 14:59:41 CEST 2016 - m...@suse.de
+
+- Fix credential file parser losing entries with known URL but
+  different user name (bsc#933760)
+- RepoManager: allow extraction of multiple baseurls for service
+  repos (bsc#964932)
+- addRepository: fix to use the correct history file for logging
+- specfile: add /etc/zypp/credentials.d to the file list
+- version 15.22.0 (19)
+
+---
+Mon Apr 18 15:03:13 CEST 2016 - m...@suse.de
+
+- RepoindexFileReader: fix service metadata TTL default value (bsc#967828)
+- version 15.21.7 (19)
+
+---
+Fri Apr 15 11:31:08 CEST 2016 - m...@suse.de
+
+- DiskUsageCounter: Limit estimated waste per file (bsc#974275)
+- version 15.21.6 (19)
+
+---

Old:

  libzypp-15.21.5.tar.bz2

New:

  libzypp-15.22.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.WY7OPz/_old  2016-04-30 23:28:49.0 +0200
+++ /var/tmp/diff_new_pack.WY7OPz/_new  2016-04-30 23:28:49.0 +0200
@@ -19,7 +19,7 @@
 %define force_gcc_46 0
 
 Name:   libzypp
-Version:15.21.5
+Version:15.22.0
 Release:0
 Url:git://gitorious.org/opensuse/libzypp.git
 Summary:Package, Patch, Pattern, and Product Management
@@ -35,7 +35,7 @@
 Provides:   libzypp(plugin) = 0
 Provides:   libzypp(plugin:appdata) = 0
 Provides:   libzypp(plugin:commit) = 1
-Provides:   libzypp(plugin:services) = 0
+Provides:   libzypp(plugin:services) = 1
 Provides:   libzypp(plugin:system) = 1
 Provides:   libzypp(plugin:urlresolver) = 0
 Provides:   libzypp(repovarexpand) = 0
@@ -242,6 +242,7 @@
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/systemCheck.d
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/vendors.d
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/multiversion.d
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/credentials.d
 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/zypp
 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/zypp/plugins
 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/zypp/plugins/appdata
@@ -339,6 +340,7 @@
 %dir   %{_sysconfdir}/zypp/systemCheck.d
 %dir   %{_sysconfdir}/zypp/vendors.d
 %dir   %{_sysconfdir}/zypp/multiversion.d
+%dir   %{_sysconfdir}/zypp/credentials.d
 %config(noreplace) %{_sysconfdir}/zypp/zypp.conf
 %config(noreplace) %{_sysconfdir}/zypp/systemCheck
 %config(noreplace) %{_sysconfdir}/logrotate.d/zypp-history.lr

++ libzypp-15.21.5.tar.bz2 -> libzypp-15.22.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.21.5/VERSION.cmake 
new/libzypp-15.22.0/VERSION.cmake
--- old/libzypp-15.21.5/VERSION.cmake   2016-03-18 13:40:46.0 +0100
+++ new/libzypp-15.22.0/VERSION.cmake   2016-04-25 15:05:27.0 +0200
@@ -60,9 +60,9 @@
 #
 SET(LIBZYPP_MAJOR "15")
 SET(LIBZYPP_COMPATMINOR "19")
-SET(LIBZYPP_MINOR "21")
-SET(LIBZYPP_PATCH "5")
+SET(LIBZYPP_MINOR "22")
+SET(LIBZYPP_PATCH "0")
 #
-# LAST RELEASED: 15.21.5 (19)
+# LAST RELEASED: 15.22.0 (19)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.21.5/doc/autoinclude/FeatureTest.doc 
new/libzypp-15.22.0/doc/autoinclude/FeatureTest.doc
--- old/libzypp-15.21.5/doc/autoinclude/FeatureTest.doc 2016-03-18 
13:28:44.0 +0100
+++ new/libzypp-15.22.0/doc/autoinclude/FeatureTest.doc 2016-04-25 
15:49:26.0 +0200
@@ -41,6 +41,8 @@
 \ref plugin-services 
 version 0
 Provide a client a list of repositories.
+version 1
+Support multiple repo baseurls in plugin services.
   
 
   plugin:system
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.21.5/libzypp.spec.cmake 
new/libzypp-15.22.0/libzypp.spec.cmake
--- old/libzypp-15.21.5/libzypp.spec.cmake  2016-03-18 13:28:44.0 
+0100
+++ new/libzypp-15.22.0/libzypp.spec.cmake  2016-04-25 15:49:26.0 
+0200
@@ -35,7 +35,7 @@
 Provides:   libzypp(plugin) = 0
 Provides:   

commit nghttp2 for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package nghttp2 for openSUSE:Factory checked 
in at 2016-04-30 23:28:53

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


Package is "nghttp2"

Changes:

--- /work/SRC/openSUSE:Factory/nghttp2/nghttp2.changes  2016-04-01 
13:01:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.nghttp2.new/nghttp2.changes 2016-04-30 
23:28:54.0 +0200
@@ -1,0 +2,36 @@
+Wed Apr 27 10:04:48 UTC 2016 - mplus...@suse.com
+
+- Update to 1.10.0
+  * Pass unknown SETTINGS values to nghttp2_on_frame_recv_callback
+  * Add ALTSVC frame support
+  * Run error callback when peer does not send initial SETTINGS 
+frame
+  * Update http-parser
+  * Update sphinx_rtd_theme
+  * nghttp: add an --expect-continue option
+  * nghttpx: Fix downstream connect callback called early
+  * nghttpx: Truncate too long -b option signature
+  * nghttpx: Fix bug that server push from mruby script did not 
+work
+  * nghttpx: Try next HTTP/1 backend address when connection 
+cannot be made
+  * nghttpx: Retry next HTTP/2 backend address when connection 
+cannot be made
+  * nghttpx: Enable link header field based push for non-final 
+response
+  * nghttpx: Detect online/offline state of backend servers
+  * nghttpx: Better load balancing between backend HTTP/2 servers
+  * nghttpx: Fix crash with backend failure
+
+---
+Wed Apr 13 18:31:20 UTC 2016 - mplus...@suse.com
+
+- Update to 1.9.2
+  * nghttpx: Fix crash with backend failure
+  * nghttpx: Better distribute load to backend h2 servers
+  * nghttpx: Fix error messages on deprecated mode
+  * nghttpx: Fix bug that logger wrote string which was not 
+NULL-terminated
+  * nghttpx: Fix bug that proxy with HTTP/1.1 CONNECT did not work
+
+---

Old:

  nghttp2-1.9.1.tar.xz

New:

  nghttp2-1.10.0.tar.xz



Other differences:
--
++ nghttp2.spec ++
--- /var/tmp/diff_new_pack.ISBEQI/_old  2016-04-30 23:28:55.0 +0200
+++ /var/tmp/diff_new_pack.ISBEQI/_new  2016-04-30 23:28:55.0 +0200
@@ -21,7 +21,7 @@
 %define soname_asio libnghttp2_asio
 %define sover_asio 1
 Name:   nghttp2
-Version:1.9.1
+Version:1.10.0
 Release:0
 Summary:Implementation of Hypertext Transfer Protocol version 2 in C
 License:MIT
@@ -35,20 +35,19 @@
 BuildRequires:  automake
 BuildRequires:  boost-devel
 BuildRequires:  gcc-c++
-BuildRequires:  jemalloc-devel
 BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  python-Cython
-BuildRequires:  python-devel
 BuildRequires:  python-Sphinx
 BuildRequires:  python-setuptools
 BuildRequires:  pkgconfig(cunit)
 BuildRequires:  pkgconfig(jansson)
+BuildRequires:  pkgconfig(jemalloc)
 BuildRequires:  pkgconfig(libev)
 BuildRequires:  pkgconfig(libspdylay)
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(openssl)
-BuildRequires:  pkgconfig(python)
+BuildRequires:  pkgconfig(python2)
 BuildRequires:  pkgconfig(zlib)
 
 %description
@@ -150,11 +149,8 @@
 make %{?_smp_mflags} check
 
 %post -n %{soname}-%{sover} -p /sbin/ldconfig
-
 %post -n %{soname_asio}%{sover_asio} -p /sbin/ldconfig
-
 %postun -n %{soname}-%{sover} -p /sbin/ldconfig
-
 %postun -n %{soname_asio}%{sover_asio} -p /sbin/ldconfig
 
 %files

++ nghttp2-1.9.1.tar.xz -> nghttp2-1.10.0.tar.xz ++
 28563 lines of diff (skipped)

++ nghttp2-remove-python-build.patch ++
--- /var/tmp/diff_new_pack.ISBEQI/_old  2016-04-30 23:28:56.0 +0200
+++ /var/tmp/diff_new_pack.ISBEQI/_new  2016-04-30 23:28:56.0 +0200
@@ -1,7 +1,7 @@
 Index: python/Makefile.am
 ===
 python/Makefile.am.orig2016-03-27 15:20:38.0 +0200
-+++ python/Makefile.am 2016-03-27 18:34:28.238374041 +0200
+--- python/Makefile.am.orig
 python/Makefile.am
 @@ -29,16 +29,6 @@ EXTRA_DIST = cnghttp2.pxd nghttp2.pyx CM
  
  if ENABLE_PYTHON_BINDINGS




commit gstreamer-plugins-good for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-plugins-good for 
openSUSE:Factory checked in at 2016-04-30 23:28:37

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


Package is "gstreamer-plugins-good"

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-good/gstreamer-plugins-good.changes
2016-02-12 11:21:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-good.new/gstreamer-plugins-good.changes
   2016-04-30 23:28:39.0 +0200
@@ -1,0 +2,34 @@
+Mon Apr 18 13:04:31 UTC 2016 - joerg.loren...@ki.tng.de
+
+- Changed required version of libvpx to >= 1.3.0, package can be
+  successfully built against it and version >= 1.4.0 isn't
+  available for openSUSE 13.2 and Leap 42.1 on PMBS.
+
+---
+Sat Mar 26 18:58:46 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.8.0:
+  + Hardware-accelerated zero-copy video decoding on Android
+  + New video capture source for Android using the
+android.hardware.Camera API.
+  + Windows Media reverse playback support (ASF/WMV/WMA).
+  + New tracing system provides support for more sophisticated
+debugging tools.
+  + New high-level GstPlayer playback convenience API.
+  + Initial support for the new Vulkan API, see Matthew Waters'
+blog post for more details.
+  + Improved Opus audio codec support: Support for more than two
+channels; MPEG-TS demuxer/muxer can now handle Opus;
+sample-accurate encoding/decoding/transmuxing with Ogg,
+Matroska, ISOBMFF (Quicktime/MP4), and MPEG-TS as container;
+new codec utility functions for Opus header and caps handling
+in pbutils library. The Opus encoder/decoder elements were
+also moved to gst-plugins-base (from -bad), and the opus RTP
+depayloader/payloader to -good.
+  + GStreamer VAAPI module now released and maintained as part of
+the GStreamer project.
+  + Asset proxy support in the GStreamer Editing Services.
+- Add explicit pkgconfig(libsoup-2.4) BuildRequires and version it.
+- Pass --enable-v4l2-probe to configure. This is a runtime check.
+
+---

Old:

  gst-plugins-good-1.6.3.tar.xz

New:

  gst-plugins-good-1.8.0.tar.xz



Other differences:
--
++ gstreamer-plugins-good.spec ++
--- /var/tmp/diff_new_pack.bdnras/_old  2016-04-30 23:28:40.0 +0200
+++ /var/tmp/diff_new_pack.bdnras/_new  2016-04-30 23:28:40.0 +0200
@@ -22,7 +22,7 @@
 
 Name:   gstreamer-plugins-good
 %define _name gst-plugins-good
-Version:1.6.3
+Version:1.8.0
 Release:0
 %define gst_branch 1.0
 Summary:GStreamer Streaming-Media Framework Plug-Ins
@@ -36,9 +36,9 @@
 BuildRequires:  aalib-devel
 %endif
 BuildRequires:  gcc-c++
-BuildRequires:  glib2-devel >= 2.31.14
-BuildRequires:  gstreamer-devel >= 1.6.3
-BuildRequires:  gstreamer-plugins-base-devel >= 1.6.3
+BuildRequires:  glib2-devel >= 2.40.0
+BuildRequires:  gstreamer-devel >= 1.8.0
+BuildRequires:  gstreamer-plugins-base-devel >= 1.8.0
 BuildRequires:  gtk-doc >= 1.12
 BuildRequires:  libICE-devel
 BuildRequires:  libSM-devel
@@ -69,13 +69,14 @@
 BuildRequires:  pkgconfig(libpng) >= 1.2
 BuildRequires:  pkgconfig(libpulse) >= 1.0
 BuildRequires:  pkgconfig(libraw1394) >= 2.0.0
+BuildRequires:  pkgconfig(libsoup-2.4) >= 2.48.0
 BuildRequires:  pkgconfig(libsoup-gnome-2.4) >= 2.40.0
 BuildRequires:  pkgconfig(libv4l2)
 BuildRequires:  pkgconfig(libxml-2.0) >= 2.4.9
 BuildRequires:  pkgconfig(shout) >= 2.0
 BuildRequires:  pkgconfig(speex) >= 1.1.6
 BuildRequires:  pkgconfig(taglib) >= 1.5
-BuildRequires:  pkgconfig(vpx) >= 1.1.0
+BuildRequires:  pkgconfig(vpx) >= 1.3.0
 BuildRequires:  pkgconfig(wavpack) >= 4.60.0
 BuildRequires:  pkgconfig(xdamage)
 BuildRequires:  pkgconfig(xfixes)
@@ -127,6 +128,7 @@
--disable-aalib\
 %endif
--enable-gtk-doc\
+   --enable-v4l2-probe\
--with-gtk=3.0\
--enable-experimental
 make %{?jobs:-j%jobs}

++ gst-plugins-good-1.6.3.tar.xz -> gst-plugins-good-1.8.0.tar.xz ++
 118251 lines of diff (skipped)





commit ibus for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ibus for openSUSE:Factory checked in 
at 2016-04-30 23:28:10

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


Package is "ibus"

Changes:

--- /work/SRC/openSUSE:Factory/ibus/ibus.changes2016-03-29 
09:52:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.ibus.new/ibus.changes   2016-04-30 
23:28:13.0 +0200
@@ -1,0 +2,26 @@
+Mon Apr 18 14:40:35 UTC 2016 - ft...@geeko.jp
+
+- Upstream update to 1.5.13
+  * Add SetCursorLocationRelative D-Bus method
+- Upstream update to 1.5.12
+  * Fix ibus-daemon does not update user cache
+  * Fix lookup window on a secondary monitor cannot get its correct
+size
+  * Fix default position of property panel under multi monitor
+environments
+  * Change language code from ISO 939-2 to ISO 639-1
+  * Fix minor bugs
+
+---
+Mon Apr 18 13:51:12 UTC 2016 - ft...@geeko.jp
+
+- Drop show-input-mode-icon.patch
+  * this feature has been reimplemented in another approach
+
+---
+Wed Apr 13 16:47:52 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Own all oxygen icon subdirs, starting with KF 5.21.0, oxygen is
+  no longer installed to the same location
+
+---

Old:

  ibus-1.5.11.tar.gz
  show-input-mode-icon.patch

New:

  ibus-1.5.13.tar.gz



Other differences:
--
++ ibus.spec ++
--- /var/tmp/diff_new_pack.aytsk2/_old  2016-04-30 23:28:14.0 +0200
+++ /var/tmp/diff_new_pack.aytsk2/_new  2016-04-30 23:28:14.0 +0200
@@ -30,7 +30,7 @@
 %endif
 
 Name:   ibus
-Version:1.5.11
+Version:1.5.13
 Release:0
 Summary:Intelligent Input Bus for Linux OS
 License:LGPL-2.1+
@@ -49,8 +49,6 @@
 Source99:   baselibs.conf
 # PATCH-FIX-OPENSUSE ibus-python-install-dir.patch ft...@geeko.jp
 Patch0: ibus-python-install-dir.patch
-# PATCH-FIX-OPENSUSE 
reload-preload-engines-until-users-customize-the-list.patch ft...@geeko.jp
-Patch3: show-input-mode-icon.patch
 # PATFH-FIX-SUSE ibus-xim-fix-re-focus-after-lock.patch bnc#874869 
t...@suse.de -- Fix lost XIM input after screenlock
 Patch4: ibus-xim-fix-re-focus-after-lock.patch
 # PATCH-FIX-UPSTREAM marguer...@opensuse.org
@@ -246,7 +244,6 @@
 %{SOURCE99}
 %endif
 
-%patch3 -p1
 %patch4 -p1
 
 %if %{with_python3}
@@ -453,8 +450,8 @@
 
 %files branding-openSUSE-KDE
 %defattr(-,root,root)
-%dir %{_datadir}/icons/oxygen/24x24
-%dir %{_datadir}/icons/oxygen/24x24/apps
+%dir %{_datadir}/icons/oxygen/*
+%dir %{_datadir}/icons/oxygen/*/apps
 %{_datadir}/icons/oxygen/*/apps/ibus-keyboard.*
 
 %changelog

++ ibus-1.5.11.tar.gz -> ibus-1.5.13.tar.gz ++
 39969 lines of diff (skipped)




commit kf5-filesystem for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package kf5-filesystem for openSUSE:Factory 
checked in at 2016-04-30 23:28:20

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


Package is "kf5-filesystem"

Changes:

--- /work/SRC/openSUSE:Factory/kf5-filesystem/kf5-filesystem.changes
2016-04-12 19:07:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kf5-filesystem.new/kf5-filesystem.changes   
2016-04-30 23:28:22.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr 20 21:13:17 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Define %_kf5_appstreamdir
+
+---



Other differences:
--
++ kf5-filesystem.spec ++
--- /var/tmp/diff_new_pack.h7zscg/_old  2016-04-30 23:28:23.0 +0200
+++ /var/tmp/diff_new_pack.h7zscg/_new  2016-04-30 23:28:23.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   kf5-filesystem
 Url:http://www.kde.org
-Version:20160409
+Version:20160420
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:KF5 Directory Layout

++ macros.kf5 ++
--- /var/tmp/diff_new_pack.h7zscg/_old  2016-04-30 23:28:23.0 +0200
+++ /var/tmp/diff_new_pack.h7zscg/_new  2016-04-30 23:28:23.0 +0200
@@ -30,6 +30,7 @@
 %_kf5_servicetypesdir %{_kf5_sharedir}/kservicetypes5
 %_kf5_htmldir %{_kf5_sharedir}/doc/HTML
 %_kf5_kxmlguidir  %{_kf5_sharedir}/kxmlgui5
+%_kf5_appstreamdir%{_kf5_sharedir}/appdata
 
 %_kf5_build_type None
 




commit libsolv for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libsolv for openSUSE:Factory checked 
in at 2016-04-30 23:29:00

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


Package is "libsolv"

Changes:

--- /work/SRC/openSUSE:Factory/libsolv/libsolv.changes  2016-02-22 
08:56:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.libsolv.new/libsolv.changes 2016-04-30 
23:29:01.0 +0200
@@ -1,0 +2,12 @@
+Fri Apr  8 15:36:21 CEST 2016 - m...@suse.de
+
+- Better support of complex deps in pool_match_dep and
+  selection_make_matchdeps
+- make SOLVER_REASON_CLEANDEPS_ERASE introspection reason work again
+- make dep2str use rpm-like output if disttype is rpm
+- implement filtering of Requires(pre,post) for installed packages
+- simplify handling of pseudo package updates [bnc#967006]
+- improve speed of rpmmd metadata parsing
+- bump version to 0.6.20
+
+---

Old:

  libsolv-0.6.19.tar.bz2

New:

  libsolv-0.6.20.tar.bz2



Other differences:
--
++ libsolv.spec ++
--- /var/tmp/diff_new_pack.SfSDC9/_old  2016-04-30 23:29:02.0 +0200
+++ /var/tmp/diff_new_pack.SfSDC9/_new  2016-04-30 23:29:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libsolv
-Version:0.6.19
+Version:0.6.20
 Release:0
 Url:https://github.com/openSUSE/libsolv
 Source: libsolv-%{version}.tar.bz2

++ libsolv-0.6.19.tar.bz2 -> libsolv-0.6.20.tar.bz2 ++
 3281 lines of diff (skipped)




commit mailx for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package mailx for openSUSE:Factory checked 
in at 2016-04-30 23:27:32

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


Package is "mailx"

Changes:

--- /work/SRC/openSUSE:Factory/mailx/mailx.changes  2015-03-19 
20:48:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.mailx.new/mailx.changes 2016-04-30 
23:27:33.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr  8 15:02:17 UTC 2016 - wer...@suse.de
+
+- Correct parenthese expansion to fulfill natural order (bnc#974561)
+
+---



Other differences:
--
++ mailx.spec ++
--- /var/tmp/diff_new_pack.Ldf55V/_old  2016-04-30 23:27:34.0 +0200
+++ /var/tmp/diff_new_pack.Ldf55V/_new  2016-04-30 23:27:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mailx
 #
-# 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

++ mailx-12.5-mime.dif ++
--- /var/tmp/diff_new_pack.Ldf55V/_old  2016-04-30 23:27:34.0 +0200
+++ /var/tmp/diff_new_pack.Ldf55V/_new  2016-04-30 23:27:34.0 +0200
@@ -1,5 +1,11 @@
+---
+ def.h |4 +
+ mime.c|  144 
++
+ sendout.c |   40 +
+ 3 files changed, 172 insertions(+), 16 deletions(-)
+
 --- def.h
-+++ def.h  2012-03-23 13:57:44.0 +
 def.h  2016-04-08 14:58:42.729798789 +
 @@ -142,7 +142,9 @@ enum mimeclean {
MIME_LONGLINES  = 002,  /* has lines too long for RFC 2822 */
MIME_CTRLCHAR   = 004,  /* contains control characters */
@@ -12,7 +18,7 @@
  
  enum tdflags {
 --- mime.c
-+++ mime.c 2013-07-02 10:25:35.0 +
 mime.c 2016-04-08 15:00:05.808259514 +
 @@ -302,13 +302,78 @@ gettcharset(void)
return t;
  }
@@ -101,7 +107,7 @@
if (w & GIDENT) {
if (hp->h_from && name_highbit(hp->h_from))
goto needs;
-@@ -355,7 +422,7 @@ need_hdrconv(struct header *hp, enum gfi
+@@ -355,7 +421,7 @@ need_hdrconv(struct header *hp, enum gfi
if (w & GSUBJECT && has_highbit(hp->h_subject))
goto needs;
return NULL;
@@ -128,7 +134,7 @@
match = 1;
break;
}
-@@ -748,16 +814,66 @@ mime_isclean(FILE *f)
+@@ -748,14 +814,62 @@ mime_isclean(FILE *f)
maxlen = curlen;
curlen = 1;
} else if (c & 0200) {
@@ -172,10 +178,8 @@
 +  continue;
 +  }
 +  latin:
-+  if (text_chars[i & 0377] == I) {
++  if (text_chars[i & 0377] == I)
 +  isclean |= MIME_LATIN;
-+  continue;
-+  }
 +  if (text_chars[i & 0377] == X) {
 +  isclean |= MIME_CTRLCHAR;
 +  break;
@@ -189,14 +193,12 @@
 +  break;
}
} while (c != EOF);
-   if (lastc != '\n')
-   isclean |= MIME_NOTERMNL;
 +  if (isclean & (MIME_CTRLCHAR|MIME_HASNUL))
 +  isclean &= (MIME_CTRLCHAR|MIME_HASNUL);
+   if (lastc != '\n')
+   isclean |= MIME_NOTERMNL;
clearerr(f);
-   fseek(f, initial_pos, SEEK_SET);
-   if ((cp = value("maximum-unencoded-line-length")) != NULL)
-@@ -826,11 +942,16 @@ get_mime_convert(FILE *fp, char **conten
+@@ -826,11 +940,16 @@ get_mime_convert(FILE *fp, char **conten
 * ^I or ^L in text/plain bodies. However, some
 * obscure character sets actually contain these
 * characters, so the content type can be set.
@@ -213,7 +215,7 @@
}
return convert;
  }
-@@ -989,8 +1110,14 @@ mime_fromhdr(struct str *in, struct str
+@@ -989,8 +1108,14 @@ mime_fromhdr(struct str *in, struct str
  #ifdefHAVE_ICONV
iconv_t fhicd = (iconv_t)-1;
  #endif
@@ -228,7 +230,7 @@
maxstor = in->l;
out->s = smalloc(maxstor + 1);
out->l = 0;
-@@ -1010,7 +1137,7 @@ mime_fromhdr(struct str *in, struct str
+@@ -1010,7 +1135,7 @@ mime_fromhdr(struct str *in, struct str
  #ifdefHAVE_ICONV
if (fhicd != (iconv_t)-1)
iconv_close(fhicd);
@@ -237,7 +239,7 @@
  

commit wicked for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package wicked for openSUSE:Factory checked 
in at 2016-04-30 23:27:23

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


Package is "wicked"

Changes:

--- /work/SRC/openSUSE:Factory/wicked/wicked.changes2016-04-08 
09:38:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.wicked.new/wicked.changes   2016-04-30 
23:27:24.0 +0200
@@ -1,0 +2,14 @@
+Fri Apr 15 15:40:07 UTC 2016 - m...@suse.de
+
+- version 0.6.32
+- tunnel: add device binding support (fate#317977)
+- gre: fix flags use, added missed keyed gre options
+- doc: added an initial FAQ to the documentation
+- util: fix null string and string array in compare
+- ipv6: cleaned up IPv6 RA PI and RDNSS processing
+- ipv6: receive IPv6 RA DNSSL options forwarded by kernel
+- dhcp6: refresh ipv6 link on each prefix event to fix workaround
+  for missed NEWLINK event on changes caused by RA (boo#972471).
+- macvlan: fix enum values for BRIDGE and PASSTHRU modes (boo#974231)
+
+---

Old:

  wicked-0.6.31.tar.bz2

New:

  wicked-0.6.32.tar.bz2



Other differences:
--
++ wicked.spec ++
--- /var/tmp/diff_new_pack.6reFW2/_old  2016-04-30 23:27:25.0 +0200
+++ /var/tmp/diff_new_pack.6reFW2/_new  2016-04-30 23:27:25.0 +0200
@@ -18,7 +18,7 @@
 
 %definerelease_prefix  %{?snapshot:%{snapshot}}%{!?snapshot:0}
 Name:   wicked
-Version:0.6.31
+Version:0.6.32
 Release:%{release_prefix}.0.0
 Summary:Network configuration infrastructure
 License:GPL-2.0

++ wicked-0.6.31.tar.bz2 -> wicked-0.6.32.tar.bz2 ++
 2361 lines of diff (skipped)




commit libqb for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libqb for openSUSE:Factory checked 
in at 2016-04-30 23:27:14

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


Package is "libqb"

Changes:

--- /work/SRC/openSUSE:Factory/libqb/libqb.changes  2015-10-17 
16:38:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqb.new/libqb.changes 2016-04-30 
23:27:15.0 +0200
@@ -1,0 +2,28 @@
+Fri Apr 15 12:47:35 UTC 2016 - y...@suse.com
+
+- further avoid magic in qblog.h by using named constants
+- defs: add wrappers over preprocessor operators
+- Upstream version cs: 6f2b3e85d0315288ee76869b99369e2b1f2f1b71
+
+---
+Fri Apr  1 13:35:04 UTC 2016 - y...@suse.com
+
+- Update to version 1.0.0
+- build: update library soname to 0.18.0
+- build: enable syslog tests when configuring in spec
+- log: allow changing the identifier for syslog (+tests)
+- ipc: return -errno when getsockopt/setsockopt fail
+- ipc: set socket buffer size used by ipcs service
+- ipc: set socket receive buffer
+- includes: format __attribute__ func. annotations in qblog.h
+- spec cleanup: get rid of redundant %clean section
+- ipc: set gid on unix sockets
+- lib: store server peer credentials in qb_ipcc_connection
+- lib: create mmap files in socket directory
+- includes: Fix format string
+- ipc: Prevent fd and memory leaks in handle_new_connection() (bsc#947341)
+  * Drop bug-947341_libqb-ipc-fd-memory-leaks.patch which has been merged 
upstream
+
+- Upstream version cs: 6fc24f855bfc8dadb4c84bf823b225680670b1c3 (v1.0)
+
+---

Old:

  bug-947341_libqb-ipc-fd-memory-leaks.patch
  libqb-0.17.2+git20151001.1a7ea3b.tar.bz2

New:

  libqb-1.0.0+git20160407.6f2b3e8.tar.bz2



Other differences:
--
++ libqb.spec ++
--- /var/tmp/diff_new_pack.rH66vN/_old  2016-04-30 23:27:16.0 +0200
+++ /var/tmp/diff_new_pack.rH66vN/_new  2016-04-30 23:27:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqb
 #
-# 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,8 +16,11 @@
 #
 
 
+%bcond_without check
+%bcond_without syslog_tests
+
 Name:   libqb
-Version:0.17.2+git20151001.1a7ea3b
+Version:1.0.0+git20160407.6f2b3e8
 Release:0
 Summary:An IPC library for high performance servers
 License:LGPL-2.1+
@@ -26,7 +29,6 @@
 Source0:%{name}-%{version}.tar.bz2
 Source1:baselibs.conf
 Patch1: libqb-configure-package-version.patch
-Patch2: bug-947341_libqb-ipc-fd-memory-leaks.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  autoconf
@@ -69,13 +71,14 @@
 %prep
 %setup -q -n %{name}-%{version}
 %patch1 -p1
-%patch2 -p1
 
 %build
 ./autogen.sh
-%configure --disable-static
+%configure --disable-static \
+   %{?with_syslog_tests:--enable-syslog-tests}
 make %{?_smp_mflags}
 
+%if 0%{?with_check}
 %check
 # Tests require writable /dev/shm and /var/run
 # TODO: This test might not be quite right -- it seems to fail on OBS,
@@ -84,15 +87,13 @@
 if [ -w /dev/shm -a -w /var/run ] ; then
make check
 fi
+%endif
 
 %install
 %make_install
 find %{buildroot} -name '*.la' -exec rm -f {} ';'
 rm -rf %{buildroot}%{_datadir}/doc
 
-%clean
-rm -rf %{buildroot}
-
 %post -n libqb0 -p /sbin/ldconfig
 
 %postun -n libqb0 -p /sbin/ldconfig

++ _service ++
--- /var/tmp/diff_new_pack.rH66vN/_old  2016-04-30 23:27:16.0 +0200
+++ /var/tmp/diff_new_pack.rH66vN/_new  2016-04-30 23:27:16.0 +0200
@@ -8,10 +8,10 @@
 To update to a new release, change "revision" to the desired
 git commit hash and bump "version" if necessary
 
-0.17.2
+1.0.0
 -->
-0.17.2+git%cd.%h
-1a7ea3b8d8bf9d5ffbbfdc785ace2b81e9f2356d
+1.0.0+git%cd.%h
+6f2b3e85d0315288ee76869b99369e2b1f2f1b71
   
 
   

++ libqb-0.17.2+git20151001.1a7ea3b.tar.bz2 -> 
libqb-1.0.0+git20160407.6f2b3e8.tar.bz2 ++
 6214 lines of diff (skipped)




commit gstreamer-plugins-ugly for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-plugins-ugly for 
openSUSE:Factory checked in at 2016-04-30 23:27:56

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


Package is "gstreamer-plugins-ugly"

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-ugly/gstreamer-plugins-ugly.changes
2016-02-12 11:21:56.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-ugly.new/gstreamer-plugins-ugly.changes
   2016-04-30 23:27:58.0 +0200
@@ -1,0 +2,32 @@
+Mon Apr 18 09:17:13 UTC 2016 - joerg.loren...@ki.tng.de
+
+- Added installed (but unpackaged) file libgstmpg123.so on PMBS to
+  subpackage gstreamer-plugins-ugly-orig-addon.
+
+---
+Sat Mar 26 20:08:33 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.8.0:
+  + Hardware-accelerated zero-copy video decoding on Android
+  + New video capture source for Android using the
+android.hardware.Camera API.
+  + Windows Media reverse playback support (ASF/WMV/WMA).
+  + New tracing system provides support for more sophisticated
+debugging tools.
+  + New high-level GstPlayer playback convenience API.
+  + Initial support for the new Vulkan API, see Matthew Waters'
+blog post for more details.
+  + Improved Opus audio codec support: Support for more than two
+channels; MPEG-TS demuxer/muxer can now handle Opus;
+sample-accurate encoding/decoding/transmuxing with Ogg,
+Matroska, ISOBMFF (Quicktime/MP4), and MPEG-TS as container;
+new codec utility functions for Opus header and caps handling
+in pbutils library. The Opus encoder/decoder elements were
+also moved to gst-plugins-base (from -bad), and the opus RTP
+depayloader/payloader to -good.
+  + GStreamer VAAPI module now released and maintained as part of
+the GStreamer project.
+  + Asset proxy support in the GStreamer Editing Services.
+- Add pkgconfig(libmpg123) BuildRequires.
+
+---

Old:

  gst-plugins-ugly-1.6.3-patched.tar.xz
  gst-plugins-ugly-1.6.3.tar.xz

New:

  gst-plugins-ugly-1.8.0-patched.tar.xz
  gst-plugins-ugly-1.8.0.tar.xz



Other differences:
--
++ gstreamer-plugins-ugly.spec ++
--- /var/tmp/diff_new_pack.UMihv6/_old  2016-04-30 23:27:59.0 +0200
+++ /var/tmp/diff_new_pack.UMihv6/_new  2016-04-30 23:27:59.0 +0200
@@ -24,7 +24,7 @@
 %define _experimental 1
 
 Name:   gstreamer-plugins-ugly
-Version:1.6.3
+Version:1.8.0
 Release:0
 Summary:GStreamer Streaming-Media Framework Plug-Ins
 License:LGPL-2.1+
@@ -45,9 +45,9 @@
 Patch1: gstreamer-revert-bogus-automake-version.patch
 BuildRequires:  automake
 BuildRequires:  gcc-c++
-BuildRequires:  glib2-devel >= 2.32.0
-BuildRequires:  gstreamer-devel >= 1.6.3
-BuildRequires:  gstreamer-plugins-base-devel >= 1.6.3
+BuildRequires:  glib2-devel >= 2.40.0
+BuildRequires:  gstreamer-devel >= 1.8.0
+BuildRequires:  gstreamer-plugins-base-devel >= 1.8.0
 BuildRequires:  gtk-doc >= 1.12
 BuildRequires:  libcdio-devel >= 0.76
 BuildRequires:  libdvdread-devel
@@ -67,6 +67,7 @@
 BuildRequires:  libopencore-amr-devel
 BuildRequires:  libtwolame-devel
 BuildRequires:  libx264-devel >= 0.120
+BuildRequires:  pkgconfig(libmpg123) >= 1.13
 %endif
 # Get minimum gstreamer and gstreamer-plugins-base required versions from 
configure.ac
 %define gstreamer_plugins_ugly_req %(xzgrep --text "^GST.*_REQ" %{S:0} | sort 
-u | sed 's/GST_REQ=/gstreamer >= /;s/GSTPB_REQ=/gstreamer-plugins-base >= /' | 
tr '\\n' ' ')
@@ -218,6 +219,7 @@
 %{_libdir}/gstreamer-%{gst_branch}/libgstlame.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstmad.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstmpeg2dec.so
+%{_libdir}/gstreamer-%{gst_branch}/libgstmpg123.so
 %{_libdir}/gstreamer-%{gst_branch}/libgsttwolame.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstx264.so
 %{_datadir}/gstreamer-%{gst_branch}/presets/GstAmrnbEnc.prs

++ gst-plugins-ugly-1.6.3-patched.tar.xz -> 
gst-plugins-ugly-1.8.0-patched.tar.xz ++
 110318 lines of diff (skipped)

++ gst-plugins-ugly-1.6.3-patched.tar.xz -> gst-plugins-ugly-1.8.0.tar.xz 
++
 118608 lines of diff (skipped)




commit pulseaudio for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package pulseaudio for openSUSE:Factory 
checked in at 2016-04-30 23:27:49

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


Package is "pulseaudio"

Changes:

--- /work/SRC/openSUSE:Factory/pulseaudio/pulseaudio.changes2016-03-29 
09:52:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.pulseaudio.new/pulseaudio.changes   
2016-04-30 23:27:51.0 +0200
@@ -1,0 +2,18 @@
+Thu Apr 14 12:45:13 CEST 2016 - ti...@suse.de
+
+- Use /etc/pulse/client.conf.d/50-system.conf as a system setup by
+  setup-pulseaudio script instead of modifying the global config.
+
+---
+Mon Apr  4 14:06:06 CEST 2016 - ti...@suse.de
+
+- Move libpulsedsp.so into pulseaudio-utils subpackage and add it
+  to baselibs.conf so that 32bit compat lib is built (boo#968568);
+  also recommends is added in libpulse0-32bit for easy installation
+- Fix padsp script to support bi-arch libs (boo#968568) with
+  padsp-biarch.patch
+- Call bootstrap.sh for rebuilding properly with patches
+- Drop the obsoleted disable-srbchannel.patch, which has been fixed
+  in upstream already
+
+---

Old:

  disable-srbchannel.patch

New:

  padsp-biarch.patch



Other differences:
--
++ pulseaudio.spec ++
--- /var/tmp/diff_new_pack.4X64t7/_old  2016-04-30 23:27:52.0 +0200
+++ /var/tmp/diff_new_pack.4X64t7/_new  2016-04-30 23:27:52.0 +0200
@@ -44,9 +44,8 @@
 Patch0: disabled-start.diff
 Patch1: suppress-socket-error-msg.diff
 Patch2: pulseaudio-wrong-memset.patch
-# PATCH-FIX-SUSE disable-srbchannel.patch boo#950487 Disable srbchannel as a 
workaround for crashes on KDE
-# XXX note this patch isn't used for now, kept just for workaround in future
-Patch3: disable-srbchannel.patch
+# PATCH-FIX-OPENSUSE padsp-biarch.patch bnc#968568
+Patch4: padsp-biarch.patch
 BuildRequires:  alsa-devel >= 1.0.19
 # require only minimal bluez, if we are on bluez 5 we will determine in build 
phase
 BuildRequires:  bluez-devel >= 4.99
@@ -326,11 +325,10 @@
 %patch0
 %patch1 -p1
 %patch2
-%if 0
-%patch3 -p1
-%endif
+%patch4 -p1
 
 %build
+./bootstrap.sh
 echo 'HTML_TIMESTAMP=NO' >> doxygen/doxygen.conf.in
 export LDFLAGS="-pie"
 export CFLAGS="%{optflags} -fPIE"
@@ -394,6 +392,8 @@
 mkdir -p %{buildroot}%{_sysconfdir}/pulse/daemon.conf.d
 # Install disable_flat_volumes.conf
 install -m 0644 %{S:6} %{buildroot}%{_sysconfdir}/pulse/daemon.conf.d
+# created by setup-pulseaudio script
+touch %{buildroot}%{_sysconfdir}/pulse/client.conf.d/50-system.conf
 %fdupes doxygen/html
 
 %pre
@@ -445,7 +445,6 @@
 %{_datadir}/pulseaudio/alsa-mixer
 %{_localstatedir}/adm/fillup-templates/sysconfig.sound-pulseaudio
 %dir %{_libdir}/pulseaudio
-%{_libdir}/pulseaudio/libpulsedsp.so
 %{_libdir}/pulseaudio/libpulsecore-%{drvver}.so
 %dir %{_libdir}/pulse-%{drvver}/
 %dir %{_libdir}/pulse-%{drvver}/modules/
@@ -554,6 +553,7 @@
 # created by setup-pulseaudio script
 %ghost %{_sysconfdir}/profile.d/pulseaudio.sh
 %ghost %{_sysconfdir}/profile.d/pulseaudio.csh
+%ghost %{_sysconfdir}/pulse/client.conf.d/50-system.conf
 
 %files esound-compat
 %defattr(-,root,root)
@@ -670,6 +670,8 @@
 %{_bindir}/pax11publish
 %{_bindir}/padsp
 %{_bindir}/pasuspender
+%dir %{_libdir}/pulseaudio
+%{_libdir}/pulseaudio/libpulsedsp.so
 %{_mandir}/man1/pacat.1*
 %{_mandir}/man1/pacmd.1*
 %{_mandir}/man1/pactl.1*

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.4X64t7/_old  2016-04-30 23:27:52.0 +0200
+++ /var/tmp/diff_new_pack.4X64t7/_new  2016-04-30 23:27:52.0 +0200
@@ -1,5 +1,7 @@
 libpulse0
   obsoletes "pulseaudio-libs- <= "
   provides "pulseaudio-libs- = "
+  recommends "pulseaudio-utils-"
 libpulse-mainloop-glib0
 libpulse-devel
+pulseaudio-utils

++ padsp-biarch.patch ++
---
 src/Makefile.am|5 -
 src/utils/padsp.in |6 --
 2 files changed, 8 insertions(+), 3 deletions(-)

--- a/src/utils/padsp.in
+++ b/src/utils/padsp.in
@@ -73,10 +73,12 @@ done
 
 shift $(( $OPTIND - 1 ))
 
+prefix=@prefix@
+exec_prefix=@exec_prefix@
 if [ x"$LD_PRELOAD" = x ] ; then
-   LD_PRELOAD="@pkglibdir@/libpulsedsp.so"
+   LD_PRELOAD="${exec_prefix}/\$LIB/@PACKAGE@/libpulsedsp.so"
 else
-   LD_PRELOAD="$LD_PRELOAD @pkglibdir@/libpulsedsp.so"
+   LD_PRELOAD="$LD_PRELOAD ${exec_prefix}/\$LIB/@PACKAGE@/libpulsedsp.so"
 fi
 
 export LD_PRELOAD
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -901,7 +901,10 @@ padsplib_LTLIBRARIES = libpulsedsp.la
 bin_SCRIPTS += padsp
 
 edit = @SED@ \
-   -e "s|@pkglibdir[@]|$(pkglibdir)|g"
+   -e 

commit jack for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package jack for openSUSE:Factory checked in 
at 2016-04-30 23:27:05

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


Package is "jack"

Changes:

--- /work/SRC/openSUSE:Factory/jack/jack.changes2016-03-26 
15:10:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.jack.new/jack.changes   2016-04-30 
23:27:07.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 15 14:33:40 CEST 2016 - ti...@suse.de
+
+- Fix the build failure with gcc6:
+  gcc6-fixes.diff
+
+---

New:

  gcc6-fixes.diff



Other differences:
--
++ jack.spec ++
--- /var/tmp/diff_new_pack.ObVITg/_old  2016-04-30 23:27:08.0 +0200
+++ /var/tmp/diff_new_pack.ObVITg/_new  2016-04-30 23:27:08.0 +0200
@@ -46,6 +46,8 @@
 Patch6: jack-ppc64-long.patch
 # PATCH-FIX-UPSTREAM reproducible.patch bmwiedemann -- 
https://github.com/jackaudio/jack2/pull/196
 Patch7: reproducible.patch
+# PATCH-FIX-OPENSUSE gcc6-fixes.diff ti...@suse.de -- fix for gcc6 build 
failures
+Patch8: gcc6-fixes.diff
 BuildRequires:  dos2unix
 BuildRequires:  doxygen
 BuildRequires:  fdupes
@@ -117,6 +119,7 @@
 %patch2
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 
 %build
 

++ gcc6-fixes.diff ++
---
 tests/iodelay.cpp |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- a/tests/iodelay.cpp
+++ b/tests/iodelay.cpp
@@ -167,8 +167,8 @@ static jack_client_t  *jack_handle;
 static jack_port_t*jack_capt;
 static jack_port_t*jack_play;
 
-jack_latency_range_t   capture_latency = {-1, -1};
-jack_latency_range_t   playback_latency = {-1, -1};
+jack_latency_range_t   capture_latency = {-1U, -1U};
+jack_latency_range_t   playback_latency = {-1U, -1U};
 
 void
 latency_cb (jack_latency_callback_mode_t mode, void *arg)
@@ -266,4 +266,4 @@ int main (int ac, char *av [])
 return 0;
 }
 
-// 

\ No newline at end of file
+// 




commit gstreamer-plugins-base for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-plugins-base for 
openSUSE:Factory checked in at 2016-04-30 23:26:52

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


Package is "gstreamer-plugins-base"

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-base/gstreamer-plugins-base.changes
2016-02-23 16:52:53.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-base.new/gstreamer-plugins-base.changes
   2016-04-30 23:26:54.0 +0200
@@ -1,0 +2,29 @@
+Sat Mar 26 17:11:24 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.8.0:
+  + Hardware-accelerated zero-copy video decoding on Android
+  + New video capture source for Android using the
+android.hardware.Camera API.
+  + Windows Media reverse playback support (ASF/WMV/WMA).
+  + New tracing system provides support for more sophisticated
+debugging tools.
+  + New high-level GstPlayer playback convenience API.
+  + Initial support for the new Vulkan API, see Matthew Waters'
+blog post for more details.
+  + Improved Opus audio codec support: Support for more than two
+channels; MPEG-TS demuxer/muxer can now handle Opus;
+sample-accurate encoding/decoding/transmuxing with Ogg,
+Matroska, ISOBMFF (Quicktime/MP4), and MPEG-TS as container;
+new codec utility functions for Opus header and caps handling
+in pbutils library. The Opus encoder/decoder elements were
+also moved to gst-plugins-base (from -bad), and the opus RTP
+depayloader/payloader to -good.
+  + GStreamer VAAPI module now released and maintained as part of
+the GStreamer project.
+  + Asset proxy support in the GStreamer Editing Services.
+  + Bugs fixed: bgo#763316.
+- Add pkgconfig(opus) BuildRequires: New optional dependency.
+- Add explicit pkgconfig(gio-unix-2.0) BuildRequires: Already
+  pulled in, but add it so we can version it.
+
+---

Old:

  gst-plugins-base-1.6.3.tar.xz

New:

  gst-plugins-base-1.8.0.tar.xz



Other differences:
--
++ gstreamer-plugins-base.spec ++
--- /var/tmp/diff_new_pack.86VKBg/_old  2016-04-30 23:26:55.0 +0200
+++ /var/tmp/diff_new_pack.86VKBg/_new  2016-04-30 23:26:55.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   gstreamer-plugins-base
 %define _name gst-plugins-base
-Version:1.6.3
+Version:1.8.0
 Release:0
 %define gst_branch 1.0
 Url:http://gstreamer.freedesktop.org/
@@ -31,8 +31,8 @@
 Source2:baselibs.conf
 Patch0: aarch64-no-neon.patch
 BuildRequires:  cdparanoia-devel
-BuildRequires:  glib2-devel >= 2.32
-BuildRequires:  gstreamer-devel >= 1.6.3
+BuildRequires:  glib2-devel >= 2.40.0
+BuildRequires:  gstreamer-devel >= 1.8.0
 BuildRequires:  gstreamer-utils > 0.11
 BuildRequires:  gtk-doc >= 1.12
 BuildRequires:  libICE-devel
@@ -49,12 +49,14 @@
 BuildRequires:  gobject-introspection-devel >= 1.31.1
 BuildRequires:  pkgconfig(alsa) >= 0.9.1
 BuildRequires:  pkgconfig(freetype2) >= 2.0.9
+BuildRequires:  pkgconfig(gio-unix-2.0) >= 2.24
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10
 BuildRequires:  pkgconfig(gtk+-x11-3.0) >= 3.0.0
 BuildRequires:  pkgconfig(iso-codes)
 BuildRequires:  pkgconfig(libvisual-0.4) >= 0.4.0
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(ogg) >= 1.0
+BuildRequires:  pkgconfig(opus) >= 0.9.4
 BuildRequires:  pkgconfig(pango) >= 1.22.0
 BuildRequires:  pkgconfig(pangocairo) >= 1.22.0
 BuildRequires:  pkgconfig(theoradec) >= 1.1
@@ -506,6 +508,7 @@
 %{_libdir}/gstreamer-%{gst_branch}/libgstgio.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstlibvisual.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstogg.so
+%{_libdir}/gstreamer-%{gst_branch}/libgstopus.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstpango.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstplayback.so
 %{_libdir}/gstreamer-%{gst_branch}/libgstsubparse.so

++ gst-plugins-base-1.6.3.tar.xz -> gst-plugins-base-1.8.0.tar.xz ++
 160417 lines of diff (skipped)





commit gstreamer for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gstreamer for openSUSE:Factory 
checked in at 2016-04-30 23:26:16

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


Package is "gstreamer"

Changes:

--- /work/SRC/openSUSE:Factory/gstreamer/gstreamer-doc.changes  2015-11-24 
22:28:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.gstreamer.new/gstreamer-doc.changes 
2016-04-30 23:26:18.0 +0200
@@ -1,0 +2,5 @@
+Sat Mar 26 19:04:04 UTC 2016 - zai...@opensuse.org
+
+- Run pre_checkin.sh to get in sync with gstreamer.
+
+---
--- /work/SRC/openSUSE:Factory/gstreamer/gstreamer.changes  2016-02-12 
11:21:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.gstreamer.new/gstreamer.changes 2016-04-30 
23:26:18.0 +0200
@@ -1,0 +2,27 @@
+Sat Mar 26 16:29:37 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.8.0:
+  + Hardware-accelerated zero-copy video decoding on Android
+  + New video capture source for Android using the
+android.hardware.Camera API.
+  + Windows Media reverse playback support (ASF/WMV/WMA).
+  + New tracing system provides support for more sophisticated
+debugging tools.
+  + New high-level GstPlayer playback convenience API.
+  + Initial support for the new Vulkan API, see Matthew Waters'
+blog post for more details.
+  + Improved Opus audio codec support: Support for more than two
+channels; MPEG-TS demuxer/muxer can now handle Opus;
+sample-accurate encoding/decoding/transmuxing with Ogg,
+Matroska, ISOBMFF (Quicktime/MP4), and MPEG-TS as container;
+new codec utility functions for Opus header and caps handling
+in pbutils library. The Opus encoder/decoder elements were
+also moved to gst-plugins-base (from -bad), and the opus RTP
+depayloader/payloader to -good.
+  + GStreamer VAAPI module now released and maintained as part of
+the GStreamer project.
+  + Asset proxy support in the GStreamer Editing Services.
+  + Bugs fixed: bgo#763491, bgo#763895, bgo#764034, bgo#763770.
+- Rebase gstreamer-rpm-prov.patch, base on fedora patch.
+
+---

Old:

  gstreamer-1.6.3.tar.xz

New:

  gstreamer-1.8.0.tar.xz



Other differences:
--
++ gstreamer-doc.spec ++
--- /var/tmp/diff_new_pack.kD2xxt/_old  2016-04-30 23:26:19.0 +0200
+++ /var/tmp/diff_new_pack.kD2xxt/_new  2016-04-30 23:26:19.0 +0200
@@ -19,7 +19,7 @@
 Name:   gstreamer-doc
 %define _name   gstreamer
 %define build_doc 1
-Version:1.6.3
+Version:1.8.0
 Release:0
 %define gst_branch 1.0
 Summary:Streaming-Media Framework Runtime
@@ -40,7 +40,7 @@
 BuildRequires:  check-devel
 BuildRequires:  fdupes
 BuildRequires:  flex
-BuildRequires:  glib2-devel >= 2.32.0
+BuildRequires:  glib2-devel >= 2.40.0
 BuildRequires:  gnome-patch-translation
 BuildRequires:  libcap-devel
 BuildRequires:  libtool

++ gstreamer.spec ++
--- /var/tmp/diff_new_pack.kD2xxt/_old  2016-04-30 23:26:19.0 +0200
+++ /var/tmp/diff_new_pack.kD2xxt/_new  2016-04-30 23:26:19.0 +0200
@@ -19,7 +19,7 @@
 Name:   gstreamer
 %define _name   gstreamer
 %define build_doc 0
-Version:1.6.3
+Version:1.8.0
 Release:0
 %define gst_branch 1.0
 Summary:Streaming-Media Framework Runtime
@@ -40,7 +40,7 @@
 BuildRequires:  check-devel
 BuildRequires:  fdupes
 BuildRequires:  flex
-BuildRequires:  glib2-devel >= 2.32.0
+BuildRequires:  glib2-devel >= 2.40.0
 BuildRequires:  gnome-patch-translation
 BuildRequires:  libcap-devel
 BuildRequires:  libtool

++ gstreamer-1.6.3.tar.xz -> gstreamer-1.8.0.tar.xz ++
 163343 lines of diff (skipped)

++ gstreamer-rpm-prov.patch ++
--- /var/tmp/diff_new_pack.kD2xxt/_old  2016-04-30 23:26:21.0 +0200
+++ /var/tmp/diff_new_pack.kD2xxt/_new  2016-04-30 23:26:21.0 +0200
@@ -1,8 +1,17 @@
-Index: gstreamer-0.11.94/tools/gst-inspect.c
-===
 gstreamer-0.11.94.orig/tools/gst-inspect.c
-+++ gstreamer-0.11.94/tools/gst-inspect.c
-@@ -1350,9 +1350,225 @@ print_element_info (GstElementFactory *
+From 8dfeddab12777e90f8739f9dab33c62657465854 Mon Sep 17 00:00:00 2001
+From: Wim Taymans 
+Date: Mon, 4 Jan 2016 11:39:33 +0100
+Subject: [PATCH] inspect: Add RPM output format
+
+---
+ tools/gst-inspect.c | 276 +---
+ 1 file changed, 261 insertions(+), 15 deletions(-)
+
+diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
+index 845f52e..9084949 100644
+--- 

commit gstreamer-plugins-bad for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-plugins-bad for 
openSUSE:Factory checked in at 2016-04-30 23:26:34

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


Package is "gstreamer-plugins-bad"

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-bad/gstreamer-plugins-bad.changes  
2016-02-23 16:52:57.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new/gstreamer-plugins-bad.changes
 2016-04-30 23:26:36.0 +0200
@@ -1,0 +2,31 @@
+Sat Mar 26 19:10:39 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.8.0:
+  + Hardware-accelerated zero-copy video decoding on Android
+  + New video capture source for Android using the
+android.hardware.Camera API.
+  + Windows Media reverse playback support (ASF/WMV/WMA).
+  + New tracing system provides support for more sophisticated
+debugging tools.
+  + New high-level GstPlayer playback convenience API.
+  + Initial support for the new Vulkan API, see Matthew Waters'
+blog post for more details.
+  + Improved Opus audio codec support: Support for more than two
+channels; MPEG-TS demuxer/muxer can now handle Opus;
+sample-accurate encoding/decoding/transmuxing with Ogg,
+Matroska, ISOBMFF (Quicktime/MP4), and MPEG-TS as container;
+new codec utility functions for Opus header and caps handling
+in pbutils library. The Opus encoder/decoder elements were
+also moved to gst-plugins-base (from -bad), and the opus RTP
+depayloader/payloader to -good.
+  + GStreamer VAAPI module now released and maintained as part of
+the GStreamer project.
+  + Asset proxy support in the GStreamer Editing Services.
+  + Bugs fixed: bgo#763756, bgo#763793, bgo#763877, bgo#763974,
+bgo#764066, bgo#763262.
+- Add pkgconfig(xcb) and pkgconfig(wayland-scanner) BuildRequires:
+  New dependencies.
+- Add 2 new subpackages and handle them in post/un
+  + libsgtbadaudio and libgstplayer.
+
+---

Old:

  gst-plugins-bad-1.6.3-patched.tar.xz
  gst-plugins-bad-1.6.3.tar.xz

New:

  gst-plugins-bad-1.8.0-patched.tar.xz
  gst-plugins-bad-1.8.0.tar.xz



Other differences:
--
++ gstreamer-plugins-bad.spec ++
--- /var/tmp/diff_new_pack.xbWQzl/_old  2016-04-30 23:26:37.0 +0200
+++ /var/tmp/diff_new_pack.xbWQzl/_new  2016-04-30 23:26:37.0 +0200
@@ -27,7 +27,7 @@
 # Use rpmbuild -D 'BUILD_ORIG 1' to build original code.
 # Use rpmbuild -D 'BUILD_ORIG 1' -D 'BUILD_ORIG_ADDON 1' to build patched 
build plus original as addon.
 %define _name gst-plugins-bad
-Version:1.6.3
+Version:1.8.0
 Release:0
 # FIXME: re-enable opencv BuildRequires once bnc#748666 is fixed (we don't 
want to depend on libxine!)
 # FIXME: missing BuildRequires on libtiger (http://code.google.com/p/libtiger/)
@@ -55,10 +55,10 @@
 BuildRequires:  SDL-devel
 # needed for patch0
 BuildRequires:  gcc-c++
-BuildRequires:  glib2-devel >= 2.31.14
+BuildRequires:  glib2-devel >= 2.40.0
 BuildRequires:  gnome-common
-BuildRequires:  gstreamer-devel >= 1.6.3
-BuildRequires:  gstreamer-plugins-base-devel >= 1.6.3
+BuildRequires:  gstreamer-devel >= 1.8.0
+BuildRequires:  gstreamer-plugins-base-devel >= 1.8.0
 BuildRequires:  gtk-doc
 BuildRequires:  ladspa-devel
 BuildRequires:  libgme-devel
@@ -87,7 +87,7 @@
 BuildRequires:  pkgconfig(gtk+-x11-3.0) >= 2.91.3
 BuildRequires:  pkgconfig(gudev-1.0)
 BuildRequires:  pkgconfig(kate) >= 0.1.7
-BuildRequires:  pkgconfig(libass) >= 0.9.4
+BuildRequires:  pkgconfig(libass) >= 0.10.2
 BuildRequires:  pkgconfig(libcdaudio)
 %if 0%{?suse_version} != 1315
 BuildRequires:  pkgconfig(libchromaprint)
@@ -143,8 +143,10 @@
 BuildRequires:  pkgconfig(wayland-cursor) >= 1.0
 %if 0%{?suse_version} >= 1320 || 0%{?is_opensuse}
 BuildRequires:  pkgconfig(wayland-egl) >= 9.0
+BuildRequires:  pkgconfig(wayland-scanner) >= 1.4.0
 %endif
 BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xcb) >= 1.10
 # Not yet in openSUSE
 #BuildRequires:  pkgconfig(zbar) >= 0.9
 BuildRequires:  pkgconfig(zvbi-0.2)
@@ -242,6 +244,17 @@
 videos. Its plug-in-based architecture means that new data types or
 processing capabilities can be added simply by installing new plug-ins.
 
+%package -n libgstbadaudio-1_0-0
+Summary:GStreamer Streaming-Media Framework Plug-Ins
+Group:  System/Libraries
+
+%description -n libgstbadaudio-1_0-0
+GStreamer is a streaming media framework based on graphs of filters
+that operate on media data. Applications using this library can do
+anything media-related,from real-time sound processing to playing
+videos. Its plug-in-based 

commit intlfonts for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package intlfonts for openSUSE:Factory 
checked in at 2016-04-30 23:26:05

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


Package is "intlfonts"

Changes:

--- /work/SRC/openSUSE:Factory/intlfonts/intlfonts.changes  2014-08-05 
10:24:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.intlfonts.new/intlfonts.changes 2016-04-30 
23:26:06.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 15 08:51:08 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- spec file change to avoid transient build failure
+  about the 'for b' loop generating the *pcf.gz files.
+
+---



Other differences:
--
++ intlfonts.spec ++
--- /var/tmp/diff_new_pack.cPJWk1/_old  2016-04-30 23:26:07.0 +0200
+++ /var/tmp/diff_new_pack.cPJWk1/_new  2016-04-30 23:26:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package intlfonts
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -226,7 +226,7 @@
   dirs="$SUBDIRS $SUBDIRS_BIG $SUBDIRS_EFONT"
   for b in $(find $dirs -name '*.bdf') ; do
   p=${b%%.bdf}.pcf
-  test -s ${p}.gz || bdftopcf -o >(gzip -9cf > ${p}.gz) $b
+  test -s ${p}.gz || { bdftopcf -o ${p} $b && gzip -9f ${p}; }
   done
 
 %install





commit tcpdump for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package tcpdump for openSUSE:Factory checked 
in at 2016-04-30 23:25:32

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


Package is "tcpdump"

Changes:

--- /work/SRC/openSUSE:Factory/tcpdump/tcpdump.changes  2016-04-03 
23:04:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.tcpdump.new/tcpdump.changes 2016-04-30 
23:25:33.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr 15 01:28:38 CEST 2016 - r...@suse.de
+
+- fix filelist to fix build on s390/s390x 
+
+---



Other differences:
--
++ tcpdump.spec ++
--- /var/tmp/diff_new_pack.fONJMY/_old  2016-04-30 23:25:34.0 +0200
+++ /var/tmp/diff_new_pack.fONJMY/_new  2016-04-30 23:25:34.0 +0200
@@ -64,5 +64,8 @@
 %doc CHANGES CREDITS LICENSE README* *.awk
 %doc %{_mandir}/man?/*
 %{_sbindir}/tcpdump
+%ifarch s390 s390x
+%{_sbindir}/tcpdump-qeth
+%endif
 
 %changelog






commit upower for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package upower for openSUSE:Factory checked 
in at 2016-04-30 23:25:16

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


Package is "upower"

Changes:

--- /work/SRC/openSUSE:Factory/upower/upower.changes2016-02-23 
16:52:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.upower.new/upower.changes   2016-04-30 
23:25:28.0 +0200
@@ -1,0 +2,7 @@
+Thu Apr 14 23:24:57 UTC 2016 - zai...@opensuse.org
+
+- Add upower-fix-get-critical-crash.patch: daemon: fix
+  get_critical_action(), without this upower daemon will crash when
+  trying to take action (boo#975653, fdo#94262).
+
+---

New:

  upower-fix-get-critical-crash.patch



Other differences:
--
++ upower.spec ++
--- /var/tmp/diff_new_pack.aHQGX2/_old  2016-04-30 23:25:29.0 +0200
+++ /var/tmp/diff_new_pack.aHQGX2/_new  2016-04-30 23:25:29.0 +0200
@@ -27,6 +27,8 @@
 Release:0
 Url:http://upower.freedesktop.org/
 Source: 
http://upower.freedesktop.org/releases/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM upower-fix-get-critical-crash.patch boo#975653 fdo#94262 
zai...@opensuse.org -- Fix upower daemon crashing.
+Patch0: upower-fix-get-critical-crash.patch
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  gobject-introspection-devel >= 0.9.9
 BuildRequires:  gtk-doc >= 1.11
@@ -91,6 +93,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 export V=1

++ upower-fix-get-critical-crash.patch ++
>From 28cee8e2845b094488c337c4ecfa84ada0b6be60 Mon Sep 17 00:00:00 2001
From: Martin Pitt 
Date: Tue, 23 Feb 2016 09:51:07 +0100
Subject: daemon: fix get_critical_action()

Fix copy error from e7e9156f that called the wrong _complete_ function
for up_daemon_get_critical_action().

https://bugs.freedesktop.org/show_bug.cgi?id=94262

diff --git a/src/up-daemon.c b/src/up-daemon.c
index be14cbe..e95f904 100644
--- a/src/up-daemon.c
+++ b/src/up-daemon.c
@@ -435,8 +435,8 @@ up_daemon_get_critical_action (UpExportedDaemon *skeleton,
   GDBusMethodInvocation *invocation,
   UpDaemon *daemon)
 {
-   up_exported_daemon_complete_get_display_device (skeleton, invocation,
-   
up_backend_get_critical_action (daemon->priv->backend));
+   up_exported_daemon_complete_get_critical_action (skeleton, invocation,
+
up_backend_get_critical_action (daemon->priv->backend));
return TRUE;
 }
 
-- 
cgit v0.10.2





commit librevenge for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package librevenge for openSUSE:Factory 
checked in at 2016-04-30 23:24:59

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


Package is "librevenge"

Changes:

--- /work/SRC/openSUSE:Factory/librevenge/librevenge.changes2016-01-13 
22:44:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.librevenge.new/librevenge.changes   
2016-04-30 23:25:01.0 +0200
@@ -1,0 +2,8 @@
+Fri Apr 15 07:54:39 UTC 2016 - dims...@opensuse.org
+
+- Do not BuildRequire gdb: there is no need to be ordered behind
+  gdb in the build tree. Configure does check for the presence of
+  the gdb binary, but the detected value is not used in the entire
+  source tree.
+
+---



Other differences:
--
++ librevenge.spec ++
--- /var/tmp/diff_new_pack.cCvFqJ/_old  2016-04-30 23:25:01.0 +0200
+++ /var/tmp/diff_new_pack.cCvFqJ/_new  2016-04-30 23:25:01.0 +0200
@@ -30,7 +30,6 @@
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  gdb
 BuildRequires:  pkg-config
 BuildRequires:  xz
 BuildRequires:  pkgconfig(cppunit)




commit libmicrohttpd for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libmicrohttpd for openSUSE:Factory 
checked in at 2016-04-30 23:24:43

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


Package is "libmicrohttpd"

Changes:

--- /work/SRC/openSUSE:Factory/libmicrohttpd/libmicrohttpd.changes  
2015-12-23 08:48:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmicrohttpd.new/libmicrohttpd.changes 
2016-04-30 23:24:45.0 +0200
@@ -1,0 +2,9 @@
+Thu Apr 14 18:10:40 UTC 2016 - mplus...@suse.com
+
+- Update to 0.9.49
+  * See provided Changelog for details
+- Fix typo in previous changelog entry
+- Refresh patches
+- Use pkgconfig style dependencies
+
+---
@@ -4 +13 @@
-- Update to 0.9.4
+- Update to 0.9.48

Old:

  libmicrohttpd-0.9.48.tar.gz
  libmicrohttpd-0.9.48.tar.gz.sig

New:

  libmicrohttpd-0.9.49.tar.gz
  libmicrohttpd-0.9.49.tar.gz.sig



Other differences:
--
++ libmicrohttpd.spec ++
--- /var/tmp/diff_new_pack.dmS5YQ/_old  2016-04-30 23:24:46.0 +0200
+++ /var/tmp/diff_new_pack.dmS5YQ/_new  2016-04-30 23:24:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmicrohttpd
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010,2011,2012  Stephan Kleine
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,7 @@
 
 %global libmicrohttpd libmicrohttpd12
 Name:   libmicrohttpd
-Version:0.9.48
+Version:0.9.49
 Release:0
 Summary:Small Embeddable HTTP Server Library
 License:LGPL-2.1+
@@ -33,15 +33,15 @@
 Patch2: libmicrohttpd_test_data.patch
 BuildRequires:  curl
 BuildRequires:  file-devel
-BuildRequires:  libcurl-devel
 BuildRequires:  libgcrypt-devel >= 1.2.4
-BuildRequires:  libgnutls-devel
-BuildRequires:  libtasn1-devel
 BuildRequires:  libtool
 BuildRequires:  makeinfo
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
 BuildRequires:  socat
+BuildRequires:  pkgconfig(gnutls)
+BuildRequires:  pkgconfig(libcurl)
+BuildRequires:  pkgconfig(libtasn1)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -72,7 +72,7 @@
 
 %package -n %{libmicrohttpd}
 Summary:Small embeddable http server library
-Group:  System/libraries
+Group:  System/Libraries
 
 %description -n %{libmicrohttpd}
 Shared library for %{name} (%{summary}).
@@ -81,7 +81,8 @@
 Summary:Small Embeddable HTTP Server Library
 Group:  Development/Libraries/C and C++
 Requires:   %{libmicrohttpd} = %{version}
-Requires:   libgnutls-devel
+Requires:   pkg-config
+Requires:   pkgconfig(gnutls)
 Requires(post): info
 Requires(preun): info
 
@@ -91,8 +92,8 @@
 
 %prep
 %setup -q
-%patch1 -p1
-%patch2 -p1
+%patch1
+%patch2
 
 %build
 %configure \
@@ -108,7 +109,7 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %check
@@ -116,7 +117,6 @@
 make -j 1 check
 
 %post -n %{libmicrohttpd} -p /sbin/ldconfig
-
 %postun -n %{libmicrohttpd} -p /sbin/ldconfig
 
 %post devel
@@ -137,7 +137,7 @@
 %{_includedir}/microhttpd.h
 %{_libdir}/%{name}.so
 %{_libdir}/pkgconfig/%{name}.pc
-%{_infodir}/%{name}*.info*
-%{_mandir}/man3/%{name}.3*
+%{_infodir}/%{name}*.info%{ext_info}
+%{_mandir}/man3/%{name}.3%{ext_man}
 
 %changelog

++ disable-stalling-test.patch ++
--- /var/tmp/diff_new_pack.dmS5YQ/_old  2016-04-30 23:24:46.0 +0200
+++ /var/tmp/diff_new_pack.dmS5YQ/_new  2016-04-30 23:24:46.0 +0200
@@ -1,7 +1,7 @@
-Index: libmicrohttpd-0.9.48/src/testcurl/test_start_stop.c
+Index: src/testcurl/test_start_stop.c
 ===
 libmicrohttpd-0.9.48.orig/src/testcurl/test_start_stop.c
-+++ libmicrohttpd-0.9.48/src/testcurl/test_start_stop.c
+--- src/testcurl/test_start_stop.c.orig
 src/testcurl/test_start_stop.c
 @@ -108,21 +108,6 @@ main (int argc, char *const *argv)
  {
unsigned int errorCount = 0;

++ libmicrohttpd-0.9.48.tar.gz -> libmicrohttpd-0.9.49.tar.gz ++
 8377 lines of diff (skipped)


++ libmicrohttpd_test_data.patch ++
--- /var/tmp/diff_new_pack.dmS5YQ/_old  2016-04-30 23:24:46.0 +0200
+++ /var/tmp/diff_new_pack.dmS5YQ/_new  2016-04-30 23:24:46.0 +0200
@@ -1,7 +1,7 @@
-Index: libmicrohttpd-0.9.48/src/testcurl/https/test_https_sni.c
+Index: src/testcurl/https/test_https_sni.c
 

commit bind for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package bind for openSUSE:Factory checked in 
at 2016-04-30 23:24:51

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


Package is "bind"

Changes:

--- /work/SRC/openSUSE:Factory/bind/bind.changes2016-03-18 
21:33:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.bind.new/bind.changes   2016-04-30 
23:24:53.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 14 09:56:18 UTC 2016 - lnus...@suse.de
+
+- remove BuildRequire libcap. That is only a legacy library, not
+  actually used for building. libcap-devel pulls in the right one.
+
+---



Other differences:
--
++ bind.spec ++
--- /var/tmp/diff_new_pack.XwvWUl/_old  2016-04-30 23:24:54.0 +0200
+++ /var/tmp/diff_new_pack.XwvWUl/_new  2016-04-30 23:24:54.0 +0200
@@ -46,7 +46,6 @@
 Patch101:   runidn.diff
 Patch102:   idnkit-powerpc-ltconfig.patch
 BuildRequires:  krb5-devel
-BuildRequires:  libcap
 BuildRequires:  libcap-devel
 BuildRequires:  libmysqlclient-devel
 BuildRequires:  libtool






commit ImageMagick for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package ImageMagick for openSUSE:Factory 
checked in at 2016-04-30 23:24:30

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


Package is "ImageMagick"

Changes:

--- /work/SRC/openSUSE:Factory/ImageMagick/ImageMagick.changes  2016-01-08 
15:22:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.ImageMagick.new/ImageMagick.changes 
2016-04-30 23:24:32.0 +0200
@@ -1,0 +2,11 @@
+Thu Apr 14 14:30:54 UTC 2016 - pgaj...@suse.com
+
+- Update to 6.9.3-8:
+  * Respect gravity when rendering text (e.g. convert -gravity center 
+my.txt).
+  * Return empty string for %d property and no directory.
+  * Return filename for the %i property.
+  * Fixed lost pixels in frequency space.
+  * etc. see ChangeLog
+
+---

Old:

  ImageMagick-6.9.3-0.tar.xz
  ImageMagick-6.9.3-0.tar.xz.asc

New:

  ImageMagick-6.9.3-8.tar.xz
  ImageMagick-6.9.3-8.tar.xz.asc



Other differences:
--
++ ImageMagick.spec ++
--- /var/tmp/diff_new_pack.KZi19M/_old  2016-04-30 23:24:33.0 +0200
+++ /var/tmp/diff_new_pack.KZi19M/_new  2016-04-30 23:24:33.0 +0200
@@ -63,7 +63,7 @@
 
 %define maj   6
 %define mfr_version   %{maj}.9.3
-%define mfr_revision  0
+%define mfr_revision  8
 %define quantum_depth 16
 %define source_version %{mfr_version}-%{mfr_revision}
 %define clibver   2

++ ImageMagick-6.7.6.1-no-dist-lzip.patch ++
--- /var/tmp/diff_new_pack.KZi19M/_old  2016-04-30 23:24:33.0 +0200
+++ /var/tmp/diff_new_pack.KZi19M/_new  2016-04-30 23:24:33.0 +0200
@@ -1,13 +1,13 @@
 Index: configure.ac
 ===
 configure.ac.orig  2015-01-16 14:05:25.789759058 +0100
-+++ configure.ac   2015-01-16 14:06:22.867489168 +0100
-@@ -44,7 +44,7 @@
+--- configure.ac.orig  2016-04-14 16:11:00.551271813 +0200
 configure.ac   2016-04-14 16:12:17.951272238 +0200
+@@ -49,7 +49,7 @@
  AX_PREFIX_CONFIG_H([magick/magick-baseconfig.h],[MagickCore])
  AC_CANONICAL_SYSTEM
  AC_CANONICAL_TARGET
--AM_INIT_AUTOMAKE([1.12 nostdinc color-tests foreign parallel-tests 
silent-rules subdir-objects dist-bzip2 dist-lzip dist-xz dist-zip])
-+AM_INIT_AUTOMAKE([1.12 nostdinc color-tests foreign parallel-tests 
silent-rules subdir-objects dist-bzip2 dist-xz dist-zip])
- m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+-AM_INIT_AUTOMAKE([foreign color-tests -Wall -Wno-portability subdir-objects 
dist-bzip2 dist-lzip dist-xz dist-zip tar-ustar])
++AM_INIT_AUTOMAKE([foreign color-tests -Wall -Wno-portability subdir-objects 
dist-bzip2 dist-xz dist-zip tar-ustar])
+ AM_SILENT_RULES([yes])
  
  #

++ ImageMagick-6.9.3-0.tar.xz -> ImageMagick-6.9.3-8.tar.xz ++
/work/SRC/openSUSE:Factory/ImageMagick/ImageMagick-6.9.3-0.tar.xz 
/work/SRC/openSUSE:Factory/.ImageMagick.new/ImageMagick-6.9.3-8.tar.xz differ: 
char 27, line 1





commit libcap1 for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libcap1 for openSUSE:Factory checked 
in at 2016-04-30 23:24:17

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


Package is "libcap1"

Changes:

--- /work/SRC/openSUSE:Factory/libcap1/libcap1.changes  2014-10-05 
20:27:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.libcap1.new/libcap1.changes 2016-04-30 
23:24:18.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 14 09:59:26 UTC 2016 - lnus...@suse.de
+
+- Don't provide libcap as that leads to confusion with the libcap
+  package that is actually libcap2
+
+---



Other differences:
--
++ libcap1.spec ++
--- /var/tmp/diff_new_pack.D5FA5B/_old  2016-04-30 23:24:19.0 +0200
+++ /var/tmp/diff_new_pack.D5FA5B/_new  2016-04-30 23:24:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libcap1
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -42,7 +42,6 @@
 Obsoletes:  libcap-64bit
 %endif
 #
-Provides:   libcap = %{version}
 # 10.2 had libcap 1.92, 10.3 had libcap 1.10
 Obsoletes:  libcap <= 1.92
 






commit powerpc-utils for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package powerpc-utils for openSUSE:Factory 
checked in at 2016-04-30 23:24:09

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


Package is "powerpc-utils"

Changes:

--- /work/SRC/openSUSE:Factory/powerpc-utils/powerpc-utils.changes  
2016-04-03 23:04:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.powerpc-utils.new/powerpc-utils.changes 
2016-04-30 23:24:10.0 +0200
@@ -1,0 +2,12 @@
+Thu Apr 14 11:38:50 UTC 2016 - jloe...@suse.com
+
+- version update to 1.3.1 (FATE#319933)
+
+- modified patches:
+  * ofpathname_powernv.patch
+  * powerpc-utils-lsprop.patch
+
+- removed patches:
+  * 0001-nvram-Correct-valid-partition-name-checking.patch
+
+---

Old:

  0001-nvram-Correct-valid-partition-name-checking.patch
  powerpc-utils-1.3.0.tar.gz

New:

  powerpc-utils-1.3.1.tar.gz



Other differences:
--
++ powerpc-utils.spec ++
--- /var/tmp/diff_new_pack.x2O2rJ/_old  2016-04-30 23:24:11.0 +0200
+++ /var/tmp/diff_new_pack.x2O2rJ/_new  2016-04-30 23:24:11.0 +0200
@@ -31,7 +31,7 @@
 BuildRequires:  automake
 BuildRequires:  librtas-devel
 BuildRequires:  zlib-devel
-Version:1.3.0
+Version:1.3.1
 Release:0
 Url:https://github.com/nfont/powerpc-utils
 Summary:Utilities for PowerPC Hardware
@@ -43,7 +43,6 @@
 Source1:nvsetenv
 Patch1: powerpc-utils-lsprop.patch
 Patch2: ofpathname_powernv.patch
-Patch3: 0001-nvram-Correct-valid-partition-name-checking.patch
 ExclusiveArch:  ppc ppc64 ppc64le
 
 %description
@@ -54,7 +53,6 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 %build
 ./autogen.sh

++ ofpathname_powernv.patch ++
--- /var/tmp/diff_new_pack.x2O2rJ/_old  2016-04-30 23:24:11.0 +0200
+++ /var/tmp/diff_new_pack.x2O2rJ/_new  2016-04-30 23:24:11.0 +0200
@@ -1,8 +1,8 @@
-Index: powerpc-utils-1.2.26/scripts/ofpathname
+Index: powerpc-utils-1.3.1/scripts/ofpathname
 ===
 powerpc-utils-1.2.26.orig/scripts/ofpathname
-+++ powerpc-utils-1.2.26/scripts/ofpathname
-@@ -1473,7 +1473,7 @@ of2l_fc()
+--- powerpc-utils-1.3.1.orig/scripts/ofpathname
 powerpc-utils-1.3.1/scripts/ofpathname
+@@ -1626,7 +1626,7 @@ of2l_nvme()
  . $PSERIES_PLATFORM
  if [[ $platform = $PLATFORM_POWERNV ]]; then
echo "$OFPATHNAME: is not supported on the $platform_name platform"

++ powerpc-utils-1.3.0.tar.gz -> powerpc-utils-1.3.1.tar.gz ++
 3690 lines of diff (skipped)

++ powerpc-utils-lsprop.patch ++
--- /var/tmp/diff_new_pack.x2O2rJ/_old  2016-04-30 23:24:11.0 +0200
+++ /var/tmp/diff_new_pack.x2O2rJ/_new  2016-04-30 23:24:11.0 +0200
@@ -1,8 +1,8 @@
-Index: powerpc-utils-1.2.26/src/lsprop.c
+Index: powerpc-utils-1.3.1/src/lsprop.c
 ===
 powerpc-utils-1.2.26.orig/src/lsprop.c
-+++ powerpc-utils-1.2.26/src/lsprop.c
-@@ -16,7 +16,7 @@
+--- powerpc-utils-1.3.1.orig/src/lsprop.c
 powerpc-utils-1.3.1/src/lsprop.c
+@@ -25,7 +25,7 @@
  #include 
  
  int recurse;




commit argyllcms for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package argyllcms for openSUSE:Factory 
checked in at 2016-04-30 23:23:36

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


Package is "argyllcms"

Changes:

--- /work/SRC/openSUSE:Factory/argyllcms/argyllcms.changes  2015-02-27 
11:09:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.argyllcms.new/argyllcms.changes 2016-04-30 
23:23:38.0 +0200
@@ -1,0 +2,133 @@
+Wed Apr 13 09:40:00 UTC 2016 - lnus...@suse.de
+
+- BuildRequire systemd-rpm-macros which defines _udevrulesdir for us
+
+---
+Tue Nov 24 20:16:44 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.8.3
+  * Added SpyderCheckr24 scaning .cht and .cie files.
+  * Fixed USB problem with i1pro (Rev B & D ?), where communications 
+would occasionally break down on fast systems.
+  * Added another fixed display intergration time to i1pro non-adaptive
+emission mode to cope with higher brightness displays.
+  * Added workaround for i1d3 Rev. B status code 0x83 on very low 
+light measurement
+  * Fixed minor bug in i1d3.c that truncated serial number string.
+  * Fixed bug in Klein K10 driver - adaptive measurement wasn't properly 
+using all the extra measurements.
+  * Improved Klein K10 driver to be more robust when lights off command 
+returns bogus error codes, or causes a cascade of bogus measurement 
+errors.
+  * Added workaround for OS X 10.9+ "App Nap" problem.
+  * Added maximum sensor frequency check for Spyder & i1d3 drivers, 
+so that erronious readings due to excessive brightness can't be missed.
+  * Changed chartread so that it doesn't warn of a possible wrong strip
+being read, nor allows bi-directional strip reading, if "printtarg -r" 
+was used. A warning will be issued if "printtarg -r" was used, and 
+"chartread -B" wasn't used.
+  * Fixed collink for eeColor Full range RGB to use output curve 
+("second" 1D curves) to compensate for cLUT being wired for 1.0 
+output from 1.0 input.
+  * Added "lp" gamut mapping intent :- Luminance Preserving Perceptual, 
+for Photographers concerned with maintaining tonal variations.
+  * Fixed bugs in image specific gamut mapping that were degrading 
+the accuracy of the result.
+  * Re-wrote gamut smoothing code, and re-tuned it to behave similarly 
+to the V1.8.2 release.
+  * Changed default viewing condition glare to 5%, to smooth out shadow tone 
curve.
+  * Reduced the level of Helmholtz-Kohlrausch effect in CIECAM02 
+implementation in the light of visual experiments.
+- Changes from version 1.8.2
+  * Fixed endless loop bug in alternate calibration selectors code.
+- Changes from version 1.8.1
+  * Fixed bug in "spec2cie -n" wrong field indexes were being used.
+  * Fixed colorimeter calibration selectors to add in alternate 
+selectors if the letters are free.
+- Changes from version 1.8.0
+  * Added support for the Image Engineering EX1 spectroradiometer.
+  * Added support for the SwatchMate Cube reflective colorimeter, 
+with improved accuracy.
+  * Added Added Television Lighting Consistency Index (EBU TLCI-2012 Qa) 
+to spotread and specplot output.
+  * Added R9 value to CRI value in spotread and specplot output.
+  * Added workaround for JETI specbos having been calibrated by
+a 3rd party, and its calibrated range being out of sync with 
+its claimed range.
+  * Added support for "EMISINPUT" type .ti3 file.
+  * Build using OpenSSL rather than axTLS if it is built on Linux.
+  * Fixed stack space problem in OS X UI programs by expanding main 
+thread proxy to have 8MB instead of the default 512K.
+  * Updated built in libtiff to V4.0.4beta.
+  * Changed CGATS format to not emit unknown keyword declaration ("KEYWORD")
+by default.
+  * Added inst_calc_cond_mask to inst.h to allow for flags in calibration 
+conditions. A consequence of this is that calc needs to be masked with 
+this when comparing against a specific condition, and the 
inst_calc_optional_flag
+should be cleared if it is set, before callint inst->calibrate() if the 
+user wants to proceed with a particular calibration.
+  * Fixed bug with dispcal -e N
+  * Fixed bug in xicclu -fg and -kp
+  * Added dispcal -x x option to allow reading a chart and manually entering
+the XYZ values.
+  * Fix spyder4 & 5 bug where some display types were set as refresh 
+when they shouldn't be.
+  * Fix collink "Warning :- RGB black hack trigger more than once!" 
+when -b is used with input video encoding (-e).
+  * Changed colprof so that the default ICC description is the base 
+filename rather than the whole file path.
+  * Fix technology type and display type 

commit open-iscsi for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package open-iscsi for openSUSE:Factory 
checked in at 2016-04-30 23:23:18

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


Package is "open-iscsi"

Changes:

--- /work/SRC/openSUSE:Factory/open-iscsi/open-iscsi.changes2016-01-23 
01:15:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.open-iscsi.new/open-iscsi.changes   
2016-04-30 23:23:20.0 +0200
@@ -1,0 +2,9 @@
+Wed Apr 13 17:06:42 UTC 2016 - ldun...@suse.com
+
+- Ported 3 changes from SLE 12 that are not upstream, but
+  are needed here, as there are in SLE:
+  * Fixed systemd start of iscsi.service (bsc#897565)
+  * iscsiuio: ARP table too small when switches involve
+  * Discovery via non-tcp transport needs IPC set.
+
+---



Other differences:
--
++ open-iscsi-Factory-latest.diff.bz2 ++
--- /var/tmp/diff_new_pack.eWf2A4/_old  2016-04-30 23:23:21.0 +0200
+++ /var/tmp/diff_new_pack.eWf2A4/_new  2016-04-30 23:23:21.0 +0200
@@ -1480,7 +1480,7 @@
  [ "$iscsiuio_pid" ] && kill -TERM $iscsiuio_pid
 diff --git a/etc/systemd/iscsi.service b/etc/systemd/iscsi.service
 new file mode 100644
-index ..0239ef6936a5
+index ..7aa655f1f32d
 --- /dev/null
 +++ b/etc/systemd/iscsi.service
 @@ -0,0 +1,15 @@
@@ -1492,7 +1492,7 @@
 +
 +[Service]
 +Type=oneshot
-+ExecStart=/sbin/iscsiadm -m node --loginall=automatic
++ExecStart=-/sbin/iscsiadm -m node --loginall=automatic
 +ExecStop=/sbin/iscsiadm -m node --logoutall=automatic
 +SuccessExitStatus=21
 +RemainAfterExit=true
@@ -8837,7 +8837,7 @@
 +  context->flags |= IPV6_FLAGS_DISABLE_DHCPV6;
  }
 diff --git a/iscsiuio/src/uip/ipv6.h b/iscsiuio/src/uip/ipv6.h
-index 167f5f69383b..bc63762ebc55 100644
+index 167f5f69383b..35864377d9f3 100644
 --- a/iscsiuio/src/uip/ipv6.h
 +++ b/iscsiuio/src/uip/ipv6.h
 @@ -1,5 +1,6 @@
@@ -9203,7 +9203,8 @@
 +  struct ipv6_addr default_router;
 +  struct ipv6_prefix_entry *addr_list;
u8_t hop_limit;
- #define UIP_ARPTAB_SIZE 8
+-#define UIP_ARPTAB_SIZE 8
++#define UIP_ARPTAB_SIZE 16
  
struct uip_stack *ustack;
  #define MAX_MCADDR_TABLE 5
@@ -11869,7 +11870,7 @@
return 0;
  }
 diff --git a/iscsiuio/src/uip/uipopt.h b/iscsiuio/src/uip/uipopt.h
-index c91ec54c2876..946fce284926 100644
+index c91ec54c2876..bcc8949b8f16 100644
 --- a/iscsiuio/src/uip/uipopt.h
 +++ b/iscsiuio/src/uip/uipopt.h
 @@ -53,7 +53,6 @@
@@ -11898,6 +11899,15 @@
  /**
   * \name UDP configuration options
   * @{
+@@ -342,7 +341,7 @@
+ #ifdef UIP_CONF_ARPTAB_SIZE
+ #define UIP_ARPTAB_SIZE UIP_CONF_ARPTAB_SIZE
+ #else
+-#define UIP_ARPTAB_SIZE 8
++#define UIP_ARPTAB_SIZE 16
+ #endif
+ 
+ /**
 @@ -356,7 +355,7 @@
  
  /** @} */
@@ -20854,11 +20864,20 @@
  
  echo "$RPM src rpm copied to $DESTDIR"
 diff --git a/rpm/open-iscsi.changes b/rpm/open-iscsi.changes
-index 2e21afc6bc7b..ac5ff5f591f4 100644
+index 2e21afc6bc7b..140df4d6d0c5 100644
 --- a/rpm/open-iscsi.changes
 +++ b/rpm/open-iscsi.changes
-@@ -1,4 +1,467 @@
+@@ -1,4 +1,476 @@
  ---
++Wed Apr 13 17:06:42 UTC 2016 - ldun...@suse.com
++
++- Ported 3 changes from SLE 12 that are not upstream, but
++  are needed here, as there are in SLE:
++  * Fixed systemd start of iscsi.service (bsc#897565)
++  * iscsiuio: ARP table too small when switches involve
++  * Discovery via non-tcp transport needs IPC set.
++
++---
 +Thu Jan 14 23:56:07 UTC 2016 - ldun...@suse.com
 +
 +- Synced with current upstream as of today, which included 29
@@ -20900,7 +20919,7 @@
 +  * Allow setting host params to return EAGAIN errors.
 +
 +---
-+Thu Jan 07 01:39:10 UTC 16 - ldun...@suse.com
++Thu Jan 07 01:39:10 UTC 2016 - ldun...@suse.com
 +
 +- Removing creation of the open-isns RPM, since it
 +  is now created in its own package
@@ -21325,7 +21344,7 @@
  Fri Dec  9 15:09:01 CET 2011 - h...@suse.de
  
  - iscsiadm: Return correct error when login fails (bnc#715071)
-@@ -40,6 +503,11 @@ Fri Nov  4 09:15:52 CET 2011 - h...@suse.de
+@@ -40,6 +512,11 @@ Fri Nov  4 09:15:52 CET 2011 - h...@suse.de
  - Stop iscsiuio when run inside initrd (bnc#728095)
  
  ---
@@ -21337,7 +21356,7 @@
  Mon Oct 24 09:13:19 CEST 2011 - h...@suse.de
  
  - Update iscsiuio to 0.7.0.14f (bnc#687392)
-@@ -101,6 +569,11 @@ Tue Jun 21 15:09:46 CEST 2011 - h...@suse.de
+@@ -101,6 +578,11 @@ Tue Jun 21 15:09:46 CEST 2011 - h...@suse.de
  - Include scripts for 

commit libapr-util1 for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package libapr-util1 for openSUSE:Factory 
checked in at 2016-04-30 23:23:54

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


Package is "libapr-util1"

Changes:

--- /work/SRC/openSUSE:Factory/libapr-util1/libapr-util1.changes
2016-02-17 12:14:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.libapr-util1.new/libapr-util1.changes   
2016-04-30 23:23:55.0 +0200
@@ -1,0 +2,5 @@
+Thu Apr  7 09:45:00 UTC 2016 - pgaj...@suse.com
+
+- require just posgresql-devel everywhere, it seems to work now
+
+---



Other differences:
--
++ libapr-util1.spec ++
--- /var/tmp/diff_new_pack.mmz7dV/_old  2016-04-30 23:23:56.0 +0200
+++ /var/tmp/diff_new_pack.mmz7dV/_new  2016-04-30 23:23:56.0 +0200
@@ -41,11 +41,7 @@
 BuildRequires:  openldap2-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig
-%if 0%{?suse_version} == 1315 && !0%{?is_opensuse}
-BuildRequires:  postgresql-devel < 9.4
-%else
 BuildRequires:  postgresql-devel >= 9.1.0
-%endif
 BuildRequires:  sqlite-devel
 %requires_gelibapr1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit libgltf for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

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

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


Package is "libgltf"

Changes:

--- /work/SRC/openSUSE:Factory/libgltf/libgltf.changes  2014-09-30 
19:41:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgltf.new/libgltf.changes 2016-04-30 
23:23:11.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr 13 10:45:39 UTC 2016 - fv...@suse.com
+
+- Update to libgltf-0.0.2 (LO 4.3.3+)
+libgltf-0.0.1.tar.bz2 -> libgltf-0.0.2.tar.bz2
+
+---

Old:

  libgltf-0.0.1.tar.bz2

New:

  libgltf-0.0.2.tar.bz2



Other differences:
--
++ libgltf.spec ++
--- /var/tmp/diff_new_pack.vNBZKM/_old  2016-04-30 23:23:12.0 +0200
+++ /var/tmp/diff_new_pack.vNBZKM/_new  2016-04-30 23:23:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libgltf
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define libname libgltf-0_0-0
 Name:   libgltf
-Version:0.0.1
+Version:0.0.2
 Release:0
 Summary:C++ Library for rendering OpenGL models stored in glTF format
 License:MPL-2.0

++ libgltf-0.0.1.tar.bz2 -> libgltf-0.0.2.tar.bz2 ++
 12605 lines of diff (skipped)




commit gettext-runtime for openSUSE:Factory

2016-04-30 Thread h_root
Hello community,

here is the log from the commit of package gettext-runtime for openSUSE:Factory 
checked in at 2016-04-30 23:22:28

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


Package is "gettext-runtime"

Changes:

--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-csharp.changes   
2015-10-14 16:34:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-csharp.changes  
2016-04-30 23:22:30.0 +0200
@@ -1,0 +2,11 @@
+Mon Apr  4 19:15:53 UTC 2016 - astie...@suse.com
+
+- GNU gettext 0.19.7:
+  * can now load custom string extraction rules in XML
+Internationalization Tag Set (ITS) standard
+  * the existing XML-based language scanners (Glade, GSettings, and
+AppData) rewritten using ITS
+  * Add msgfmt --xml option to merge translations back to the
+original XML document.
+
+---
gettext-java.changes: same change
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime-mini.changes 
2016-04-17 22:14:53.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime-mini.changes
2016-04-30 23:22:30.0 +0200
@@ -1,0 +2,16 @@
+Fri Apr 22 19:34:10 UTC 2016 - astie...@suse.com
+
+- drop gettext-runtime-grep-2.24.patch, no longer required for 2.25
+
+---
+Sun Apr 17 17:56:27 UTC 2016 - astie...@suse.com
+
+- GNU gettext 0.19.7:
+  * can now load custom string extraction rules in XML
+Internationalization Tag Set (ITS) standard
+  * the existing XML-based language scanners (Glade, GSettings, and
+AppData) rewritten using ITS
+  * Add msgfmt --xml option to merge translations back to the
+original XML document.
+
+---
gettext-runtime.changes: same change

Old:

  gettext-0.19.6.tar.xz
  gettext-0.19.6.tar.xz.sig
  gettext-runtime-grep-2.24.patch

New:

  gettext-0.19.7.tar.xz
  gettext-0.19.7.tar.xz.sig



Other differences:
--
++ gettext-csharp.spec ++
--- /var/tmp/diff_new_pack.aztGZJ/_old  2016-04-30 23:22:32.0 +0200
+++ /var/tmp/diff_new_pack.aztGZJ/_new  2016-04-30 23:22:32.0 +0200
@@ -29,7 +29,7 @@
 BuildRequires:  xz
 Requires:   mono
 Url:http://www.gnu.org/software/gettext/
-Version:0.19.6
+Version:0.19.7
 Release:0
 Summary:Native Language Support (NLS) for C#
 License:LGPL-2.1+

++ gettext-java.spec ++
--- /var/tmp/diff_new_pack.aztGZJ/_old  2016-04-30 23:22:32.0 +0200
+++ /var/tmp/diff_new_pack.aztGZJ/_new  2016-04-30 23:22:32.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  tcl
 BuildRequires:  xz
 Url:http://www.gnu.org/software/gettext/
-Version:0.19.6
+Version:0.19.7
 Release:0
 Summary:Java Support for Native Language Support (NLS)
 License:LGPL-2.1+

++ gettext-runtime-mini.spec ++
--- /var/tmp/diff_new_pack.aztGZJ/_old  2016-04-30 23:22:32.0 +0200
+++ /var/tmp/diff_new_pack.aztGZJ/_new  2016-04-30 23:22:32.0 +0200
@@ -20,7 +20,7 @@
 %bcond_without mini
 
 Name:   gettext-runtime-mini
-Version:0.19.6
+Version:0.19.7
 Release:0
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
@@ -70,8 +70,6 @@
 Patch9: gettext-needlessly_init_vars.patch
 # PATCH-FIX-UPSTREAM boo#941629 -- p...@suse.com
 Patch11:boo941629-unnessary-rpath-on-standard-path.patch
-# PATCH-FIX-UPSTREAM gettext-runtime-grep-2.24.patch dims...@opensuse.org -- 
Fix testsuite execution with grep 2.24
-Patch12:gettext-runtime-grep-2.24.patch
 
 %description
 This package contains the intl library as well as tools that ease the
@@ -132,7 +130,6 @@
 %patch6 -p1
 %patch9
 %patch11 -p1
-%patch12 -p1
 
 %build
 # expect a couple "You should update your `aclocal.m4' by running aclocal."
@@ -286,6 +283,8 @@
 %_datadir/%pacname/styles
 %_datadir/%pacname/archive.dir.tar.xz
 %_datadir/aclocal/*
+%dir %{_datadir}/%{pacname}-%{version}
+%{_datadir}/%{pacname}-%{version}/its
 
 %files tools-doc
 %defattr(-,root,root)

++ gettext-runtime.spec ++
--- /var/tmp/diff_new_pack.aztGZJ/_old  2016-04-30 23:22:32.0 +0200
+++ /var/tmp/diff_new_pack.aztGZJ/_new  2016-04-30 23:22:32.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with mini
 
 Name:   gettext-runtime
-Version:0.19.6
+Version:0.19.7
 Release:0
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
@@ -70,8 +70,6 @@
 Patch9: gettext-needlessly_init_vars.patch
 # PATCH-FIX-UPSTREAM boo#941629 -- p...@suse.com
 

  1   2   >