commit mksusecd for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2016-08-13 18:30:53

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


Package is "mksusecd"

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2016-08-03 
11:45:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2016-08-13 
18:30:59.0 +0200
@@ -1,0 +2,9 @@
+Fri Aug 12 15:00:21 UTC 2016 - snw...@suse.com
+
+- extended help text and added some small fixes
+- fix choosing an add-on name
+- be less restrictive when generating add-on aliases
+- support creating add-ons on the target iso (bsc#991935)
+- 1.42
+
+---

Old:

  mksusecd-1.41.tar.xz

New:

  mksusecd-1.42.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.oj6DZE/_old  2016-08-13 18:30:59.0 +0200
+++ /var/tmp/diff_new_pack.oj6DZE/_new  2016-08-13 18:30:59.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mksusecd
-Version:1.41
+Version:1.42
 Release:0
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+
@@ -28,6 +28,7 @@
 BuildRequires:  libuuid-devel
 BuildRequires:  xz
 Requires:   checkmedia
+Requires:   createrepo
 Requires:   dosfstools
 Requires:   genisoimage
 Requires:   gpg2

++ mksusecd-1.41.tar.xz -> mksusecd-1.42.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.41/VERSION new/mksusecd-1.42/VERSION
--- old/mksusecd-1.41/VERSION   2016-08-02 14:31:06.0 +0200
+++ new/mksusecd-1.42/VERSION   2016-08-12 16:56:20.0 +0200
@@ -1 +1 @@
-1.41
+1.42
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.41/changelog new/mksusecd-1.42/changelog
--- old/mksusecd-1.41/changelog 2016-08-02 14:31:06.0 +0200
+++ new/mksusecd-1.42/changelog 2016-08-12 16:56:20.0 +0200
@@ -1,3 +1,9 @@
+2016-08-12:1.42
+   - extended help text and added some small fixes
+   - fix choosing an add-on name
+   - be less restrictive when generating add-on aliases
+   - support creating add-ons on the target iso (bsc #991935)
+
 2016-08-02:1.41
- catch error when we fail to unpack squashfs images
- handle modules.order and modules.builtin when updating a kernel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.41/mksusecd new/mksusecd-1.42/mksusecd
--- old/mksusecd-1.41/mksusecd  2016-08-02 14:31:06.0 +0200
+++ new/mksusecd-1.42/mksusecd  2016-08-12 16:56:20.0 +0200
@@ -157,6 +157,7 @@
 sub rerun_mkisofs;
 sub run_isohybrid;
 sub run_isozipl;
+sub run_createrepo;
 sub isols;
 sub find_magic;
 sub meta_iso;
@@ -192,6 +193,8 @@
 sub build_module_list;
 sub add_modules_to_initrd;
 sub replace_kernel_mods;
+sub new_products_xml;
+sub prepare_addon;
 
 my %config;
 my $sudo;
@@ -227,6 +230,10 @@
 my @opt_kernel_modules;
 my $opt_arch;
 my $opt_new_boot_entry;
+my @opt_addon_packages;
+my $opt_addon_name;
+my $opt_addon_alias;
+my $opt_addon_prio = 60;
 
 GetOptions(
   'create|c=s'   => sub { $opt_create = 1; $opt_dst = $_[1] },
@@ -273,6 +280,10 @@
   'modules=s{1,}'=> \@opt_kernel_modules,
   'arch=s'   => \$opt_arch,
   'add-entry=s'  => \$opt_new_boot_entry,
+  'addon=s{1,}'  => \@opt_addon_packages,
+  'addon-name=s' => \$opt_addon_name,
+  'addon-alias=s'=> \$opt_addon_alias,
+  'addon-prio=i' => \$opt_addon_prio,
   'save-temp'=> \$opt_save_temp,
   'verbose|v'=> sub { $opt_verbose++ },
   'version'  => sub { print "$VERSION\n"; exit 0 },
@@ -383,11 +394,13 @@
 
   if(!@sources) {
 my $msg = "no sources - nothing to do\n";
-$msg .= "Maybe you forgot '--' after --kernel or --modules?\n" if 
@opt_kernel_rpms || @opt_kernel_modules;
+if(@opt_kernel_rpms || @opt_kernel_modules || @opt_addon_packages) {
+  $msg .= "Maybe you forgot '--' after --kernel, --modules, or --addon?\n";
+}
 die $msg;
   }
 
-  $files = build_filelist;
+  build_filelist \@sources;
   $boot = analyze_boot;
   get_initrd_format;
   if($opt_sign && (
@@ -404,6 +417,9 @@
   $add_initrd = create_initrd;
   update_kernel_initrd;
   update_boot_options;
+
+  prepare_addon;
+
   sign_content if update_content;
   $todo = build_todo;
   set_mkisofs_metadata;
@@ -538,6 +554,18 @@
 instead. MODULE_LIST may be space or comma 
separated.
 Note: this option takes a 

commit duperemove for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package duperemove for openSUSE:Factory 
checked in at 2016-08-13 18:31:01

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


Package is "duperemove"

Changes:

--- /work/SRC/openSUSE:Factory/duperemove/duperemove.changes2016-04-08 
09:39:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.duperemove.new/duperemove.changes   
2016-08-13 18:31:07.0 +0200
@@ -1,0 +2,11 @@
+Fri Aug 12 23:03:06 UTC 2016 - mfas...@suse.com
+
+- Update to duperemove v0.11.beta1
+  - Greatly increased performance during extent search
+  - Hashfiles are reusable now, Duperemove will only scan files which have
+changed since the last time it was run.
+  - Better selection of target extent during dedupe
+- reduces fragmentation of deduped space
+  - Support for dedupe on xfs (experimental)
+
+---

Old:

  duperemove-0.10.tar.gz

New:

  duperemove-0.11.beta1.tar.gz



Other differences:
--
++ duperemove.spec ++
--- /var/tmp/diff_new_pack.WH9kPD/_old  2016-08-13 18:31:08.0 +0200
+++ /var/tmp/diff_new_pack.WH9kPD/_new  2016-08-13 18:31:08.0 +0200
@@ -18,7 +18,7 @@
 
 %define samename btrfs-extent-same
 Name:   duperemove
-Version:0.10
+Version:0.11.beta1
 Release:0
 Summary:Software to find duplicate extents in files and remove them
 License:GPL-2.0




commit ibus-libpinyin for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package ibus-libpinyin for openSUSE:Factory 
checked in at 2016-08-13 18:30:45

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


Package is "ibus-libpinyin"

Changes:

--- /work/SRC/openSUSE:Factory/ibus-libpinyin/ibus-libpinyin.changes
2015-12-29 12:59:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.ibus-libpinyin.new/ibus-libpinyin.changes   
2016-08-13 18:30:50.0 +0200
@@ -1,0 +2,14 @@
+Thu Aug 11 03:15:16 UTC 2016 - hillw...@opensuse.org
+
+- Fix lua build on openSUSE leap. 
+  * add ibus-libpinyin-build_lua_5.2.patch
+
+---
+Wed Aug 10 02:16:13 UTC 2016 - hillw...@opensuse.org
+
+- Update to 1.7.92
+  * use ibus 1.5.11
+  * use libpinyin 1.5.92
+  * work around getLookupCursor 
+
+---

Old:

  ibus-libpinyin-1.7.4.tar.gz

New:

  ibus-libpinyin-1.7.92.tar.gz
  ibus-libpinyin-build_lua_5.2.patch



Other differences:
--
++ ibus-libpinyin.spec ++
--- /var/tmp/diff_new_pack.1jrLNL/_old  2016-08-13 18:30:51.0 +0200
+++ /var/tmp/diff_new_pack.1jrLNL/_new  2016-08-13 18:30:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ibus-libpinyin
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2015 Hillwood Yang (hillw...@opensuse.org)
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,13 +18,15 @@
 
 
 Name:   ibus-libpinyin
-Version:1.7.4
+Version:1.7.92
 Release:0
 Summary:Intelligent Pinyin engine based on libpinyin for IBus
 License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:https://github.com/libpinyin/ibus-libpinyin
 Source: 
https://github.com/libpinyin/ibus-libpinyin/archive/%{version}/%{name}-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE hillw...@opensuse.org - fix lua build
+Patch0: ibus-libpinyin-build_lua_5.2.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  gettext-devel
@@ -39,7 +41,7 @@
 BuildRequires:  sqlite3-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gdk-3.0)
-BuildRequires:  pkgconfig(libpinyin) >= 1.0.99
+BuildRequires:  pkgconfig(libpinyin) >= 1.5.92
 Requires:   python-xdg
 Provides:   locale(ibus:zh_CN;zh_SG)
 %{ibus_requires}
@@ -54,6 +56,9 @@
 
 %prep
 %setup -q
+%if 0%{?suse_version} == 1315 || 0%{?suse_version} == 1320 || 
0%{?suse_version} <= 1310
+%patch0 -p1
+%endif
 
 %build
 NOCONFIGURE=1 ./autogen.sh

++ ibus-libpinyin-1.7.4.tar.gz -> ibus-libpinyin-1.7.92.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ibus-libpinyin-1.7.4/configure.ac 
new/ibus-libpinyin-1.7.92/configure.ac
--- old/ibus-libpinyin-1.7.4/configure.ac   2015-12-17 07:51:46.0 
+0100
+++ new/ibus-libpinyin-1.7.92/configure.ac  2016-08-02 07:42:29.0 
+0200
@@ -22,7 +22,7 @@
 m4_define([ibus_released], [1])
 m4_define([ibus_major_version], [1])
 m4_define([ibus_minor_version], [7])
-m4_define([ibus_micro_version], [4])
+m4_define([ibus_micro_version], [92])
 m4_define(ibus_maybe_datestamp,
 m4_esyscmd([if test x]ibus_released[ != x1; then date +.%Y%m%d | tr -d 
'\n\r'; fi]))
 
@@ -54,7 +54,7 @@
 
 # check ibus
 PKG_CHECK_MODULES(IBUS, [
-ibus-1.0 >= 1.4.0
+ibus-1.0 >= 1.5.11
 ])
 
 # check sqlite
@@ -68,7 +68,7 @@
 fi
 
 PKG_CHECK_MODULES(LIBPINYIN, [
-libpinyin >= 1.2.91
+libpinyin >= 1.5.92
 ], [enable_libpinyin=yes])
 
 LIBPINYIN_DATADIR=`$PKG_CONFIG --variable=pkgdatadir libpinyin`
@@ -133,10 +133,6 @@
 
 AM_GLIB_GNU_GETTEXT
 
-PKG_CHECK_MODULES(GDK3, [
-gdk-3.0
-])
-
 # --disable-lua-extension
 AC_ARG_ENABLE(lua-extension,
 AS_HELP_STRING([--disable-lua-extension],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ibus-libpinyin-1.7.4/lua/lua-plugin-init.c 
new/ibus-libpinyin-1.7.92/lua/lua-plugin-init.c
--- old/ibus-libpinyin-1.7.4/lua/lua-plugin-init.c  2015-12-17 
07:51:46.0 +0100
+++ new/ibus-libpinyin-1.7.92/lua/lua-plugin-init.c 2016-08-02 
07:42:29.0 +0200
@@ -26,11 +26,8 @@
 
 #include "lua-plugin.h"
 
-#if LUA_VERSION_NUM >= 502
-/* ugly hack for lua 5.2 */
-
+#ifndef lua_objlen
 #define lua_objlen lua_rawlen
-
 #endif
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ibus-libpinyin-1.7.4/lua/lua-plugin.c 
new/ibus-libpinyin-1.7.92/lua/lua-plugin.c
--- old/ibus-libpinyin-1.7.4/lua/lua

commit rkward for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package rkward for openSUSE:Factory checked 
in at 2016-08-13 18:30:48

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


Package is "rkward"

Changes:

--- /work/SRC/openSUSE:Factory/rkward/rkward.changes2016-07-01 
10:00:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.rkward.new/rkward.changes   2016-08-13 
18:30:53.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug 12 08:45:11 UTC 2016 - astie...@suse.com
+
+- rwkard needs the R-Base version it was compiled with - boo993268
+
+---



Other differences:
--
++ rkward.spec ++
--- /var/tmp/diff_new_pack.biZiur/_old  2016-08-13 18:30:55.0 +0200
+++ /var/tmp/diff_new_pack.biZiur/_new  2016-08-13 18:30:55.0 +0200
@@ -29,7 +29,6 @@
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
-BuildRequires:  R-base
 BuildRequires:  R-base-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -38,7 +37,8 @@
 BuildRequires:  kde4-filesystem
 BuildRequires:  libkde4-devel
 BuildRequires:  update-desktop-files
-Requires:   R-base
+# rwkard needs the R-Base version it was compiled with - boo993268
+%requires_eqR-Base
 Requires:   kdebase4-runtime
 
 %description




commit mysql-workbench for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package mysql-workbench for openSUSE:Factory 
checked in at 2016-08-13 18:30:04

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


Package is "mysql-workbench"

Changes:

--- /work/SRC/openSUSE:Factory/mysql-workbench/mysql-workbench.changes  
2016-07-27 16:12:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.mysql-workbench.new/mysql-workbench.changes 
2016-08-13 18:30:05.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug  5 15:48:58 UTC 2016 - mimi...@gmail.com
+
+- fix build on Leap:42.2 -- force -std=c++11 
+- add _constraints file
+
+---

New:

  _constraints



Other differences:
--
++ mysql-workbench.spec ++
--- /var/tmp/diff_new_pack.ucKxXk/_old  2016-08-13 18:30:06.0 +0200
+++ /var/tmp/diff_new_pack.ucKxXk/_new  2016-08-13 18:30:06.0 +0200
@@ -126,7 +126,7 @@
 %patch8 -p1
 
 %build
-# Drop the --no-undefined from LINKER flags as the cmakelists are too broken
+export CXXFLAGS="%{optflags} -std=c++11"
 %cmake \
 -DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now -pie" \
 -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now -pie" \

++ _constraints ++

  

  8

  





commit libpinyin for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package libpinyin for openSUSE:Factory 
checked in at 2016-08-13 18:30:43

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


Package is "libpinyin"

Changes:

--- /work/SRC/openSUSE:Factory/libpinyin/libpinyin.changes  2015-12-29 
12:59:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.libpinyin.new/libpinyin.changes 2016-08-13 
18:30:48.0 +0200
@@ -1,0 +2,17 @@
+Wed Aug 10 01:52:53 UTC 2016 - hillw...@opensuse.org
+
+- Update to 1.5.92
+  * use model12.text.tar.gz
+  * fixes pinyin_get_character_offset function
+  * fixes _get_char_offset_recur function
+  * fixes _pre_compute_tokens function
+  * fixes fill_matrix function
+  * fixes pinyin_get_right_pinyin_offset function
+  * fixes fill_matrix function
+  * clean up FullPinyinParser2  
+- Update libpinyin-avoid_download_at_buildtime.patch
+- Update baselibs.conf
+- Add libpinyin-fix_double_pinyin.patch
+  * fix mapper for double pinyin
+
+---

Old:

  _service
  _servicedata
  libpinyin-1.3.0+git20151204.7b790c9.tar.xz
  model11.text.tar.gz

New:

  libpinyin-1.5.92.tar.gz
  libpinyin-fix_double_pinyin.patch
  model12.text.tar.gz



Other differences:
--
++ libpinyin.spec ++
--- /var/tmp/diff_new_pack.LhjhFw/_old  2016-08-13 18:30:49.0 +0200
+++ /var/tmp/diff_new_pack.LhjhFw/_new  2016-08-13 18:30:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libpinyin
 #
-# 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,19 +16,21 @@
 #
 
 
-%define soname 7
+%define soname 9
 Name:   libpinyin
-Version:1.3.0+git20151204.7b790c9
+Version:1.5.92
 Release:0
 Summary:Intelligent Pinyin IME
 License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:https://github.com/libpinyin/libpinyin
-Source: %{name}-%{version}.tar.xz
-Source1:
http://netix.dl.sourceforge.net/project/libpinyin/models/model11.text.tar.gz
+Source: %{name}-%{version}.tar.gz
+Source1:
http://netix.dl.sourceforge.net/project/libpinyin/models/model12.text.tar.gz
 Source99:   baselibs.conf
 # PATCH-FIX-OPENSUSE marguer...@opensuse.org - avoid download at buildtime
-Patch:  libpinyin-avoid_download_at_buildtime.patch
+Patch0: libpinyin-avoid_download_at_buildtime.patch
+# PATCH-FIX-UPSTRAEM hillw...@opensuse.org - fix mapper for double pinyin
+Patch1: libpinyin-fix_double_pinyin.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  glib2-devel
@@ -96,7 +98,8 @@
 %prep
 %setup -q
 cp -r %{SOURCE1} data/
-%patch -p1
+%patch0 -p1
+%patch1 -p1
 NOCONFIGURE=1 ./autogen.sh
 
 %build

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.LhjhFw/_old  2016-08-13 18:30:50.0 +0200
+++ /var/tmp/diff_new_pack.LhjhFw/_new  2016-08-13 18:30:50.0 +0200
@@ -1,4 +1,4 @@
-libpinyin7
+libpinyin9
requires "libpinyin-data = "
 post "/sbin/ldconfig"
 postun "/sbin/ldconfig"

++ libpinyin-avoid_download_at_buildtime.patch ++
--- /var/tmp/diff_new_pack.LhjhFw/_old  2016-08-13 18:30:50.0 +0200
+++ /var/tmp/diff_new_pack.LhjhFw/_new  2016-08-13 18:30:50.0 +0200
@@ -9,9 +9,9 @@
 -COMMENT
 -"Downloading textual model data..."
 -COMMAND
--   wget 
http://downloads.sourceforge.net/libpinyin/models/model11.text.tar.gz
+-   wget 
http://downloads.sourceforge.net/libpinyin/models/model12.text.tar.gz
  COMMAND
-tar xvf model11.text.tar.gz -C ${CMAKE_SOURCE_DIR}/data
+tar xvf model12.text.tar.gz -C ${CMAKE_SOURCE_DIR}/data
  )
 Index: libpinyin-1.3.0+git20151204.7b790c9/data/Makefile.am
 ===
@@ -21,7 +21,7 @@
  CLEANFILES= $(binary_model_data)
  
  interpolation2.text:
--  wget 
http://downloads.sourceforge.net/libpinyin/models/model11.text.tar.gz
-   tar xvf model11.text.tar.gz -C $(top_srcdir)/data
+-  wget 
http://downloads.sourceforge.net/libpinyin/models/model12.text.tar.gz
+   tar xvf model12.text.tar.gz -C $(top_srcdir)/data
  
  

++ libpinyin-fix_double_pinyin.patch ++
diff -Nur libpinyin/src/storage/double_pinyin_table.h 
libpinyin-new/src/storage/double_pinyin_table.h
--- libpinyin/src/storage/double_pinyin_table.h 2016-01-01 21:21:22.607919100 
+0800
+++ libpinyin-new/src/storage/double_pinyin_table.h   

commit caja for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package caja for openSUSE:Factory checked in 
at 2016-08-13 18:30:30

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


Package is "caja"

Changes:

--- /work/SRC/openSUSE:Factory/caja/caja.changes2016-05-23 
16:40:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.caja.new/caja.changes   2016-08-13 
18:30:35.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug 10 12:43:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.14.2:
+  * Make distcheck use currently selected GTK+ version.
+  * Update translations.
+
+---

Old:

  caja-1.14.1.tar.xz

New:

  caja-1.14.2.tar.xz



Other differences:
--
++ caja.spec ++
--- /var/tmp/diff_new_pack.GEW06z/_old  2016-08-13 18:30:36.0 +0200
+++ /var/tmp/diff_new_pack.GEW06z/_new  2016-08-13 18:30:36.0 +0200
@@ -20,7 +20,7 @@
 %define typelib typelib-1_0-Caja-2_0
 %define _version 1.14
 Name:   caja
-Version:1.14.1
+Version:1.14.2
 Release:0
 Summary:File manager for the MATE desktop
 License:GPL-2.0 and LGPL-2.0
@@ -28,6 +28,7 @@
 Url:http://mate-desktop.org/
 Source: 
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
 BuildRequires:  mate-common >= %{_version}
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(exempi-2.0)
@@ -144,10 +145,6 @@
 %suse_update_desktop_file caja
 %suse_update_desktop_file mate-network-scheme
 
-if [ -d %{buildroot}%{_datadir}/MateConf/ ]; then
-rm -rf %{buildroot}%{_datadir}/MateConf/
-fi
-
 %post
 %desktop_database_post
 %mime_database_post

++ caja-1.14.1.tar.xz -> caja-1.14.2.tar.xz ++
 572127 lines of diff (skipped)




commit vtk for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package vtk for openSUSE:Factory checked in 
at 2016-08-13 18:30:58

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


Package is "vtk"

Changes:

--- /work/SRC/openSUSE:Factory/vtk/vtk.changes  2016-04-28 17:00:34.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vtk.new/vtk.changes 2016-08-13 
18:31:00.0 +0200
@@ -1,0 +2,13 @@
+Wed Aug 10 00:56:56 UTC 2016 - badshah...@gmail.com
+
+- Refresh vtk-Rinterface-uintptr_t.patch to fix further issues
+  with uintptr_t redefinition by defining the HAVE_UINTPTR_T
+  macro using cmake functions; removing the #include of stdint.h
+  is not needed any more since we will not be using the defs from
+  Rinterface.h anyway (boo#985386). Although this really causes a
+  build failure for the i586 arch, where the redefinition of
+  unitptr_t in Rinterface.h conflicts with the stdint.h defintion,
+  the patch is applied generally because the redefinition is not
+  needed in any case. Patch sent upstream.
+
+---



Other differences:
--
++ vtk.spec ++
--- /var/tmp/diff_new_pack.kyGLor/_old  2016-08-13 18:31:02.0 +0200
+++ /var/tmp/diff_new_pack.kyGLor/_new  2016-08-13 18:31:02.0 +0200
@@ -32,7 +32,7 @@
 Source1:vtk-rpmlintrc
 # PATCH-FIX-UPSTREAM vtk-fix-file-contains-date-time.patch 
badshah...@gmail.com -- Fix file containing DATE and TIME
 Patch1: vtk-fix-file-contains-date-time.patch
-# PATCH-FIX-UPSTREAM vtk-Rinterface-uintptr_t.patch badshah...@gmail.com -- 
Only use uintptr_t definition from R headers; no longer include stdint.h
+# PATCH-FIX-UPSTREAM vtk-Rinterface-uintptr_t.patch boo#985386 
badshah...@gmail.com -- Fix issues with uintptr_t redefinition by defining the 
HAVE_UINTPTR_T macro using cmake functions to avoid redefinition of uintptr_t, 
which is already defined in stdint.h called earlier; patch sent upstream
 Patch2: vtk-Rinterface-uintptr_t.patch
 # PATCH-FIX-UPSTREAM vtk-gcc6.patch dmuel...@suse.com -- Fix compilation with 
GCC >= 6.0
 Patch3: vtk-gcc6.patch

++ vtk-Rinterface-uintptr_t.patch ++
--- /var/tmp/diff_new_pack.kyGLor/_old  2016-08-13 18:31:02.0 +0200
+++ /var/tmp/diff_new_pack.kyGLor/_new  2016-08-13 18:31:02.0 +0200
@@ -1,25 +1,26 @@
-Index: VTK-7.0.0/Filters/StatisticsGnuR/vtkRInterface.cxx
+Index: VTK-7.0.0/Filters/StatisticsGnuR/CMakeLists.txt
 ===
 VTK-7.0.0.orig/Filters/StatisticsGnuR/vtkRInterface.cxx
-+++ VTK-7.0.0/Filters/StatisticsGnuR/vtkRInterface.cxx
-@@ -20,12 +20,15 @@
+--- VTK-7.0.0.orig/Filters/StatisticsGnuR/CMakeLists.txt
 VTK-7.0.0/Filters/StatisticsGnuR/CMakeLists.txt
+@@ -16,6 +16,10 @@ include_directories(${R_INCLUDE_DIR})
  
- #include "vtkRInterface.h"
+ add_definitions(-DVTK_BUILDING_FILTERS_STATISTICSGNUR)
  
-+// uintptr_t is already defined in recent versions of R which therefore 
causes a
-+// clash when the same symbol is redefined in stddef.h
++# Check for the existance of uintptr_t type and set the HAVE_UINTPTR_T macro
++include(CheckTypeSize)
++CHECK_TYPE_SIZE(uintptr_t UINTPTR_T)
 +
- // for uintptr_t
--#ifdef _MSC_VER
--#include 
--#else
--#include 
--#endif
-+// #ifdef _MSC_VER
-+// #include 
-+// #else
-+// #include 
-+// #endif
+ # Configure the module specific settings into a module configured header.
+ 
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/vtkFiltersStatisticsGnuRConfigure.h.in
+   ${CMAKE_CURRENT_BINARY_DIR}/vtkFiltersStatisticsGnuRConfigure.h)
+Index: VTK-7.0.0/Filters/StatisticsGnuR/vtkFiltersStatisticsGnuRConfigure.h.in
+===
+--- 
VTK-7.0.0.orig/Filters/StatisticsGnuR/vtkFiltersStatisticsGnuRConfigure.h.in
 VTK-7.0.0/Filters/StatisticsGnuR/vtkFiltersStatisticsGnuRConfigure.h.in
+@@ -17,5 +17,6 @@
+ #define vtkFiltersStatisticsGnuRConfigure_h
+ 
+ #define VTK_R_HOME "@R_HOME@"
++#cmakedefine HAVE_UINTPTR_T
  
- #include "vtkInformation.h"
- #include "vtkInformationVector.h"
+ #endif




commit atril for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package atril for openSUSE:Factory checked 
in at 2016-08-13 18:30:28

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


Package is "atril"

Changes:

--- /work/SRC/openSUSE:Factory/atril/atril.changes  2016-05-30 
09:58:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.atril.new/atril.changes 2016-08-13 
18:30:32.0 +0200
@@ -1,0 +2,11 @@
+Wed Aug 10 12:43:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.14.2:
+  * Add setting to set page cache size.
+  * Add setting to disable auto-reload.
+  * Fix some issues with rotated documents.
+  * Some more fixes and cleanups.
+  * Make distcheck use currently selected GTK+ version.
+  * Update translations.
+
+---

Old:

  atril-1.14.1.tar.xz

New:

  atril-1.14.2.tar.xz



Other differences:
--
++ atril.spec ++
--- /var/tmp/diff_new_pack.DpCrhn/_old  2016-08-13 18:30:33.0 +0200
+++ /var/tmp/diff_new_pack.DpCrhn/_new  2016-08-13 18:30:33.0 +0200
@@ -21,7 +21,7 @@
 %define typelib1 typelib-1_0-AtrilDocument-1_5_0
 %define typelib2 typelib-1_0-AtrilView-1_5_0
 Name:   atril
-Version:1.14.1
+Version:1.14.2
 Release:0
 Summary:MATE Desktop document viewer
 License:GPL-2.0 and LGPL-2.0
@@ -32,7 +32,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libxml2-python
 BuildRequires:  mate-common >= %{_version}
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  texlive-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
@@ -167,7 +167,7 @@
 %setup -q
 
 %build
-NOCONFIGURE=1 ./autogen.sh
+NOCONFIGURE=1 mate-autogen
 %configure \
   --disable-static\
   --with-pic  \

++ atril-1.14.1.tar.xz -> atril-1.14.2.tar.xz ++
 220515 lines of diff (skipped)




commit caja-extensions for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package caja-extensions for openSUSE:Factory 
checked in at 2016-08-13 18:30:34

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


Package is "caja-extensions"

Changes:

--- /work/SRC/openSUSE:Factory/caja-extensions/caja-extensions.changes  
2016-04-15 19:09:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.caja-extensions.new/caja-extensions.changes 
2016-08-13 18:30:41.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug 10 12:43:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.14.1:
+  * Make distcheck use currently selected GTK+ version.
+  * Update translations.
+
+---

Old:

  caja-extensions-1.14.0.tar.xz

New:

  caja-extensions-1.14.1.tar.xz



Other differences:
--
++ caja-extensions.spec ++
--- /var/tmp/diff_new_pack.E0Xdhe/_old  2016-08-13 18:30:42.0 +0200
+++ /var/tmp/diff_new_pack.E0Xdhe/_new  2016-08-13 18:30:42.0 +0200
@@ -18,7 +18,7 @@
 
 %define _version 1.14
 Name:   caja-extensions
-Version:1.14.0
+Version:1.14.1
 Release:0
 Summary:Set of extensions for Caja, the MATE file manager
 License:GPL-2.0+
@@ -28,6 +28,7 @@
 # PATCH-FEATURE-OPENSUSE caja-extensions_use-xdgsu.patch sor.ale...@meowr.ru 
-- Use xdg-su instead of direct gksu call in caja-gksu.
 Patch0: %{name}_use-xdgsu.patch
 BuildRequires:  mate-common >= %{_version}
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
@@ -105,7 +106,7 @@
 The core package includes CD burner, archiving, email client links
 and devices.
 
-%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
+%if 0%{?suse_version} > 1320 || (0%{?sle_version} >= 120100 && 
0%{?is_opensuse})
 %package -n  caja-extension-sendto-gajim
 Summary:Gajim integration for the Caja file manager
 Group:  System/GUI/Other
@@ -217,6 +218,7 @@
 %patch0 -p1
 
 %build
+NOCONFIGURE=1 mate-autogen
 %configure \
   --disable-static   \
   --enable-shared\
@@ -232,14 +234,10 @@
 find %{buildroot} -type f -name "*.la" -delete -print
 %find_lang %{name}
 
-%if 0%{?suse_version} <= 1320 && !(0%{?suse_version} == 1315 && 
0%{?is_opensuse})
+%if 0%{?suse_version} <= 1320 && !(0%{?sle_version} >= 120100 && 
0%{?is_opensuse})
 rm -f %{buildroot}%{_libdir}/caja-sendto/plugins/libnstgajim.so
 %endif
 
-if [ -d %{buildroot}%{_datadir}/MateConf/ ]; then
-rm -rf %{buildroot}%{_datadir}/MateConf/
-fi
-
 %post -n caja-extension-open-terminal
 %glib2_gsettings_schema_post
 
@@ -254,13 +252,13 @@
 
 %files -n caja-extension-gksu
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING README
+%doc AUTHORS COPYING README
 %{_libdir}/caja/extensions-2.0/libcaja-gksu.so
 %{_datadir}/caja/extensions/libcaja-gksu.caja-extension
 
 %files -n caja-extension-image-converter
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING README
+%doc AUTHORS COPYING README
 %{_libdir}/caja/extensions-2.0/libcaja-image-converter.so
 %{_datadir}/caja-extensions/caja-image-resize.ui
 %{_datadir}/caja-extensions/caja-image-rotate.ui
@@ -268,14 +266,14 @@
 
 %files -n caja-extension-open-terminal
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING README
+%doc AUTHORS COPYING README
 %{_datadir}/caja/extensions/libcaja-open-terminal.caja-extension
 %{_libdir}/caja/extensions-2.0/libcaja-open-terminal.so
 %{_datadir}/glib-2.0/schemas/org.mate.caja-open-terminal.gschema.xml
 
 %files -n caja-extension-sendto
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING README
+%doc AUTHORS COPYING README
 %{_bindir}/caja-sendto
 %{_datadir}/caja-extensions/caja-sendto.ui
 %{_datadir}/caja/extensions/libcaja-sendto.caja-extension
@@ -288,7 +286,7 @@
 %{_libdir}/caja-sendto/plugins/libnstemailclient.so
 %{_mandir}/man?/caja-sendto.?%{?ext_man}
 
-%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
+%if 0%{?suse_version} > 1320 || (0%{?sle_version} >= 120100 && 
0%{?is_opensuse})
 %files -n caja-extension-sendto-gajim
 %defattr(-,root,root)
 %{_libdir}/caja-sendto/plugins/libnstgajim.so

++ caja-extensions-1.14.0.tar.xz -> caja-extensions-1.14.1.tar.xz ++
 2582 lines of diff (skipped)




commit plasma5-sdk for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package plasma5-sdk for openSUSE:Factory 
checked in at 2016-08-13 18:30:20

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


Package is "plasma5-sdk"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-sdk/plasma5-sdk.changes  2016-05-20 
11:55:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-sdk.new/plasma5-sdk.changes 
2016-08-13 18:30:23.0 +0200
@@ -1,0 +2,32 @@
+Tue Aug  2 11:36:04 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---
+Wed Jul 20 08:54:41 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:36 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Thu Jun 30 12:02:33 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  plasma-sdk-5.6.4.tar.xz

New:

  plasma-sdk-5.7.3.tar.xz



Other differences:
--
++ plasma5-sdk.spec ++
--- /var/tmp/diff_new_pack.dL7tUd/_old  2016-08-13 18:30:24.0 +0200
+++ /var/tmp/diff_new_pack.dL7tUd/_new  2016-08-13 18:30:24.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-sdk
-Version:5.6.4
+Version:5.7.3
 Release:0
 Summary:Plasma SDK
 License:LGPL-2.0+
@@ -105,7 +105,7 @@
 %find_lang cuttlefish %{name}.lang
 %find_lang kdevpackagemanagerview %{name}.lang
 %find_lang plasma_shell_org.kde.plasmoidviewershell %{name}.lang
-%find_lang themeexplorer %{name}.lang
+%find_lang org.kde.plasma.themeexplorer %{name}.lang
 %find_lang remote-widgets-browser %{name}.lang
 %find_lang plasmoidviewer %{name}.lang
 %find_lang plasmawallpaperviewer %{name}.lang
@@ -123,22 +123,20 @@
 %doc COPYING*
 %{_kf5_bindir}/cuttlefish
 %{_kf5_bindir}/plasmoidviewer
-#{_kf5_bindir}/plasmate
-#{_kf5_bindir}/plasmakconfigxteditor
 %{_kf5_bindir}/plasmathemeexplorer
 %{_kf5_sharedir}/plasma/
-#{_kf5_sharedir}/plasmate/
 %{_kf5_sharedir}/kpackage/
-#{_kf5_sharedir}/kdevsavesystemview/
 %{_kf5_servicesdir}/
 %{_kf5_plugindir}/
 %{_kf5_applicationsdir}/org.kde.plasma.themeexplorer.desktop
-%{_kf5_applicationsdir}/cuttlefish.desktop
-#{_kf5_applicationsdir}/plasmate.desktop
-#config %%{_kf5_configdir}/plasmate.knsrc
+%{_kf5_applicationsdir}/org.kde.cuttlefish.desktop
 %dir %{_kf5_iconsdir}/hicolor/*
 %dir %{_kf5_iconsdir}/hicolor/*/*
 %{_kf5_iconsdir}/*/*/*/*.*
+%if 0%{?suse_version} <= 1320
+%dir %{_kf5_appstreamdir}
+%endif
+%{_kf5_appstreamdir}/org.kde.cuttlefish.appdata.xml
 
 %files -n plasmaengineexplorer5
 %defattr(-,root,root)

++ desktop.diff ++
--- /var/tmp/diff_new_pack.dL7tUd/_old  2016-08-13 18:30:24.0 +0200
+++ /var/tmp/diff_new_pack.dL7tUd/_new  2016-08-13 18:30:24.0 +0200
@@ -1,9 +1,9 @@
 diff --git a/themeexplorer/package/metadata.desktop 
b/themeexplorer/package/metadata.desktop
-index 854a323..9ee875c 100644
+index 0cb2bee..e8f176d 100644
 --- a/themeexplorer/package/metadata.desktop
 +++ b/themeexplorer/package/metadata.desktop
-@@ -60,7 +60,7 @@ Name[zh_CN]=Plasma 主题浏览器
- Name[zh_TW]=Plasma 主題探索器
+@@ -58,7 +58,7 @@ Name[x-test]=xxPlasma Theme Explorerxx
+ Name[zh_CN]=Plasma 主题浏览器
  Type=Application
  Icon=preferences-desktop-theme
 -Categories=Qt;KDE;Development;

++ plasma-sdk-5.6.4.tar.xz -> plasma-sdk-5.7.3.tar.xz ++
 32107 lines of diff (skipped)




commit latex2rtf for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package latex2rtf for openSUSE:Factory 
checked in at 2016-08-13 18:30:39

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


Package is "latex2rtf"

Changes:

--- /work/SRC/openSUSE:Factory/latex2rtf/latex2rtf.changes  2016-06-07 
23:47:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.latex2rtf.new/latex2rtf.changes 2016-08-13 
18:30:45.0 +0200
@@ -1,0 +2,13 @@
+Thu Aug  4 21:25:47 UTC 2016 - roni...@gmail.com
+
+- Version bump to 2.3.11a.
+  Changelog:
+  * Increased malloc size for character array by one to allow
+terminating null character in definitions.c line 157,
+graphics.c line 1882, tables.c line 1548 and line 1561.
+  * Released as v.2.3.11.
+- Remove unneeded patches:
+* `latex2rtf-fix-memory-leak.patch`
+* `texinfo5.patch`
+
+---

Old:

  latex2rtf-2.3.10.tar.gz
  latex2rtf-fix-memory-leak.patch
  texinfo5.patch

New:

  latex2rtf-2.3.11a.tar.gz



Other differences:
--
++ latex2rtf.spec ++
--- /var/tmp/diff_new_pack.QOU1d0/_old  2016-08-13 18:30:46.0 +0200
+++ /var/tmp/diff_new_pack.QOU1d0/_new  2016-08-13 18:30:46.0 +0200
@@ -19,21 +19,17 @@
 # Get the major version of makeinfo.
 %define makeinfo_major_version %(MJ="`rpm -q --queryformat='%{VERSION}' 
makeinfo | cut -c 1`"; echo $MJ)
 Name:   latex2rtf
-Version:2.3.10
+Version:2.3.11a
 Release:0
 Summary:LaTeX to RTF Converter
 License:GPL-2.0+
 Group:  Productivity/Other
 Url:http://latex2rtf.sourceforge.net/index.html
-Source0:
http://downloads.sourceforge.net/project/latex2rtf/latex2rtf-unix/%{version}/latex2rtf-%{version}.tar.gz
+Source0:
http://downloads.sourceforge.net/project/latex2rtf/latex2rtf-unix/2.3.11/latex2rtf-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE fix_makefile_dist.patch roni...@gmail.com Fix Makefile to 
allow latex2rtf to be build by a server farm
 Patch1: fix_makefile_dist.patch
 # PATCH-FIX-OPENSUSE fix_latex2rtf_texi.patch roni...@gmail.com Fix info page 
of latex2rtf
 Patch2: fix_latex2rtf_texi.patch
-# PATCH-FIX-OPENSUSE texinfo5.patch i...@cicku.me Fix building of latex2rtf 
using texinfo 5
-Patch3: texinfo5.patch
-# PATCH-FIX-UPSTREAM latex2rtf-fix-memory-leak.patch roni...@gmail.com Fix 
memory leak in `abbreviate` function.
-Patch4: latex2rtf-fix-memory-leak.patch
 BuildRequires:  gcc-c++
 BuildRequires:  m4
 BuildRequires:  makeinfo
@@ -53,18 +49,11 @@
 convert LaTeX files to Word .doc or .docx files.
 
 %prep
-%setup -q
+%setup -q -n %{name}-2.3.11
 
 %patch1 -p1
 %patch2 -p1
 
-# If makeinfo version is 5 or 6, then apply Patch3.
-%if "%{makeinfo_major_version}" == "5" || "%{makeinfo_major_version}" == "6"
-%patch3 -p1
-%endif
-
-%patch4 -p1
-
 %build
 
 make DESTDIR=%{buildroot} \

++ latex2rtf-2.3.10.tar.gz -> latex2rtf-2.3.11a.tar.gz ++
 99814 lines of diff (skipped)




commit kwrited5 for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package kwrited5 for openSUSE:Factory 
checked in at 2016-08-13 18:30:13

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


Package is "kwrited5"

Changes:

--- /work/SRC/openSUSE:Factory/kwrited5/kwrited5.changes2016-05-20 
11:55:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwrited5.new/kwrited5.changes   2016-08-13 
18:30:16.0 +0200
@@ -1,0 +2,32 @@
+Tue Aug  2 11:35:59 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---
+Wed Jul 20 08:54:31 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:31 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Thu Jun 30 12:02:26 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  kwrited-5.6.4.tar.xz

New:

  kwrited-5.7.3.tar.xz



Other differences:
--
++ kwrited5.spec ++
--- /var/tmp/diff_new_pack.x62NG4/_old  2016-08-13 18:30:17.0 +0200
+++ /var/tmp/diff_new_pack.x62NG4/_new  2016-08-13 18:30:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kwrited5
-Version:5.6.4
+Version:5.7.3
 Release:0
 Summary:Daemon listening for wall and write messages
 License:GPL-2.0+

++ kwrited-5.6.4.tar.xz -> kwrited-5.7.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.6.4/CMakeLists.txt 
new/kwrited-5.7.3/CMakeLists.txt
--- old/kwrited-5.6.4/CMakeLists.txt2016-05-10 18:42:24.0 +0200
+++ new/kwrited-5.7.3/CMakeLists.txt2016-08-02 11:41:21.0 +0200
@@ -1,5 +1,5 @@
 project(kwrited)
-set(PROJECT_VERSION "5.6.4")
+set(PROJECT_VERSION "5.7.3")
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 set(KF5_MIN_VERSION "5.10.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.6.4/kwrited.json 
new/kwrited-5.7.3/kwrited.json
--- old/kwrited-5.6.4/kwrited.json  2016-05-10 18:42:24.0 +0200
+++ new/kwrited-5.7.3/kwrited.json  2016-08-02 11:41:21.0 +0200
@@ -5,7 +5,6 @@
 "Description[ca]": "Vigila els missatges dels usuaris locals enviats 
amb write(1) o wall(1)", 
 "Description[da]": "Hold øje med beskeder fra lokale brugere som 
sendes med write(1) eller wall(1)", 
 "Description[de]": "Meldungen lokaler Benutzer überwachen, die mittels 
write(1) oder wall(1) gesendet werden", 
-"Description[en_GB]": "Watch for messages from local users sent with 
write(1) or wall(1)", 
 "Description[es]": "Esperar mensajes de usuarios locales enviados con 
write(1) o wall(1)", 
 "Description[fi]": "Seuraa viestejä, joita paikalliset käyttäjät 
lähettävät write(1) tai wall(1) -komennoilla", 
 "Description[gl]": "Vixiar as mensaxes de usuarios locais enviadas con 
write(1) ou wall(1).", 
@@ -15,7 +14,6 @@
 "Description[pl]": "Śledzi wiadomości od użytkowników lokalnych 
wysyłane za pomocą write(1) lub wall(1)", 
 "Description[pt]": "Vigia as mensagens dos utilizadores locais 
enviadas com o write(1) ou o wall(1)", 
 "Description[pt_BR]": "Monitora as mensagens dos usuários locais, 
enviadas com o write(1) ou o wall(1)", 
-"Description[ru]": "Следит за сообщениями, отправляемыми локальными 
пользователями командами write(1) и wall(1)", 
 "Description[sk]": "Sledovanie správ od lokálnych užívateľov poslaných 
pomocou príkazu write (1) alebo wall (1)", 
 "Description[sl]": "Opazuje sporočila od krajevnih uporabnikov, 
poslanih z write(1) ali wall(1)", 
 "Description[sr@ijekavian]": "Пази на поруке од локалних корисника 
послатих наредбама write(1) или wall(1)", 
@@ -26,7 +24,6 @@
 "Description[uk]": "Спостереження за  повідомленнями від локальних 
користувачів, відісланих через write(1) або wall(1)", 
 "Description[x-test]": "xxWatch for messages from local users sent 
with writ

commit yast2-firstboot for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-firstboot for openSUSE:Factory 
checked in at 2016-08-13 18:30:50

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


Package is "yast2-firstboot"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes  
2016-08-12 15:44:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-firstboot.new/yast2-firstboot.changes 
2016-08-13 18:30:56.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 12 14:45:25 UTC 2016 - an...@suse.com
+
+- Faster response when the user skips the creation of a new user
+  (bsc#992245).
+- 3.1.16
+
+---

Old:

  yast2-firstboot-3.1.15.tar.bz2

New:

  yast2-firstboot-3.1.16.tar.bz2



Other differences:
--
++ yast2-firstboot.spec ++
--- /var/tmp/diff_new_pack.hb49xD/_old  2016-08-13 18:30:57.0 +0200
+++ /var/tmp/diff_new_pack.hb49xD/_new  2016-08-13 18:30:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:3.1.15
+Version:3.1.16
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-firstboot-3.1.15.tar.bz2 -> yast2-firstboot-3.1.16.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-3.1.15/package/yast2-firstboot.changes 
new/yast2-firstboot-3.1.16/package/yast2-firstboot.changes
--- old/yast2-firstboot-3.1.15/package/yast2-firstboot.changes  2016-08-12 
09:12:11.0 +0200
+++ new/yast2-firstboot-3.1.16/package/yast2-firstboot.changes  2016-08-12 
17:02:42.0 +0200
@@ -1,4 +1,11 @@
 ---
+Fri Aug 12 14:45:25 UTC 2016 - an...@suse.com
+
+- Faster response when the user skips the creation of a new user
+  (bsc#992245).
+- 3.1.16
+
+---
 Thu Aug 11 11:44:28 UTC 2016 - an...@suse.com
 
 - Reimplemented "create user" and "root password" steps to reuse
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-3.1.15/package/yast2-firstboot.spec 
new/yast2-firstboot-3.1.16/package/yast2-firstboot.spec
--- old/yast2-firstboot-3.1.15/package/yast2-firstboot.spec 2016-08-12 
09:12:11.0 +0200
+++ new/yast2-firstboot-3.1.16/package/yast2-firstboot.spec 2016-08-12 
17:02:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:3.1.15
+Version:3.1.16
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-3.1.15/src/lib/y2firstboot/clients/user.rb 
new/yast2-firstboot-3.1.16/src/lib/y2firstboot/clients/user.rb
--- old/yast2-firstboot-3.1.15/src/lib/y2firstboot/clients/user.rb  
2016-08-12 09:12:11.0 +0200
+++ new/yast2-firstboot-3.1.16/src/lib/y2firstboot/clients/user.rb  
2016-08-12 17:02:42.0 +0200
@@ -34,8 +34,9 @@
   end
 
   def run
-dialog_result = Yast::InstUserFirstDialog.new.run
-if dialog_result == :next
+dialog = Yast::InstUserFirstDialog.new
+dialog_result = dialog.run
+if dialog_result == :next && dialog.action == :new_user
   # Change root password if needed
   Yast::UsersSimple.Write
   # Create user




commit eom for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package eom for openSUSE:Factory checked in 
at 2016-08-13 18:30:36

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


Package is "eom"

Changes:

--- /work/SRC/openSUSE:Factory/eom/eom.changes  2016-05-23 16:40:23.0 
+0200
+++ /work/SRC/openSUSE:Factory/.eom.new/eom.changes 2016-08-13 
18:30:43.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 10 12:43:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.14.2:
+  * Fix zoom and scroll performance on large images.
+  * Make distcheck use currently selected GTK+ version.
+  * Update translations.
+
+---

Old:

  eom-1.14.1.tar.xz

New:

  eom-1.14.2.tar.xz



Other differences:
--
++ eom.spec ++
--- /var/tmp/diff_new_pack.srSYxH/_old  2016-08-13 18:30:44.0 +0200
+++ /var/tmp/diff_new_pack.srSYxH/_new  2016-08-13 18:30:44.0 +0200
@@ -19,7 +19,7 @@
 %define typelib typelib-1_0-Eom-1_0
 %define _version 1.14
 Name:   eom
-Version:1.14.1
+Version:1.14.2
 Release:0
 Summary:MATE Desktop graphics viewer
 License:GPL-2.0+ and LGPL-2.1+
@@ -30,6 +30,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  libxml2-python
 BuildRequires:  mate-common >= %{_version}
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(dbus-glib-1)

++ eom-1.14.1.tar.xz -> eom-1.14.2.tar.xz ++
 61911 lines of diff (skipped)




commit plasma5-workspace-wallpapers for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package plasma5-workspace-wallpapers for 
openSUSE:Factory checked in at 2016-08-13 18:30:23

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


Package is "plasma5-workspace-wallpapers"

Changes:

--- 
/work/SRC/openSUSE:Factory/plasma5-workspace-wallpapers/plasma5-workspace-wallpapers.changes
2016-05-20 11:56:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new/plasma5-workspace-wallpapers.changes
   2016-08-13 18:30:28.0 +0200
@@ -1,0 +2,32 @@
+Tue Aug  2 11:36:07 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---
+Wed Jul 20 08:54:42 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:37 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Thu Jun 30 12:02:34 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  plasma-workspace-wallpapers-5.6.4.tar.xz

New:

  plasma-workspace-wallpapers-5.7.3.tar.xz



Other differences:
--
++ plasma5-workspace-wallpapers.spec ++
--- /var/tmp/diff_new_pack.yYer7u/_old  2016-08-13 18:30:30.0 +0200
+++ /var/tmp/diff_new_pack.yYer7u/_new  2016-08-13 18:30:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   plasma5-workspace-wallpapers
-Version:5.6.4
+Version:5.7.3
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 0.0.12

++ plasma-workspace-wallpapers-5.6.4.tar.xz -> 
plasma-workspace-wallpapers-5.7.3.tar.xz ++
/work/SRC/openSUSE:Factory/plasma5-workspace-wallpapers/plasma-workspace-wallpapers-5.6.4.tar.xz
 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new/plasma-workspace-wallpapers-5.7.3.tar.xz
 differ: char 27, line 1




commit discover for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package discover for openSUSE:Factory 
checked in at 2016-08-13 18:30:06

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


Package is "discover"

Changes:

--- /work/SRC/openSUSE:Factory/discover/discover.changes2016-05-20 
11:55:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.discover.new/discover.changes   2016-08-13 
18:30:09.0 +0200
@@ -1,0 +2,33 @@
+Tue Aug  2 11:35:50 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---
+Wed Jul 20 08:54:15 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:23 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Thu Jun 30 12:02:18 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+- Drop upstreamed fix_for_gcc4.diff
+
+---

Old:

  discover-5.6.4.tar.xz
  fix_for_gcc4.diff

New:

  discover-5.7.3.tar.xz



Other differences:
--
++ discover.spec ++
--- /var/tmp/diff_new_pack.zhvZQB/_old  2016-08-13 18:30:10.0 +0200
+++ /var/tmp/diff_new_pack.zhvZQB/_new  2016-08-13 18:30:10.0 +0200
@@ -18,15 +18,13 @@
 
 %bcond_without lang
 Name:   discover
-Version:5.6.4
+Version:5.7.3
 Release:0
 Summary:KDE Software Installer
 License:GPL-2.0
 Group:  System/GUI/KDE
 Url:https://quickgit.kde.org/?p=discover.git
 Source0:%{name}-%{version}.tar.xz
-#PATCH-FIX-UPSTREAM fix_for_gcc4.diff  -- adjust the connect call so that it 
also builds with gcc48
-Patch1: fix_for_gcc4.diff
 BuildRequires:  PackageKit-Qt5-devel
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules
@@ -36,8 +34,8 @@
 BuildRequires:  cmake(KF5Archive)
 BuildRequires:  cmake(KF5Attica)
 BuildRequires:  cmake(KF5Config)
-BuildRequires:  cmake(KF5Crash)
 BuildRequires:  cmake(KF5CoreAddons)
+BuildRequires:  cmake(KF5Crash)
 BuildRequires:  cmake(KF5DBusAddons)
 BuildRequires:  cmake(KF5Declarative)
 BuildRequires:  cmake(KF5I18n)
@@ -77,7 +75,6 @@
 
 %prep
 %setup -q
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build
@@ -86,16 +83,12 @@
 %install
   %kf5_makeinstall -C build
   %suse_update_desktop_file -r org.kde.discover Qt KDE System PackageManager
-  %suse_update_desktop_file -r plasma-discover-updater Qt KDE System 
PackageManager
 
 %if %{with lang}
   %find_lang libdiscover %{name}.lang
-  %find_lang plasma-discover-exporter %{name}.lang
   %find_lang plasma-discover-notifier %{name}.lang
   %find_lang plasma-discover %{name}.lang
-  %find_lang plasma-discover-updater %{name}.lang
-
-  %find_lang plasma_applet_org.kde.muonnotifier plasma.lang
+  %find_lang plasma_applet_org.kde.discovernotifier plasma.lang
 %else
   touch plasma.lang
 %endif
@@ -104,19 +97,18 @@
 %defattr(-,root,root)
 %doc COPYING COPYING.GFDL COPYING.LIB
 %{_kf5_bindir}/plasma-discover
-%{_kf5_bindir}/plasma-discover-updater
 %{_kf5_libdir}/plasma-discover/
 %{_kf5_plugindir}/discover-notifier/
 %{_kf5_plugindir}/discover/
 %{_kf5_qmldir}/
 %{_kf5_applicationsdir}/org.kde.discover.desktop
-%{_kf5_applicationsdir}/plasma-discover-updater.desktop
 %{_kf5_iconsdir}/hicolor/*/apps/plasmadiscover.*
 %{_kf5_notifydir}/discoverabstractnotifier.notifyrc
 %{_kf5_kxmlguidir}/plasmadiscover/
-%{_kf5_kxmlguidir}/plasmadiscoverupdater/
 %{_kf5_sharedir}/libdiscover/
 %{_kf5_sharedir}/plasmadiscover/
+%{_kf5_appstreamdir}/
+%{_kf5_configdir}/discover_ktexteditor_codesnippets_core.knsrc
 
 %if %{with lang}
 %files lang -f %{name}.lang

++ discover-5.6.4.tar.xz -> discover-5.7.3.tar.xz ++
 107978 lines of diff (skipped)




commit plasma5-mediacenter for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package plasma5-mediacenter for 
openSUSE:Factory checked in at 2016-08-13 18:30:17

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


Package is "plasma5-mediacenter"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-mediacenter/plasma5-mediacenter.changes  
2016-05-20 11:55:57.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-mediacenter.new/plasma5-mediacenter.changes 
2016-08-13 18:30:18.0 +0200
@@ -1,0 +2,32 @@
+Tue Aug  2 11:36:03 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---
+Wed Jul 20 08:54:39 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:35 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Thu Jun 30 12:02:30 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  plasma-mediacenter-5.6.4.tar.xz

New:

  plasma-mediacenter-5.7.3.tar.xz



Other differences:
--
++ plasma5-mediacenter.spec ++
--- /var/tmp/diff_new_pack.kdHFqI/_old  2016-08-13 18:30:19.0 +0200
+++ /var/tmp/diff_new_pack.kdHFqI/_new  2016-08-13 18:30:19.0 +0200
@@ -16,11 +16,11 @@
 #
 
 
-%bcond_without lang
+#bcond_without lang
 %define rname plasma-mediacenter
 
 Name:   plasma5-mediacenter
-Version:5.6.4
+Version:5.7.3
 Release:0
 Summary:Media center workspace for plasma
 License:GPL-2.0+

++ plasma-mediacenter-5.6.4.tar.xz -> plasma-mediacenter-5.7.3.tar.xz ++
 17136 lines of diff (skipped)




commit kgamma5 for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package kgamma5 for openSUSE:Factory checked 
in at 2016-08-13 18:30:10

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


Package is "kgamma5"

Changes:

--- /work/SRC/openSUSE:Factory/kgamma5/kgamma5.changes  2016-05-20 
11:55:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgamma5.new/kgamma5.changes 2016-08-13 
18:30:11.0 +0200
@@ -1,0 +2,38 @@
+Tue Aug  2 11:35:54 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---
+Wed Jul 20 08:54:20 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:26 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Tue Jul  5 11:21:49 UTC 2016 - wba...@tmo.at
+
+- Use the new %kf5_find_lang macro to create the file list for the
+  lang package
+
+---
+Thu Jun 30 12:02:21 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  kgamma5-5.6.4.tar.xz

New:

  kgamma5-5.7.3.tar.xz



Other differences:
--
++ kgamma5.spec ++
--- /var/tmp/diff_new_pack.6S4p4l/_old  2016-08-13 18:30:12.0 +0200
+++ /var/tmp/diff_new_pack.6S4p4l/_new  2016-08-13 18:30:12.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kgamma5
-Version:5.6.4
+Version:5.7.3
 Release:0
 Summary:Display gamma configuration
 License:GPL-2.0+
@@ -58,6 +58,9 @@
 
 %install
   %kf5_makeinstall -C build
+%if %{with_lang}
+  %kf5_find_lang
+%endif
 
 %files
 %defattr(-,root,root)
@@ -70,8 +73,7 @@
 %doc %{_kf5_htmldir}/en/*/
 
 %if %{with lang}
-%files lang
-%{_kf5_localedir}
+%files lang -f %{name}.lang
 %endif
 
 %changelog

++ kgamma5-5.6.4.tar.xz -> kgamma5-5.7.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.6.4/CMakeLists.txt 
new/kgamma5-5.7.3/CMakeLists.txt
--- old/kgamma5-5.6.4/CMakeLists.txt2016-05-10 18:33:38.0 +0200
+++ new/kgamma5-5.7.3/CMakeLists.txt2016-08-02 11:36:08.0 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.9)
 project(kgamma)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
-set(PROJECT_VERSION "5.6.4")
+set(PROJECT_VERSION "5.7.3")
 set(QT_MIN_VERSION "5.4.0")
 find_package(ECM 1.0.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
@@ -14,7 +14,10 @@
 find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Gui Widgets)
 
 find_package(KF5 REQUIRED COMPONENTS
+Config
+ConfigWidgets
 DocTools
+I18n
 KDELibs4Support
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.6.4/kcmkgamma/CMakeLists.txt 
new/kgamma5-5.7.3/kcmkgamma/CMakeLists.txt
--- old/kgamma5-5.6.4/kcmkgamma/CMakeLists.txt  2016-05-10 18:33:21.0 
+0200
+++ new/kgamma5-5.7.3/kcmkgamma/CMakeLists.txt  2016-08-02 11:35:54.0 
+0200
@@ -10,7 +10,7 @@
 
 add_library(kcm_kgamma MODULE ${kcm_kgamma_PART_SRCS})
 
-target_link_libraries(kcm_kgamma ${X11_Xxf86vm_LIB} ${X11_LIBRARIES} Qt5::Core 
Qt5::Widgets KF5::KDELibs4Support)
+target_link_libraries(kcm_kgamma ${X11_Xxf86vm_LIB} ${X11_LIBRARIES} Qt5::Core 
Qt5::Widgets KF5::ConfigCore KF5::ConfigWidgets KF5::I18n KF5::KDELibs4Support)
 
 install(TARGETS kcm_kgamma DESTINATION ${KDE_INSTALL_PLUGINDIR})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.6.4/kcmkgamma/gammactrl.cpp 
new/kgamma5-5.7.3/kcmkgamma/gammactrl.cpp
--- old/kgamma5-5.6.4/kcmkgamma/gammactrl.cpp   2016-05-10 18:33:21.0 
+0200
+++ new/kgamma5-5.7.3/kcmkgamma/gammactrl.cpp   2016-08-02 11:35:54.0 
+0200
@@ -19,8 +19,6 @@
 #include 
 #include 
 
-#include 
-
 #include "gammactrl.h"
 #include "xvidextwrap.h"
 #include "displaynumber.h"
@@ -45,8 +43,6 @@
   gchannel = channel;
   xv = xvid;
 
-  setSpacing(KD

commit systemd for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package systemd for openSUSE:Factory checked 
in at 2016-08-13 18:29:55

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


Package is "systemd"

Changes:

--- /work/SRC/openSUSE:Factory/systemd/systemd-mini.changes 2016-07-10 
18:46:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.systemd.new/systemd-mini.changes
2016-08-13 18:29:57.0 +0200
@@ -1,0 +2,27 @@
+Wed Aug 10 11:30:50 UTC 2016 - meiss...@suse.com
+
+- reverted the systemctl split-off on request of Franck Bui.
+
+---
+Fri Jul 29 11:49:39 UTC 2016 - jeng...@inai.de
+
+- Add sysusers to the new split "systemctl" subpackage
+
+---
+Tue Jul 26 11:07:25 UTC 2016 - jeng...@inai.de
+
+- Split systemctl and tmpfiles into a separate package
+
+---
+Tue Jul 19 17:42:45 UTC 2016 - devel...@develop7.info
+
+- Fix 1099-Add-default-rules-for-valve-steam-controller-to-work.patch 
+  to enable missing functionality of Steam Controller
+
+---
+Sun Jul 17 03:41:05 UTC 2016 - asa...@suse.com
+
+- Backport unified_cgroup_hierarchy fix for Linux >= 4.4. boo#989276
+  + systemd-230-cgroup2-use-new-fstype-for-unified-hierarchy.patch
+
+---
--- /work/SRC/openSUSE:Factory/systemd/systemd.changes  2016-07-24 
19:42:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.systemd.new/systemd.changes 2016-08-13 
18:29:57.0 +0200
@@ -1,0 +2,21 @@
+Wed Aug 10 11:30:50 UTC 2016 - meiss...@suse.com
+
+- reverted the systemctl split-off on request of Franck Bui.
+
+---
+Fri Jul 29 11:49:39 UTC 2016 - jeng...@inai.de
+
+- Add sysusers to the new split "systemctl" subpackage
+
+---
+Tue Jul 26 11:07:25 UTC 2016 - jeng...@inai.de
+
+- Split systemctl and tmpfiles into a separate package
+
+---
+Tue Jul 19 17:42:45 UTC 2016 - devel...@develop7.info
+
+- Fix 1099-Add-default-rules-for-valve-steam-controller-to-work.patch 
+  to enable missing functionality of Steam Controller
+
+---



Other differences:
--
++ systemd-mini.spec ++
--- /var/tmp/diff_new_pack.lRZlW6/_old  2016-08-13 18:29:59.0 +0200
+++ /var/tmp/diff_new_pack.lRZlW6/_new  2016-08-13 18:29:59.0 +0200
@@ -261,6 +261,8 @@
 Patch528:   0001-core-re-sync-bus-name-list-after-deserializing-durin.patch
 # PATCH-FIX-UPSTREAM -- fixed after 228
 Patch529:   0001-systemctl-pid1-do-not-warn-about-missing-install-inf.patch
+# PATCH-FIX-UPSTREAM -- fixed after 320
+Patch530:   systemd-230-cgroup2-use-new-fstype-for-unified-hierarchy.patch
 
 # UDEV PATCHES
 # 
@@ -607,6 +609,7 @@
 %patch527 -p1
 %patch528 -p1
 %patch529 -p1
+%patch530 -p1
 
 # udev patches
 %patch1002 -p1

++ 1099-Add-default-rules-for-valve-steam-controller-to-work.patch ++
--- /var/tmp/diff_new_pack.lRZlW6/_old  2016-08-13 18:29:59.0 +0200
+++ /var/tmp/diff_new_pack.lRZlW6/_new  2016-08-13 18:29:59.0 +0200
@@ -1,14 +1,3 @@
-From e3effecf928405cdd477ae554e2276fb8a7288c4 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= 
-Date: Mon, 30 Nov 2015 14:35:15 +0100
-Subject: [PATCH] Add default rules for valve steam controler to work
-

- Makefile.am  | 1 +
- rules/72-valve-steam-controler.rules | 2 ++
- 2 files changed, 3 insertions(+)
- create mode 100644 rules/72-valve-steam-controler.rules
-
 diff --git a/Makefile.am b/Makefile.am
 index db206ae..803912c 100644
 --- a/Makefile.am
@@ -26,9 +15,9 @@
 index 000..f676972
 --- /dev/null
 +++ b/rules/72-valve-steam-controler.rules
-@@ -0,0 +1,2 @@
-+# for basic functionality of the controller in Steam and keyboard/mouse 
emulation
+@@ -0,0 +1,3 @@
 +SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="1142", 
TAG+="uaccess"
++SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="1102", 
TAG+="uaccess"
++KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess"
 -- 
 2.6.3
-




commit multipath-tools for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package multipath-tools for openSUSE:Factory 
checked in at 2016-08-13 18:29:48

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


Package is "multipath-tools"

Changes:

--- /work/SRC/openSUSE:Factory/multipath-tools/multipath-tools.changes  
2016-07-24 19:42:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.multipath-tools.new/multipath-tools.changes 
2016-08-13 18:29:49.0 +0200
@@ -1,0 +2,33 @@
+Fri Aug  5 09:02:21 CEST 2016 - h...@suse.de
+
+- Include fixes from upstream:
+  * memory leak in orphan_paths
+  * More hardware table cleanups
+  * Add 'serial' keyword to weightedpath prioritizer
+- Set timeout for CLI commands correctly (bsc#990265)
+- Start daemon after udev trigger (bsc#991742,bsc#986734,bsc#990538)
+- multipathd.service: Fixup Wants= and Before= statements
+  (bsc#991742, bsc#986734)
+
+---
+Thu Jul 28 15:57:12 CEST 2016 - h...@suse.de
+
+- Include patches from upstream:
+  * Cleanup hardware tables by removing default entries
+  * More formatting fixes
+  * Order keywords in multipath.conf.5
+  * Change default pgpolicy from 'failover' to 'group_by_prio'
+  * kpartx: Fix check whether to detach a loop device
+  * Fix partly traversed loop in coalesce_paths()
+  * Fix memory leak in reconfigure()
+  * Cleanup include header files
+  * Bump version code to 0.6.2
+- Fix multipath -l  without output (bsc#990480)
+- Fix spelling in a log message
+- Fix type of rcu_unregister()
+- Do not perform POSIX mutex operations inside a signal handler
+- Ensure that signals are delivered to the uxsock thread
+- Fix memory leak in path group policies
+- Update tarball to 0.6.2+suse20160728.d96f423
+
+---

Old:

  multipath-tools-0.6.1+suse20160715.3d44636.tar.xz

New:

  multipath-tools-0.6.2+suse20160805.dcfa37d.tar.xz



Other differences:
--
++ multipath-tools.spec ++
--- /var/tmp/diff_new_pack.rb3GHK/_old  2016-08-13 18:29:50.0 +0200
+++ /var/tmp/diff_new_pack.rb3GHK/_new  2016-08-13 18:29:50.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define version_unconverted 0.6.1+suse20160715.3d44636
+%define version_unconverted 0.6.2+suse20160805.dcfa37d
 
 Name:   multipath-tools
 BuildRequires:  device-mapper-devel
@@ -31,7 +31,7 @@
 Requires:   device-mapper >= 1.2.78
 Requires:   kpartx
 PreReq: %insserv_prereq %fillup_prereq coreutils grep
-Version:0.6.1+suse20160715.3d44636
+Version:0.6.2+suse20160805.dcfa37d
 Release:0
 Summary:Tools to Manage Multipathed Devices with the device-mapper
 License:GPL-2.0

++ _service ++
--- /var/tmp/diff_new_pack.rb3GHK/_old  2016-08-13 18:29:50.0 +0200
+++ /var/tmp/diff_new_pack.rb3GHK/_new  2016-08-13 18:29:50.0 +0200
@@ -4,7 +4,7 @@
 https://github.com/hreinecke/multipath-tools.git
 
 multipath-tools
-0.6.1+suse%cd.%h
+0.6.2+suse%cd.%h
 sles12-sp2
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.rb3GHK/_old  2016-08-13 18:29:50.0 +0200
+++ /var/tmp/diff_new_pack.rb3GHK/_new  2016-08-13 18:29:50.0 +0200
@@ -1,4 +1,6 @@
 
-
-https://github.com/hreinecke/multipath-tools.git
-  3d4463657b30404db27a374c1bb8bf602069cf82
+  
+https://github.com/hreinecke/multipath-tools.git
+dcfa37d43f7c8eb1cd4f2f630c3cd4ca26022f11
+  
+

++ multipath-tools-0.6.1+suse20160715.3d44636.tar.xz -> 
multipath-tools-0.6.2+suse20160805.dcfa37d.tar.xz ++
 5256 lines of diff (skipped)




commit kernel-source for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2016-08-13 18:29:32

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


Package is "kernel-source"

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/kernel-debug.changes   
2016-07-30 00:25:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/kernel-debug.changes  
2016-08-13 18:29:33.0 +0200
@@ -1,0 +2,60 @@
+Thu Aug  4 13:26:54 CEST 2016 - jthumsh...@suse.de
+
+- aacraid: prevent out-of-bounds access due to changing fip
+  header sizes (bsc#991608, CVE-2016-6480).
+- commit 162f969
+
+---
+Thu Aug  4 01:48:42 CEST 2016 - ne...@suse.com
+
+- Revert "SUNRPC: xs_sock_mark_closed() does not need to trigger
+  socket autoclose" (bsc#990356).
+- commit fd538ca
+
+---
+Wed Aug  3 14:23:00 CEST 2016 - ti...@suse.de
+
+- vfs: ioctl: prevent double-fetch in dedupe ioctl
+  (CVE-2016-6516,bsc#991604).
+- commit 4008557
+
+---
+Wed Aug  3 11:43:29 CEST 2016 - mkube...@suse.cz
+
+- Update
+  patches.fixes/netfilter-x_tables-speed-up-jump-target-validation.patch
+  references (CVE-2016-4998 bsc#986365).
+- commit 10e550e
+
+---
+Tue Aug  2 10:53:22 CEST 2016 - jdelv...@suse.de
+
+- Make pinctrl-amd driver modular
+  The pinctrl-amd driver can now be built as a module.
+- commit 52eb238
+
+---
+Tue Aug  2 10:53:18 CEST 2016 - jdelv...@suse.de
+
+- config: Enable missing BayTrail and LynxPoint drivers
+  We support the Intel BayTrail and LynxPoint systems so I believe we
+  should enable all related drivers.
+- commit 69e57d4
+
+---
+Mon Aug  1 09:50:41 CEST 2016 - jsl...@suse.cz
+
+- rpm/constraints.in: inscrease binary size req to 25G
+  Currently, the build of master's -default kernel consumes exactly 20G.
+  So increase the limit from 20G to 25G to stop build failures in the
+  BS.
+- commit c8360d6
+
+---
+Mon Jul 25 11:51:10 CEST 2016 - ti...@suse.de
+
+- apparmor: fix arg_size computation for when setprocattr is
+  null terminated (CVE-2016-6187,bsc#988307).
+- commit d1fa560
+
+---
@@ -40,0 +101,8 @@
+Mon Jul 18 10:14:34 CEST 2016 - mma...@suse.com
+
+- rpm/kernel-spec-macros: Add kver_cmp macro
+  This allows to use %if statements based on the version of the kernel to
+  be built.
+- commit ea700be
+
+---
@@ -52,0 +121,6 @@
+Fri Jul 15 17:32:23 CEST 2016 - ti...@suse.de
+
+- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
+- commit 2c51311
+
+---
@@ -58,0 +133,7 @@
+Wed Jul 13 12:17:38 CEST 2016 - ti...@suse.de
+
+- rpm/constraints.in: Increase to 8GB for kernel-source
+  4GB seems still too tight for some archs like ppc64le...
+- commit d82b2bf
+
+---
@@ -309,0 +391,18 @@
+
+---
+Wed Jun 15 17:06:07 CEST 2016 - mma...@suse.cz
+
+- rpm/constraints.in: Really require 4GB for kernel-source, add -rt 
(bsc#984845)
+- commit a0dec36
+
+---
+Wed Jun 15 15:17:11 CEST 2016 - mma...@suse.cz
+
+- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
+- commit 1b20111
+
+---
+Tue Jun 14 16:56:52 CEST 2016 - mma...@suse.cz
+
+- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY 
(bsc#983634)
+- commit 6eb6cd2
kernel-default.changes: same change
kernel-docs.changes: same change
kernel-lpae.changes: same change
kernel-obs-build.changes: same change
kernel-obs-qa.changes: same change
kernel-pae.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change



Other differences:
--
++ kernel-debug.spec ++
--- /var/tmp/diff_new_pack.DmH5oh/_old  2016-08-13 18:29:39.0 +0200
+++ /var/tmp/diff_new_pack.DmH5oh/_new  2016-08-13 18:29:39.0 +0200
@@ -63,7 +63,7 @@
 Group:  System/Kernel
 Version:4.7.0
 %if 0%{?is_kotd}
-Release:.g89a2ada
+

commit bundle-lang-common for openSUSE:Factory

2016-08-13 Thread h_root
Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory checked in at 2016-08-13 13:57:36

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


Package is "bundle-lang-common"

Changes:

--- /work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-common.changes
2016-07-21 12:06:02.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-common.changes   
2016-08-13 13:57:39.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 10 20:18:50 UTC 2016 - dleuenber...@suse.com
+
+- Update package list.
+
+---
bundle-lang-gnome.changes: same change
bundle-lang-kde.changes: same change



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

bundle-lang-other.spec: same change
++ packages.txt ++
--- /var/tmp/diff_new_pack.XF53p1/_old  2016-08-13 13:57:40.0 +0200
+++ /var/tmp/diff_new_pack.XF53p1/_new  2016-08-13 13:57:40.0 +0200
@@ -128,7 +128,7 @@
 gnome-calculator-lang gnome
 gnome-calendar-lang gnome-extras
 gnome-characters-lang gnome-extras
-gnome-chess-lang gnome
+gnome-chess-lang gnome-extras
 gnome-clocks-lang gnome
 gnome-color-chooser-lang gnome-extras
 gnome-color-manager-lang gnome-extras
@@ -154,7 +154,7 @@
 gnome-keyring-lang common
 gnome-klotski-lang gnome-extras
 gnome-logs-lang gnome-extras
-gnome-mahjongg-lang gnome
+gnome-mahjongg-lang gnome-extras
 gnome-maps-lang gnome-extras
 gnome-menus-lang gnome
 gnome-mines-lang gnome
@@ -244,7 +244,7 @@
 gwget-lang gnome-extras
 hitori-lang gnome-extras
 homebank-lang gnome-extras
-iagno-lang gnome
+iagno-lang gnome-extras
 ibus-lang gnome
 icewm-lang common
 iso-codes-lang gnome-extras
@@ -352,7 +352,7 @@
 libwnck-lang gnome
 libwnck2-lang gnome-extras
 liferea-lang gnome
-lightsoff-lang gnome
+lightsoff-lang gnome-extras
 m17n-db-lang gnome
 meld-lang gnome-extras
 memprof-lang gnome-extras
@@ -424,7 +424,7 @@
 specto-lang gnome-extras
 spice-gtk-lang gnome-extras
 sushi-lang gnome
-swell-foop-lang gnome
+swell-foop-lang gnome-extras
 synapse-lang gnome-extras
 system-config-printer-common-lang common
 systemsettings5-lang kde