commit QMPlay2 for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package QMPlay2 for openSUSE:Factory checked 
in at 2016-05-10 09:27:54

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


Package is "QMPlay2"

Changes:

--- /work/SRC/openSUSE:Factory/QMPlay2/QMPlay2.changes  2016-05-05 
08:12:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.QMPlay2.new/QMPlay2.changes 2016-05-10 
09:27:55.0 +0200
@@ -1,0 +2,8 @@
+Sat May  7 17:11:47 UTC 2016 - dap.darkn...@gmail.com
+
+- Update to 16.05.06:
+  * split muted icon to muted and not muted,
+  * bugfix.
+- Updated QMPlay2-no-prostopleer.diff.
+
+---

Old:

  QMPlay2-src-16.05.02.tar.xz

New:

  QMPlay2-src-16.05.06.tar.xz



Other differences:
--
++ QMPlay2.spec ++
--- /var/tmp/diff_new_pack.nRj6Kp/_old  2016-05-10 09:27:56.0 +0200
+++ /var/tmp/diff_new_pack.nRj6Kp/_new  2016-05-10 09:27:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   QMPlay2
-Version:16.05.02
+Version:16.05.06
 Release:0
 Summary:A Qt based media player, streamer and downloader
 License:LGPL-3.0+

++ QMPlay2-no-prostopleer.diff ++
--- /var/tmp/diff_new_pack.nRj6Kp/_old  2016-05-10 09:27:56.0 +0200
+++ /var/tmp/diff_new_pack.nRj6Kp/_new  2016-05-10 09:27:56.0 +0200
@@ -52,10 +52,9 @@
  /**/
 --- src/modules/Extensions/icons.qrc.orig  2016-02-29 21:17:29.0 
+0300
 +++ src/modules/Extensions/icons.qrc   2016-03-12 13:04:34.278846080 +0300
-@@ -1,7 +1,6 @@
+@@ -1,6 +1,5 @@
  

-   browserengine.png
 -  prostopleer.png
downloader.png
youtube.png

++ QMPlay2-src-16.05.02.tar.xz -> QMPlay2-src-16.05.06.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QMPlay2-src-16.05.02/ChangeLog 
new/QMPlay2-src-16.05.06/ChangeLog
--- old/QMPlay2-src-16.05.02/ChangeLog  2016-05-02 15:24:43.0 +0200
+++ new/QMPlay2-src-16.05.06/ChangeLog  2016-05-06 13:59:07.0 +0200
@@ -1,3 +1,7 @@
+Changes in QMPlay2 build 16.05.06:
+   - split muted icon to muted and not muted,
+   - bugfix,
+
 Changes in QMPlay2 build 16.05.02:
- fixed command line argument processing (now is possible to properly 
open or enqueue multiple files on Linux),
- playlist uses floating-point variables for storing length (accurate 
group length information),
Files old/QMPlay2-src-16.05.02/src/gui/Icons/audio-volume-high.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/audio-volume-high.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/audio-volume-muted.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/audio-volume-muted.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/media-playback-pause.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/media-playback-pause.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/media-playback-start.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/media-playback-start.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/media-playback-stop.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/media-playback-stop.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/media-skip-backward.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/media-skip-backward.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/media-skip-forward.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/media-skip-forward.png differ
Files old/QMPlay2-src-16.05.02/src/gui/Icons/view-fullscreen.png and 
new/QMPlay2-src-16.05.06/src/gui/Icons/view-fullscreen.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/QMPlay2-src-16.05.02/src/gui/MainWidget.cpp 
new/QMPlay2-src-16.05.06/src/gui/MainWidget.cpp
--- old/QMPlay2-src-16.05.02/src/gui/MainWidget.cpp 2016-05-02 
15:24:43.0 +0200
+++ new/QMPlay2-src-16.05.06/src/gui/MainWidget.cpp 2016-05-05 
15:00:45.0 +0200
@@ -471,6 +471,11 @@
else if (sender() == menuBar->player->volDown)
volW->changeVolume(-5);
 }
+void MainWidget::toggleMuteIcon()
+{
+   if (QAction *toggleMuteAct = qobject_cast(sender()))
+   
toggleMuteAct->setIcon(QMPlay2Core.getIconFromTheme(toggleMuteAct->isChecked() 
? "audio-volume-muted" : "audio-volume-high"));
+}
 void MainWidget::actionSeek()
 {
int seekTo = 0;
@@ -671,6 +676,7 @@
connect(menuBar->player->volUp, SIGNAL(triggered()), this, 
SLOT(volUpDown()));
connect(menuBar->player->volDown, SIGNAL(triggered()), this, 
SLOT(volUpDown()));
connect(menuBar->player->toggleMute, SIGNAL(triggered()), , 

commit phpMyAdmin for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package phpMyAdmin for openSUSE:Factory 
checked in at 2016-05-10 09:28:00

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


Package is "phpMyAdmin"

Changes:

--- /work/SRC/openSUSE:Factory/phpMyAdmin/phpMyAdmin.changes2016-04-06 
11:52:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.phpMyAdmin.new/phpMyAdmin.changes   
2016-05-10 09:28:01.0 +0200
@@ -1,0 +2,10 @@
+Mon May  9 10:14:44 UTC 2016 - ch...@computersalat.de
+
+- phpMyAdmin 4.6.1:
+  * Problems with SQL syntax warnings from the linter/parser
+  * Fixing an error about "PMA_Util" not found
+  * Better handling of JSON columns
+  * Fixed quoting with the SQL parser, which in particular adversely
+affected SQL imports and exports 
+
+---

Old:

  phpMyAdmin-4.6.0-all-languages.tar.xz
  phpMyAdmin-4.6.0-all-languages.tar.xz.asc

New:

  phpMyAdmin-4.6.1-all-languages.tar.xz
  phpMyAdmin-4.6.1-all-languages.tar.xz.asc



Other differences:
--
++ phpMyAdmin.spec ++
--- /var/tmp/diff_new_pack.GnTcT2/_old  2016-05-10 09:28:02.0 +0200
+++ /var/tmp/diff_new_pack.GnTcT2/_new  2016-05-10 09:28:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package phpMyAdmin
 #
-# Copyright (c) 2016 SUSE LINUX 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
@@ -29,7 +29,7 @@
 %define ap_grp nogroup
 %endif
 Name:   phpMyAdmin
-Version:4.6.0
+Version:4.6.1
 Release:0
 Summary:Administration of MySQL over the web
 License:GPL-2.0+

++ phpMyAdmin-4.6.0-all-languages.tar.xz -> 
phpMyAdmin-4.6.1-all-languages.tar.xz ++
 4247 lines of diff (skipped)





commit nomacs for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package nomacs for openSUSE:Factory checked 
in at 2016-05-10 09:27:25

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


Package is "nomacs"

Changes:

--- /work/SRC/openSUSE:Factory/nomacs/nomacs.changes2016-03-07 
13:29:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.nomacs.new/nomacs.changes   2016-05-10 
09:27:26.0 +0200
@@ -1,0 +2,13 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.2.0:
+  * Redesign plugin framework.
+  * New preferences.
+  * Add Undo & History dock.
+  * Improve statusbar (e.g. zoom level).
+  * All Icons are SVG (UHD monitors).
+  * Add compression to Batch.
+  * Extend image transitions (swipe).
+- Remove nomacs-3.0.0-opencv-detection.patch: fixed upstream.
+
+---

Old:

  nomacs-3.0.0-opencv-detection.patch
  nomacs-3.0.0-source.tar.bz2

New:

  nomacs-3.2.0-source.tar.bz2



Other differences:
--
++ nomacs.spec ++
--- /var/tmp/diff_new_pack.RhlFzv/_old  2016-05-10 09:27:27.0 +0200
+++ /var/tmp/diff_new_pack.RhlFzv/_new  2016-05-10 09:27:27.0 +0200
@@ -17,31 +17,29 @@
 
 
 Name:   nomacs
-Version:3.0.0
+Version:3.2.0
 Release:0
 Summary:Lightweight image viewer
 License:GPL-3.0+
 Group:  Productivity/Graphics/Viewers
 Url:http://nomacs.org/
 Source: 
https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}-source.tar.bz2
-# PATCH-FIX-UPSTREAM nomacs-3.0.0-opencv-detection.patch  -- Fix detection of 
OpenCV 3.x and later.
-Patch0: nomacs-3.0.0-opencv-detection.patch
 BuildRequires:  cmake >= 2.6
 BuildRequires:  dos2unix
 BuildRequires:  gcc-c++
-BuildRequires:  libqt5-linguist-devel
-BuildRequires:  opencv-qt5-devel
+BuildRequires:  libqt5-linguist-devel >= 5.2
+BuildRequires:  opencv-qt5-devel >= 2.4.6
 BuildRequires:  pkg-config
 BuildRequires:  quazip-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(Qt5Concurrent)
-BuildRequires:  pkgconfig(Qt5Network)
-BuildRequires:  pkgconfig(Qt5PrintSupport)
-BuildRequires:  pkgconfig(Qt5Svg)
-BuildRequires:  pkgconfig(Qt5Widgets)
-BuildRequires:  pkgconfig(exiv2)
+BuildRequires:  pkgconfig(Qt5Concurrent) >= 5.2
+BuildRequires:  pkgconfig(Qt5Network) >= 5.2
+BuildRequires:  pkgconfig(Qt5PrintSupport) >= 5.2
+BuildRequires:  pkgconfig(Qt5Svg) >= 5.2
+BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2
+BuildRequires:  pkgconfig(exiv2) >= 0.25
 BuildRequires:  pkgconfig(expat)
-BuildRequires:  pkgconfig(libraw)
+BuildRequires:  pkgconfig(libraw) >= 0.17
 BuildRequires:  pkgconfig(libtiff-4)
 BuildRequires:  pkgconfig(zlib)
 
@@ -54,7 +52,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 dos2unix Readme/*
 find src -type f -name '*.cpp' | while read f; do
 # Fix encoding issues in nomacs with Qt5.
@@ -87,10 +84,11 @@
 %defattr(-,root,root)
 %doc Readme/*
 %{_bindir}/%{name}
-%{_libdir}/lib%{name}lib.so
+%{_libdir}/lib%{name}*.so
+%{_libdir}/lib%{name}*.so.*
 %{_datadir}/%{name}/
 %{_datadir}/applications/%{name}.desktop
-%{_datadir}/pixmaps/%{name}.png
+%{_datadir}/pixmaps/%{name}.*
 %dir %{_datadir}/appdata/
 %{_datadir}/appdata/%{name}.appdata.xml
 %{_mandir}/man?/%{name}.?%{?ext_man}

++ nomacs-3.0.0-source.tar.bz2 -> nomacs-3.2.0-source.tar.bz2 ++
 191748 lines of diff (skipped)




commit kicad for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package kicad for openSUSE:Factory checked 
in at 2016-05-10 09:27:50

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


Package is "kicad"

Changes:

--- /work/SRC/openSUSE:Factory/kicad/kicad.changes  2016-03-26 
15:25:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.kicad.new/kicad.changes 2016-05-10 
09:27:52.0 +0200
@@ -1,0 +2,7 @@
+Fri May  6 17:10:15 UTC 2016 - davejpla...@gmail.com
+
+- Added kicad-suse-help-path.patch to enable help in kicad.
+- Added post and postun macros to allow proper integration with
+  various gui systems.
+
+---

New:

  kicad-suse-help-path.patch



Other differences:
--
++ kicad.spec ++
--- /var/tmp/diff_new_pack.Cdg95S/_old  2016-05-10 09:27:53.0 +0200
+++ /var/tmp/diff_new_pack.Cdg95S/_new  2016-05-10 09:27:53.0 +0200
@@ -31,6 +31,9 @@
 Patch1: kicad-user-library.patch
 # PATCH-FEATURE-OPENSUSE kicad-library-repos-install.patch
 Patch2: kicad-library-repos-install.patch
+# kicad looks in /usr/share/doc/kicad for help files and doesn't find them.
+# this patch adds packges/ befor kicad.
+Patch3: kicad-suse-help-path.patch
 %if 0%{?suse_version} > 1320
 BuildRequires:  boost-devel >= 1.56
 %else
@@ -91,6 +94,7 @@
 %setup -q -n kicad-%{version}
 %patch1 -p1
 %patch2 -p1
+%patch3
 
 cp %{SOURCE2} .
 
@@ -127,6 +131,16 @@
 %fdupes -s %{buildroot}%{_datadir}/kicad
 %fdupes -s %{buildroot}%{_datadir}/icons/hicolor
 
+%post
+%desktop_database_post
+%icon_theme_cache_post
+%mime_database_post
+
+%postun
+%desktop_database_postun
+%icon_theme_cache_postun
+%mime_database_postun
+
 %files
 %defattr(-,root,root)
 %doc CHANGELOG.txt COPYRIGHT.txt


++ kicad-suse-help-path.patch ++
Index: common/searchhelpfilefullpath.cpp
===
--- common/searchhelpfilefullpath.cpp.orig
+++ common/searchhelpfilefullpath.cpp
@@ -107,6 +107,7 @@ wxString SearchHelpFileFullPath( const S
 // Below we account for an international subdirectory.
 subdirs.Add( wxT( "share" ) );
 subdirs.Add( wxT( "doc" ) );
+subdirs.Add( wxT( "packages" ) );
 subdirs.Add( wxT( "kicad" ) );
 subdirs.Add( wxT( "help" ) );
 



commit muffin for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package muffin for openSUSE:Factory checked 
in at 2016-05-10 09:27:28

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-04-30 
23:29:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.muffin.new/muffin.changes   2016-05-10 
09:27:30.0 +0200
@@ -1,0 +2,10 @@
+Sat May  7 07:12:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.0.1:
+  * display.c: Handle META_TILE_MAXIMIZE in
+meta_resize_gravity_from_tile_mode().
+  * tiling: Fix resizing of partially maximised windows.
+  * frames.c: Do not infinite loop on the variants GList.
+Make variable names less similar.
+
+---

Old:

  muffin-3.0.0.tar.gz

New:

  muffin-3.0.1.tar.gz



Other differences:
--
++ muffin.spec ++
--- /var/tmp/diff_new_pack.O4IheA/_old  2016-05-10 09:27:31.0 +0200
+++ /var/tmp/diff_new_pack.O4IheA/_new  2016-05-10 09:27:31.0 +0200
@@ -20,7 +20,7 @@
 %define sover   0
 %define typelib typelib-1_0-MetaMuffin-0_0
 Name:   muffin
-Version:3.0.0
+Version:3.0.1
 Release:0
 Summary:Cinnamon Desktop default window manager
 License:GPL-2.0+ and MIT

++ muffin-3.0.0.tar.gz -> muffin-3.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/muffin-3.0.0/configure.ac 
new/muffin-3.0.1/configure.ac
--- old/muffin-3.0.0/configure.ac   2016-04-24 13:25:12.0 +0200
+++ new/muffin-3.0.1/configure.ac   2016-05-06 15:35:45.0 +0200
@@ -2,7 +2,7 @@
 
 m4_define([muffin_major_version], [3])
 m4_define([muffin_minor_version], [0])
-m4_define([muffin_micro_version], [0])
+m4_define([muffin_micro_version], [1])
 
 m4_define([muffin_version],
   [muffin_major_version.muffin_minor_version.muffin_micro_version])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/muffin-3.0.0/debian/changelog 
new/muffin-3.0.1/debian/changelog
--- old/muffin-3.0.0/debian/changelog   2016-04-24 13:25:12.0 +0200
+++ new/muffin-3.0.1/debian/changelog   2016-05-06 15:35:45.0 +0200
@@ -1,3 +1,12 @@
+muffin (3.0.1) sarah; urgency=medium
+
+  [ Michael Webster ]
+  * display.c: handle META_TILE_MAXIMIZE in 
meta_resize_gravity_from_tile_mode().
+  * tiling: Fix resizing of partially maximized windows -
+  * frames.c: don't infinite loop on the variants GList.  Make variable names 
less similar.
+
+ -- Clement Lefebvre   Fri, 06 May 2016 14:34:44 +0100
+
 muffin (3.0.0) sarah; urgency=medium
 
   [ Michael Webster ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/muffin-3.0.0/src/core/display.c 
new/muffin-3.0.1/src/core/display.c
--- old/muffin-3.0.0/src/core/display.c 2016-04-24 13:25:12.0 +0200
+++ new/muffin-3.0.1/src/core/display.c 2016-05-06 15:35:45.0 +0200
@@ -4937,6 +4937,9 @@
   case META_TILE_LRC:
 gravity = SouthEastGravity;
 break;
+  case META_TILE_MAXIMIZE:
+gravity = CenterGravity;
+break;
   default:
 break;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/muffin-3.0.0/src/core/keybindings.c 
new/muffin-3.0.1/src/core/keybindings.c
--- old/muffin-3.0.0/src/core/keybindings.c 2016-04-24 13:25:12.0 
+0200
+++ new/muffin-3.0.1/src/core/keybindings.c 2016-05-06 15:35:45.0 
+0200
@@ -2690,11 +2690,21 @@
   action == META_KEYBINDING_ACTION_PUSH_SNAP_UP ||
   action == META_KEYBINDING_ACTION_PUSH_SNAP_DOWN;
 
-  MetaTileMode new_mode = get_new_tile_mode (mode, window->tile_mode);
+  MetaTileMode new_mode = get_new_tile_mode (mode, META_WINDOW_MAXIMIZED 
(window) ?
+   META_TILE_MAXIMIZE : 
window->tile_mode);
   if (new_mode == window->tile_mode)
 return;
 
-  meta_window_tile (window, new_mode, snap);
+  if (new_mode == META_TILE_MAXIMIZE)
+{
+  meta_window_maximize (window,
+META_MAXIMIZE_HORIZONTAL |
+META_MAXIMIZE_VERTICAL);
+}
+  else
+{
+  meta_window_tile (window, new_mode, snap);
+}
 }
 
 static void
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/muffin-3.0.0/src/core/window.c 
new/muffin-3.0.1/src/core/window.c
--- old/muffin-3.0.0/src/core/window.c  2016-04-24 13:25:12.0 +0200
+++ 

commit yast2-slide-show for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-slide-show for 
openSUSE:Factory checked in at 2016-05-10 09:27:58

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


Package is "yast2-slide-show"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-slide-show/yast2-slide-show.changes
2016-04-28 20:31:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-slide-show.new/yast2-slide-show.changes   
2016-05-10 09:27:59.0 +0200
@@ -1,0 +2,13 @@
+Mon May 09 09:13:50 UTC 2016 - g...@opensuse.org
+
+- Update to version 84.87.20160506.56106a5:
+  + Translated using Weblate (Czech)
+  + Translated using Weblate (French)
+
+---
+Thu Apr 28 11:03:26 UTC 2016 - g...@opensuse.org
+
+- Update to version 84.87.20160428.904f4cd:
+  + Translated using Weblate (Arabic)
+
+---

Old:

  yast2-slide-show-84.87.20160427.88aaafc.tar.xz

New:

  yast2-slide-show-84.87.20160506.56106a5.tar.xz



Other differences:
--
++ yast2-slide-show.spec ++
--- /var/tmp/diff_new_pack.K6Iv78/_old  2016-05-10 09:27:59.0 +0200
+++ /var/tmp/diff_new_pack.K6Iv78/_new  2016-05-10 09:27:59.0 +0200
@@ -21,7 +21,7 @@
 # xml2po probably is not thread-safe.
 %define jobs 1
 Name:   yast2-slide-show
-Version:84.87.20160427.88aaafc
+Version:84.87.20160506.56106a5
 Release:0
 Summary:Slide show displayed during package installation with YaST
 License:GPL-2.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.K6Iv78/_old  2016-05-10 09:28:00.0 +0200
+++ /var/tmp/diff_new_pack.K6Iv78/_new  2016-05-10 09:28:00.0 +0200
@@ -3,4 +3,4 @@
 git://github.com/lnussel/yast-slide-show.git
   6f56730fc1760741bd3b6e95b3f02dad104347f0
 git://github.com/openSUSE/yast-slide-show.git
-  88aaafc5ae0158bd722f7d0f51ce713ee904993e
\ No newline at end of file
+  56106a58d7741d7a48c04f24253e3cf77c341cb7
\ No newline at end of file

++ yast2-slide-show-84.87.20160427.88aaafc.tar.xz -> 
yast2-slide-show-84.87.20160506.56106a5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-slide-show-84.87.20160427.88aaafc/po/ar.po 
new/yast2-slide-show-84.87.20160506.56106a5/po/ar.po
--- old/yast2-slide-show-84.87.20160427.88aaafc/po/ar.po2016-04-27 
15:43:31.0 +0200
+++ new/yast2-slide-show-84.87.20160506.56106a5/po/ar.po2016-05-09 
11:13:50.0 +0200
@@ -11,16 +11,17 @@
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: translat...@suse.de\n"
 "POT-Creation-Date: 2016-04-26 17:56+0200\n"
-"PO-Revision-Date: 2015-05-21 09:35+0300\n"
-"Last-Translator: malhargan \n"
-"Language-Team: سوزي\n"
+"PO-Revision-Date: 2016-04-28 05:27+\n"
+"Last-Translator: mohammad alhargan \n"
+"Language-Team: Arabic \n"
 "Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Virtaal 0.7.1\n"
+"X-Generator: Weblate 2.5\n"
 
 #: slideshow.xml:14(title)
 msgid "Slide Show"
@@ -43,6 +44,15 @@
 "complements openSUSE's other release Tumbleweed, which caters to those who "
 "want continuously updated, tested and new stable packages."
 msgstr ""
+"هناك سبب وجيه لكون \"الاختيار الافضل\" لمسؤولي النظام والمطورين ومستخدمي سطح "
+"المكتب هو أوبن سوزي. \" أوبن سوزي يتيح خيارات متعددة ويوفر سطح مكتب سهل "
+"الاستخدام، وبيئة خادم مميزة وغنية. يحتار الناس بين أحدث البرمجيات أو طويلة "
+"الدعم ومستقرة، فيتحول إلى نظام لينكس أوبن سوزي. Leap 42.1 توفر \"أفضل "
+"الخيارات\" - الموثوقية والبرمجيات الحديثة. ترتكز على أساس فلسفة مشروع لينوكس،"
+" Leap 42.1 يجمع بين جوهر SUSE وهو الثبات مع روح الابتكار لدى المجتمعات "
+"المفتوحة المصدر. تقدم المجتمعات الخيارات للصناع، Leap 42.1 يكمل إصدارات أوبن "
+"سوزي الأخرى، والتي تقدم خدماتها للذين يريدون التحديث باستمرار، والاختبار "
+"وآخر الحزم المستقرة."
 
 #: slideshow.xml:25(title)
 msgid "openSUSE.org"
@@ -57,20 +67,19 @@
 "languages. All of that work is available for free in the openSUSE Linux "
 "distribution available at www.opensuse.org."
 msgstr ""
-"أوبن سوزي مشروع مجتمعي أنشأته وترعاها سوزي لتمنحه للحواسيب الأكثر استعمالا "
-"في العالم. كثير من الناس من جميع أنحاء العالم يسهم مشروع أوبن سوزي المشروع "
+"أوبن سوزي مشروع مجتمعي أنشأته وترعاها سوزي لتقدمه للحواسيب 

commit crawl for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package crawl for openSUSE:Factory checked 
in at 2016-05-10 09:28:01

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


Package is "crawl"

Changes:

--- /work/SRC/openSUSE:Factory/crawl/crawl.changes  2016-01-05 
21:55:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.crawl.new/crawl.changes 2016-05-10 
09:28:05.0 +0200
@@ -1,0 +2,5 @@
+Mon May  9 08:49:44 UTC 2016 - steevste...@gmail.com
+
+- Update to 0.18.1
+
+---

Old:

  stone_soup-0.17.1-nodeps.tar.xz

New:

  stone_soup-0.18.1-nodeps.tar.xz



Other differences:
--
++ crawl.spec ++
--- /var/tmp/diff_new_pack.wk7Iej/_old  2016-05-10 09:28:06.0 +0200
+++ /var/tmp/diff_new_pack.wk7Iej/_new  2016-05-10 09:28:06.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   crawl
-Version:0.17.1
+Version:0.18.1
 Release:0
 Summary:Roguelike dungeon exploration game
 License:GPL-2.0+

++ stone_soup-0.17.1-nodeps.tar.xz -> stone_soup-0.18.1-nodeps.tar.xz ++
/work/SRC/openSUSE:Factory/crawl/stone_soup-0.17.1-nodeps.tar.xz 
/work/SRC/openSUSE:Factory/.crawl.new/stone_soup-0.18.1-nodeps.tar.xz differ: 
char 26, line 1




commit xsane for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package xsane for openSUSE:Factory checked 
in at 2016-05-10 09:27:56

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


Package is "xsane"

Changes:

--- /work/SRC/openSUSE:Factory/xsane/xsane.changes  2014-01-29 
07:17:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.xsane.new/xsane.changes 2016-05-10 
09:27:57.0 +0200
@@ -1,0 +2,12 @@
+Tue May 03 19:43:41 UTC 2016 - joerg.loren...@ki.tng.de
+
+- Update to version 0.999:
+  + Better preview window size calculation (thanks to
+Nils Phillipsen).
+  + Removed null-pointer bug in xsane_update_param (thanks to
+Nils Phillipsen).
+  + Manual page bugix.
+  + Changed email password storage.
+- Fixed no-eula.patch.
+
+---

Old:

  xsane-0.998.tar.bz2

New:

  xsane-0.999.tar.gz



Other differences:
--
++ xsane.spec ++
--- /var/tmp/diff_new_pack.8XXPVD/_old  2016-05-10 09:27:58.0 +0200
+++ /var/tmp/diff_new_pack.8XXPVD/_new  2016-05-10 09:27:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xsane
 #
-# 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,14 +17,14 @@
 
 
 Name:   xsane
-Version:0.998
+Version:0.999
 Release:0
 Summary:A GTK-Based Graphical Scanning Front-End for SANE
 License:GPL-2.0+
 Group:  Hardware/Scanner
 Url:http://www.xsane.org/
 # URL for Source0: http://www.xsane.org/download/xsane-0.998.tar.gz
-Source0:xsane-%{version}.tar.bz2
+Source0:http://www.xsane.org/download/xsane-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM xsane-desktop.patch sbra...@suse.cz -- Fix upstream 
desktop file.
 Patch:  %{name}-desktop.patch
 # fix printf using locale dependent float representation
@@ -50,6 +50,7 @@
 BuildRequires:  liblcms-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  update-desktop-files
+BuildRequires:  fdupes
 %if 0%{?suse_version} > 1130
 BuildRequires:  sane-backends-devel
 %else
@@ -109,7 +110,7 @@
 
 %build
 # Set our preferred architecture-specific flags for the compiler and linker:
-#export CFLAGS="%{optflags} -fno-strict-aliasing"
+export CFLAGS="%{optflags} -fno-strict-aliasing"
 # See /usr/lib/rpm/suse_macros regarding our RPM macros (e.g. sysconfdir is 
/etc):
 #ACLOCAL="aclocal -I m4" autoreconf -f -i
 %configure\
@@ -117,28 +118,18 @@
 make %{?_smp_mflags}
 
 %install
-make install\
-   prefix=%{buildroot}%{_prefix}\
-   bindir=%{buildroot}%{_bindir}\
-   datadir=%{buildroot}%{_datadir}\
-   mandir=%{buildroot}%{_mandir}\
-   desktopappdir=%{buildroot}%{_datadir}/applications\
-   pixmapdir=%{buildroot}%{_datadir}/pixmaps
+%makeinstall
 # Create GIMP plugin link:
 mkdir -p %{buildroot}%{_libdir}/gimp/2.0/plug-ins
 ln -sf %{_bindir}/xsane %{buildroot}%{_libdir}/gimp/2.0/plug-ins/xsane
 %suse_update_desktop_file %{name}
 %find_lang %{name}
-
-%clean
-rm -rf %{buildroot}
+%fdupes %{buildroot}
 
 %files -f %{name}.lang
 %defattr(-,root,root)
 # Exclude xsane.WIN* and xsane,INSTALL:
 %doc xsane.[A-HJ-VX-Z]*
-# The manual is in _datadir/sane/xsane/doc, so do not package it here again:
-#%doc doc/*.html doc/*.jpg
 %{_bindir}/xsane
 %{_datadir}/sane/xsane
 %doc %{_mandir}/man1/xsane.1*

++ no-eula.patch ++
--- /var/tmp/diff_new_pack.8XXPVD/_old  2016-05-10 09:27:58.0 +0200
+++ /var/tmp/diff_new_pack.8XXPVD/_new  2016-05-10 09:27:58.0 +0200
@@ -1,12 +1,9 @@
-Index: src/xsane.c
-===
 src/xsane.c.orig
-+++ src/xsane.c
-@@ -5815,19 +5815,7 @@ static int xsane_init(int argc, char **a
- xsane.xsane_rc_set_filename = strdup("xsane"); /* ".rc" is appended later 
*/
+--- src/xsane.c.orig   2010-11-16 21:57:51.0 +0100
 src/xsane.c2016-05-03 20:59:22.711671727 +0200
+@@ -5816,18 +5816,7 @@
}
  
--
+ 
 -  if (xsane_pref_restore()) /* restore preferences, returns TRUE if license 
is not accpted yet */
 -  {
 -if (xsane_display_eula(1)) /* show license and ask for accept/not accept 
*/
@@ -23,17 +20,15 @@
  
xsane_pref_restore_media();
  
-Index: src/xsane.h
-===
 src/xsane.h.orig
-+++ src/xsane.h
+--- src/xsane.h.orig   2013-05-22 23:43:46.0 +0200
 src/xsane.h2016-05-03 20:59:19.311739341 +0200
 @@ -93,9 +93,9 @@
  
- #define 

commit syncthing for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package syncthing for openSUSE:Factory 
checked in at 2016-05-10 09:27:37

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


Package is "syncthing"

Changes:

--- /work/SRC/openSUSE:Factory/syncthing/syncthing.changes  2016-04-28 
17:00:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.syncthing.new/syncthing.changes 2016-05-10 
09:27:39.0 +0200
@@ -1,0 +2,8 @@
+Sat May  7 07:12:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.12.23:
+  * lib/upgrade: Enforce limits on download archives.
+  * lib/upgrade: Auto upgrade signature should cover version & arch.
+  * gui: angular and angular-translate updates.
+
+---

Old:

  syncthing-source-v0.12.22.tar.gz

New:

  syncthing-source-v0.12.23.tar.gz



Other differences:
--
++ syncthing.spec ++
--- /var/tmp/diff_new_pack.yoxMkV/_old  2016-05-10 09:27:40.0 +0200
+++ /var/tmp/diff_new_pack.yoxMkV/_new  2016-05-10 09:27:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   syncthing
-Version:0.12.22
+Version:0.12.23
 Release:0
 Summary:FOSS Continuous File Synchronisation
 License:MPL-2.0

++ syncthing-source-v0.12.22.tar.gz -> syncthing-source-v0.12.23.tar.gz 
++
 28698 lines of diff (skipped)




commit tpm2-0-tss for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package tpm2-0-tss for openSUSE:Factory 
checked in at 2016-05-10 09:27:39

Comparing /work/SRC/openSUSE:Factory/tpm2-0-tss (Old)
 and  /work/SRC/openSUSE:Factory/.tpm2-0-tss.new (New)


Package is "tpm2-0-tss"

Changes:

--- /work/SRC/openSUSE:Factory/tpm2-0-tss/tpm2-0-tss.changes2016-04-28 
16:56:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.tpm2-0-tss.new/tpm2-0-tss.changes   
2016-05-10 09:27:41.0 +0200
@@ -1,0 +2,6 @@
+Fri May  6 19:45:29 UTC 2016 - jeng...@inai.de
+
+- Correct package naming to be in line with shared library guideline
+- Remove unused systemd build and runtime dependencies
+
+---



Other differences:
--
++ tpm2-0-tss.spec ++
--- /var/tmp/diff_new_pack.cO0VE7/_old  2016-05-10 09:27:42.0 +0200
+++ /var/tmp/diff_new_pack.cO0VE7/_new  2016-05-10 09:27:42.0 +0200
@@ -29,10 +29,8 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
 BuildRequires:  pkg-config
-BuildRequires:  systemd-rpm-macros
 Requires(pre):  pwdutils
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{?systemd_requires}
 
 %description
 The tpm2-0-tss package provides a TPM 2.0 TSS implementation.
@@ -41,18 +39,21 @@
 Summary:Development headers for the TSS (TCG Software Stack) access 
library for TPM 2.0 chips
 Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
-Requires:   libtss2 = %{version}
+Requires:   libtss2-0 = %{version}
 
 %description devel
 This package provides the development files for the libtss2 library
 for accessing TPM 2.0 chips.
 
-%package -n libtss2
+%package -n libtss2-0
 Summary:TSS (TCG Software Stack) access library for TPM 2.0 chip
 Group:  System/Libraries
 Requires:   trousers
+# Non-SLPP package name from earlier
+Obsoletes:  libtss2 < %version-%release
+Provides:   libtss2 = %version-%release
 
-%description -n libtss2
+%description -n libtss2-0
 This package provides the library to access the TSS (TCG Software Stack) for
 accessing TPM 2.0 chips.
 
@@ -68,8 +69,8 @@
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 
-%post -n libtss2 -p /sbin/ldconfig
-%postun -n libtss2 -p /sbin/ldconfig
+%post -n libtss2-0 -p /sbin/ldconfig
+%postun -n libtss2-0 -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
@@ -84,7 +85,7 @@
 ##only available in static form
 #%{_libdir}/libtddl.a
 
-%files -n libtss2
+%files -n libtss2-0
 %defattr(-,root,root)
 /%{_libdir}/libtss2.so.*
 /%{_libdir}/libtctidevice.so.*

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.cO0VE7/_old  2016-05-10 09:27:42.0 +0200
+++ /var/tmp/diff_new_pack.cO0VE7/_new  2016-05-10 09:27:42.0 +0200
@@ -1 +1 @@
-libtss2
+libtss2-0




commit notify-osd for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package notify-osd for openSUSE:Factory 
checked in at 2016-05-10 09:27:20

Comparing /work/SRC/openSUSE:Factory/notify-osd (Old)
 and  /work/SRC/openSUSE:Factory/.notify-osd.new (New)


Package is "notify-osd"

Changes:

--- /work/SRC/openSUSE:Factory/notify-osd/notify-osd.changes2016-01-01 
19:51:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.notify-osd.new/notify-osd.changes   
2016-05-10 09:27:21.0 +0200
@@ -1,0 +2,8 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.9.35~bzr20160415:
+  * Stack: Allow to replace a notification when the replace_id has
+been provided (lp#1569682).
+- Update notify-osd-leolik.patch.
+
+---

Old:

  notify-osd_0.9.35+16.04.20151201.orig.tar.gz

New:

  notify-osd_0.9.35+16.04.20160415.orig.tar.gz



Other differences:
--
++ notify-osd.spec ++
--- /var/tmp/diff_new_pack.WvmEYi/_old  2016-05-10 09:27:22.0 +0200
+++ /var/tmp/diff_new_pack.WvmEYi/_new  2016-05-10 09:27:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package notify-osd
 #
-# 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,9 +16,9 @@
 #
 
 
-%define _version 0.9.35+16.04.20151201
+%define _version 0.9.35+16.04.20160415
 Name:   notify-osd
-Version:0.9.35~bzr20151201
+Version:0.9.35~bzr20160415
 Release:0
 Summary:Streamlined Notification Daemon
 License:GPL-3.0+
@@ -34,6 +34,7 @@
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
 BuildRequires:  intltool
+BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(glib-2.0)
@@ -53,7 +54,7 @@
 and timeouts.
 
 %prep
-%setup -q -n %{name}-%{_version}
+%setup -q -c
 %patch0
 %patch1 -p1
 

++ notify-osd-leolik.patch ++
--- /var/tmp/diff_new_pack.WvmEYi/_old  2016-05-10 09:27:22.0 +0200
+++ /var/tmp/diff_new_pack.WvmEYi/_new  2016-05-10 09:27:22.0 +0200
@@ -199,7 +199,7 @@
// "clear" input-mask, set title/icon/attributes
gtk_widget_set_app_paintable (window, TRUE);
gtk_window_set_title (GTK_WINDOW (window), "notify-osd");
-@@ -2681,7 +2741,7 @@
+@@ -2690,7 +2750,7 @@
  
priv = self->priv;
  
@@ -208,7 +208,7 @@
return FALSE;
  
return priv->mouse_over;
-@@ -2785,7 +2845,7 @@
+@@ -2794,7 +2854,7 @@
  
// check if mouse-pointer is over bubble (and proximity-area) initially
pointer_update (self);
@@ -217,7 +217,7 @@
priv->prevent_fade = TRUE;
else
priv->prevent_fade = FALSE;
-@@ -3348,6 +3408,8 @@
+@@ -3357,6 +3417,8 @@
gint   old_bubble_height = 0;
gint   new_bubble_width  = 0;
gint   new_bubble_height = 0;
@@ -226,7 +226,7 @@
Defaults*  d;
BubblePrivate* priv;
  
-@@ -3542,6 +3604,13 @@
+@@ -3551,6 +3613,13 @@
_refresh_body (self);
  
update_shape (self);
@@ -635,7 +635,7 @@
  
  /* fwd declaration */
  void close_handler (GObject* n, Stack*  stack);
-@@ -653,6 +654,15 @@
+@@ -674,6 +675,15 @@
if (body)
bubble_set_message_body (bubble, body);
  
@@ -651,20 +651,28 @@
if (new_bubble && bubble_is_append_allowed(bubble)) {
app_bubble = find_bubble_for_append(self, bubble);
  
-@@ -964,8 +974,7 @@
+@@ -984,8 +994,54 @@
case SLOT_ALLOCATION_FIXED:
*y += EM2PIXELS 
(defaults_get_icon_size (d), d) +
  2 * EM2PIXELS 
(defaults_get_margin_size (d), d) +
 -EM2PIXELS 
(defaults_get_bubble_vert_gap (d), d); /* +
 -2 * EM2PIXELS 
(defaults_get_bubble_shadow_size (d, is_composited), d);*/
 +EM2PIXELS 
(defaults_get_bubble_vert_gap (d), d) + 2;
-   break;
- 
-   case SLOT_ALLOCATION_DYNAMIC:
-@@ -981,6 +990,161 @@
- 
-   }
-   break;
++  break;
++
++  case SLOT_ALLOCATION_DYNAMIC:
++  g_assert (stack_is_slot_vacant 
(self, 

commit trousers for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package trousers for openSUSE:Factory 
checked in at 2016-05-10 09:27:41

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


Package is "trousers"

Changes:

--- /work/SRC/openSUSE:Factory/trousers/trousers.changes2015-06-23 
11:58:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.trousers.new/trousers.changes   2016-05-10 
09:27:42.0 +0200
@@ -1,0 +2,8 @@
+Fri May  6 20:15:13 UTC 2016 - jeng...@inai.de
+
+- Check for user/group existence before attempting to add them,
+  and remove error suppression from these calls.
+- Avoid runtime dependency on systemd, the macros can all deal with
+  its absence.
+
+---



Other differences:
--
++ trousers.spec ++
--- /var/tmp/diff_new_pack.wxgLGn/_old  2016-05-10 09:27:43.0 +0200
+++ /var/tmp/diff_new_pack.wxgLGn/_new  2016-05-10 09:27:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package trousers
 #
-# 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
@@ -23,7 +23,7 @@
 License:BSD-3-Clause
 Group:  Productivity/Security
 Url:http://trousers.sourceforge.net/
-Source0:
http://downloads.sourceforge.net/project/trousers/trousers/%{version}/%{name}-%{version}.tar.gz
+Source0:http://downloads.sf.net/trousers/%{name}-%{version}.tar.gz
 Source1:tcsd.service
 Source2:baselibs.conf
 BuildRequires:  gtk2-devel
@@ -31,7 +31,6 @@
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
 BuildRequires:  systemd-rpm-macros
-%{?systemd_requires}
 Requires(pre):  pwdutils
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -101,8 +100,10 @@
 mv -v %{buildroot}/%{_lib}/*.a %{buildroot}%{_libdir}
 
 %pre
-%{_sbindir}/groupadd -g 98 tss 2> /dev/null || :
-%{_sbindir}/useradd -u 98 -o -g tss -s /bin/false -c "TSS daemon" -d 
%{_localstatedir}/lib/tpm tss 2> /dev/null || :
+%_bindir/getent group tss >/dev/null || %{_sbindir}/groupadd -g 98 tss || :
+%_bindir/getent passwd tss >/dev/null || \
+   %{_sbindir}/useradd -u 98 -o -g tss -s /bin/false -c "TSS daemon" \
+   -d %{_localstatedir}/lib/tpm tss || :
 %service_add_pre tcsd.service
 
 %post

++ trousers-0.3.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trousers-0.3.13/bootstrap.sh 
new/trousers-0.3.13/bootstrap.sh
--- old/trousers-0.3.13/bootstrap.sh1970-01-01 01:00:00.0 +0100
+++ new/trousers-0.3.13/bootstrap.sh2014-06-10 23:08:32.0 +0200
@@ -0,0 +1,5 @@
+set -x
+aclocal || exit 1
+libtoolize --force -c || exit 1
+automake --add-missing -c --foreign || exit 1
+autoconf || exit 1




commit fusion-icon for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package fusion-icon for openSUSE:Factory 
checked in at 2016-05-10 09:27:19

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


Package is "fusion-icon"

Changes:

--- /work/SRC/openSUSE:Factory/fusion-icon/fusion-icon.changes  2016-03-11 
12:29:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.fusion-icon.new/fusion-icon.changes 
2016-05-10 09:27:20.0 +0200
@@ -1,0 +2,5 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Add a missing python-gobject-Gdk dependency.
+
+---



Other differences:
--
++ fusion-icon.spec ++
--- /var/tmp/diff_new_pack.gPJfT5/_old  2016-05-10 09:27:21.0 +0200
+++ /var/tmp/diff_new_pack.gPJfT5/_new  2016-05-10 09:27:21.0 +0200
@@ -38,6 +38,9 @@
 Recommends: compiz-gnome < 0.9
 Suggests:   compizconfig-settings-manager < 0.9
 BuildArch:  noarch
+%if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200
+Requires:   python-gobject-Gdk
+%endif
 
 %description
 This package provides a tray icon that allows you to easily enable,




commit stlink for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package stlink for openSUSE:Factory checked 
in at 2016-05-10 09:27:49

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


Package is "stlink"

Changes:

--- /work/SRC/openSUSE:Factory/stlink/stlink.changes2015-04-07 
09:29:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.stlink.new/stlink.changes   2016-05-10 
09:27:50.0 +0200
@@ -1,0 +2,13 @@
+Sun May  8 06:47:18 UTC 2016 - dmitr...@opensuse.org
+
+- Update to version 1.2.0
+  * Add multiple stlink probing (`st-info --probe`, `st-info --hla-serial`)
+with printing serial in hex and OpenOCD `hla_serial` format
+  * Add stlink usb probe API functions
+  * Added parameter to specify one stlink v2 of many
+  * Chip support added for: STM32L053R8, STM32F7, STM32L4, F446,
+STM32F303 High Density, STM32L1xx Cat.2 devices
+  * Board support added for: Nucleo-F303RE, Nucleo-F411RE
+  * Minor fixes and updates
+
+---

Old:

  stlink-1.1.0.tar.gz

New:

  stlink-1.2.0.tar.gz



Other differences:
--
++ stlink.spec ++
--- /var/tmp/diff_new_pack.fX4Qgn/_old  2016-05-10 09:27:51.0 +0200
+++ /var/tmp/diff_new_pack.fX4Qgn/_new  2016-05-10 09:27:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package stlink
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   stlink
-Version:1.1.0
+Version:1.2.0
 Release:0
 Summary:STM32 discovery line linux programmer
 License:BSD-3-Clause
@@ -51,6 +51,7 @@
 autoreconf -fi
 %configure \
 --with-gtk
+
 make %{?_smp_mflags}
 
 %install
@@ -60,7 +61,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING README
+%doc AUTHORS ChangeLog COPYING README
 %{_bindir}/st-*
 %{_udevrulesdir}/49-stlink*
 

++ stlink-1.1.0.tar.gz -> stlink-1.2.0.tar.gz ++
 5623 lines of diff (skipped)




commit setconf for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package setconf for openSUSE:Factory checked 
in at 2016-05-10 09:27:33

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


Package is "setconf"

Changes:

--- /work/SRC/openSUSE:Factory/setconf/setconf.changes  2015-07-21 
13:27:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.setconf.new/setconf.changes 2016-05-10 
09:27:34.0 +0200
@@ -1,0 +2,11 @@
+Sat May  7 07:12:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.7.2 (changes since 0.6.7):
+  * Deal mainly with bytes instead of strings.
+  * Handle ISO-8859-1 (Latin1) better, for Python 3.
+  * Fix a failing testcase for +=.
+  * Fix an issue that only happened on Python 3.2.
+  * Remove a dependency on chardet.
+  * Several minor changes.
+
+---

Old:

  setconf-0.6.7.tar.xz

New:

  setconf-0.7.2.tar.xz



Other differences:
--
++ setconf.spec ++
--- /var/tmp/diff_new_pack.QsuRo9/_old  2016-05-10 09:27:35.0 +0200
+++ /var/tmp/diff_new_pack.QsuRo9/_new  2016-05-10 09:27:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package setconf
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   setconf
-Version:0.6.7
+Version:0.7.2
 Release:0
 Summary:Utility to easily change settings in configuration files
 License:GPL-2.0+

++ setconf-0.6.7.tar.xz -> setconf-0.7.2.tar.xz ++
Files old/setconf-0.6.7/setconf.1.gz and new/setconf-0.7.2/setconf.1.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setconf-0.6.7/setconf.py new/setconf-0.7.2/setconf.py
--- old/setconf-0.6.7/setconf.py2015-06-25 21:50:37.0 +0200
+++ new/setconf-0.7.2/setconf.py2016-03-28 15:07:26.0 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # setconf
@@ -22,30 +22,31 @@
 # Dec 2014
 # Mar 2015
 # Jun 2015
+# Mar 2016
 #
 
 from sys import argv
 from sys import exit as sysexit
-from os import linesep
+from os import linesep as linesep_str
 from os.path import exists
 from tempfile import mkstemp
-from subprocess import check_output
 from decimal import Decimal
+from base64 import b64decode
 
-# TODO: Use optparse or argparse if shedskin is no longer a target.
+VERSION = "0.7.2"
 
-VERSION = "0.6.7"
-ASSIGNMENTS = ['==', '=>', '+=', '-=', '=', ':=', '::', ':']
+# TODO: Use optparse or argparse if shedskin is no longer a target.
 
 
-def get_encoding(filename):
-"""Use the output from the file command to guess the encoding.
-Returns (True, encoding) or (False, None)"""
-s = check_output(["/usr/bin/file", filename]).strip().decode('utf-8')
-if s.endswith("text"):
-return (True, s.split(" ")[1])
-else:
-return (False, None)
+def bs(x):
+"""Convert from string to UTF-8 encoded bytes, if needed"""
+if type(x) != type(b""):
+return x.encode("utf-8")
+return x
+
+NL = bs(linesep_str)
+ASSIGNMENTS = [b'==', b'=>', b'+=', b'-=', b'?=',
+   b'=', b':=', b'::', b':']
 
 
 def parts(line, including_assignment=True):
@@ -55,14 +56,16 @@
 if not stripline:
 return None, None
 # Skip lines that start with #, // or /*
-if (stripline[0] == "#") or (stripline[:2] in ["//", "/*"]):
-return None, None
+for commentsymbol in [b"#", b"//", b"/*"]:
+if stripline.startswith(commentsymbol):
+# Skip this line
+return None, None
 # These assignments are supported, in this order
-assignment = ""
+assignment = b""
 found = []
 for ass in ASSIGNMENTS:
 # Skip the += and -= operators when finding keys and values
-if ass in ['+=', '-=']:
+if ass in [b'+=', b'-=']:
 continue
 # Collect the rest
 if ass in line:
@@ -73,7 +76,7 @@
 elif found:  # > 1
 # If several assignments are found, use the first one
 firstpos = len(line)
-firstassignment = ""
+firstassignment = b""
 for ass in found:
 pos = line.index(ass)
 if pos < firstpos:
@@ -100,12 +103,15 @@
 
 
 def changeline(line, newvalue):
+line = bs(line)
+newvalue = bs(newvalue)
+
 first = firstpart(line)
 if first:
-if "= " in line or ": " in line or "> " in line:
-return first + " " + 

commit python3-veusz for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package python3-veusz for openSUSE:Factory 
checked in at 2016-05-10 09:27:52

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


Package is "python3-veusz"

Changes:

--- /work/SRC/openSUSE:Factory/python3-veusz/python3-veusz.changes  
2016-04-12 19:32:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-veusz.new/python3-veusz.changes 
2016-05-10 09:27:53.0 +0200
@@ -1,0 +2,49 @@
+Sat May  7 19:31:32 UTC 2016 - badshah...@gmail.com
+
+- Update to version 1.24:
+  + Text labels can now include Python expressions inside %{{ }}%
+  + Added built-in functions DATE([fmt]), TIME([fmt]), FILENAME()
+and BASENAME() when evaluating expressions, which are useful
+when used in labels
+  + Added Python dictionary ENVIRON when evaluating expressions,
+to obtain values from environment variables
+  + Added DATA(name, [part]) function to expression environment
+for accessing values from datasets, useful for function
+evaluation or labels
+  + Added SETTING(path) function for expression evaluation to
+obtain values of settings
+  + Added ESCAPE(text) function to environment, which allows LaTeX
+special characters to be displayed in labels
+  + Add fractions and percentages units to polar plot
+  + Allow number of spokes to be varied in polar plot
+  + Widgets can be clicked holding down shift or ctrl, to add or
+toggle their selection
+  + Add K. Moreland's cool-warm colormap (thanks to S. Richardson)
+  + Added further green-map, blue-darkred, blue-darkorange,
+brown-blue and blue-orange colormaps from Oregon geography
+dept.
+  + Add logarithm and exponential dataset plugins
+  + Add Wipe() command to embedding interface to clear document
+  + Add File->Reload menu option to reload from saved document
+  + Add tooltip to items in FieldWidget showing widget path
+  + Bux fixes:
+- Fix transparency with bar plot
+- Use getcwdu() for python2 to avoid bugs combining paths
+- Handle inf/nan when converting to human readable form in plots
+- Fix CreateHistogram on command line without binparams
+  parameter
+- Handle empty 2D dataset import with grid at edge enabled
+- Do not allow error bars on imported CSV non-numeric data
+- Handle missing argument in \size
+- For data edit dialog, allow 1D dataset to replace 2D dataset
+- Crash if zoom to be height when height is zero
+- Fix problem with 2D import if error message is in unicode
+- With axis-function widget catch result if greater than 1
+  dimension
+- Fix cloning for datasets with / in name
+- Fix crash in embedding if plot window closed while rendering
+  in progress
++ Clean up mess (__pycache__ dirs containing python object files
+  without corresponding sources) after %clean.
+
+---

Old:

  veusz-1.23.2.tar.gz

New:

  veusz-1.24.tar.gz



Other differences:
--
++ python3-veusz.spec ++
--- /var/tmp/diff_new_pack.UtzoT2/_old  2016-05-10 09:27:54.0 +0200
+++ /var/tmp/diff_new_pack.UtzoT2/_new  2016-05-10 09:27:54.0 +0200
@@ -20,7 +20,7 @@
 %define X_display ":98"
 %{?_sip_api:Requires: sip-api(%{_sip_api_major}) >= %{_sip_api}}
 Name:   python3-veusz
-Version:1.23.2
+Version:1.24
 Release:0
 Summary:Scientific plotting library for Python
 License:GPL-2.0+ and Python-2.0
@@ -154,6 +154,10 @@
 PYTHONPATH=%{buildroot}%{python3_sitearch} \
python3 tests/runselftest.py
 
+# CLEAN-UP __pycache__ DIRS CONTAINING OBJECT FILES LEFT BY %%check WITHOUT 
THE CORRESPONDING SOURCES
+rm -fr %{buildroot}%{python3_sitearch}/veusz/*/__pycache__
+rm -fr %{buildroot}%{python3_sitearch}/veusz/__pycache__
+
 %post
 update-mime-database %{_datadir}/mime > /dev/null 2>&1 || :
 %icon_theme_cache_post

++ veusz-1.23.2.tar.gz -> veusz-1.24.tar.gz ++
 3957 lines of diff (skipped)





commit plasma5-mediacenter for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package plasma5-mediacenter for 
openSUSE:Factory checked in at 2016-05-10 09:26:56

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-04-14 13:04:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-mediacenter.new/plasma5-mediacenter.changes 
2016-05-10 09:26:57.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:46:05 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  plasma-mediacenter-5.6.2.tar.xz

New:

  plasma-mediacenter-5.6.3.tar.xz



Other differences:
--
++ plasma5-mediacenter.spec ++
--- /var/tmp/diff_new_pack.oR9F4B/_old  2016-05-10 09:26:58.0 +0200
+++ /var/tmp/diff_new_pack.oR9F4B/_new  2016-05-10 09:26:58.0 +0200
@@ -20,7 +20,7 @@
 %define rname plasma-mediacenter
 
 Name:   plasma5-mediacenter
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Media center workspace for plasma
 License:GPL-2.0+

++ plasma-mediacenter-5.6.2.tar.xz -> plasma-mediacenter-5.6.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mediacenter-5.6.2/CMakeLists.txt 
new/plasma-mediacenter-5.6.3/CMakeLists.txt
--- old/plasma-mediacenter-5.6.2/CMakeLists.txt 2016-04-05 15:55:14.0 
+0200
+++ new/plasma-mediacenter-5.6.3/CMakeLists.txt 2016-04-19 13:18:01.0 
+0200
@@ -5,7 +5,7 @@
 set(QT_MIN_VERSION "5.3.0")
 set (KF5_MIN_VERSION "5.5.0")
 
-set(PROJECT_VERSION "5.6.2")
+set(PROJECT_VERSION "5.6.3")
 set(PROJECT_VERSION_MAJOR "5")
 
 find_package(ECM 0.0.8 REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mediacenter-5.6.2/datasources/lastfm/lastfmimagefetcher.desktop 
new/plasma-mediacenter-5.6.3/datasources/lastfm/lastfmimagefetcher.desktop
--- old/plasma-mediacenter-5.6.2/datasources/lastfm/lastfmimagefetcher.desktop  
2016-04-05 15:54:25.0 +0200
+++ new/plasma-mediacenter-5.6.3/datasources/lastfm/lastfmimagefetcher.desktop  
2016-04-19 13:17:33.0 +0200
@@ -27,6 +27,7 @@
 Name[uk]=Засіб отримання зображень з LastFm
 Name[x-test]=xxLastFmImageFetcherxx
 Name[zh_CN]=获取 LastFm 图片
+Name[zh_TW]=LastFmImageFetcher
 
 X-KDE-ServiceTypes=Plasma/MediaCenter/DataSource
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mediacenter-5.6.2/tests/fakemediasource/fakemediasource.desktop 
new/plasma-mediacenter-5.6.3/tests/fakemediasource/fakemediasource.desktop
--- old/plasma-mediacenter-5.6.2/tests/fakemediasource/fakemediasource.desktop  
2016-04-05 15:54:25.0 +0200
+++ new/plasma-mediacenter-5.6.3/tests/fakemediasource/fakemediasource.desktop  
2016-04-19 13:17:33.0 +0200
@@ -30,6 +30,7 @@
 Name[uk]=Несправжнє медіаджерело
 Name[x-test]=xxFake Mediasourcexx
 Name[zh_CN]=虚拟媒体源
+Name[zh_TW]=假的媒體來源
 
 X-KDE-ServiceTypes=Plasma/MediaCenter/MediaSource
 




commit glucat for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package glucat for openSUSE:Factory checked 
in at 2016-05-10 09:27:26

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


Package is "glucat"

Changes:

--- /work/SRC/openSUSE:Factory/glucat/glucat.changes2015-10-20 
00:08:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.glucat.new/glucat.changes   2016-05-10 
09:27:28.0 +0200
@@ -1,0 +2,41 @@
+Thu May  5 15:54:55 UTC 2016 - badshah...@gmail.com
+
+- Update to version 0.8.1:
+  + The configuration option --with-tuning=arg controls test
+tuning via preprocessor macros and the header files
+test/tuning.h and test/undefine.h.
+  + The configuration option --enable-check-isnan controls checks
+for NaN values, and the configuration option --with-pool-alloc
+controls the use of the Boost pool allocator.
+  + The scripts test/test-all-config-options.sh,
+test/diff-all-config-outputs.sh and
+test/copy-all-config-outputs.sh enable comprehensive tesing of
+configuation options.
+  + The use of Autotools has again been improved, with
+enhancements to make, make clean, make dist and make install,
+and the introduction of make check, make doc and make
+install-doc. 
+- Use make check for the %check section.
+- Add glucat-pyclical-demos-dir.patch to add a configure option
+  "--with-demo-dir" to set a custom path to install the
+  pyclical demos (defaults to %%{_datadir}/pyclical/demos);
+  patch submitted upstream. We use this option to install the
+  demos to %{_docdir}/%{name}/demos.
+- Add glucat-doxygen-build-workaround.patch: required to
+  circumvent a known doxygen 1.8.11 regression (bgo#762982); only
+  required for openSUSE > 13.2. This patch should be dropped when
+  the upstream doxygen bug is fixed and the fixed version is made
+  available for openSUSE:Factory.
+- Add glucat-pyclical-pythonpath.patch to include the correct dir
+  for the Pycilcal module before building the pyclical notebooks;
+  patch sent upstream.
+- Add BuildRequires: automake, autoconf; new patches modify
+  autotool build files.
+- Package pyclical demos.
+- Pyclical module does not build for openSUSE <= 13.2 or Leap
+  42.1.
+- Build HTML and PDF documentation, package them in a separate 
+  sub-package; add BuildRequires on texlive packages required for
+  building the PDF documentation.
+
+---

Old:

  glucat-0.8.0.tar.gz

New:

  glucat-0.8.1.tar.gz
  glucat-doxygen-build-workaround.patch
  glucat-pyclical-demos-dir.patch
  glucat-pyclical-pythonpath.patch



Other differences:
--
++ glucat.spec ++
--- /var/tmp/diff_new_pack.g10ebA/_old  2016-05-10 09:27:29.0 +0200
+++ /var/tmp/diff_new_pack.g10ebA/_new  2016-05-10 09:27:29.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package glucat
 #
-# 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,18 +16,55 @@
 #
 
 
+# GCC >= 4.9 IS REQUIRED FOR THE PYCLICAL MODULE, AVAILABLE FOR openSUSE > 
1320,
+# FOR OLDER VERSIONS, DISABLE PYCLICAL MOD BUT BUILD REST
+%if 0%{?suse_version} > 1320
+%define pyclical_enable 1
+%else
+%define pyclical_enable 0
+%endif
 Name:   glucat
-Version:0.8.0
+Version:0.8.1
 Release:0
 Summary:Library of C++ templates implementing universal Clifford 
algebras
 License:LGPL-3.0
 Group:  Development/Libraries/C and C++
 Url:http://glucat.sourceforge.net/
 Source: 
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
+# PATCH-FEATURE-OPENSUSE glucat-pyclical-demos-dir.patch badshah...@gmail.com 
-- Allow a configure option "--with-demo-dir" to set a custom path to install 
the pyclical demos (defaults to %%{_datadir}/pyclical/demos); patch submitted 
upstream
+Patch0: glucat-pyclical-demos-dir.patch
+# PATCH-FIX-UPSTREAM glucat-doxygen-build-workaround.patch bgo#762982 
badshah...@gmail.com -- Required to circumvent a known doxygen 1.8.11 
regression; only required for openSUSE > 13.2; patch submitted upstream
+# FIXME: PATCH1 SHOULD BE DROPPED WHEN UPSTREAM doxygen BUG IS FIXED AND THE 
FIXED VERSION IS MADE AVAILABLE FOR openSUSE:Factory
+Patch1: glucat-doxygen-build-workaround.patch
+# PATCH-FIX-UPSTREAM glucat-pyclical-pythonpath.patch badshah...@gmail.com -- 
Add the dir where pyclical module is located to PYTHONPATH to make the module 
visible, build fails otherwise; patch submitted upstream

commit bundle-lang-common for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory checked in at 2016-05-10 09:27:42

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-04-22 16:24:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-common.changes   
2016-05-10 09:27:44.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr 30 11:59:50 UTC 2016 - dims...@opensuse.org
+
+- Update package list.
+
+---
--- /work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-gnome.changes 
2016-04-07 18:08:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-gnome.changes
2016-05-10 09:27:44.0 +0200
@@ -1,0 +2,12 @@
+Sat Apr 30 11:59:50 UTC 2016 - dims...@opensuse.org
+
+- Update package list.
+
+---
+Thu Apr  7 17:33:08 UTC 2016 - dims...@opensuse.org
+
+- Update bundle.sh: do not run in an endless loop when encountering
+  an inexisting package. This can happen when a -lang package
+  disappears from the distribution.
+
+---
bundle-lang-kde.changes: same change



Other differences:
--
++ bundle-lang-common.spec ++
--- /var/tmp/diff_new_pack.9PaX3U/_old  2016-05-10 09:27:45.0 +0200
+++ /var/tmp/diff_new_pack.9PaX3U/_new  2016-05-10 09:27:45.0 +0200
@@ -38,7 +38,6 @@
 BuildRequires:  glib2-lang
 BuildRequires:  gnome-keyring-lang
 BuildRequires:  gpg2-lang
-BuildRequires:  grsync-lang
 BuildRequires:  gsettings-desktop-schemas-lang
 BuildRequires:  gstreamer-lang
 BuildRequires:  gstreamer-plugins-base-lang
@@ -115,7 +114,6 @@
 Provides:   glib2-lang = %(rpm -q --queryformat '%{VERSION}' glib2-lang)
 Provides:   gnome-keyring-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-keyring-lang)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
-Provides:   grsync-lang = %(rpm -q --queryformat '%{VERSION}' grsync-lang)
 Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
 Provides:   gstreamer-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-lang)
 Provides:   gstreamer-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-plugins-base-lang)
@@ -147,7 +145,6 @@
 Provides:   locale(glib2:en)
 Provides:   locale(gnome-keyring:en)
 Provides:   locale(gpg2:en)
-Provides:   locale(grsync:en)
 Provides:   locale(gsettings-desktop-schemas:en)
 Provides:   locale(gstreamer-plugins-base:en)
 Provides:   locale(gstreamer-plugins-good:en)
@@ -214,7 +211,6 @@
 Provides:   glib2-lang = %(rpm -q --queryformat '%{VERSION}' glib2-lang)
 Provides:   gnome-keyring-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-keyring-lang)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
-Provides:   grsync-lang = %(rpm -q --queryformat '%{VERSION}' grsync-lang)
 Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
 Provides:   gstreamer-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-lang)
 Provides:   gstreamer-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-plugins-base-lang)
@@ -246,7 +242,6 @@
 Provides:   locale(glib2:de)
 Provides:   locale(gnome-keyring:de)
 Provides:   locale(gpg2:de)
-Provides:   locale(grsync:de)
 Provides:   locale(gsettings-desktop-schemas:de)
 Provides:   locale(gstreamer-plugins-base:de)
 Provides:   locale(gstreamer-plugins-good:de)
@@ -313,7 +308,6 @@
 Provides:   glib2-lang = %(rpm -q --queryformat '%{VERSION}' glib2-lang)
 Provides:   gnome-keyring-lang = %(rpm -q --queryformat '%{VERSION}' 
gnome-keyring-lang)
 Provides:   gpg2-lang = %(rpm -q --queryformat '%{VERSION}' gpg2-lang)
-Provides:   grsync-lang = %(rpm -q --queryformat '%{VERSION}' grsync-lang)
 Provides:   gsettings-desktop-schemas-lang = %(rpm -q --queryformat 
'%{VERSION}' gsettings-desktop-schemas-lang)
 Provides:   gstreamer-lang = %(rpm -q --queryformat '%{VERSION}' 
gstreamer-lang)
 Provides:   gstreamer-plugins-base-lang = %(rpm -q --queryformat 
'%{VERSION}' gstreamer-plugins-base-lang)
@@ -345,7 +339,6 @@
 Provides:   locale(glib2:es)
 Provides:   locale(gnome-keyring:es)
 Provides:   locale(gpg2:es)
-Provides:   locale(grsync:es)
 Provides: 

commit neovim for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package neovim for openSUSE:Factory checked 
in at 2016-05-10 09:27:47

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


Package is "neovim"

Changes:

--- /work/SRC/openSUSE:Factory/neovim/neovim.changes2016-04-28 
16:56:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.neovim.new/neovim.changes   2016-05-10 
09:27:48.0 +0200
@@ -1,0 +2,24 @@
+Thu Apr 28 15:58:15 UTC 2016 - roni...@gmail.com
+
+- Update to version 0.1.4.
+- Run spec-cleaner in `neovim.spec`.
+- Replace lua51-MessagePack build dependency to lua51-mpack.
+- Changelog:
+Features:
+  * 5ebffaa :tcd for tab-local working directory (like :lcd,
+but for tabs)
+  * d835c03 remote/define.vim: support remote function "range"
+  * 007d573 json_encode/json_decode (with sophisticated error
+detection) #4131
+  * b50afb4 clipboard: support "lemonade" tool
+
+Fixes:
+  * cc1beec eval.c: Fix heap corruption error. #4592
+  * 4043725 mbyte.c: Fix invalid memory access in
+utfc_ptr2char_len #4574
+  * 4eb5827 Enable syntax/filetype by default. #4558
+
+Changes:
+  * 5c6592f v:windowid is writeable (useful for GUIs) #4608A
+
+---

Old:

  neovim-0.1.3.tar.gz

New:

  neovim-0.1.4.tar.gz



Other differences:
--
++ neovim.spec ++
--- /var/tmp/diff_new_pack.MNVLnG/_old  2016-05-10 09:27:49.0 +0200
+++ /var/tmp/diff_new_pack.MNVLnG/_new  2016-05-10 09:27:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   neovim
-Version:0.1.3
+Version:0.1.4
 Release:0
 Summary:Vim-fork focused on extensibility and agility
 License:Apache-2.0
@@ -35,14 +35,14 @@
 BuildRequires:  libuv-devel
 BuildRequires:  lua51-BitOp
 BuildRequires:  lua51-LPeg
-BuildRequires:  lua51-MessagePack
+BuildRequires:  lua51-mpack
 BuildRequires:  luajit-devel
 BuildRequires:  pkg-config
+BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(jemalloc)
 BuildRequires:  pkgconfig(termkey)
 BuildRequires:  pkgconfig(unibilium)
 BuildRequires:  pkgconfig(vterm)
-BuildRequires:  update-desktop-files
 Recommends: python-neovim
 Recommends: python3-neovim
 Recommends: xsel
@@ -77,7 +77,7 @@
 
 %install
 pushd build
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 popd
 
 # Install icon.

++ neovim-0.1.3.tar.gz -> neovim-0.1.4.tar.gz ++
/work/SRC/openSUSE:Factory/neovim/neovim-0.1.3.tar.gz 
/work/SRC/openSUSE:Factory/.neovim.new/neovim-0.1.4.tar.gz differ: char 12, 
line 1





commit qutebrowser for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package qutebrowser for openSUSE:Factory 
checked in at 2016-05-10 09:27:31

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


Package is "qutebrowser"

Changes:

--- /work/SRC/openSUSE:Factory/qutebrowser/qutebrowser.changes  2016-04-30 
23:29:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.qutebrowser.new/qutebrowser.changes 
2016-05-10 09:27:32.0 +0200
@@ -1,0 +2,12 @@
+Sat May  7 07:12:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.6.2:
+  * Fix crash when using :tab-{prev,next,focus} right after closing
+the last tab with last-close set to close.
+  * Fix crash when doing :undo in a new instance with
+tabs -> last-close set to default-page.
+  * Fix crash when starting with --cachedir="".
+  * Fix crash in some circumstances when using dictionary hints.
+  * Fix various crashes related to PyQt 5.6.
+
+---

Old:

  qutebrowser-0.6.1.tar.gz
  qutebrowser-0.6.1.tar.gz.asc

New:

  qutebrowser-0.6.2.tar.gz
  qutebrowser-0.6.2.tar.gz.asc



Other differences:
--
++ qutebrowser.spec ++
--- /var/tmp/diff_new_pack.T5h2FW/_old  2016-05-10 09:27:33.0 +0200
+++ /var/tmp/diff_new_pack.T5h2FW/_new  2016-05-10 09:27:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   qutebrowser
-Version:0.6.1
+Version:0.6.2
 Release:0
 Summary:Keyboard-driven vim-like browser on Qt5
 License:GPL-3.0+

++ qutebrowser-0.6.1.tar.gz -> qutebrowser-0.6.2.tar.gz ++
 2170 lines of diff (skipped)




commit grc for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package grc for openSUSE:Factory checked in 
at 2016-05-10 09:27:29

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


Package is "grc"

Changes:

--- /work/SRC/openSUSE:Factory/grc/grc.changes  2016-05-05 08:12:41.0 
+0200
+++ /work/SRC/openSUSE:Factory/.grc.new/grc.changes 2016-05-10 
09:27:31.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 29 12:15:59 UTC 2016 - jseg...@novell.com
+
+- Changed regexp in quilt-feature-osc-build.patch to also match old
+  buildlogs, not just live builds
+
+---



Other differences:
--
++ quilt-feature-osc-build.patch ++
--- /var/tmp/diff_new_pack.5PLDPq/_old  2016-05-10 09:27:32.0 +0200
+++ /var/tmp/diff_new_pack.5PLDPq/_new  2016-05-10 09:27:32.0 +0200
@@ -8,6 +8,6 @@
  conf.df
 +
 +# osc build
-+(^|[/\w\.]+/)osc build\s?
++(^|[/\w\.]+/)osc (build\s?|bl.?)
 +conf.osc
 +




commit zpaq for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package zpaq for openSUSE:Factory checked in 
at 2016-05-10 09:27:45

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


Package is "zpaq"

Changes:

--- /work/SRC/openSUSE:Factory/zpaq/zpaq.changes2016-03-26 
15:24:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.zpaq.new/zpaq.changes   2016-05-10 
09:27:46.0 +0200
@@ -1,0 +2,19 @@
+Sat May  7 17:33:43 UTC 2016 - mplus...@suse.com
+
+- Update to 7.13
+  * Removes requirement for separate  WinXP version. Fixes Intel 
+and VS 2015 compiler errors. 
+  * Removes multi-part archive support, -nodelete, add -test, and 
+-key prompt.
+  * Updated Makefile to link libzpaq.o statically.
+  * Fixes bug in extracting streaming archive with empty first 
+file name.
+  * Adds multi-part archives, -index. Some UI changes. Updates 
+libzpaq.h, zpaq.pod.
+  * Adds -repack, -encrypt. Updates libzpaq.cpp, zpaq.pod
+  * Faster extract. Removes -encrypt (combined with -repack). 
+Updates libzpaq.h, zpaq.pod. Apr. 29, 2016: added 
+zpaq-gcc481.exe for older machines.
+  * Adds support for sparse files in Windows.
+
+---

Old:

  zpaq707.zip

New:

  zpaq713.zip



Other differences:
--
++ zpaq.spec ++
--- /var/tmp/diff_new_pack.YlV1qD/_old  2016-05-10 09:27:47.0 +0200
+++ /var/tmp/diff_new_pack.YlV1qD/_new  2016-05-10 09:27:47.0 +0200
@@ -19,9 +19,9 @@
 %define soname   lib%{name}
 %define sover0.1
 %define sonum0_1
-%define dversion 707
+%define dversion 713
 Name:   zpaq
-Version:7.07
+Version:7.13
 Release:0
 Summary:A journaling, incremental, deduplicating archiver for Windows 
and Linux
 License:SUSE-Public-Domain and MIT




commit ebtables for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package ebtables for openSUSE:Factory 
checked in at 2016-05-10 09:27:14

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


Package is "ebtables"

Changes:

--- /work/SRC/openSUSE:Factory/ebtables/ebtables.changes2015-08-31 
22:59:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.ebtables.new/ebtables.changes   2016-05-10 
09:27:15.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 26 12:13:47 UTC 2016 - kstreit...@suse.com
+
+- add "Requires(post): %insserv_prereq %fillup_prereq" to fix
+  problem with missing sed during the installation [bnc#976919]
+- remove non-break space from specfile
+- use spec-cleaner to clean the specfile
+
+---



Other differences:
--
++ ebtables.spec ++
--- /var/tmp/diff_new_pack.59lrZZ/_old  2016-05-10 09:27:16.0 +0200
+++ /var/tmp/diff_new_pack.59lrZZ/_new  2016-05-10 09:27:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ebtables
 #
-# 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
@@ -23,21 +23,21 @@
 License:GPL-2.0+
 Group:  Productivity/Networking/Security
 Url:http://ebtables.sf.net/
-
 #Git-Clone:git://git.netfilter.org/ebtables
-Source: %name-v2.0.10-4.tar.xz
-Patch0: %name-v2.0.8-makefile.diff
-Patch1: %name-v2.0.8-initscript.diff
-# PATCH-FIX-UPSTREAM bnc#934680 kstreit...@suse.com -- audit patch for CC 
certification
+Source: %{name}-v2.0.10-4.tar.xz
+Patch0: %{name}-v2.0.8-makefile.diff
+Patch1: %{name}-v2.0.8-initscript.diff
+# PATCH-FIX-UPSTREAM bnc#934680 kstreit...@suse.com -- audit patch for CC 
certification
 Patch2: ebtables-v2.0.10-4-audit.patch
 # PATCH-FIX-UPSTREAM 
 Patch3: 0001-fix-compilation-warning.patch
 # PATCH-FIX-SUSE-ONLY
 Patch4: include-linux-if.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  linux-glibc-devel >= 2.6.20
 BuildRequires:  sed
 BuildRequires:  xz
+Requires(post): %insserv_prereq %fillup_prereq
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A firewalling tool to transparently filter network traffic passing a
@@ -47,8 +47,8 @@
 iptables. There are no incompatibility issues.
 
 %prep
-%setup -q -n %name-v2.0.10-4
-%patch -P 0 -P 1 -p0
+%setup -q -n %{name}-v2.0.10-4
+%patch -P 0 -P 1
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
@@ -66,31 +66,31 @@
 # The way ebtables is built requires ASNEEDED=0 forever [bnc#567267]
 export SUSE_ASNEEDED=0
 make \
-CFLAGS="%optflags" \
-CXXFLAGS="%optflags" \
-LIBDIR="%_libdir/%name" \
-MANDIR="%_mandir" \
-BINDIR="%_sbindir" \
-ETCDIR="%_sysconfdir" \
-INITDIR="%_sysconfdir/init.d" \
-SYSCONFIGDIR="%_sysconfdir"
+CFLAGS="%{optflags}" \
+CXXFLAGS="%{optflags}" \
+LIBDIR="%{_libdir}/%{name}" \
+MANDIR="%{_mandir}" \
+BINDIR="%{_sbindir}" \
+ETCDIR="%{_sysconfdir}" \
+INITDIR="%{_sysconfdir}/init.d" \
+SYSCONFIGDIR="%{_sysconfdir}"
 
 %install
 # The way ebtables is built requires ASNEEDED=0 forever [bnc#567267]
 export SUSE_ASNEEDED=0
-mkdir -p "%buildroot/%_sysconfdir/init.d"
+mkdir -p "%{buildroot}/%{_sysconfdir}/init.d"
 make \
-DESTDIR="%buildroot" \
-LIBDIR="%_libdir/%name" \
-MANDIR="%_mandir" \
-BINDIR="%_sbindir" \
-ETCDIR="%_sysconfdir" \
-INITDIR="%_sysconfdir/init.d" \
-SYSCONFIGDIR="%_sysconfdir" \
+DESTDIR=%{buildroot} \
+LIBDIR="%{_libdir}/%{name}" \
+MANDIR="%{_mandir}" \
+BINDIR="%{_sbindir}" \
+ETCDIR="%{_sysconfdir}" \
+INITDIR="%{_sysconfdir}/init.d" \
+SYSCONFIGDIR="%{_sysconfdir}" \
 install
-ln -sf "%_initddir/ebtables" "%buildroot/%_sbindir/rcebtables"
+ln -sf "%{_initddir}/ebtables" "%{buildroot}/%{_sbindir}/rcebtables"
 # not used
-rm -f "%buildroot/%_sysconfdir/ebtables-config"
+rm -f "%{buildroot}/%{_sysconfdir}/ebtables-config"
 
 %post
 %fillup_and_insserv ebtables
@@ -105,14 +105,14 @@
 %files
 %defattr(-,root,root)
 %doc COPYING ChangeLog
-%doc %_mandir/man8/ebtables.8*
-%config(noreplace) %_sysconfdir/ethertypes
-%_initddir/ebtables
-%dir %_libdir/%name
-%_libdir/%name/*.so
-%_sbindir/ebtables
-%_sbindir/ebtables-restore
-%_sbindir/ebtables-save
-%_sbindir/rcebtables
+%{_mandir}/man8/ebtables.8*
+%config(noreplace) %{_sysconfdir}/ethertypes
+%{_initddir}/ebtables
+%dir %{_libdir}/%{name}
+%{_libdir}/%{name}/*.so
+%{_sbindir}/ebtables

commit compizconfig-settings-manager for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package compizconfig-settings-manager for 
openSUSE:Factory checked in at 2016-05-10 09:27:16

Comparing /work/SRC/openSUSE:Factory/compizconfig-settings-manager (Old)
 and  /work/SRC/openSUSE:Factory/.compizconfig-settings-manager.new (New)


Package is "compizconfig-settings-manager"

Changes:

--- 
/work/SRC/openSUSE:Factory/compizconfig-settings-manager/compizconfig-settings-manager.changes
  2016-03-29 14:50:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.compizconfig-settings-manager.new/compizconfig-settings-manager.changes
 2016-05-10 09:27:16.0 +0200
@@ -1,0 +2,5 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Add a missing python-gobject-Gdk dependency.
+
+---



Other differences:
--
++ compizconfig-settings-manager.spec ++
--- /var/tmp/diff_new_pack.yKqAd3/_old  2016-05-10 09:27:17.0 +0200
+++ /var/tmp/diff_new_pack.yKqAd3/_new  2016-05-10 09:27:17.0 +0200
@@ -50,6 +50,9 @@
 Requires:   python-gobject
 Requires:   python-gobject-cairo
 Requires:   python-xml
+%if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200
+Requires:   python-gobject-Gdk
+%endif
 
 %description -n python-ccm
 The backend to Compiz Config Manager.




commit qtodotxt for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package qtodotxt for openSUSE:Factory 
checked in at 2016-05-10 09:27:23

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


Package is "qtodotxt"

Changes:

--- /work/SRC/openSUSE:Factory/qtodotxt/qtodotxt.changes2014-10-16 
14:53:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.qtodotxt.new/qtodotxt.changes   2016-05-10 
09:27:24.0 +0200
@@ -1,0 +2,9 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.6.0:
+  * Port to PyQt5.
+  * Add action for hiding/showing completed tasks.
+  * Add action for hiding/showing future tasks.
+  * Add action for hiding/showing sidebar.
+
+---

Old:

  1.4.0.tar.gz

New:

  qtodotxt-1.6.0.tar.gz



Other differences:
--
++ qtodotxt.spec ++
--- /var/tmp/diff_new_pack.vxMjvo/_old  2016-05-10 09:27:25.0 +0200
+++ /var/tmp/diff_new_pack.vxMjvo/_new  2016-05-10 09:27:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qtodotxt
 #
-# 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,18 +18,18 @@
 
 %define _name   QTodoTxt
 Name:   qtodotxt
-Version:1.4.0
+Version:1.6.0
 Release:0
 Summary:Cross-platform UI client for todo.txt files
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
 Url:https://github.com/mNantern/QTodoTxt
-Source: https://github.com/mNantern/%{_name}/archive/%{version}.tar.gz
+Source: 
https://github.com/mNantern/%{_name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  python3-devel
+BuildRequires:  python3-setuptools
 BuildRequires:  update-desktop-files
-Requires:   python3-qt4
+Requires:   python3-qt5
 BuildArch:  noarch
 
 %description
@@ -38,49 +38,28 @@
 Todo.txt is a popular, minimalistic TODO list format in which the data
 is stored in a simple text file. Since todo.txt is both machine and
 human-readable, you can check out your tasks with a simple text editor
-from any OS, synchronize it with cloud sync tools such as ownCloud, etc.
+from any OS, synchronise it with cloud sync tools such as ownCloud, etc.
 
 %prep
 %setup -q -n %{_name}-%{version}
 sed -e 's/^Icon=.*$/Icon=%{name}/;/^Keywords/d' 
packaging/Debian/%{name}.desktop > %{name}.desktop
 
 %build
-# Nothing to build.
+python3 setup.py build
 
 %install
-install -Dm 0755 bin/%{name} %{buildroot}%{_datadir}/%{name}/bin/%{name}
-cp -rf {%{name},artwork} %{buildroot}%{_datadir}/%{name}/
+python3 setup.py install \
+  --root=%{buildroot} \
+  --prefix=%{_prefix}
+
 # A tricky way to get all available icon sizes.
 ls artwork/icon/ | sed -n 's/.*-\([0-9]*\).png/\1/p' | while read size; do
 install -Dm 0644 artwork/icon/qTodo-$size.png 
%{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps/%{name}.png
 done
 install -Dm 0644 %{name}.desktop 
%{buildroot}%{_datadir}/applications/%{name}.desktop
 
-dirname $(find %{buildroot}%{_datadir} -name '*.py') | sort -u | while read 
dir; do
-pushd "$dir"
-ls *.py | while read py; do
-# Tranfer to PyQt4 from PySide.
-sed -i 
's/PySide/PyQt4/g;s/\(QtCore.\)\(Signal\)/\1pyqt\2/g;s/\(QtCore.\)\(Slot\)/\1pyqt\2/g'
 "$py"
-# One more specific hack about PyQt4.
-sed -i 
's/\(QAbstractItemView.\)SelectionMode.\(ExtendedSelection\)/\1\2/g' "$py"
-
-# Add execution bit to scripts with shebangs and remove from others.
-if [[ "$(head -c2 "$py"; echo)" == "#!" ]]; then
-chmod a+x "$py"
-else
-chmod a-x "$py"
-fi
-done
-# Generate .pyc.
-touch -c *.py
-%py3_compile .
-popd
-done
-
-mkdir -p %{buildroot}%{_bindir}/
-ln -s %{_datadir}/%{name}/bin/%{name} %{buildroot}/%{_bindir}/%{name}
 %suse_update_desktop_file -r -G %{_name} %{name} Utility DesktopUtility
-%fdupes %{buildroot}
+%fdupes %{buildroot}%{python3_sitelib}/
 
 %post
 %desktop_database_post
@@ -94,8 +73,11 @@
 %defattr(-,root,root)
 %doc AUTHORS gpl.txt
 %{_bindir}/%{name}
-%{_datadir}/%{name}/
+%{python3_sitelib}/%{name}/
+%{python3_sitelib}/%{name}-*
 %{_datadir}/applications/%{name}.desktop
-%{_datadir}/icons/hicolor/*/
+%dir %{_datadir}/icons/hicolor/*/
+%dir %{_datadir}/icons/hicolor/*/apps/
+%{_datadir}/icons/hicolor/*/apps/%{name}.*
 
 %changelog




commit libiscsi for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package libiscsi for openSUSE:Factory 
checked in at 2016-05-10 09:27:01

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


Package is "libiscsi"

Changes:

--- /work/SRC/openSUSE:Factory/libiscsi/libiscsi.changes2015-12-01 
09:18:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.libiscsi.new/libiscsi.changes   2016-05-10 
09:27:04.0 +0200
@@ -1,0 +2,12 @@
+Thu May  5 16:28:17 UTC 2016 - mplus...@suse.com
+
+- Update to 1.16.0
+  * Various test updates.
+  * Add tests for ExtendedCopy and ReceiveCopyResults
+  * Add support for WRITE_ATOMIC_16 and tests
+  * Multipath tests added
+  * Persistent Reservation test updates.
+  * Make sure to process target NOPs in the tests
+  * Fix broken CHAP has handling.
+
+---

Old:

  1.15.0.tar.gz

New:

  libiscsi-1.16.0.tar.gz



Other differences:
--
++ libiscsi.spec ++
--- /var/tmp/diff_new_pack.y9OYQ1/_old  2016-05-10 09:27:05.0 +0200
+++ /var/tmp/diff_new_pack.y9OYQ1/_new  2016-05-10 09:27:05.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libiscsi
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,15 @@
 #
 
 
-%define libname %{name}4
+%define libname %{name}7
 Name:   libiscsi
-Version:1.15.0
+Version:1.16.0
 Release:0
 Summary:iSCSI client library and utilities
 License:GPL-2.0 and LGPL-2.1
 Group:  Development/Libraries/C and C++
 Url:https://github.com/sahlberg/libiscsi
-Source: https://github.com/sahlberg/libiscsi/archive/%{version}.tar.gz
+Source: 
https://github.com/sahlberg/libiscsi/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  bc
@@ -59,7 +59,7 @@
 %package devel
 Summary:Development files for %{name}
 Group:  Development/Languages/C and C++
-Requires:   %{libname} = %{version}
+Requires:   %{libname} = %{version}-%{release}
 
 %description devel
 Development files for %{name}
@@ -92,7 +92,7 @@
 
 %files -n %{libname}
 %defattr(-,root,root)
-%{_libdir}/libiscsi.so.4*
+%{_libdir}/libiscsi.so.7*
 
 %files utils
 %defattr(-,root,root)




commit plasma5-workspace-wallpapers for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package plasma5-workspace-wallpapers for 
openSUSE:Factory checked in at 2016-05-10 09:26:59

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-04-14 13:05:08.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new/plasma5-workspace-wallpapers.changes
   2016-05-10 09:27:02.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:46:11 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  plasma-workspace-wallpapers-5.6.2.tar.xz

New:

  plasma-workspace-wallpapers-5.6.3.tar.xz



Other differences:
--
++ plasma5-workspace-wallpapers.spec ++
--- /var/tmp/diff_new_pack.02GpcT/_old  2016-05-10 09:27:04.0 +0200
+++ /var/tmp/diff_new_pack.02GpcT/_new  2016-05-10 09:27:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   plasma5-workspace-wallpapers
-Version:5.6.2
+Version:5.6.3
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 0.0.12

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




commit u-boot for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package u-boot for openSUSE:Factory checked 
in at 2016-05-10 09:27:03

Comparing /work/SRC/openSUSE:Factory/u-boot (Old)
 and  /work/SRC/openSUSE:Factory/.u-boot.new (New)


Package is "u-boot"

Changes:

--- /work/SRC/openSUSE:Factory/u-boot/u-boot-a10-olinuxino-lime.changes 
2016-05-02 10:44:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.u-boot.new/u-boot-a10-olinuxino-lime.changes
2016-05-10 09:27:05.0 +0200
@@ -1,0 +2,8 @@
+Wed May  4 20:22:57 UTC 2016 - afaer...@suse.de
+
+- Package Marvell SPL for ClearFog
+- Tidy package summaries and descriptions
+* Fix spelling of U-Boot
+* Don't assume ARM
+
+---
u-boot-a13-olinuxino.changes: same change
u-boot-a13-olinuxinom.changes: same change
u-boot-a20-olinuxino-lime.changes: same change
u-boot-a20-olinuxino-lime2.changes: same change
u-boot-a20-olinuxinomicro.changes: same change
u-boot-am335xboneblack.changes: same change
u-boot-am335xevm.changes: same change
u-boot-am57xxevm.changes: same change
u-boot-am57xxevmnodt.changes: same change
u-boot-arndale.changes: same change
u-boot-bananapi.changes: same change
u-boot-clearfog.changes: same change
u-boot-colibrit20.changes: same change
u-boot-cubieboard.changes: same change
u-boot-cubieboard2.changes: same change
u-boot-cubietruck.changes: same change
u-boot-firefly-rk3288.changes: same change
u-boot-highbank.changes: same change
u-boot-hyundaia7hd.changes: same change
u-boot-jetson-tk1.changes: same change
u-boot-melea1000.changes: same change
u-boot-merriia80optimus.changes: same change
u-boot-mx53loco.changes: same change
u-boot-mx6cuboxi.changes: same change
u-boot-mx6qsabrelite.changes: same change
u-boot-odroid-xu3.changes: same change
u-boot-odroid.changes: same change
u-boot-omap3beagle.changes: same change
u-boot-omap4panda.changes: same change
u-boot-orangepipc.changes: same change
u-boot-p2371-2180.changes: same change
u-boot-paz00.changes: same change
u-boot-pcm051rev3.changes: same change
u-boot-qemu-ppce500.changes: same change
u-boot-rpi.changes: same change
u-boot-rpi2.changes: same change
u-boot-rpi3.changes: same change
u-boot-snow.changes: same change
u-boot-spring.changes: same change
u-boot-udoo.changes: same change
u-boot.changes: same change



Other differences:
--
++ u-boot-a10-olinuxino-lime.spec ++
--- /var/tmp/diff_new_pack.gC4W7g/_old  2016-05-10 09:27:12.0 +0200
+++ /var/tmp/diff_new_pack.gC4W7g/_new  2016-05-10 09:27:12.0 +0200
@@ -18,12 +18,13 @@
 #
 
 
+%define mvebu_spl 0
 %define x_loader 0
-%define origen_spl 0
 %define rockchip_spl 0
 %define sunxi_spl 1
 %define arndale_spl 0
 %define cuboxi_spl 0
+%define origen_spl 0
 %define udoo_spl 0
 
 # archive_version differs from version for RC version only
@@ -32,7 +33,7 @@
 Name:   u-boot-a10-olinuxino-lime
 Version:2016.05~rc3
 Release:0
-Summary:The u-boot firmware for the a10-olinuxino-lime arm platform
+Summary:The U-Boot firmware for the a10-olinuxino-lime platform
 License:GPL-2.0
 Group:  System/Boot
 Url:http://www.denx.de/wiki/U-Boot
@@ -68,15 +69,15 @@
 
 %description
 Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded 
PowerPC, ARM, MIPS and x86 processors.
-This package contains the firmware for the a10-olinuxino-lime arm platform.
+This package contains the firmware for the a10-olinuxino-lime platform.
 
 %package doc
-Summary:Documentation for the u-boot Firmware
+Summary:Documentation for the U-Boot Firmware
 Group:  Documentation/Other
 
 %description doc
 Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded 
PowerPC, ARM, MIPS and x86 processors.
-This package contains documentation for u-boot firmware
+This package contains documentation for U-Boot firmware.
 
 %prep
 %setup -q -n u-boot-%{archive_version}
@@ -137,6 +138,9 @@
 install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
 install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
 %endif
+%if %mvebu_spl == 1
+install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
+%endif
 %if %rockchip_spl == 1
 install -D -m 0644 spl/u-boot-spl-dtb.bin 
%{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
 for t in ; do

++ u-boot-a13-olinuxino.spec ++
--- /var/tmp/diff_new_pack.gC4W7g/_old  2016-05-10 09:27:12.0 +0200
+++ /var/tmp/diff_new_pack.gC4W7g/_new  2016-05-10 09:27:12.0 +0200
@@ -18,12 +18,13 @@
 #
 
 
+%define mvebu_spl 0
 %define x_loader 0
-%define origen_spl 0
 %define rockchip_spl 0
 %define sunxi_spl 1
 %define arndale_spl 0
 %define cuboxi_spl 0
+%define 

commit simple-ccsm for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package simple-ccsm for openSUSE:Factory 
checked in at 2016-05-10 09:27:17

Comparing /work/SRC/openSUSE:Factory/simple-ccsm (Old)
 and  /work/SRC/openSUSE:Factory/.simple-ccsm.new (New)


Package is "simple-ccsm"

Changes:

--- /work/SRC/openSUSE:Factory/simple-ccsm/simple-ccsm.changes  2016-03-27 
10:09:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.simple-ccsm.new/simple-ccsm.changes 
2016-05-10 09:27:18.0 +0200
@@ -1,0 +2,6 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Add missing python-gobject-cairo and python-gobject-Gdk
+  dependencies.
+
+---



Other differences:
--
++ simple-ccsm.spec ++
--- /var/tmp/diff_new_pack.HUGdAY/_old  2016-05-10 09:27:19.0 +0200
+++ /var/tmp/diff_new_pack.HUGdAY/_new  2016-05-10 09:27:19.0 +0200
@@ -36,9 +36,11 @@
 Requires:   compiz-plugins < 0.9
 Requires:   compiz-plugins-main < 0.9
 Requires:   libcompizconfig < 0.9
+Requires:   python-cairo
 Requires:   python-ccm < 0.9
 Requires:   python-ccm >= 0.8.12
 Requires:   python-gobject
+Requires:   python-gobject-cairo
 Recommends: %{name}-lang
 Recommends: compiz-plugins-extra < 0.9
 # simple-ccsm-kde was last used in openSUSE 11.3.
@@ -46,6 +48,9 @@
 Obsoletes:  %{name}-kde < %{version}
 Provides:   ccsm = 0.8
 BuildArch:  noarch
+%if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200
+Requires:   python-gobject-Gdk
+%endif
 
 %description
 Compiz settings manager focused on simplicity for an end-user.




commit albert for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package albert for openSUSE:Factory checked 
in at 2016-05-10 09:27:22

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


Package is "albert"

Changes:

--- /work/SRC/openSUSE:Factory/albert/albert.changes2015-11-28 
15:19:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.albert.new/albert.changes   2016-05-10 
09:27:23.0 +0200
@@ -1,0 +2,12 @@
+Wed May  4 16:34:01 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.8.8.
+
+---
+Mon Apr 25 12:47:04 UTC 2016 - p.drou...@gmail.com
+
+- Update to version 0.8.7.2
+  * No changelog available
+- Add pkgconfig(Qt5Svg) requirement; new upstream dependency
+
+---

Old:

  albert-0.8.0.tar.gz

New:

  albert-0.8.8.tar.gz



Other differences:
--
++ albert.spec ++
--- /var/tmp/diff_new_pack.un7UNW/_old  2016-05-10 09:27:24.0 +0200
+++ /var/tmp/diff_new_pack.un7UNW/_new  2016-05-10 09:27:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package albert
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   albert
-Version:0.8.0
+Version:0.8.8
 Release:0
 Summary:Desktop agnostic launcher
 License:GPL-3.0+
@@ -31,6 +31,8 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(Qt5Core) >= 5.2
 BuildRequires:  pkgconfig(Qt5Gui) >= 5.2
+BuildRequires:  pkgconfig(Qt5Network) >= 5.2
+BuildRequires:  pkgconfig(Qt5Svg) >= 5.2
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2
 BuildRequires:  pkgconfig(Qt5X11Extras) >= 5.2
 BuildRequires:  pkgconfig(muparser)

++ albert-0.8.0.tar.gz -> albert-0.8.8.tar.gz ++
 22030 lines of diff (skipped)




commit plasma5-sdk for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package plasma5-sdk for openSUSE:Factory 
checked in at 2016-05-10 09:26:58

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-04-14 
13:05:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-sdk.new/plasma5-sdk.changes 
2016-05-10 09:26:59.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:46:08 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  plasma-sdk-5.6.2.tar.xz

New:

  plasma-sdk-5.6.3.tar.xz



Other differences:
--
++ plasma5-sdk.spec ++
--- /var/tmp/diff_new_pack.33RxZ4/_old  2016-05-10 09:27:00.0 +0200
+++ /var/tmp/diff_new_pack.33RxZ4/_new  2016-05-10 09:27:00.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-sdk
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Plasma SDK
 License:LGPL-2.0+

++ desktop.diff ++
--- /var/tmp/diff_new_pack.33RxZ4/_old  2016-05-10 09:27:00.0 +0200
+++ /var/tmp/diff_new_pack.33RxZ4/_new  2016-05-10 09:27:00.0 +0200
@@ -1,9 +1,9 @@
 diff --git a/themeexplorer/package/metadata.desktop 
b/themeexplorer/package/metadata.desktop
-index e792f52..29d4144 100644
+index 854a323..9ee875c 100644
 --- a/themeexplorer/package/metadata.desktop
 +++ b/themeexplorer/package/metadata.desktop
-@@ -58,7 +58,7 @@ Name[x-test]=xxPlasma Theme Explorerxx
- Name[zh_CN]=Plasma 主题浏览器
+@@ -60,7 +60,7 @@ Name[zh_CN]=Plasma 主题浏览器
+ Name[zh_TW]=Plasma 主題探索器
  Type=Application
  Icon=preferences-desktop-theme
 -Categories=Qt;KDE;Development;

++ plasma-sdk-5.6.2.tar.xz -> plasma-sdk-5.6.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-sdk-5.6.2/CMakeLists.txt 
new/plasma-sdk-5.6.3/CMakeLists.txt
--- old/plasma-sdk-5.6.2/CMakeLists.txt 2016-04-05 15:58:19.0 +0200
+++ new/plasma-sdk-5.6.3/CMakeLists.txt 2016-04-19 13:20:03.0 +0200
@@ -1,5 +1,5 @@
 project(plasma-sdk)
-set(PROJECT_VERSION "5.6.2")
+set(PROJECT_VERSION "5.6.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-sdk-5.6.2/cuttlefish/cuttlefish.desktop 
new/plasma-sdk-5.6.3/cuttlefish/cuttlefish.desktop
--- old/plasma-sdk-5.6.2/cuttlefish/cuttlefish.desktop  2016-04-05 
15:57:28.0 +0200
+++ new/plasma-sdk-5.6.3/cuttlefish/cuttlefish.desktop  2016-04-19 
13:19:31.0 +0200
@@ -31,6 +31,7 @@
 Name[uk]=Cuttlefish
 Name[x-test]=xxCuttlefishxx
 Name[zh_CN]=Cuttlefish
+Name[zh_TW]=Cuttlefish
 GenericName=Icon Viewer
 GenericName[ast]=Visor d'iconos
 GenericName[ca]=Visor d'icones
@@ -60,6 +61,7 @@
 GenericName[uk]=Перегляд піктограм
 GenericName[x-test]=xxIcon Viewerxx
 GenericName[zh_CN]=图标查看器
+GenericName[zh_TW]=圖示檢示器
 Comment=Icon Previewer for Artists and Developers
 Comment[ast]=Previsualizador d'iconos p'artistes y desendolcadores
 Comment[ca]=Vista prèvia de les icones pels artistes i desenvolupadors
@@ -88,6 +90,7 @@
 Comment[uk]=Засіб перегляду піктограм для художників та розробників
 Comment[x-test]=xxIcon Previewer for Artists and Developersxx
 Comment[zh_CN]=图标预览器 (适用于艺术家和开发者)
+Comment[zh_TW]=給美工與開發者用的圖示預覽器
 Exec=cuttlefish
 Icon=cuttlefish
 Type=Application
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-sdk-5.6.2/cuttlefish/package/metadata.desktop 
new/plasma-sdk-5.6.3/cuttlefish/package/metadata.desktop
--- old/plasma-sdk-5.6.2/cuttlefish/package/metadata.desktop2016-04-05 
15:57:28.0 +0200
+++ new/plasma-sdk-5.6.3/cuttlefish/package/metadata.desktop2016-04-19 
13:19:31.0 +0200
@@ -29,6 +29,7 @@
 Name[uk]=Cuttlefish
 Name[x-test]=xxCuttlefishxx
 Name[zh_CN]=Cuttlefish
+Name[zh_TW]=Cuttlefish
 Comment=List and preview available icons
 Comment[ast]=Llista y previsualiza iconos disponibles
 Comment[ca]=Llista i fa una vista prèvia de les icones disponibles
@@ -57,6 +58,7 @@
 Comment[uk]=Показ списку і попередній перегляду доступних піктограм
 Comment[x-test]=xxList and preview available iconsxx
 Comment[zh_CN]=列出并预览可用的图标
+Comment[zh_TW]=列出並預覽可用的圖示
 GenericName=Icon Browser
 GenericName[ast]=Restolador d'iconos
 GenericName[ca]=Navegador d'icones
@@ -86,6 +88,7 @@
 GenericName[uk]=Навігатор піктограмами
 GenericName[x-test]=xxIcon Browserxx
 

commit kwrited5 for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package kwrited5 for openSUSE:Factory 
checked in at 2016-05-10 09:26:52

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-04-14 
13:04:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwrited5.new/kwrited5.changes   2016-05-10 
09:26:53.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:45:55 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  kwrited-5.6.2.tar.xz

New:

  kwrited-5.6.3.tar.xz



Other differences:
--
++ kwrited5.spec ++
--- /var/tmp/diff_new_pack.0lzjjE/_old  2016-05-10 09:26:54.0 +0200
+++ /var/tmp/diff_new_pack.0lzjjE/_new  2016-05-10 09:26:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kwrited5
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Daemon listening for wall and write messages
 License:GPL-2.0+

++ kwrited-5.6.2.tar.xz -> kwrited-5.6.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.6.2/CMakeLists.txt 
new/kwrited-5.6.3/CMakeLists.txt
--- old/kwrited-5.6.2/CMakeLists.txt2016-04-05 15:48:53.0 +0200
+++ new/kwrited-5.6.3/CMakeLists.txt2016-04-19 13:13:37.0 +0200
@@ -1,5 +1,5 @@
 project(kwrited)
-set(PROJECT_VERSION "5.6.2")
+set(PROJECT_VERSION "5.6.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.2/kwrited.json 
new/kwrited-5.6.3/kwrited.json
--- old/kwrited-5.6.2/kwrited.json  2016-04-05 15:48:53.0 +0200
+++ new/kwrited-5.6.3/kwrited.json  2016-04-19 13:13:37.0 +0200
@@ -26,6 +26,7 @@
 "Description[uk]": "Спостереження за  повідомленнями від локальних 
користувачів, відісланих через write(1) або wall(1)", 
 "Description[x-test]": "xxWatch for messages from local users sent 
with write(1) or wall(1)xx", 
 "Description[zh_CN]": "监视本地用户使用 write(1) 或 wall(1) 发送的消息", 
+"Description[zh_TW]": "監控使用者透過 write(1) 或 wall(1) 傳送的訊息", 
 "Name": "Write Daemon", 
 "Name[ast]": "Degorriu d'escritura", 
 "Name[ca@valencia]": "Dimoni d'escriptura", 
@@ -54,6 +55,7 @@
 "Name[uk]": "Фонова служба запису", 
 "Name[x-test]": "xxWrite Daemonxx", 
 "Name[zh_CN]": "Write 守护进程", 
+"Name[zh_TW]": "Write 伺服程式", 
 "ServiceTypes": [
 "KDEDModule"
 ]




commit python-keyring for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package python-keyring for openSUSE:Factory 
checked in at 2016-05-10 09:26:25

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


Package is "python-keyring"

Changes:

--- /work/SRC/openSUSE:Factory/python-keyring/python-keyring.changes
2016-01-30 11:30:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-keyring.new/python-keyring.changes   
2016-05-10 09:26:27.0 +0200
@@ -1,0 +2,126 @@
+Thu May  5 17:13:09 UTC 2016 - mich...@stroeder.com
+
+- update to upstream release 9.0
+
+9.0
+---
+
+* Issue #217: Once again, the OS X backend uses the
+  Framework API for invoking the Keychain service.
+  As a result, applications utilizing this API will be
+  authorized per application, rather than relying on the
+  authorization of the 'security' application. Consequently,
+  users will be prompted to authorize the system Python
+  executable and also new Python executables, such as
+  those created by virtualenv.
+
+8.7
+---
+
+* Changelog now links to issues and provides dates of
+  releases.
+
+8.6
+---
+
+* Issue #217: Add warning in OS Keyring when 'store'
+  is set to 'internet' to determine if this feature is
+  used in the wild.
+
+8.5.1
+-
+
+* Pull Request #216: Kwallet backend now has lower
+  priority than the preferred SecretService backend,
+  now that the desktop check is no longer in place.
+
+8.5
+---
+
+* Issue #168: Now prefer KF5 Kwallet to KF4. Users relying
+  on KF4 must use prior releases.
+
+8.4
+---
+
+* Pull Request #209: Better error message when no backend is
+  available (indicating keyrings.alt as a quick workaround).
+* Pull Request #208: Fix pywin32-ctypes package name in
+  requirements.
+
+8.3
+---
+
+* Issue #207: Library now requires win32ctypes on Windows
+  systems, which will be installed automatically by
+  Setuptools 0.7 or Pip 6 (or later).
+* Actually removed QtKwallet, which was meant to be dropped in
+  8.0 but somehow remained.
+
+8.2
+---
+
+* Update readme to include how-to use with Linux
+  non-graphical environments.
+
+8.1
+---
+
+* Issue #197: Add ``__version__`` attribute to keyring module.
+
+8.0
+---
+
+* Issue #117: Removed all but the preferred keyring backends
+  for each of the major desktop platforms:
+
+- keyring.backends.kwallet.DBusKeyring
+- keyring.backends.OS_X.Keyring
+- keyring.backends.SecretService.Keyring
+- keyring.backends.Windows.WinVaultKeyring
+
+  All other keyrings
+  have been moved to a new package, `keyrings.alt
+  `_ and
+  backward-compatibility aliases removed.
+  To retain
+  availability of these less preferred keyrings, include
+  that package in your installation (install both keyring
+  and keyrings.alt).
+
+  As these keyrings have moved, any keyrings indicated
+  explicitly in configuration will need to be updated to
+  replace "keyring.backends." with "keyrings.alt.". For
+  example, "keyring.backends.file.PlaintextKeyring"
+  becomes "keyrings.alt.file.PlaintextKeyring".
+
+7.3.1
+-
+
+* Issue #194: Redirect away from docs until they have something
+  more than the changelog. Users seeking the changelog will
+  want to follow the `direct link
+  `_.
+
+7.3
+---
+
+* Issue #117: Added support for filtering which
+  backends are acceptable. To limit to only loading recommended
+  keyrings (those with priority >= 1), call::
+
+keyring.core.init_backend(limit=keyring.core.recommended)
+
+7.2
+---
+
+* Pull Request #190: OS X backend now exposes a ``keychain``
+  attribute, which if set will be used by ``get_password`` when
+  retrieving passwords. Useful in environments such as when
+  running under cron where the default keychain is not the same
+  as the default keychain in a login session. Example usage::
+
+keyring.get_keyring().keychain = '/path/to/login.keychain'
+pw = keyring.get_password(...)
+
+---

Old:

  keyring-7.1.2.tar.gz

New:

  keyring-9.0.tar.gz



Other differences:
--
++ python-keyring.spec ++
--- /var/tmp/diff_new_pack.CofsfI/_old  2016-05-10 09:26:28.0 +0200
+++ /var/tmp/diff_new_pack.CofsfI/_new  2016-05-10 09:26:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-keyring
-Version:7.1.2
+Version:9.0
 Release:0
 Url:https://bitbucket.org/kang/python-keyring-lib
 Summary:Store and access your passwords safely
@@ -54,8 +54,6 @@
 
 %prep
 %setup -q -n keyring-%{version}
-# For rpmlint warning: remove shebang from python library:
-sed -i '/^#!/d' keyring/cli.py 

commit python-pytz for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package python-pytz for openSUSE:Factory 
checked in at 2016-05-10 09:26:31

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


Package is "python-pytz"

Changes:

--- /work/SRC/openSUSE:Factory/python-pytz/python-pytz.changes  2016-02-16 
09:26:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pytz.new/python-pytz.changes 
2016-05-10 09:26:33.0 +0200
@@ -1,0 +2,6 @@
+Mon Apr 25 08:10:27 UTC 2016 - astie...@suse.com
+
+- update to 2016.4
+  * including fixes for Venezuela (America/Caracas) boo#975875
+
+---

Old:

  pytz-2015.7.tar.bz2

New:

  pytz-2016.4.tar.bz2
  pytz-2016.4.tar.bz2.asc
  pytz.keyring



Other differences:
--
++ python-pytz.spec ++
--- /var/tmp/diff_new_pack.CUDwjQ/_old  2016-05-10 09:26:34.0 +0200
+++ /var/tmp/diff_new_pack.CUDwjQ/_new  2016-05-10 09:26:34.0 +0200
@@ -17,13 +17,15 @@
 
 
 Name:   python-pytz
-Version:2015.7
+Version:2016.4
 Release:0
 Summary:World timezone definitions, modern and historical
 License:MIT
 Group:  Development/Languages/Python
 Url:http://pytz.sourceforge.net
-Source: 
http://pypi.python.org/packages/source/p/pytz/pytz-%{version}.tar.bz2
+Source: 
https://pypi.python.org/packages/f4/7d/7c0c85e9c64a75dde11bc9d3e1adc4e09a42ce7cdb873baffa1598118709/pytz-2016.4.tar.bz2
+Source2:
https://pypi.python.org/packages/f4/7d/7c0c85e9c64a75dde11bc9d3e1adc4e09a42ce7cdb873baffa1598118709/pytz-2016.4.tar.bz2.asc
+Source90:   pytz.keyring
 # PATCH-FIX-UPSTREAM fix-tests.patch -- Remote tests which are known to be 
broken
 Patch0: fix-tests.patch
 # PATCH-FEATURE-OPENSUSE -- Use system tz database (Olson database)

++ pytz-2015.7.tar.bz2 -> pytz-2016.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2015.7/PKG-INFO new/pytz-2016.4/PKG-INFO
--- old/pytz-2015.7/PKG-INFO2015-10-26 07:30:31.0 +0100
+++ new/pytz-2016.4/PKG-INFO2016-04-22 15:11:10.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytz
-Version: 2015.7
+Version: 2016.4
 Summary: World timezone definitions, modern and historical
 Home-page: http://pythonhosted.org/pytz
 Author: Stuart Bishop
@@ -143,19 +143,21 @@
 >>> dt2.strftime(fmt)
 '2002-10-27 01:30:00 EST-0500'
 
-Converting between timezones also needs special attention. We also need
-to use the ``normalize()`` method to ensure the conversion is correct.
+Converting between timezones is more easily done, using the
+standard astimezone method.
 
 >>> utc_dt = utc.localize(datetime.utcfromtimestamp(1143408899))
 >>> utc_dt.strftime(fmt)
 '2006-03-26 21:34:59 UTC+'
 >>> au_tz = timezone('Australia/Sydney')
->>> au_dt = au_tz.normalize(utc_dt.astimezone(au_tz))
+>>> au_dt = utc_dt.astimezone(au_tz)
 >>> au_dt.strftime(fmt)
 '2006-03-27 08:34:59 AEDT+1100'
->>> utc_dt2 = utc.normalize(au_dt.astimezone(utc))
+>>> utc_dt2 = au_dt.astimezone(utc)
 >>> utc_dt2.strftime(fmt)
 '2006-03-26 21:34:59 UTC+'
+>>> utc_dt == utc_dt2
+True
 
 You can take shortcuts when dealing with the UTC side of timezone
 conversions. ``normalize()`` and ``localize()`` are not really
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2015.7/README.txt new/pytz-2016.4/README.txt
--- old/pytz-2015.7/README.txt  2015-10-26 07:30:26.0 +0100
+++ new/pytz-2016.4/README.txt  2016-04-22 14:58:11.0 +0200
@@ -134,19 +134,21 @@
 >>> dt2.strftime(fmt)
 '2002-10-27 01:30:00 EST-0500'
 
-Converting between timezones also needs special attention. We also need
-to use the ``normalize()`` method to ensure the conversion is correct.
+Converting between timezones is more easily done, using the
+standard astimezone method.
 
 >>> utc_dt = utc.localize(datetime.utcfromtimestamp(1143408899))
 >>> utc_dt.strftime(fmt)
 '2006-03-26 21:34:59 UTC+'
 >>> au_tz = timezone('Australia/Sydney')
->>> au_dt = au_tz.normalize(utc_dt.astimezone(au_tz))
+>>> au_dt = utc_dt.astimezone(au_tz)
 >>> au_dt.strftime(fmt)
 '2006-03-27 08:34:59 AEDT+1100'
->>> utc_dt2 = utc.normalize(au_dt.astimezone(utc))
+>>> utc_dt2 = au_dt.astimezone(utc)
 >>> utc_dt2.strftime(fmt)
 '2006-03-26 21:34:59 UTC+'
+>>> utc_dt == utc_dt2
+True
 
 You can take shortcuts when dealing with the UTC side of timezone

commit kgamma5 for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package kgamma5 for openSUSE:Factory checked 
in at 2016-05-10 09:26:50

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-04-14 
13:04:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgamma5.new/kgamma5.changes 2016-05-10 
09:26:51.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:45:34 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  kgamma5-5.6.2.tar.xz

New:

  kgamma5-5.6.3.tar.xz



Other differences:
--
++ kgamma5.spec ++
--- /var/tmp/diff_new_pack.hrSGaM/_old  2016-05-10 09:26:52.0 +0200
+++ /var/tmp/diff_new_pack.hrSGaM/_new  2016-05-10 09:26:52.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kgamma5
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Display gamma configuration
 License:GPL-2.0+

++ kgamma5-5.6.2.tar.xz -> kgamma5-5.6.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.6.2/CMakeLists.txt 
new/kgamma5-5.6.3/CMakeLists.txt
--- old/kgamma5-5.6.2/CMakeLists.txt2016-04-05 15:40:14.0 +0200
+++ new/kgamma5-5.6.3/CMakeLists.txt2016-04-19 13:08:07.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.2")
+set(PROJECT_VERSION "5.6.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)




commit mono-core for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package mono-core for openSUSE:Factory 
checked in at 2016-05-10 09:26:13

Comparing /work/SRC/openSUSE:Factory/mono-core (Old)
 and  /work/SRC/openSUSE:Factory/.mono-core.new (New)


Package is "mono-core"

Changes:

--- /work/SRC/openSUSE:Factory/mono-core/mono-core.changes  2016-02-12 
11:20:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-core.new/mono-core.changes 2016-05-10 
09:26:16.0 +0200
@@ -1,0 +2,12 @@
+Sun Apr 17 12:43:59 UTC 2016 - mailaen...@opensuse.org
+
+- update to 4.2.3.4 (service release), bugfixes:
+  * bxc#36116 - [System.Web.Services] Unix paths fix
+  * bxc#37079 - [jit] Fix the support for gshared types in mini_emit_initobj ()
+  * bxc#37273 - [llvm] Disable support for nested clauses.
+  * bxc#38012 - [sgen] Fix register scanning on ARM
+  * bxc#37846 - [jit] Fix the reference type detection for Volatile:Read/Write 
()
+- remove outdated authors.patch as it was removed on purpose
+  https://github.com/mono/mono/commit/b39e7e9d78938362417b2c966d204da60952c7b4
+
+---

Old:

  authors.patch
  mono-4.2.2.30.tar.bz2

New:

  mono-4.2.3.4.tar.bz2



Other differences:
--
++ mono-core.spec ++
--- /var/tmp/diff_new_pack.rQKfLb/_old  2016-05-10 09:26:19.0 +0200
+++ /var/tmp/diff_new_pack.rQKfLb/_new  2016-05-10 09:26:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-core
 #
-# 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
@@ -21,23 +21,22 @@
 %define sgen yes
 
 Name:   mono-core
-Version:4.2.2
+Version:4.2.3
 Release:0
 Summary:Cross-platform, Open Source, .NET development framework
 License:LGPL-2.1 and MIT and MS-PL
 Group:  Development/Languages/Mono
 Url:http://www.mono-project.com
-Source0:
http://download.mono-project.com/sources/mono/mono-%{version}.30.tar.bz2
+Source0:
http://download.mono-project.com/sources/mono/mono-%{version}.4.tar.bz2
 Source1:mono-core.rpmlintrc
 Source2:gmcs
 # ppc build segfault so exclude it
 ExcludeArch:ppc
-# PATCH-FIX-OPENSUSE Use runtime 4.5 as default for nunit
+# PATCH-FIX-UPSTREAM 
https://github.com/mono/mono/commit/f3e4d331e7c9e02d25162b01604c0a3c54b23fc0
 Patch0: mono-nunit-default-runtime-4.5.patch
-# PATCH-FIX-OPENSUSE authors file is missing
-Patch2: authors.patch
 # PATCH-FIX-OPENSUSE fix insecure use of strncat at process.c:383 to fix build 
process
 Patch3: strncat-process-c.patch
+# PATCH-FIX-UPSTREAM  
https://github.com/mono/mono/commit/cdb098617af97c6af76e9048af62e8e5e778b5b6)
 Patch4: mono-un-revoke-fix-in-BNC-144655.patch
 ##
 ## set of ppc patches from git upstream not yet in tarball 4.2.1
@@ -125,7 +124,6 @@
 %prep
 %setup -q -n mono-%{version}
 %patch0 -p1
-%patch2 -p1
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
@@ -235,7 +233,7 @@
 
 %files -f mcs.lang
 %defattr(-, root, root)
-%doc AUTHORS COPYING.LIB LICENSE ChangeLog NEWS README.md
+%doc COPYING.LIB LICENSE ChangeLog NEWS README.md
 %config %{_sysconfdir}/mono/2.0/machine.config
 %config %{_sysconfdir}/mono/2.0/settings.map
 %config %{_sysconfdir}/mono/4.0/machine.config

++ mono-4.2.2.30.tar.bz2 -> mono-4.2.3.4.tar.bz2 ++
/work/SRC/openSUSE:Factory/mono-core/mono-4.2.2.30.tar.bz2 
/work/SRC/openSUSE:Factory/.mono-core.new/mono-4.2.3.4.tar.bz2 differ: char 11, 
line 1




commit plasma5-integration for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package plasma5-integration for 
openSUSE:Factory checked in at 2016-05-10 09:26:53

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


Package is "plasma5-integration"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-integration/plasma5-integration.changes  
2016-04-14 13:04:47.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-integration.new/plasma5-integration.changes 
2016-05-10 09:26:54.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:46:04 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  plasma-integration-5.6.2.tar.xz

New:

  plasma-integration-5.6.3.tar.xz



Other differences:
--
++ plasma5-integration.spec ++
--- /var/tmp/diff_new_pack.AOlE06/_old  2016-05-10 09:26:55.0 +0200
+++ /var/tmp/diff_new_pack.AOlE06/_new  2016-05-10 09:26:55.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-integration
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Plugins responsible for better integration of Qt applications 
in KDE Workspace
 License:GPL-2.0+

++ plasma-integration-5.6.2.tar.xz -> plasma-integration-5.6.3.tar.xz ++
Files old/plasma-integration-5.6.2/po/it/messages.mo and 
new/plasma-integration-5.6.3/po/it/messages.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-integration-5.6.2/po/it/plasmaintegration5.po 
new/plasma-integration-5.6.3/po/it/plasmaintegration5.po
--- old/plasma-integration-5.6.2/po/it/plasmaintegration5.po2016-04-05 
15:54:12.0 +0200
+++ new/plasma-integration-5.6.3/po/it/plasmaintegration5.po2016-04-19 
13:17:23.0 +0200
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: platformtheme/kdeplatformfiledialoghelper.cpp:257
 msgid "Opening..."
Files old/plasma-integration-5.6.2/po/nb/messages.mo and 
new/plasma-integration-5.6.3/po/nb/messages.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-integration-5.6.2/po/nb/plasmaintegration5.po 
new/plasma-integration-5.6.3/po/nb/plasmaintegration5.po
--- old/plasma-integration-5.6.2/po/nb/plasmaintegration5.po2016-04-05 
15:54:13.0 +0200
+++ new/plasma-integration-5.6.3/po/nb/plasmaintegration5.po2016-04-19 
13:17:23.0 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2016-01-21 07:56+\n"
+"POT-Creation-Date: 2016-03-29 13:06+\n"
 "PO-Revision-Date: 2015-02-24 20:41+0100\n"
 "Last-Translator: Bjørn Steensrud \n"
 "Language-Team: Norwegian Bokmål \n"
@@ -19,11 +19,11 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:234
+#: platformtheme/kdeplatformfiledialoghelper.cpp:257
 msgid "Opening..."
 msgstr "Åpner …"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:234
+#: platformtheme/kdeplatformfiledialoghelper.cpp:257
 msgid "Saving..."
 msgstr "Lagrer …"
 
Files old/plasma-integration-5.6.2/po/nn/messages.mo and 
new/plasma-integration-5.6.3/po/nn/messages.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-integration-5.6.2/po/nn/plasmaintegration5.po 
new/plasma-integration-5.6.3/po/nn/plasmaintegration5.po
--- old/plasma-integration-5.6.2/po/nn/plasmaintegration5.po2016-04-05 
15:54:13.0 +0200
+++ new/plasma-integration-5.6.3/po/nn/plasmaintegration5.po2016-04-19 
13:17:23.0 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2016-01-21 07:56+\n"
+"POT-Creation-Date: 2016-03-29 13:06+\n"
 "PO-Revision-Date: 2015-06-01 20:12+0100\n"
 "Last-Translator: Karl Ove Hufthammer \n"
 "Language-Team: Norwegian Nynorsk \n"
@@ -19,11 +19,11 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:234
+#: platformtheme/kdeplatformfiledialoghelper.cpp:257
 msgid "Opening..."
 msgstr "Opnar …"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:234
+#: 

commit discover for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package discover for openSUSE:Factory 
checked in at 2016-05-10 09:26:47

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-04-14 
13:04:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.discover.new/discover.changes   2016-05-10 
09:26:49.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:45:28 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  discover-5.6.2.tar.xz

New:

  discover-5.6.3.tar.xz



Other differences:
--
++ discover.spec ++
--- /var/tmp/diff_new_pack.U2XEhu/_old  2016-05-10 09:26:50.0 +0200
+++ /var/tmp/diff_new_pack.U2XEhu/_new  2016-05-10 09:26:50.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   discover
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:KDE Software Installer
 License:GPL-2.0

++ discover-5.6.2.tar.xz -> discover-5.6.3.tar.xz ++
 6733 lines of diff (skipped)




commit yast2-storage for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2016-05-10 09:26:20

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


Package is "yast2-storage"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2016-04-28 20:30:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2016-05-10 09:26:22.0 +0200
@@ -1,0 +2,14 @@
+Fri May  6 06:33:40 UTC 2016 - jsr...@suse.cz
+
+- fixed error in porting bsc#957913 to master branch
+- 3.1.92
+
+---
+Thu May  5 09:38:40 UTC 2016 - jsr...@suse.cz
+
+- create subvolume for /var/cache (fate#320834)
+- create LVM-based proposal when specified in the control file
+  (bsc#957913)
+- 3.1.91
+
+---

Old:

  yast2-storage-3.1.90.tar.bz2

New:

  yast2-storage-3.1.92.tar.bz2



Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.Z04Rs6/_old  2016-05-10 09:26:23.0 +0200
+++ /var/tmp/diff_new_pack.Z04Rs6/_new  2016-05-10 09:26:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.90
+Version:3.1.92
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-storage-3.1.90.tar.bz2 -> yast2-storage-3.1.92.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.90/package/yast2-storage.changes 
new/yast2-storage-3.1.92/package/yast2-storage.changes
--- old/yast2-storage-3.1.90/package/yast2-storage.changes  2016-04-22 
14:31:53.0 +0200
+++ new/yast2-storage-3.1.92/package/yast2-storage.changes  2016-05-06 
08:50:48.0 +0200
@@ -1,4 +1,18 @@
 ---
+Fri May  6 06:33:40 UTC 2016 - jsr...@suse.cz
+
+- fixed error in porting bsc#957913 to master branch
+- 3.1.92
+
+---
+Thu May  5 09:38:40 UTC 2016 - jsr...@suse.cz
+
+- create subvolume for /var/cache (fate#320834)
+- create LVM-based proposal when specified in the control file
+  (bsc#957913)
+- 3.1.91
+
+---
 Fri Apr 22 12:22:46 UTC 2016 - dmuel...@suse.com
 
 - raise min /boot size for BTRFS/aarch64 (bsc#974280)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.90/package/yast2-storage.spec 
new/yast2-storage-3.1.92/package/yast2-storage.spec
--- old/yast2-storage-3.1.90/package/yast2-storage.spec 2016-04-22 
14:31:53.0 +0200
+++ new/yast2-storage-3.1.92/package/yast2-storage.spec 2016-05-06 
08:50:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.90
+Version:3.1.92
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.90/src/modules/Storage.rb 
new/yast2-storage-3.1.92/src/modules/Storage.rb
--- old/yast2-storage-3.1.90/src/modules/Storage.rb 2016-04-22 
14:31:53.0 +0200
+++ new/yast2-storage-3.1.92/src/modules/Storage.rb 2016-05-06 
08:50:48.0 +0200
@@ -5025,6 +5025,7 @@
 "srv",
 "tmp",
 "usr/local",
+"var/cache",
 "var/crash",
 "var/lib/libvirt/images",
 "var/lib/mailman",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.90/src/modules/StorageProposal.rb 
new/yast2-storage-3.1.92/src/modules/StorageProposal.rb
--- old/yast2-storage-3.1.90/src/modules/StorageProposal.rb 2016-04-22 
14:31:53.0 +0200
+++ new/yast2-storage-3.1.92/src/modules/StorageProposal.rb 2016-05-06 
08:50:48.0 +0200
@@ -6135,6 +6135,9 @@
 
 
 def get_inst_prop(target)
+  # initialize data from control file earlier, it is needed in this 
function
+  # to decide whether to use LVM proposal (bsc#957913)
+  GetControlCfg()
   target = deep_copy(target)
   ret = {}
   vg = GetProposalVM()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.1.90/test/fixtures/gpt-btrfs-boot.yml 
new/yast2-storage-3.1.92/test/fixtures/gpt-btrfs-boot.yml
--- old/yast2-storage-3.1.90/test/fixtures/gpt-btrfs-boot.yml   2016-04-22 
14:31:53.0 +0200
+++ new/yast2-storage-3.1.92/test/fixtures/gpt-btrfs-boot.yml   2016-05-06 

commit ImageMagick for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package ImageMagick for openSUSE:Factory 
checked in at 2016-05-10 09:26:00

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-04-30 
23:24:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ImageMagick.new/ImageMagick.changes 
2016-05-10 09:26:03.0 +0200
@@ -1,0 +2,16 @@
+Thu May  5 13:31:42 UTC 2016 - vci...@suse.com
+
+- Disable insecure coders [bnc#978061]
+  * ImageMagick-6.8.8-1-disable-insecure-coders.patch
+  * CVE-2016-3714
+  * CVE-2016-3715
+  * CVE-2016-3716
+  * CVE-2016-3717
+  * CVE-2016-3718
+
+---
+Thu May  5 09:02:32 UTC 2016 - pgaj...@suse.com
+
+- Update to 6.9.3-10: fix imagetragick
+
+---

Old:

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

New:

  ImageMagick-6.8.8-1-disable-insecure-coders.patch
  ImageMagick-6.9.3-10.tar.xz
  ImageMagick-6.9.3-10.tar.xz.asc



Other differences:
--
++ ImageMagick.spec ++
--- /var/tmp/diff_new_pack.WtAFgw/_old  2016-05-10 09:26:04.0 +0200
+++ /var/tmp/diff_new_pack.WtAFgw/_new  2016-05-10 09:26:04.0 +0200
@@ -63,7 +63,7 @@
 
 %define maj   6
 %define mfr_version   %{maj}.9.3
-%define mfr_revision  8
+%define mfr_revision  10
 %define quantum_depth 16
 %define source_version %{mfr_version}-%{mfr_revision}
 %define clibver   2
@@ -92,6 +92,7 @@
 # bugs
 # will ask upstream if needed, or if other solution exists
 Patch11:ImageMagick-6.8.4.0-dont-build-in-install.patch
+Patch20:ImageMagick-6.8.8-1-disable-insecure-coders.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %package -n perl-PerlMagick
@@ -251,6 +252,7 @@
 %patch3  -p1
 %patch4  -p1
 %patch11 -p1
+%patch20 -p1
 
 # remove executeable bits from per demos
 chmod -x PerlMagick/demo/*.pl

++ ImageMagick-6.8.8-1-disable-insecure-coders.patch ++
Index: ImageMagick-6.8.8-1/config/policy.xml

Disable insecure loaders by default bsc#978061
sfl...@suse.de

===
--- ImageMagick-6.8.8-1.orig/config/policy.xml
+++ ImageMagick-6.8.8-1/config/policy.xml
@@ -56,4 +56,11 @@
   
   
   
+  
+  
+  
+  
+  
+  
+  
 
++ ImageMagick-6.9.3-8.tar.xz -> ImageMagick-6.9.3-10.tar.xz ++
/work/SRC/openSUSE:Factory/ImageMagick/ImageMagick-6.9.3-8.tar.xz 
/work/SRC/openSUSE:Factory/.ImageMagick.new/ImageMagick-6.9.3-10.tar.xz differ: 
char 26, line 1





commit yast2-installation for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory checked in at 2016-05-10 09:26:37

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


Package is "yast2-installation"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2016-04-28 20:31:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes   
2016-05-10 09:26:39.0 +0200
@@ -1,0 +2,14 @@
+Fri May  6 11:09:28 UTC 2016 - jsr...@suse.cz
+
+- get more texts for roles dialog from control file, allow
+  a general label (bsc#974625)
+- 3.1.184
+
+---
+Thu May  5 13:39:46 UTC 2016 - an...@suse.com
+
+- Always read the lists of local users in the previous system to
+  have them available during user importing (part of fate#319624)
+- 3.1.183
+
+---

Old:

  yast2-installation-3.1.182.tar.bz2

New:

  yast2-installation-3.1.184.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.zpvWN2/_old  2016-05-10 09:26:40.0 +0200
+++ /var/tmp/diff_new_pack.zpvWN2/_new  2016-05-10 09:26:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-installation
-Version:3.1.182
+Version:3.1.184
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -121,7 +121,8 @@
 
 Recommends: yast2-registration
 Recommends: yast2-online-update
-Recommends: yast2-users
+# UsersDatabase class
+Recommends: yast2-users >= 3.1.49
 Recommends: yast2-firewall
 Recommends: release-notes
 Recommends: curl

++ yast2-installation-3.1.182.tar.bz2 -> yast2-installation-3.1.184.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-installation-3.1.182/doc/SELF_UPDATE.md 
new/yast2-installation-3.1.184/doc/SELF_UPDATE.md
--- old/yast2-installation-3.1.182/doc/SELF_UPDATE.md   2016-04-28 
15:04:36.0 +0200
+++ new/yast2-installation-3.1.184/doc/SELF_UPDATE.md   2016-05-09 
14:24:55.0 +0200
@@ -73,3 +73,14 @@
 self-update is performed).
 
 However, the user changes will be re-applied on top of the installer updates.
+
+## Resume installation
+
+Any client called before the self update step is responsible to remember its 
state (if
+needed) and automatically going to the next dialog after the YaST restart.
+Once the self update step is reached again it will remove the restarting flag.
+
+Currently there is no API available for remembering the client states. The 
easiest
+way is to store the configuration into an YAML file and load it when 
restarting the
+installer. See the 
[example](https://github.com/yast/yast-installation/pull/367/files#diff-4c91d6424e08c9bef9237f7d959fc0c2R48)
+in the `inst_complex_welcome` client.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-installation-3.1.182/doc/control-file.md 
new/yast2-installation-3.1.184/doc/control-file.md
--- old/yast2-installation-3.1.182/doc/control-file.md  2016-04-28 
15:04:36.0 +0200
+++ new/yast2-installation-3.1.184/doc/control-file.md  2016-05-09 
14:24:55.0 +0200
@@ -875,6 +875,24 @@
 
 
 
+  
+  System Role
+  
+  
+System Roles are predefined use cases which adjust the system
+to be installed tailored for the selected scenario.
+Choose the one which matches your system best.
+  
+  
+  
+pThe system roles adjustments are in the range from 
package selection up
+to disk partitioning. By choosing a system role, the system is
+configured accordingly to match the use case of the role. The settings
+defined by a role can be overridden in the next steps if 
necessary./p
+  
+
+
+
   General Server
   
 Suitable for physical machines.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.182/package/yast2-installation.changes 
new/yast2-installation-3.1.184/package/yast2-installation.changes
--- old/yast2-installation-3.1.182/package/yast2-installation.changes   
2016-04-28 15:04:36.0 +0200
+++ new/yast2-installation-3.1.184/package/yast2-installation.changes   
2016-05-09 14:24:55.0 +0200
@@ -1,4 +1,18 @@
 ---
+Fri May  6 11:09:28 UTC 2016 - jsr...@suse.cz
+
+- get more texts for roles dialog from control file, allow
+  a general label (bsc#974625)
+- 3.1.184
+

commit yast2-users for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-users for openSUSE:Factory 
checked in at 2016-05-10 09:26:07

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


Package is "yast2-users"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes  2016-04-16 
22:07:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-users.new/yast2-users.changes 
2016-05-10 09:26:08.0 +0200
@@ -1,0 +2,15 @@
+Thu May  5 13:22:29 UTC 2016 - an...@suse.com
+
+- Make user import work even if passwd and shadow files are not
+  copied to /var/lib/YaST2 via "copy_to_system" (part of
+  fate#319624)
+- 3.1.49
+
+---
+Thu May  5 12:32:39 UTC 2016 - igonzalezs...@suse.com
+
+- Fix users import when entries for all non-system users are missing in
+  /etc/shadow (bsc#978648)
+- 3.1.48
+
+---

Old:

  yast2-users-3.1.47.tar.bz2

New:

  yast2-users-3.1.49.tar.bz2



Other differences:
--
++ yast2-users.spec ++
--- /var/tmp/diff_new_pack.s30Lzc/_old  2016-05-10 09:26:09.0 +0200
+++ /var/tmp/diff_new_pack.s30Lzc/_new  2016-05-10 09:26:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-users
-Version:3.1.47
+Version:3.1.49
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-users-3.1.47.tar.bz2 -> yast2-users-3.1.49.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.47/package/yast2-users.changes 
new/yast2-users-3.1.49/package/yast2-users.changes
--- old/yast2-users-3.1.47/package/yast2-users.changes  2016-04-12 
14:01:29.0 +0200
+++ new/yast2-users-3.1.49/package/yast2-users.changes  2016-05-05 
17:34:04.0 +0200
@@ -1,4 +1,19 @@
 ---
+Thu May  5 13:22:29 UTC 2016 - an...@suse.com
+
+- Make user import work even if passwd and shadow files are not
+  copied to /var/lib/YaST2 via "copy_to_system" (part of
+  fate#319624)
+- 3.1.49
+
+---
+Thu May  5 12:32:39 UTC 2016 - igonzalezs...@suse.com
+
+- Fix users import when entries for all non-system users are missing in
+  /etc/shadow (bsc#978648)
+- 3.1.48
+
+---
 Thu Apr  7 08:49:13 UTC 2016 - igonzalezs...@suse.com
 
 - Does not set empty passwords fields in /etc/shadow during
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.47/package/yast2-users.spec 
new/yast2-users-3.1.49/package/yast2-users.spec
--- old/yast2-users-3.1.47/package/yast2-users.spec 2016-04-12 
14:01:29.0 +0200
+++ new/yast2-users-3.1.49/package/yast2-users.spec 2016-05-05 
17:34:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-users
-Version:3.1.47
+Version:3.1.49
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.47/src/Makefile.am 
new/yast2-users-3.1.49/src/Makefile.am
--- old/yast2-users-3.1.47/src/Makefile.am  2016-04-12 14:01:29.0 
+0200
+++ new/yast2-users-3.1.49/src/Makefile.am  2016-05-05 17:34:04.0 
+0200
@@ -63,7 +63,8 @@
   lib/users/local_password.rb \
   lib/users/encryption_method.rb \
   lib/users/proposal.rb \
-  lib/users/encryption_proposal.rb
+  lib/users/encryption_proposal.rb \
+  lib/users/users_database.rb
 
 scrconf_DATA = \
   scrconf/uid.scr \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-users-3.1.47/src/lib/users/dialogs/inst_user_first.rb 
new/yast2-users-3.1.49/src/lib/users/dialogs/inst_user_first.rb
--- old/yast2-users-3.1.47/src/lib/users/dialogs/inst_user_first.rb 
2016-04-12 14:01:29.0 +0200
+++ new/yast2-users-3.1.49/src/lib/users/dialogs/inst_user_first.rb 
2016-05-05 17:34:04.0 +0200
@@ -24,6 +24,7 @@
 require "users/dialogs/users_to_import"
 require "users/ca_password_validator"
 require "users/local_password"
+require "users/users_database"
 
 module Yast
   # Dialog for creation of local users during first stage of installation
@@ -55,10 +56,12 @@
   # names of imported users selected for writing
   @usernames_to_import = []
 
-  # if importing users from different partition is possible
-  @import_available = UsersSimple.ImportAvailable
+  # Check if some users database was imported 

commit gtk2-branding-openSUSE for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package gtk2-branding-openSUSE for 
openSUSE:Factory checked in at 2016-05-10 09:25:32

Comparing /work/SRC/openSUSE:Factory/gtk2-branding-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.gtk2-branding-openSUSE.new (New)


Package is "gtk2-branding-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/gtk2-branding-openSUSE/gtk2-branding-SLED.changes
2015-10-30 21:51:41.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gtk2-branding-openSUSE.new/gtk2-branding-SLED.changes
   2016-05-10 09:25:33.0 +0200
@@ -1,0 +2,7 @@
+Wed May  4 07:46:58 UTC 2016 - zai...@opensuse.org
+
+- Update gtk2-branding-gtkrc to have Adwaita as
+  gtk-icon-theme-name and hicolor as gtk-fallback-icon-theme
+  values.
+
+---
gtk2-branding-openSUSE.changes: same change



Other differences:
--
++ gtk2-branding-SLED.spec ++
--- /var/tmp/diff_new_pack.5KhMSY/_old  2016-05-10 09:25:34.0 +0200
+++ /var/tmp/diff_new_pack.5KhMSY/_new  2016-05-10 09:25:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gtk2-branding-SLED
 #
-# 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

gtk2-branding-openSUSE.spec: same change
++ gtk2-branding-gtkrc ++
--- /var/tmp/diff_new_pack.5KhMSY/_old  2016-05-10 09:25:34.0 +0200
+++ /var/tmp/diff_new_pack.5KhMSY/_new  2016-05-10 09:25:34.0 +0200
@@ -7,5 +7,5 @@
 #
 # This is a default for openSUSE:
 gtk-theme-name = "Adwaita"
-gtk-icon-theme-name = "gnome"
-gtk-fallback-icon-theme = "gnome"
+gtk-icon-theme-name = "Adwaita"
+gtk-fallback-icon-theme = "hicolor"




commit liborcus for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package liborcus for openSUSE:Factory 
checked in at 2016-05-10 09:25:26

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


Package is "liborcus"

Changes:

--- /work/SRC/openSUSE:Factory/liborcus/liborcus.changes2016-03-26 
15:09:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.liborcus.new/liborcus.changes   2016-05-10 
09:25:27.0 +0200
@@ -1,0 +2,5 @@
+Thu May  5 08:18:44 UTC 2016 - tchva...@suse.com
+
+- Coflict with liborcus-0_10-0
+
+---



Other differences:
--
++ liborcus.spec ++
--- /var/tmp/diff_new_pack.0GFhum/_old  2016-05-10 09:25:27.0 +0200
+++ /var/tmp/diff_new_pack.0GFhum/_new  2016-05-10 09:25:27.0 +0200
@@ -40,6 +40,8 @@
 %package -n %{libname}
 Summary:Spreadsheet file processing library
 Group:  System/Libraries
+# Same version, soname updated -> same file -> conflict
+Conflicts:  liborcus-0_10-0
 
 %description -n %{libname}
 Standalone file import filter library for spreadsheet documents. Currently




commit perl-Devel-Symdump for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-Symdump for 
openSUSE:Factory checked in at 2016-05-10 09:25:44

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


Package is "perl-Devel-Symdump"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-Symdump/perl-Devel-Symdump.changes
2016-04-17 22:16:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-Symdump.new/perl-Devel-Symdump.changes   
2016-05-10 09:25:45.0 +0200
@@ -1,0 +2,14 @@
+Thu May  5 09:07:40 UTC 2016 - co...@suse.com
+
+- updated to 2.17
+   see /usr/share/doc/packages/perl-Devel-Symdump/Changes
+
+  2016-04-19  k  
+  
+   * release 2.17
+  
+   * address #113886: unlist Compress::Zlib as a prereq, it was and
+   still is only used by a test that won't run for normal user
+   installs (Thanks to Graham Knop for reporting)
+
+---

Old:

  Devel-Symdump-2.16.tar.gz

New:

  Devel-Symdump-2.17.tar.gz



Other differences:
--
++ perl-Devel-Symdump.spec ++
--- /var/tmp/diff_new_pack.JgRLdb/_old  2016-05-10 09:25:46.0 +0200
+++ /var/tmp/diff_new_pack.JgRLdb/_new  2016-05-10 09:25:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Devel-Symdump
-Version:2.16
+Version:2.17
 Release:0
 %define cpan_name Devel-Symdump
 Summary:Dump Symbol Names or the Symbol Table

++ Devel-Symdump-2.16.tar.gz -> Devel-Symdump-2.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Symdump-2.16/Changes 
new/Devel-Symdump-2.17/Changes
--- old/Devel-Symdump-2.16/Changes  2016-04-11 22:07:27.0 +0200
+++ new/Devel-Symdump-2.17/Changes  2016-04-19 18:17:08.0 +0200
@@ -1,3 +1,11 @@
+2016-04-19  k  
+
+   * release 2.17
+
+   * address #113886: unlist Compress::Zlib as a prereq, it was and
+   still is only used by a test that won't run for normal user
+   installs (Thanks to Graham Knop for reporting)
+
 2016-04-11  k  
 
* release 2.16
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Symdump-2.16/META.json 
new/Devel-Symdump-2.17/META.json
--- old/Devel-Symdump-2.16/META.json2016-04-11 22:08:20.0 +0200
+++ new/Devel-Symdump-2.17/META.json2016-04-19 19:26:15.0 +0200
@@ -4,7 +4,7 @@
   "Andreas Koenig "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.12, CPAN::Meta::Converter 
version 2.150005",
"keywords" : [
   "symbol table inspection"
],
@@ -44,9 +44,10 @@
"release_status" : "stable",
"resources" : {
   "repository" : {
+ "type" : "git",
  "url" : "git://github.com/andk/devel-symdump.git"
   }
},
-   "version" : "2.16",
+   "version" : "2.17",
"x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Symdump-2.16/META.yml 
new/Devel-Symdump-2.17/META.yml
--- old/Devel-Symdump-2.16/META.yml 2016-04-11 22:08:20.0 +0200
+++ new/Devel-Symdump-2.17/META.yml 2016-04-19 19:26:15.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.12, CPAN::Meta::Converter version 
2.150005'
 keywords:
   - 'symbol table inspection'
 license: perl
@@ -25,5 +25,5 @@
   perl: '5.004'
 resources:
   repository: git://github.com/andk/devel-symdump.git
-version: '2.16'
+version: '2.17'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-Symdump-2.16/Makefile.PL 
new/Devel-Symdump-2.17/Makefile.PL
--- old/Devel-Symdump-2.16/Makefile.PL  2014-12-16 05:28:26.0 +0100
+++ new/Devel-Symdump-2.17/Makefile.PL  2016-04-19 18:02:38.0 +0200
@@ -63,9 +63,18 @@
 }
 
 my $prereq_pm = {
- 'Compress::Zlib' => 0, # only for t/glob_to_local_typeglob.t
  'Test::More' => 0,
 };
+my @interesting_modules =
+(
+ 'Compress::Zlib', # only for t/glob_to_local_typeglob.t
+);
+for my $interesting_module (@interesting_modules) {
+my $have = eval "require $interesting_module; 

commit perl-XML-LibXML-Simple for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-LibXML-Simple for 
openSUSE:Factory checked in at 2016-05-10 09:25:55

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


Package is "perl-XML-LibXML-Simple"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-XML-LibXML-Simple/perl-XML-LibXML-Simple.changes
2016-03-18 21:31:17.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-XML-LibXML-Simple.new/perl-XML-LibXML-Simple.changes
   2016-05-10 09:25:56.0 +0200
@@ -1,0 +2,11 @@
+Thu May  5 10:29:09 UTC 2016 - co...@suse.com
+
+- updated to 0.97
+   see /usr/share/doc/packages/perl-XML-LibXML-Simple/ChangeLog
+
+  version 0.97: Tue 12 Apr 15:12:21 CEST 2016
+  
+   Fixes:
+   - HookNodes parameter was not allowed. [Kit Peters]
+
+---

Old:

  XML-LibXML-Simple-0.96.tar.gz

New:

  XML-LibXML-Simple-0.97.tar.gz



Other differences:
--
++ perl-XML-LibXML-Simple.spec ++
--- /var/tmp/diff_new_pack.HgwKTg/_old  2016-05-10 09:25:58.0 +0200
+++ /var/tmp/diff_new_pack.HgwKTg/_new  2016-05-10 09:25:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-XML-LibXML-Simple
-Version:0.96
+Version:0.97
 Release:0
 %define cpan_name XML-LibXML-Simple
 Summary:XML::LibXML clone of XML::Simple::XMLin()

++ XML-LibXML-Simple-0.96.tar.gz -> XML-LibXML-Simple-0.97.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-LibXML-Simple-0.96/ChangeLog 
new/XML-LibXML-Simple-0.97/ChangeLog
--- old/XML-LibXML-Simple-0.96/ChangeLog2016-03-11 15:09:51.0 
+0100
+++ new/XML-LibXML-Simple-0.97/ChangeLog2016-04-12 15:12:26.0 
+0200
@@ -1,6 +1,11 @@
 
 === version history for XML::LibXML::Simple
 
+version 0.97: Tue 12 Apr 15:12:21 CEST 2016
+
+   Fixes:
+   - HookNodes parameter was not allowed. [Kit Peters]
+
 version 0.96: Fri 11 Mar 15:09:43 CET 2016
 
Improvements:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-LibXML-Simple-0.96/META.json 
new/XML-LibXML-Simple-0.97/META.json
--- old/XML-LibXML-Simple-0.96/META.json2016-03-11 15:09:52.0 
+0100
+++ new/XML-LibXML-Simple-0.97/META.json2016-04-12 15:12:27.0 
+0200
@@ -40,5 +40,5 @@
   }
},
"release_status" : "stable",
-   "version" : "0.96"
+   "version" : "0.97"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-LibXML-Simple-0.96/META.yml 
new/XML-LibXML-Simple-0.97/META.yml
--- old/XML-LibXML-Simple-0.96/META.yml 2016-03-11 15:09:52.0 +0100
+++ new/XML-LibXML-Simple-0.97/META.yml 2016-04-12 15:12:27.0 +0200
@@ -22,4 +22,4 @@
   Scalar::Util: 0
   Test::More: 0.54
   XML::LibXML: 1.64
-version: 0.96
+version: 0.97
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-LibXML-Simple-0.96/Makefile.PL 
new/XML-LibXML-Simple-0.97/Makefile.PL
--- old/XML-LibXML-Simple-0.96/Makefile.PL  2016-03-11 15:09:51.0 
+0100
+++ new/XML-LibXML-Simple-0.97/Makefile.PL  2016-04-12 15:12:26.0 
+0200
@@ -4,7 +4,7 @@
 
 WriteMakefile
  ( NAME=> 'XML::LibXML::Simple'
- , VERSION => '0.96'
+ , VERSION => '0.97'
  , PREREQ_PM=>
{ XML::LibXML   => 1.64
, Test::More=> 0.54
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-LibXML-Simple-0.96/README 
new/XML-LibXML-Simple-0.97/README
--- old/XML-LibXML-Simple-0.96/README   2016-03-11 15:09:51.0 +0100
+++ new/XML-LibXML-Simple-0.97/README   2016-04-12 15:12:26.0 +0200
@@ -1,5 +1,5 @@
-=== README for XML-LibXML-Simple version 0.96
-=   Generated on Fri Mar 11 15:09:51 2016 by OODoc 2.02
+=== README for XML-LibXML-Simple version 0.97
+=   Generated on Tue Apr 12 15:12:26 2016 by OODoc 2.02
 
 There are various ways to install this module:
 
@@ -9,16 +9,16 @@
  (2) if you use Windows, have a look at http://ppm.activestate.com/
 
  (3) if you have downloaded this module manually (as root/administrator)
-   gzip -d XML-LibXML-Simple-0.96.tar.gz
-   tar -xf XML-LibXML-Simple-0.96.tar
-   cd XML-LibXML-Simple-0.96
+   gzip -d XML-LibXML-Simple-0.97.tar.gz
+   tar -xf XML-LibXML-Simple-0.97.tar
+   cd XML-LibXML-Simple-0.97
perl Makefile.PL
make  # optional
make test # optional
make install
 
 For usage, see the included manual-pages or
-

commit perl-MailTools for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package perl-MailTools for openSUSE:Factory 
checked in at 2016-05-10 09:25:50

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


Package is "perl-MailTools"

Changes:

--- /work/SRC/openSUSE:Factory/perl-MailTools/perl-MailTools.changes
2015-04-25 21:17:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-MailTools.new/perl-MailTools.changes   
2016-05-10 09:25:51.0 +0200
@@ -1,0 +2,6 @@
+Thu May  5 09:33:51 UTC 2016 - co...@suse.com
+
+- updated to 2.16
+   see /usr/share/doc/packages/perl-MailTools/ChangeLog
+
+---

Old:

  MailTools-2.14.tar.gz

New:

  MailTools-2.16.tar.gz



Other differences:
--
++ perl-MailTools.spec ++
--- /var/tmp/diff_new_pack.TOWMC6/_old  2016-05-10 09:25:52.0 +0200
+++ /var/tmp/diff_new_pack.TOWMC6/_new  2016-05-10 09:25:52.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MailTools
 #
-# 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,14 +17,14 @@
 
 
 Name:   perl-MailTools
-Version:2.14
+Version:2.16
 Release:0
 %define cpan_name MailTools
 Summary:Various e-mail related modules
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MailTools/
-Source0:
http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/MailTools-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/M/MA/MARKOV/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ MailTools-2.14.tar.gz -> MailTools-2.16.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MailTools-2.14/ChangeLog new/MailTools-2.16/ChangeLog
--- old/MailTools-2.14/ChangeLog2014-11-21 17:12:50.0 +0100
+++ new/MailTools-2.16/ChangeLog2016-04-18 17:58:26.0 +0200
@@ -1,15 +1,29 @@
 
  version history for MailTools
 
-version 2.14: Fri Nov 21 17:12:42 CET 2014
+version 2.16: Mon 18 Apr 17:58:23 CEST 2016
 
Fixes:
+   - Mail::header regression in parsing files.
+ rt.cpan.org#113874 [John L Berger]
+
+version 2.15: Mon 18 Apr 13:55:30 CEST 2016
+
+   Fixes:
+   - Mail::Header continue reading after wrongly folders line
+ rt.cpan.org#113464 [Mark Sapiro]
+
+   Improvements:
+   - Mail::Mailer::open call of exec() explained [Malte Stretz]
+   - fix example in Mail::Address [peter77]
+
+version 2.14: Fri Nov 21 17:12:42 CET 2014
 
+   Fixes:
- threads and Mail::Field initiation
  rt.cpan.org#99153 [Autumn Lansing] and [Arne Becker]
 
Improvements:
-
- warn when loading of some Mail::Field::* fails [Arne Becker]
 
 version 2.13: Sun Jan  5 18:52:25 CET 2014
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MailTools-2.14/META.json new/MailTools-2.16/META.json
--- old/MailTools-2.14/META.json2014-11-21 17:12:51.0 +0100
+++ new/MailTools-2.16/META.json2016-04-18 17:58:28.0 +0200
@@ -42,5 +42,5 @@
   }
},
"release_status" : "stable",
-   "version" : "2.14"
+   "version" : "2.16"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MailTools-2.14/META.yml new/MailTools-2.16/META.yml
--- old/MailTools-2.14/META.yml 2014-11-21 17:12:51.0 +0100
+++ new/MailTools-2.16/META.yml 2016-04-18 17:58:28.0 +0200
@@ -24,4 +24,4 @@
   Net::Domain: 1.05
   Net::SMTP: 1.03
   Test::More: 0
-version: 2.14
+version: 2.16
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MailTools-2.14/Makefile.PL 
new/MailTools-2.16/Makefile.PL
--- old/MailTools-2.14/Makefile.PL  2014-11-21 17:12:50.0 +0100
+++ new/MailTools-2.16/Makefile.PL  2016-04-18 17:58:26.0 +0200
@@ -4,7 +4,7 @@
 
 WriteMakefile
  ( DISTNAME  => 'MailTools'
- , VERSION   => '2.14'
+ , VERSION   => '2.16'
  , NAME  => 'Mail'
  , AUTHOR=> 'Mark Overmeer '
  , ABSTRACT  => 'Various e-mail related modules'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MailTools-2.14/lib/Mail/Address.pm 
new/MailTools-2.16/lib/Mail/Address.pm
--- 

commit perl-Config-IniFiles for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Config-IniFiles for 
openSUSE:Factory checked in at 2016-05-10 09:25:38

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


Package is "perl-Config-IniFiles"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Config-IniFiles/perl-Config-IniFiles.changes
2015-07-16 17:16:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Config-IniFiles.new/perl-Config-IniFiles.changes
   2016-05-10 09:25:39.0 +0200
@@ -1,0 +2,6 @@
+Thu May  5 08:55:21 UTC 2016 - co...@suse.com
+
+- updated to 2.89
+   see /usr/share/doc/packages/perl-Config-IniFiles/Changes
+
+---

Old:

  Config-IniFiles-2.88.tar.gz

New:

  Config-IniFiles-2.89.tar.gz



Other differences:
--
++ perl-Config-IniFiles.spec ++
--- /var/tmp/diff_new_pack.32V7fp/_old  2016-05-10 09:25:40.0 +0200
+++ /var/tmp/diff_new_pack.32V7fp/_new  2016-05-10 09:25:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Config-IniFiles
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Config-IniFiles
-Version:2.88
+Version:2.89
 Release:0
 %define cpan_name Config-IniFiles
 Summary:Module for Reading .Ini-Style Configuration Files

++ Config-IniFiles-2.88.tar.gz -> Config-IniFiles-2.89.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-IniFiles-2.88/Changes 
new/Config-IniFiles-2.89/Changes
--- old/Config-IniFiles-2.88/Changes2015-07-10 10:37:30.0 +0200
+++ new/Config-IniFiles-2.89/Changes2016-05-03 11:13:02.0 +0200
@@ -1,3 +1,8 @@
+2.892016-05-03
+* Abort if print returns false.
+- See https://rt.cpan.org/Ticket/Display.html?id=114140
+- "WriteConfig nullifies the file in case of no space left on disk"
+
 2.882015-07-10
 * Apply speedup patch from James Rouzier.
 - 
https://bitbucket.org/shlomif/perl-config-inifiles/pull-request/4/avoid-searching-through-all-the-sections/commits
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-IniFiles-2.88/META.json 
new/Config-IniFiles-2.89/META.json
--- old/Config-IniFiles-2.88/META.json  2015-07-10 10:37:30.0 +0200
+++ new/Config-IniFiles-2.89/META.json  2016-05-03 11:13:02.0 +0200
@@ -4,7 +4,7 @@
   "Shlomi Fish "
],
"dynamic_config" : 1,
-   "generated_by" : "Module::Build version 0.4214",
+   "generated_by" : "Module::Build version 0.4218",
"keywords" : [
   "ini",
   "files",
@@ -58,7 +58,7 @@
"provides" : {
   "Config::IniFiles" : {
  "file" : "lib/Config/IniFiles.pm",
- "version" : "2.88"
+ "version" : "2.89"
   }
},
"release_status" : "stable",
@@ -71,6 +71,5 @@
  "url" : "https://bitbucket.org/shlomif/perl-config-inifiles;
   }
},
-   "version" : "2.88",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "2.89"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-IniFiles-2.88/META.yml 
new/Config-IniFiles-2.89/META.yml
--- old/Config-IniFiles-2.88/META.yml   2015-07-10 10:37:30.0 +0200
+++ new/Config-IniFiles-2.89/META.yml   2016-05-03 11:13:02.0 +0200
@@ -13,7 +13,7 @@
 configure_requires:
   Module::Build: '0.36'
 dynamic_config: 1
-generated_by: 'Module::Build version 0.4214, CPAN::Meta::Converter version 
2.150005'
+generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 
2.150001'
 keywords:
   - ini
   - files
@@ -32,7 +32,7 @@
 provides:
   Config::IniFiles:
 file: lib/Config/IniFiles.pm
-version: '2.88'
+version: '2.89'
 requires:
   Carp: '0'
   Fcntl: '0'
@@ -47,5 +47,4 @@
   homepage: https://sourceforge.net/projects/config-inifiles/
   license: http://dev.perl.org/licenses/
   repository: https://bitbucket.org/shlomif/perl-config-inifiles
-version: '2.88'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
+version: '2.89'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-IniFiles-2.88/Makefile.PL 
new/Config-IniFiles-2.89/Makefile.PL
--- old/Config-IniFiles-2.88/Makefile.PL2015-07-10 10:37:30.0 
+0200
+++ 

commit yast2-network for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-05-10 09:24:56

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


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-04-28 20:29:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-05-10 09:24:57.0 +0200
@@ -1,0 +2,9 @@
+Mon May  2 11:35:45 UTC 2016 - mfi...@suse.com
+
+- bnc#977953
+  - added dependency on yast2-proxy. "yast2 lan" won't fail with
+internal error (missing Proxy module), when yast2-network is
+installed into a minimal server installation.
+- 3.1.149
+
+---

Old:

  yast2-network-3.1.148.tar.bz2

New:

  yast2-network-3.1.149.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.wuOwDG/_old  2016-05-10 09:24:58.0 +0200
+++ /var/tmp/diff_new_pack.wuOwDG/_new  2016-05-10 09:24:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.148
+Version:3.1.149
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,6 +31,7 @@
 BuildRequires:  yast2-country
 BuildRequires:  yast2-devtools >= 3.1.15
 BuildRequires:  yast2-proxy
+Requires:   yast2-proxy
 #for install task
 BuildRequires:  rubygem(yast-rake)
 

++ yast2-network-3.1.148.tar.bz2 -> yast2-network-3.1.149.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.148/package/yast2-network.changes 
new/yast2-network-3.1.149/package/yast2-network.changes
--- old/yast2-network-3.1.148/package/yast2-network.changes 2016-04-19 
10:56:06.0 +0200
+++ new/yast2-network-3.1.149/package/yast2-network.changes 2016-05-04 
21:43:30.0 +0200
@@ -1,4 +1,13 @@
 ---
+Mon May  2 11:35:45 UTC 2016 - mfi...@suse.com
+
+- bnc#977953
+  - added dependency on yast2-proxy. "yast2 lan" won't fail with
+internal error (missing Proxy module), when yast2-network is
+installed into a minimal server installation.
+- 3.1.149
+
+---
 Tue Apr 19 08:01:16 UTC 2016 - mfi...@suse.com
 
 - bnc#966694
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.148/package/yast2-network.spec 
new/yast2-network-3.1.149/package/yast2-network.spec
--- old/yast2-network-3.1.148/package/yast2-network.spec2016-04-19 
10:56:06.0 +0200
+++ new/yast2-network-3.1.149/package/yast2-network.spec2016-05-04 
21:43:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.148
+Version:3.1.149
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,6 +31,7 @@
 BuildRequires:  yast2-devtools >= 3.1.15
 BuildRequires:  yast2-country
 BuildRequires:  yast2-proxy
+Requires:   yast2-proxy
 #for install task
 BuildRequires:  rubygem(yast-rake)
 




commit libapr1 for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package libapr1 for openSUSE:Factory checked 
in at 2016-05-10 09:25:07

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


Package is "libapr1"

Changes:

--- /work/SRC/openSUSE:Factory/libapr1/libapr1.changes  2015-10-03 
20:29:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.libapr1.new/libapr1.changes 2016-05-10 
09:25:09.0 +0200
@@ -1,0 +2,12 @@
+Wed May  4 13:17:03 UTC 2016 - crrodrig...@opensuse.org
+
+- 0017-Merge-r1733694-r1733708-from-trunk.patch and 
+  0018-apr_proc_mutex-unix-backport-r1733775-from-trunk-par.patch
+  Refcount shared mutexes usage to avoid
+  destruction while still is use by some processes, this fixes
+  apache graceful-restart sometimes leaving processes in
+  "Gracefully finishing" state forever.
+- apr-proc-mutex-map-anon.patch use MAP_ANON instead of mmap'ing
+  /dev/zero.
+
+---

New:

  0017-Merge-r1733694-r1733708-from-trunk.patch
  0018-apr_proc_mutex-unix-backport-r1733775-from-trunk-par.patch
  apr-proc-mutex-map-anon.patch



Other differences:
--
++ libapr1.spec ++
--- /var/tmp/diff_new_pack.nDQpGY/_old  2016-05-10 09:25:10.0 +0200
+++ /var/tmp/diff_new_pack.nDQpGY/_new  2016-05-10 09:25:10.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libapr1
 #
-# 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
@@ -32,6 +32,9 @@
 Patch4: apr-1.4.5-linux3.patch
 Patch5: apr-visibility.patch
 Patch6: apr-use-getrandom.patch
+Patch7: 0017-Merge-r1733694-r1733708-from-trunk.patch
+Patch8: 0018-apr_proc_mutex-unix-backport-r1733775-from-trunk-par.patch
+Patch9: apr-proc-mutex-map-anon.patch
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  libtool
@@ -80,6 +83,10 @@
 %patch4
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
+%patch8 -p1
+%patch9 -p1
+
 # Do not put date to doxy content
 sed -i \
-e '4 iHTML_TIMESTAMP=NO' \

++ 0017-Merge-r1733694-r1733708-from-trunk.patch ++
>From f1e4634ad2e1a321a425f7c43b9f60d0d2706686 Mon Sep 17 00:00:00 2001
From: Yann Ylavic 
Date: Tue, 12 Apr 2016 13:29:31 +
Subject: [PATCH 17/18] Merge r1733694, r1733708 from trunk:

apr_proc_mutex-pthread: Refcount shared mutexes usage to avoid
destruction while still is use by some process(es).
PR 49504.

apr_proc_mutex-pthread: follow up to r1733694.
Simplify #if/#else/#endif logic, no functional change.

Note: this merge additionnaly fixes the munmap()ing size of the
pthread_interproc mutex to match the mmap()ed one, which was done in
trunk by r1733775 (barely related and backported later), hence the
additional change for *this* bugfix to be self contained.



git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1738800 
13f79535-47bb-0310-9956-ffa450edef68
---
 CHANGES |  4 +++
 locks/unix/proc_mutex.c | 66 +++--
 2 files changed, 57 insertions(+), 13 deletions(-)

diff --git a/locks/unix/proc_mutex.c b/locks/unix/proc_mutex.c
index 32012a7..13ba2ea 100644
--- a/locks/unix/proc_mutex.c
+++ b/locks/unix/proc_mutex.c
@@ -19,6 +19,7 @@
 #include "apr_arch_proc_mutex.h"
 #include "apr_arch_file_io.h" /* for apr_mkstemp() */
 #include "apr_hash.h"
+#include "apr_atomic.h"
 
 APR_DECLARE(apr_status_t) apr_proc_mutex_destroy(apr_proc_mutex_t *mutex)
 {
@@ -325,7 +326,24 @@ static const apr_proc_mutex_unix_lock_methods_t 
mutex_sysv_methods =
 
 #if APR_HAS_PROC_PTHREAD_SERIALIZE
 
-static apr_status_t proc_mutex_proc_pthread_cleanup(void *mutex_)
+/* The mmap()ed pthread_interproc is the native pthread_mutex_t followed
+ * by a refcounter to track children using it.  We want to avoid calling
+ * pthread_mutex_destroy() on the shared mutex area while it is in use by
+ * another process, because this may mark the shared pthread_mutex_t as
+ * invalid for everyone, including forked children (unlike "sysvsem" for
+ * example), causing unexpected errors or deadlocks (PR 49504).  So the
+ * last process (parent or child) referencing the mutex will effectively
+ * destroy it.
+ */
+typedef struct {
+pthread_mutex_t mutex;
+apr_uint32_t refcount;
+} proc_pthread_mutex_t;
+
+#define proc_pthread_mutex_refcount(m) \
+(((proc_pthread_mutex_t *)(m)->pthread_interproc)->refcount)
+
+static apr_status_t proc_pthread_mutex_unref(void *mutex_)
 {
 apr_proc_mutex_t *mutex=mutex_;

commit hunspell for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package hunspell for openSUSE:Factory 
checked in at 2016-05-10 09:25:02

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


Package is "hunspell"

Changes:

--- /work/SRC/openSUSE:Factory/hunspell/hunspell.changes2016-05-05 
08:11:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.hunspell.new/hunspell.changes   2016-05-10 
09:25:03.0 +0200
@@ -1,0 +2,10 @@
+Wed May  4 16:52:32 UTC 2016 - mplus...@suse.com
+
+- Update to 1.4.1:
+  * Past begin() iterator decrement error
+  * VS Debug build threw error on decrement past begin.
+- Split shared library
+- Do not call autoreconf
+- Move manpages to corresponding packages
+
+---

Old:

  hunspell-1.4.0.tar.gz

New:

  hunspell-1.4.1.tar.gz



Other differences:
--
++ hunspell.spec ++
--- /var/tmp/diff_new_pack.gLTjl9/_old  2016-05-10 09:25:04.0 +0200
+++ /var/tmp/diff_new_pack.gLTjl9/_new  2016-05-10 09:25:04.0 +0200
@@ -17,8 +17,9 @@
 
 
 %define ver 1.4
+%define libname lib%{name}-1_4-0
 Name:   hunspell
-Version:1.4.0
+Version:1.4.1
 Release:0
 Summary:A spell checker and morphological analyzer library
 License:(GPL-2.0+ or LGPL-2.1+ or MPL-1.1+) and LGPL-2.1+
@@ -26,13 +27,10 @@
 Url:https://hunspell.github.io
 Source0:
https://github.com/%{name}/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
-BuildRequires:  autoconf
-BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  libstdc++-devel
-BuildRequires:  libtool
 BuildRequires:  ncurses-devel >= 5.0
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  readline-devel
 Recommends: %{name}-tools
 Recommends: unzip
@@ -45,6 +43,19 @@
 terminal interface using Curses library, Ispell pipe interface,
 LibreOffice or OpenOffice.org UNO module.
 
+%package -n %{libname}
+Summary:Shared library for %{name}
+Group:  System/Libraries
+
+%description -n %{libname}
+Hunspell is a spell checker and morphological analyzer library and
+program designed for languages with rich morphology and complex word
+compounding or character encoding. Hunspell interfaces: Ispell-like
+terminal interface using Curses library, Ispell pipe interface,
+LibreOffice or OpenOffice.org UNO module.
+
+This package contains shared library
+
 %package tools
 Summary:Hunspell tools
 Group:  Development/Libraries/Other
@@ -56,7 +67,7 @@
 %package devel
 Summary:Files for developing with hunspell
 Group:  Development/Libraries/Other
-Requires:   %{name} = %{version}
+Requires:   %{libname} = %{version}-%{release}
 Requires:   libstdc++-devel
 Requires:   pkgconfig
 
@@ -67,7 +78,6 @@
 %setup -q
 
 %build
-autoreconf -fvi
 %configure \
--disable-silent-rules \
--enable-nls \
@@ -87,40 +97,45 @@
 %check
 make check %{?_smp_mflags}
 
-%post -p /sbin/ldconfig
-%postun -p /sbin/ldconfig
+%post -n %{libname} -p /sbin/ldconfig
+%postun -n %{libname} -p /sbin/ldconfig
 
 %files
 %defattr(644,root,root,755)
 %doc README README.myspell AUTHORS AUTHORS.myspell COPYING THANKS 
license.hunspell license.myspell
 %attr(755,root,root) %{_bindir}/hunspell
-%attr(755,root,root) %{_libdir}/libhunspell*.so.0.0.0
-%{_libdir}/libhunspell*.so.0
-%exclude %{_libdir}/libhunspell*.so
 %dir %{_mandir}/hu
 %dir %{_mandir}/hu/man1
-%{_mandir}/man1/*
-%{_mandir}/man3/*
-%{_mandir}/man5/*
+%{_mandir}/man1/hunspell.1%{ext_man}
 %lang(hu) %{_mandir}/hu/man1/hunspell.1*
 
+%files -n %{libname}
+%defattr(755,root,root,755)
+%{_libdir}/libhunspell-1.4.so.*
+
 %files tools
+%defattr(755,root,root,755)
+%{_bindir}/analyze
+%{_bindir}/chmorph
+%{_bindir}/munch
+%{_bindir}/unmunch
+%{_bindir}/hunzip
+%{_bindir}/hzip
+%{_bindir}/affixcompress
+%{_bindir}/ispellaff2myspell
+%{_bindir}/makealias
+%{_bindir}/wordforms
+%{_bindir}/wordlist2hunspell
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/analyze
-%attr(755,root,root) %{_bindir}/chmorph
-%attr(755,root,root) %{_bindir}/munch
-%attr(755,root,root) %{_bindir}/unmunch
-%attr(755,root,root) %{_bindir}/hunzip
-%attr(755,root,root) %{_bindir}/hzip
-%attr(755,root,root) %{_bindir}/affixcompress
-%attr(755,root,root) %{_bindir}/ispellaff2myspell
-%attr(755,root,root) %{_bindir}/makealias
-%attr(755,root,root) %{_bindir}/wordforms
-%attr(755,root,root) %{_bindir}/wordlist2hunspell
+%{_mandir}/man1/hunzip.1%{ext_man}
+%{_mandir}/man1/hzip.1%{ext_man}
 
 %files devel
 %defattr(644,root,root,755)
-%{_libdir}/libhunspell*.so

commit jbig2dec for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package jbig2dec for openSUSE:Factory 
checked in at 2016-05-10 09:25:19

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


Package is "jbig2dec"

Changes:

--- /work/SRC/openSUSE:Factory/jbig2dec/jbig2dec.changes2015-12-17 
15:52:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.jbig2dec.new/jbig2dec.changes   2016-05-10 
09:25:20.0 +0200
@@ -1,0 +2,9 @@
+Wed May  4 18:14:05 UTC 2016 - mplus...@suse.com
+
+- Update to 0.13
+  * Bug fix release.
+- Cleanup spec file with spec-cleaner
+- Drop autoreconf call
+- Update dependencies
+
+---

Old:

  jbig2dec-0.12.tar.gz

New:

  jbig2dec-0.13.tar.gz



Other differences:
--
++ jbig2dec.spec ++
--- /var/tmp/diff_new_pack.dW7t6u/_old  2016-05-10 09:25:21.0 +0200
+++ /var/tmp/diff_new_pack.dW7t6u/_new  2016-05-10 09:25:21.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jbig2dec
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,17 +17,15 @@
 
 
 Name:   jbig2dec
-Url:http://www.ghostscript.com/jbig2dec.html
+Version:0.13
+Release:0
 Summary:JBIG2 Decoder Utility
 License:GPL-2.0+
 Group:  Productivity/Other
-Version:0.12
-Release:0
+Url:http://www.ghostscript.com/jbig2dec.html
 Source: 
http://downloads.ghostscript.com/public/jbig2dec/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
-BuildRequires:  autoconf
-BuildRequires:  automake
-BuildRequires:  libtool
+BuildRequires:  libpng-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -57,7 +55,6 @@
 %setup -q
 
 %build
-autoreconf -fiv
 export CFLAGS="%{optflags} -fPIC"
 %configure \
 --disable-static \
@@ -68,17 +65,16 @@
 %make_install
 # Install missing header
 install -c -m 644 memento.h %{buildroot}%{_includedir}/memento.h
-rm %{buildroot}%_libdir/libjbig2dec.la
+rm %{buildroot}%{_libdir}/libjbig2dec.la
 
 %post -n libjbig2dec0 -p /sbin/ldconfig
-
 %postun -n libjbig2dec0 -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
 %doc CHANGES README COPYING LICENSE
-%{_mandir}/man1/jbig2dec.1*
 %{_bindir}/jbig2dec
+%{_mandir}/man1/jbig2dec.1%{ext_man}
 
 %files -n libjbig2dec0
 %defattr(-,root,root)

++ jbig2dec-0.12.tar.gz -> jbig2dec-0.13.tar.gz ++
 35320 lines of diff (skipped)




commit ruby2.2 for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package ruby2.2 for openSUSE:Factory checked 
in at 2016-05-10 09:24:50

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


Package is "ruby2.2"

Changes:

--- /work/SRC/openSUSE:Factory/ruby2.2/ruby2.2.changes  2016-04-03 
23:06:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.ruby2.2.new/ruby2.2.changes 2016-05-10 
09:24:52.0 +0200
@@ -1,0 +2,310 @@
+Wed Apr 27 12:40:01 UTC 2016 - mrueck...@suse.de
+
+- update to 2.2.5
+  - README.EXT{,.ja}: `nul` should be uppercase.  change 'nul' =>
+'NUL'.  [Fix GH-1172] derived from a patch by craft4coder
+
+  - doc/extension.rdoc: Improvements to english grammers.  [Bug
+#12246][ruby-core:74792][ci skip] derived from a patch by
+Marcus Stollsteimer 
+  - encoding.c: Fix return value of `Encoding::ISO8859_1.name` [Bug
+#12313][ruby-core:75147][ci skip]
+  - ext/bigdecimal/bigdecimal.c: Fix code sample of
+`BigDecimal.new`
+  - configure.in: add missing -lm for AIX.
+  - configure.in: don't use the system-provided round(3) on AIX.
+In AIX, round(0.49994) returns 1.0.  Use round() in
+numeric.c instead.
+  - ruby.c: cygwin does not use w32_cmdvector, command line can be
+other than UTF-8.  [ruby-dev:49519] [Bug #12184]
+  - eval_jump.c (exec_end_procs_chain): restore previous error info
+for each end procs.  [ruby-core:75038] [Bug #12302]
+  - compile.c (new_label_body): initialize bit fields, since
+compile_data_alloc does not clear the memory.  [Bug #12082]
+  - compile.c (iseq_optimize): disable tail call optimization in
+rescued, rescue, and ensure blocks.  [ruby-core:73871] [Bug
+#12082]
+  - doc/regexp.rdoc (comments): [DOC] terminators cannot appear in
+comments.  [ruby-core:74838] [Bug #12256]
+  - extension.rdoc, extension.ja.rdoc: [DOC] Fix some errors.
+Renamed files, wrong method names or argument types; the
+example GetDBM macro is now updated to the current version of
+the actual code.  patches are derived from Marcus Stollsteimer
+in [ruby-core:74690].  [Bug #12228]
+  - ext/nkf/nkf-utf8/nkf.c (mime_putc): fix typo.  [Bug #12202]
+[ruby-core:74802]
+  - ext/nkf/nkf-utf8/nkf.c: Merge upstream 4f3edf80a0.  patched by
+Anton Sivakov [Bug #12201] [Bug #12202]
+  - lib/securerandom.rb (gen_random): to avoid blocking on Windows.
+On Windows OpenSSL RAND_bytes (underlying implementation is
+RAND_poll in crypto/rand/rand_win.c) may be blocked at
+NetStatisticsGet.
+https://wiki.openssl.org/index.php/Random_Numbers#Windows_Issues
+Instead of this, use Random.raw_seed directory (whose
+implementation CryptGenRandom is one of the source of entropy
+of RAND_poll on Windows).
+https://wiki.openssl.org/index.php/Random_Numbers Note:
+CryptGenRandom function is PRNG and doesn't check its entropy,
+so it won't block. [Bug #12139]
+https://msdn.microsoft.com/ja-jp/library/windows/desktop/aa379942.aspx
+https://tools.ietf.org/html/rfc4086#section-7.1.3
+https://eprint.iacr.org/2007/419.pdf
+http://www.cs.huji.ac.il/~dolev/pubs/thesis/msc-thesis-leo.pdf
+  - lib/rubygems/test_case.rb: Fix test on Windows for inconsistent
+temp path.  https://github.com/rubygems/rubygems/pull/1554 [Bug
+#12193][ruby-core:74431]
+  - ext/openssl/extconf.rb: check RAND_edg to support libressl.
+  - ext/openssl/ossl_rand.c (ossl_rand_egd): define only if
+RAND_edg is available.  [Fix GH-829]
+  - configure.in (rb_cv_lgamma_r_m0): fix the condition for
+lgamma_r(-0.0).  [Bug #12249]
+  - configure.in (rb_cv_lgamma_r_m0): check if lgamma_r(-0.0)
+returns negative infinity.  [Bug #12249]
+  - math.c (ruby_lgamma_r): define by the configured result.
+  - math.c (ruby_lgamma_r): missing/lgamma_r.c is used on Windows,
+since msvcrt does not provide it.
+  - missing/lgamma_r.c (lgamma_r): fix lgamma(-0.0).
+[ruby-core:74823] [Bug #12249]
+  - math.c (ruby_lgamma_r): mswin's lgamma_r also seems to be
+wrong.  cf. [Bug #12249]
+  - math.c (ruby_tgamma): fix tgamma(-0.0) on mingw.
+[ruby-core:74817] [Bug #12249]
+  - defs/keywords (alias, undef): symbol literals are allowed.
+  - parse.y (parse_percent): should parse symbol literals for alias
+and undef.  [ruby-dev:47681] [Bug #8851]
+  - struct.c (struct_make_members_list): extract making member name
+list from char* va_list, with creating symbols without
+intermediate IDs.
+  - ext/win32/lib/win32/registry.rb (DeleteValue, DeleteKey): fix
+API names.  [ruby-core:74863] [Bug #12264]
+  - vm_core.h (rb_vm_struct): make at_exit a single linked list but
+not RArray, not to mark the registered functions by the write
+barrier.  based on the 

commit apache2 for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package apache2 for openSUSE:Factory checked 
in at 2016-05-10 09:25:13

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


Package is "apache2"

Changes:

--- /work/SRC/openSUSE:Factory/apache2/apache2.changes  2016-04-12 
18:58:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.apache2.new/apache2.changes 2016-05-10 
09:25:15.0 +0200
@@ -1,0 +2,10 @@
+Thu May  5 07:06:05 UTC 2016 - pgaj...@suse.com
+
+- removed note about ulimits in sysconfig file [bsc#976711]
+
+---
+Mon May  2 07:48:44 UTC 2016 - pgaj...@suse.com
+
+- do not build mod_http2 for 13.2
+
+---



Other differences:
--
++ apache2.spec ++
--- /var/tmp/diff_new_pack.C5V82l/_old  2016-05-10 09:25:17.0 +0200
+++ /var/tmp/diff_new_pack.C5V82l/_new  2016-05-10 09:25:17.0 +0200
@@ -172,7 +172,7 @@
 BuildRequires:  pkgconfig(libsystemd-daemon)
 BuildRequires:  pkgconfig(systemd)
 %endif
-%if 0%{?suse_version} >= 1320
+%if 0%{?suse_version} > 1320
 BuildRequires:  pkgconfig(libnghttp2) >= 1.0.0
 %endif
 
@@ -887,7 +887,7 @@
 %{_libdir}/%{name}-prefork/mod_filter.so
 %{_libdir}/%{name}-prefork/mod_headers.so
 %{_libdir}/%{name}-prefork/mod_heartmonitor.so
-%if 0%{?suse_version} >= 1320
+%if 0%{?suse_version} > 1320
 %{_libdir}/%{name}-prefork/mod_http2.so
 %endif
 %{_libdir}/%{name}-prefork/mod_imagemap.so
@@ -1011,7 +1011,7 @@
 %{_libdir}/%{name}-worker/mod_filter.so
 %{_libdir}/%{name}-worker/mod_headers.so
 %{_libdir}/%{name}-worker/mod_heartmonitor.so
-%if 0%{?suse_version} >= 1320
+%if 0%{?suse_version} > 1320
 %{_libdir}/%{name}-worker/mod_http2.so
 %endif
 %{_libdir}/%{name}-worker/mod_imagemap.so
@@ -1134,7 +1134,7 @@
 %{_libdir}/%{name}-event/mod_file_cache.so
 %{_libdir}/%{name}-event/mod_filter.so
 %{_libdir}/%{name}-event/mod_headers.so
-%if 0%{?suse_version} >= 1320
+%if 0%{?suse_version} > 1320
 %{_libdir}/%{name}-event/mod_http2.so
 %endif
 %{_libdir}/%{name}-event/mod_heartmonitor.so




++ sysconfig.apache2 ++
--- /var/tmp/diff_new_pack.C5V82l/_old  2016-05-10 09:25:17.0 +0200
+++ /var/tmp/diff_new_pack.C5V82l/_new  2016-05-10 09:25:17.0 +0200
@@ -117,16 +117,6 @@
 # (if not set, /etc/apache2/httpd.conf is used.)
 # It is unusual to need to use this setting.
 #
-# Note about ulimits:
-#   if you want to set ulimits, e.g. to increase the max number of open file 
handle, 
-#   or to allow core files, you can do so by editing /etc/sysconfig/apache2 and
-#   simply write the ulimit commands into that file.
-#   Example:
-# ulimit -n 16384
-# ulimit -H -n 16384
-# ulimit -c unlimited
-#   See the output of "help ulimit" in the bash, or "man 1 ulimit".
-#
 APACHE_HTTPD_CONF=""
 
 ## Type:   list(prefork,worker,event,itk)




commit yast2-iscsi-client for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-iscsi-client for 
openSUSE:Factory checked in at 2016-05-10 09:24:44

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


Package is "yast2-iscsi-client"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-iscsi-client/yast2-iscsi-client.changes
2016-03-16 10:26:03.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-iscsi-client.new/yast2-iscsi-client.changes   
2016-05-10 09:24:45.0 +0200
@@ -1,0 +2,7 @@
+Tue May  3 14:01:09 CEST 2016 - g...@suse.de
+
+- set user and password correctly for global authentication
+  (bsc#978183), improve error handling (bsc#959292)
+- 3.1.27
+
+---

Old:

  yast2-iscsi-client-3.1.26.tar.bz2

New:

  yast2-iscsi-client-3.1.27.tar.bz2



Other differences:
--
++ yast2-iscsi-client.spec ++
--- /var/tmp/diff_new_pack.PLSKS8/_old  2016-05-10 09:24:46.0 +0200
+++ /var/tmp/diff_new_pack.PLSKS8/_new  2016-05-10 09:24:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-iscsi-client
-Version:3.1.26
+Version:3.1.27
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-iscsi-client-3.1.26.tar.bz2 -> yast2-iscsi-client-3.1.27.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-client-3.1.26/package/yast2-iscsi-client.changes 
new/yast2-iscsi-client-3.1.27/package/yast2-iscsi-client.changes
--- old/yast2-iscsi-client-3.1.26/package/yast2-iscsi-client.changes
2016-03-10 13:34:43.0 +0100
+++ new/yast2-iscsi-client-3.1.27/package/yast2-iscsi-client.changes
2016-05-04 14:54:30.0 +0200
@@ -1,4 +1,11 @@
 ---
+Tue May  3 14:01:09 CEST 2016 - g...@suse.de
+
+- set user and password correctly for global authentication
+  (bsc#978183), improve error handling (bsc#959292)
+- 3.1.27
+
+---
 Thu Mar 10 09:19:54 CET 2016 - g...@suse.de
 
 - show correct error message if host name isn't found (bsc#959292)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-client-3.1.26/package/yast2-iscsi-client.spec 
new/yast2-iscsi-client-3.1.27/package/yast2-iscsi-client.spec
--- old/yast2-iscsi-client-3.1.26/package/yast2-iscsi-client.spec   
2016-03-10 13:34:43.0 +0100
+++ new/yast2-iscsi-client-3.1.27/package/yast2-iscsi-client.spec   
2016-05-04 14:54:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-iscsi-client
-Version:3.1.26
+Version:3.1.27
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-client-3.1.26/src/include/iscsi-client/widgets.rb 
new/yast2-iscsi-client-3.1.27/src/include/iscsi-client/widgets.rb
--- old/yast2-iscsi-client-3.1.26/src/include/iscsi-client/widgets.rb   
2016-03-10 13:34:43.0 +0100
+++ new/yast2-iscsi-client-3.1.27/src/include/iscsi-client/widgets.rb   
2016-05-04 14:54:30.0 +0200
@@ -574,19 +574,21 @@
   return false
 end
 if !IP.Check(ip)
-  # check for valid host name (take only first line of 'host'
-  # output because with IPv6 there might be several lines)
+  # check for valid host name
   result =  SCR.Execute( path(".target.bash_output"),
-  "LC_ALL=POSIX host #{ip}|head -1|tr -d '\n'")
+ "LC_ALL=POSIX host #{ip}")
+  Builtins.y2milestone("Cmd: host %1, result: %2", ip, result)
   output = result["stdout"] || ""
-  Builtins.y2milestone("%1", output)
 
-  if (result["exit"] != 0) || output.include?("not found:")
-Popup.Error(_("Please check IP address resp. host name.\n") + 
"#{output}")
+  if (result["exit"] != 0)
+Popup.Error(_("Please check IP address resp. host name.\n") + 
"#{output}" + "#{result["stderr"]}")
 UI.SetFocus(:hostname)
 return false
   elsif !output.empty?
-ip = output.split(" ").last
+# take only first line of 'host' output because with IPv6
+# there might be several lines
+ip_info = output.split("\n").first
+ip = ip_info.split(" ").last
   end
 end
 # validate port number
@@ -605,7 +607,7 @@
ip = "[#{ip}]" # brackets needed around IPv6
   end
 
-  # store old