commit vte2 for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package vte2 for openSUSE:Factory checked in 
at 2016-09-20 13:27:56

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


Package is "vte2"

Changes:

--- /work/SRC/openSUSE:Factory/vte2/vte2.changes2016-06-02 
09:39:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.vte2.new/vte2.changes   2016-09-20 
13:27:58.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 14 10:39:05 UTC 2016 - devel...@develop7.info
+
+- add vte-0.28.2-paste-fix.patch: fixes adding extra characters
+  when pasting to terminal (rh#1114301 bgo#729533 deb#734571).
+
+---

New:

  vte-0.28.2-paste-fix.patch



Other differences:
--
++ vte2.spec ++
--- /var/tmp/diff_new_pack.QNSnoJ/_old  2016-09-20 13:27:59.0 +0200
+++ /var/tmp/diff_new_pack.QNSnoJ/_new  2016-09-20 13:27:59.0 +0200
@@ -35,6 +35,8 @@
 Patch0: vte-keymaps.patch
 # PATCH-FIX-UPSTREAM vte-CVE-2012-2738.patch bnc#772761 bgo#676090 
CVE-2012-2738 vu...@opensuse.org -- malicious escape sequences can cause denial 
of service, taken from git
 Patch1: vte-CVE-2012-2738.patch
+# PATCH-FIX-UPSTREAM vte-0.28.2-paste-fix.patch bgo#729533 rh#1114301 
devel...@develop7.info -- Bracketed paste should be per-terminal, not per screen
+Patch2: vte-0.28.2-paste-fix.patch
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk2-devel
@@ -137,6 +139,7 @@
 %setup -q -n %{_name}-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 translation-update-upstream
 
 %build

++ vte-0.28.2-paste-fix.patch ++
>From ede5726a45cd97f212622b59c162ec8b07b09dd4 Mon Sep 17 00:00:00 2001
From: Kevin Fenzi 
Date: Sun, 29 Jun 2014 13:14:30 -0600
Subject: Add patch to fix bracketed paste. Fixes bug #1114301
References: rh#1114301 bgo#729533 deb#734571
Upstream: dead

Fixes adding extra characters when pasting to terminal

---
 vte-0.28.2-paste-fix.diff | 71 +++
 1 files changed, 71 insertions(+), 0 deletions(-)
 create mode 100644 vte-0.28.2-paste-fix.diff

diff --git a/vte-0.28.2-paste-fix.diff b/vte-0.28.2-paste-fix.diff
new file mode 100644
index 000..cc51ead
--- /dev/null
+++ b/vte-0.28.2-paste-fix.diff
@@ -0,0 +1,71 @@
+diff -ur vte-0.28.2.orig/src/vte.c vte-0.28.2/src/vte.c
+--- vte-0.28.2.orig/src/vte.c  2011-08-29 00:31:45.0 +0300
 vte-0.28.2/src/vte.c   2014-06-26 04:20:52.409371214 +0300
+@@ -5806,10 +5806,10 @@
+   p++;
+   }
+   }
+-  if (terminal->pvt->screen->bracketed_paste_mode)
++  if (terminal->pvt->bracketed_paste_mode)
+   vte_terminal_feed_child(terminal, "\e[200~", -1);
+   vte_terminal_feed_child(terminal, paste, length);
+-  if (terminal->pvt->screen->bracketed_paste_mode)
++  if (terminal->pvt->bracketed_paste_mode)
+   vte_terminal_feed_child(terminal, "\e[201~", -1);
+   g_free(paste);
+   }
+@@ -14065,14 +14065,12 @@
+   pvt->normal_screen.linefeed_mode = FALSE;
+   pvt->normal_screen.origin_mode = FALSE;
+   pvt->normal_screen.reverse_mode = FALSE;
+-  pvt->normal_screen.bracketed_paste_mode = FALSE;
+   pvt->alternate_screen.scrolling_restricted = FALSE;
+   pvt->alternate_screen.sendrecv_mode = TRUE;
+   pvt->alternate_screen.insert_mode = FALSE;
+   pvt->alternate_screen.linefeed_mode = FALSE;
+   pvt->alternate_screen.origin_mode = FALSE;
+   pvt->alternate_screen.reverse_mode = FALSE;
+-  pvt->alternate_screen.bracketed_paste_mode = FALSE;
+   pvt->cursor_visible = TRUE;
+   /* Reset the encoding. */
+   vte_terminal_set_encoding(terminal, NULL);
+@@ -14102,6 +14100,8 @@
+   pvt->mouse_last_y = 0;
+   /* Clear modifiers. */
+   pvt->modifiers = 0;
++  /* Reset miscellaneous stuff. */
++  pvt->bracketed_paste_mode = FALSE;
+   /* Cause everything to be redrawn (or cleared). */
+   vte_terminal_maybe_scroll_to_bottom(terminal);
+   _vte_invalidate_all(terminal);
+diff -ur vte-0.28.2.orig/src/vte-private.h vte-0.28.2/src/vte-private.h
+--- vte-0.28.2.orig/src/vte-private.h  2011-08-17 00:52:48.0 +0300
 vte-0.28.2/src/vte-private.h   2014-06-26 04:20:52.410371214 +0300
+@@ -219,7 +219,6 @@
+   gboolean sendrecv_mode; /* sendrecv mode */
+   gboolean insert_mode;   /* insert mode */
+   gboolean linefeed_mode; /* linefeed mode */
+-  gboolean bracketed_paste_mode;
+   struct vte_scrolling_region {
+  

commit libguestfs for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package libguestfs for openSUSE:Factory 
checked in at 2016-09-20 13:27:43

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


Package is "libguestfs"

Changes:

--- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes2016-09-16 
11:01:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes   
2016-09-20 13:27:45.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep 19 09:18:21 UTC 2016 - cbosdon...@suse.com
+
+- Add mount.ntfs alternatives symlink for SLES too (fate#316274)
+
+---



Other differences:
--
++ libguestfs.spec ++
--- /var/tmp/diff_new_pack.WxNli6/_old  2016-09-20 13:27:46.0 +0200
+++ /var/tmp/diff_new_pack.WxNli6/_new  2016-09-20 13:27:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libguestfs
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Michal Hrusecky 
 #
 # All modifications and additions to the file contributed by third parties
@@ -664,9 +664,6 @@
 %find_lang %{name}
 %fdupes -s $RPM_BUILD_ROOT
 
-# SLES has a different way to provide ntfs-3g feature.
-%if %suse_version == 1315
-%if 0%{?is_opensuse} == 1
 mkdir -p $RPM_BUILD_ROOT/tmp/etc/alternatives
 pushd $RPM_BUILD_ROOT/tmp/etc/alternatives
 ln -s /sbin/mount.ntfs-3g mount.ntfs
@@ -675,8 +672,6 @@
 tar czf $RPM_BUILD_ROOT/%{_libdir}/guestfs/supermin.d/zz-ntfs-symlink.tar.gz 
etc
 popd
 rm -rf $RPM_BUILD_ROOT/tmp
-%endif
-%endif
 
 mkdir -p $RPM_BUILD_ROOT/tmp/usr/bin
 cp %{S:100} $RPM_BUILD_ROOT/tmp/usr/bin




commit xf86-video-amdgpu for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2016-09-20 13:28:02

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2016-04-12 19:36:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2016-09-20 13:28:04.0 +0200
@@ -1,0 +2,43 @@
+Mon Sep 19 13:56:06 UTC 2016 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 1.1.2:
+  The only change in this release is a fix for issues with the configure option
+  --with-xorg-conf-dir which slipped into the 1.1.1 release.
+- Packaging changes:
+  + Check the signature for the driver release, as other drivers already do.
+
+---
+Thu Sep 15 21:46:51 UTC 2016 - malcolmle...@opensuse.org
+
+- Update to version 1.1.1:
+  + Use --with-xorg-conf-dir=$prefix/share/X11/xorg.conf.d by
+default.
+  + Fix cursor size for SI.
+  + Add SI PCI IDs.
+  + Add missing Kaveri PCI ID (1318).
+  + Add Mullins PCI IDs (fdo#97472).
+  + DRI2: Fix amdgpu_dri2_exchange_buffers width/height
+copy'n'paste error.
+  + DRI2: Add interpolated_vblanks in amdgpu_dri2_get_crtc_msc.
+  + Only use RandR APIs if RandR is enabled (deb#827984).
+  + Destroy all dedicated scanout buffers during CloseScreen.
+  + glamor: Reallocate linear pixmap BO if necessary for DRI2
+PRIME.
+  + Move DRI2's local fixup_glamor helper to
+amdgpu_glamor_set_pixmap_bo v2 so it can be used outside of the
+DRI2 code.
+  + Consolidate get_drawable_pixmap helper.
+  + Add amdgpu_pixmap_get_tiling_info.
+  + Remove amdgpu_share_pixmap_backing.
+  + glamor: Fix amdgpu_glamor_share_pixmap_backing for priv->bo ==
+NULL.
+  + Add missing Bonaire PCI ID.
+  + Add more Polaris 10 and 11 PCI IDs.
+  + Fix amdgpu_mode_hotplug crash on multi GPU platform.
+  + Handle Zaphod mode correctly in amdgpu_mode_hotplug
+(fdo#93415).
+  + Add Strato PCI ID.
+  + Remove RR_Capability_SinkOutput for GPU without CRTC.
+- Set amdgpu.ids as a config file to fix rpmlint warning.
+
+---

Old:

  xf86-video-amdgpu-1.1.0.tar.bz2

New:

  xf86-video-amdgpu-1.1.2.tar.bz2
  xf86-video-amdgpu-1.1.2.tar.bz2.sig
  xf86-video-amdgpu.keyring



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.2AoORP/_old  2016-09-20 13:28:05.0 +0200
+++ /var/tmp/diff_new_pack.2AoORP/_new  2016-09-20 13:28:05.0 +0200
@@ -22,14 +22,16 @@
 %endif
 
 Name:   xf86-video-amdgpu
-Version:1.1.0
+Version:1.1.2
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
-Source: 
ftp://ftp.freedesktop.org/pub/xorg/individual/driver/%{name}-%{version}.tar.bz2
-Source1:amdgpu.ids
+Source: 
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+Source1:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2.sig
+Source2:%{name}.keyring
+Source3:amdgpu.ids
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
@@ -74,7 +76,7 @@
 rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
 %if 0%{?pci_ids_dir:1}
 %{__mkdir_p} %{buildroot}%{pci_ids_dir}
-cp %{S:1} %{buildroot}%{pci_ids_dir}/
+cp %{S:3} %{buildroot}%{pci_ids_dir}/
 %endif
 
 %files
@@ -84,7 +86,7 @@
 %{_libdir}/xorg/modules/drivers/amdgpu_drv.so
 %{_mandir}/man4/amdgpu.4%{?ext_man}
 %if 0%{?pci_ids_dir:1}
-%{pci_ids_dir}/amdgpu.ids
+%config %{pci_ids_dir}/amdgpu.ids
 %endif
 
 %changelog

++ amdgpu.ids ++
--- /var/tmp/diff_new_pack.2AoORP/_old  2016-09-20 13:28:05.0 +0200
+++ /var/tmp/diff_new_pack.2AoORP/_new  2016-09-20 13:28:05.0 +0200
@@ -83,6 +83,7 @@
 #10026930
 #10026938
 10026939
+#10029851
 #10029870  
 #10029874  
 #10029875  

++ xf86-video-amdgpu-1.1.0.tar.bz2 -> xf86-video-amdgpu-1.1.2.tar.bz2 ++
 1966 lines of diff (skipped)




commit python3-alembic for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python3-alembic for openSUSE:Factory 
checked in at 2016-09-20 13:28:05

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


Package is "python3-alembic"

Changes:

--- /work/SRC/openSUSE:Factory/python3-alembic/python3-alembic.changes  
2016-07-27 16:13:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-alembic.new/python3-alembic.changes 
2016-09-20 13:28:07.0 +0200
@@ -1,0 +2,15 @@
+Wed Sep 14 03:56:40 UTC 2016 - a...@gmx.de
+
+- update to version 0.8.8:
+  * [feature] [operations] [postgresql] Added support for the USING
+clause to the ALTER COLUMN operation for Postgresql. Support is
+via the op.alter_column.postgresql_using parameter. Pull request
+courtesy Frazer McLean.
+  * [feature] [autogenerate] Autogenerate with type comparison enabled
+will pick up on the timezone setting changing between DateTime
+types. Pull request courtesy David Szotten.
+  * [autogenerate] The imports in the default script.py.mako are now
+at the top so that flake8 editors don’t complain by default. PR
+courtesy Guilherme Mansur.
+
+---

Old:

  alembic-0.8.7.tar.gz

New:

  alembic-0.8.8.tar.gz



Other differences:
--
++ python3-alembic.spec ++
--- /var/tmp/diff_new_pack.sS9blf/_old  2016-09-20 13:28:09.0 +0200
+++ /var/tmp/diff_new_pack.sS9blf/_new  2016-09-20 13:28:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-alembic
-Version:0.8.7
+Version:0.8.8
 Release:0
 Url:https://pypi.python.org/pypi/alembic
 Summary:A database migration tool for SQLAlchemy

++ alembic-0.8.7.tar.gz -> alembic-0.8.8.tar.gz ++
 3504 lines of diff (skipped)




commit hugin for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

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

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


Package is "hugin"

Changes:

--- /work/SRC/openSUSE:Factory/hugin/hugin.changes  2016-07-05 
09:52:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.hugin.new/hugin.changes 2016-09-20 
13:27:29.0 +0200
@@ -1,0 +2,10 @@
+Sun Sep 18 12:41:12 UTC 2016 - salser...@gmail.com
+
+- Updated to version 2016.2.0
+  * Allow reading of image positions from Papywizard XML files: First add the 
image to a new project and then select File, Import settings from Papywizard 
XML file... This will read the lens settings, the image positions and also, if 
applicable, the bracket settings. After this, the usual workflow is to run 
cpfind with --prealigned switch and then geocpset to connect orphanded images.
+  * The internal blender and verdandi got the possibility to blend seams as 
alternative to current hard seam: For each seam the color of second image is 
adapted to the match the color of the first seam. For this blender, the blender 
order changes according to the overlap. The blending starts with the exposure 
anchor and blends then all overlapping images. This blending mode is not suited 
if there are bigger misalignments or bigger parallax errors.
+  * The display of the control point error (after optimizing and in fast 
preview window) and the control point list window can now limited to take only 
control points in active images into account (menu Edit, Optimize only active 
images, connected with the setting on the optimizer tab).
+  * Improvements to mask tab in Hugin (edit crop of all images of the same 
lens at once) and find panorama dialog in PTBatcherGUI (remove images from 
found panoramas, split found panorama into two).
+  * Fixes several issues with fast preview window which could result in random 
crashes (uninitialized variables, memory leaks).
+
+---

Old:

  hugin-2016.0.0.tar.bz2

New:

  hugin-2016.2.0.tar.bz2



Other differences:
--
++ hugin.spec ++
--- /var/tmp/diff_new_pack.3PRPkO/_old  2016-09-20 13:27:31.0 +0200
+++ /var/tmp/diff_new_pack.3PRPkO/_new  2016-09-20 13:27:31.0 +0200
@@ -47,7 +47,7 @@
 BuildRequires:  vigra-devel
 BuildRequires:  wxWidgets-devel >= 3
 BuildRequires:  zip
-%define mversion 2016.0
+%define mversion 2016.2
 Version:%{mversion}.0
 Release:0
 Summary:Toolchain for Stitching of Images and Creating Panoramas
@@ -127,7 +127,7 @@
 # Use better place for MIME icons.
 mv -f %{buildroot}%{_datadir}/icons/gnome %{buildroot}%{_datadir}/icons/hicolor
 mkdir -p %{buildroot}%{_docdir}/%{name}
-cp -a AUTHORS authors.txt COPYING Changes.txt README TODO 
%{buildroot}%{_docdir}/%{name}/
+cp -a AUTHORS authors.txt COPYING.txt Changes.txt README TODO 
%{buildroot}%{_docdir}/%{name}/
 chmod -x %{buildroot}%{_docdir}/%{name}/*
 %fdupes %{buildroot}
 

++ hugin-2016.0.0.tar.bz2 -> hugin-2016.2.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/hugin/hugin-2016.0.0.tar.bz2 
/work/SRC/openSUSE:Factory/.hugin.new/hugin-2016.2.0.tar.bz2 differ: char 11, 
line 1




commit gnome-commander for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package gnome-commander for openSUSE:Factory 
checked in at 2016-09-20 13:27:35

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


Package is "gnome-commander"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-commander/gnome-commander.changes  
2016-03-18 21:43:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-commander.new/gnome-commander.changes 
2016-09-20 13:27:37.0 +0200
@@ -1,0 +2,7 @@
+Sun Sep 18 20:28:41 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.4.9:
+  + bgo#764306: Spelling mistake and wrong words in strings.
+  + Updated translations.
+
+---

Old:

  gnome-commander-1.4.8.tar.xz

New:

  gnome-commander-1.4.9.tar.xz



Other differences:
--
++ gnome-commander.spec ++
--- /var/tmp/diff_new_pack.yKIcxq/_old  2016-09-20 13:27:39.0 +0200
+++ /var/tmp/diff_new_pack.yKIcxq/_new  2016-09-20 13:27:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-commander
-Version:1.4.8
+Version:1.4.9
 Release:0
 Summary:Nice and Fast File Manager for the GNOME Desktop
 License:GPL-2.0+

++ gnome-commander-1.4.8.tar.xz -> gnome-commander-1.4.9.tar.xz ++
/work/SRC/openSUSE:Factory/gnome-commander/gnome-commander-1.4.8.tar.xz 
/work/SRC/openSUSE:Factory/.gnome-commander.new/gnome-commander-1.4.9.tar.xz 
differ: char 26, line 1




commit yast2-fonts for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-fonts for openSUSE:Factory 
checked in at 2016-09-20 13:27:49

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


Package is "yast2-fonts"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-fonts/yast2-fonts.changes  2015-10-08 
08:25:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-fonts.new/yast2-fonts.changes 
2016-09-20 13:27:51.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 14 16:18:31 UTC 2016 - pgaj...@suse.com
+
+- comma and the rest of family string is ignored [bsc#998300]
+- 3.1.17
+
+---

Old:

  yast2-fonts-3.1.16.tar.bz2

New:

  yast2-fonts-3.1.17.tar.bz2



Other differences:
--
++ yast2-fonts.spec ++
--- /var/tmp/diff_new_pack.Hnut7G/_old  2016-09-20 13:27:52.0 +0200
+++ /var/tmp/diff_new_pack.Hnut7G/_new  2016-09-20 13:27:52.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-fonts
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-fonts
-Version:3.1.16
+Version:3.1.17
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-fonts-3.1.16.tar.bz2 -> yast2-fonts-3.1.17.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-fonts-3.1.16/CONTRIBUTING.md 
new/yast2-fonts-3.1.17/CONTRIBUTING.md
--- old/yast2-fonts-3.1.16/CONTRIBUTING.md  2015-10-06 13:39:43.0 
+0200
+++ new/yast2-fonts-3.1.17/CONTRIBUTING.md  2016-09-14 17:42:05.0 
+0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-fonts-3.1.16/README.md 
new/yast2-fonts-3.1.17/README.md
--- old/yast2-fonts-3.1.16/README.md2015-10-06 13:39:43.0 +0200
+++ new/yast2-fonts-3.1.17/README.md2016-09-14 18:17:40.0 +0

commit nodejs for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package nodejs for openSUSE:Factory checked 
in at 2016-09-20 13:27:22

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


Package is "nodejs"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs/nodejs.changes2016-09-07 
11:46:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs.new/nodejs.changes   2016-09-20 
13:27:24.0 +0200
@@ -1,0 +2,14 @@
+Fri Sep 16 13:43:55 UTC 2016 - adam.ma...@suse.de
+
+- new upstream version 6.6.0
+  * crypto: Added crypto.timingSafeEqual()
+  * events: Made the "max event listeners" memory leak 
+warning more accessible
+  * promises: Unhandled rejections now emit a process warning
+  after the first tick
+  * repl: Added auto alignment for .editor mode
+  * util: Some functionality has been added to util.inspect()
+ + Returning this from a custom inspect function now works
+ + Added support for Symbol-based custom inspection methods
+
+---

Old:

  node-v6.5.0.tar.xz

New:

  node-v6.6.0.tar.xz



Other differences:
--
++ nodejs.spec ++
--- /var/tmp/diff_new_pack.GsLjAu/_old  2016-09-20 13:27:27.0 +0200
+++ /var/tmp/diff_new_pack.GsLjAu/_new  2016-09-20 13:27:27.0 +0200
@@ -18,7 +18,7 @@
 
 %define npm_version 3.10.3
 Name:   nodejs
-Version:6.5.0
+Version:6.6.0
 Release:0
 
 %if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200


++ SHASUMS256.txt.asc ++
--- /var/tmp/diff_new_pack.GsLjAu/_old  2016-09-20 13:27:27.0 +0200
+++ /var/tmp/diff_new_pack.GsLjAu/_new  2016-09-20 13:27:27.0 +0200
@@ -1,59 +1,61 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512
 
-352cee438dc55942aebac054e8a2e14b6784056c66465105e2b3bfc55832927f  
node-v6.5.0-darwin-x64.tar.gz
-ab34b3f0eb4cf8015f66c6301462ab45b0438a7603f8917d0de2e530499251df  
node-v6.5.0-darwin-x64.tar.xz
-e69e5cfbd610a624161ed2f7c11ea61c4ea7187dc42bca1dedc434da1901f4c8  
node-v6.5.0-headers.tar.gz
-e5cf641c8180c5156ca3d64ef4fc1f9ba74b36418e7132067bc22f71391fed28  
node-v6.5.0-headers.tar.xz
-e3d208d3b054301e2bd572d71c7c325ddc0a7e4c2cc4278053e2375e841f6d99  
node-v6.5.0-linux-arm64.tar.gz
-d6480ab5bcfd124f471c7b535e6c2211addfc4f8c0dfa3d8777452f766c3f6ab  
node-v6.5.0-linux-arm64.tar.xz
-fff3d363117b8c9beff3c4a89fd48d51dfd55b9dc2e9c2957be79a3c20bd570f  
node-v6.5.0-linux-armv6l.tar.gz
-9925f224715bd1473eaee3d2167c3c4bd4da9bbb7ff04b4f458b06ffce9e19ca  
node-v6.5.0-linux-armv6l.tar.xz
-ea03725d8cee9528d75fdb2060f62ce96a719bc0f5f35f5ad2dd982bb09c1429  
node-v6.5.0-linux-armv7l.tar.gz
-b667b914cfe46116a32fe9a369409282c48a0831542381f6d256be4200f824c8  
node-v6.5.0-linux-armv7l.tar.xz
-36c7e7449db335a591fc55b77d7eab13576a296ec3be5ea557c8e7a54c061928  
node-v6.5.0-linux-ppc64le.tar.gz
-52ad6d5030be62ac6072d08e0ee8fa25e50c3295107e1ff34abd3d31b1d67db4  
node-v6.5.0-linux-ppc64le.tar.xz
-0330b57d8161d06d68b5d86b8b8a924f48c7266a70816c2c1d306196246cea21  
node-v6.5.0-linux-ppc64.tar.gz
-6f93a0756a2036da183320d8dd1abc8ffd908b6d2258aa1e4d47dd12ba49816d  
node-v6.5.0-linux-ppc64.tar.xz
-575638830e4ba11c5afba5c222934bc5e338e74df2f27ca09bad09014b4aa415  
node-v6.5.0-linux-x64.tar.gz
-8737539ff6e9341add78bf2e72932d62e8d830fc59449f97350dc60cc7c19805  
node-v6.5.0-linux-x64.tar.xz
-12d5b79b8b914c2439b6aa542b47f28c0d6dc9c5438eeda629f26021eb839dac  
node-v6.5.0-linux-x86.tar.gz
-192c71b5d821471b424846eb1fa1ce40432b5e7e4afc3e5d07d9a91bf264923f  
node-v6.5.0-linux-x86.tar.xz
-bc79776fa04870cbdb3cc874d91b22c506caa6fc218cdcf1e2538e3de2248957  
node-v6.5.0.pkg
-71ae256a6bd8bb8c7e1af88ec4702022eecf911cea786e6dac21b25bc5f1ece7  
node-v6.5.0-sunos-x64.tar.gz
-fa8efe91f25084bce9a2dd3205fb7ced930dd0dc4175e98079098c23945c5bf8  
node-v6.5.0-sunos-x64.tar.xz
-e1ce32adfd7e205ed949f0a372bd75d1bbb404274de667e30ef2a99386f30a71  
node-v6.5.0-sunos-x86.tar.gz
-ddd7fbeafdf1e64d94d682a042c2a5bda079341d0a040b2df43d9ec960d35634  
node-v6.5.0-sunos-x86.tar.xz
-d7742558bb3331e41510d6e6f1f7b13c0527aecc00a63c3e05fcfd44427ff778  
node-v6.5.0.tar.gz
-ddf2056a9164c723db707b6c016f9e617f17166298dc88c5a7cb1d7d5ddb1290  
node-v6.5.0.tar.xz
-e00570c8e40b8d0564c5735554a5c5128d1c442e08d16539cb9b26bee2aae632  
node-v6.5.0-win-x64.7z
-0c0962800916c7104ce6643302b2592172183d76e34997823be3978b5ee34cf2  
node-v6.5.0-win-x64.zip
-979bce12ca20761b5c13af8a0d30da65432878014d787e9c3487e2ae97d8becd  
node-v6.5.0-win-x86.7z
-36f2aa668018db296fafa7e6b330a32124145e54254403e63fa5efb44c9b900f  
node-v6.5.0-win-x86.zip
-2a269b0b9fee2c502d4a81168f12315e9d55396641522249931f0f88e02638c4  
node-v6.5.0-x64.msi
-93db364a5f519e8a29bb2279b470da7708f3869bcb4f8d597121f58f1

commit bitcoin for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package bitcoin for openSUSE:Factory checked 
in at 2016-09-20 13:27:16

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


Package is "bitcoin"

Changes:

--- /work/SRC/openSUSE:Factory/bitcoin/bitcoin.changes  2016-08-29 
15:36:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.bitcoin.new/bitcoin.changes 2016-09-20 
13:27:17.0 +0200
@@ -1,0 +2,5 @@
+Sun Sep 18 10:16:30 UTC 2016 - mplus...@suse.com
+
+- Speedup build/reduce it's memory consumption by using gold linker
+
+---



Other differences:
--
++ bitcoin.spec ++
--- /var/tmp/diff_new_pack.ysprLv/_old  2016-09-20 13:27:18.0 +0200
+++ /var/tmp/diff_new_pack.ysprLv/_new  2016-09-20 13:27:18.0 +0200
@@ -36,6 +36,7 @@
 Source3:%{base}d.conf
 BuildRequires:  autoconf
 BuildRequires:  automake
+BuildRequires:  binutils-gold
 BuildRequires:  boost-devel
 BuildRequires:  gcc-c++
 BuildRequires:  git
@@ -175,7 +176,7 @@
 autoreconf -fiv
 export CXXFLAGS="%{optflags} -fPIE -fPIC"
 export CFLAGS="%{optflags} -fPIE -fPIC"
-export LDFLAGS="-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro,-z,now -pie"
+export LDFLAGS="-Wl,--no-undefined -Wl,-z,now -Wl,-fuse-ld=gold -pie"
 %configure \
   --with-cli=yes \
   --with-daemon=yes \




commit minitube for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package minitube for openSUSE:Factory 
checked in at 2016-09-20 13:27:08

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


Package is "minitube"

Changes:

--- /work/SRC/openSUSE:Factory/minitube/minitube.changes2016-02-01 
19:57:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.minitube.new/minitube.changes   2016-09-20 
13:27:10.0 +0200
@@ -1,0 +2,5 @@
+Sun Sep 18 06:23:57 UTC 2016 - mailaen...@opensuse.org
+
+- Add appdata.patch for https://en.opensuse.org/openSUSE:AppStore
+
+---

New:

  appdata.patch



Other differences:
--
++ minitube.spec ++
--- /var/tmp/diff_new_pack.M7pMlh/_old  2016-09-20 13:27:12.0 +0200
+++ /var/tmp/diff_new_pack.M7pMlh/_new  2016-09-20 13:27:12.0 +0200
@@ -30,6 +30,8 @@
 Patch0: %{name}-no-update-check.patch
 # PATCH-FIX-OPENSUSE minitube-fix-watchrelatedvideo-icon.patch 
kiel...@gmail.com -- Missing toolbar icon (watch related videos).
 Patch1: %{name}-fix-watchrelatedvideo-icon.patch
+# PATCH-FEATURE-UPSTREAM https://github.com/flaviotordini/minitube/pull/52
+Patch2: appdata.patch
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libqt5-linguist
@@ -58,6 +60,7 @@
 %setup -q
 %patch0 -p1
 %patch1
+%patch2 -p1
 
 %build
 %qmake5 \
@@ -90,6 +93,8 @@
 %dir %{_datadir}/icons/hicolor/*/apps/
 %{_datadir}/icons/hicolor/*/apps/%{name}*
 %{_mandir}/man?/%{name}.?%{?ext_man}
+%dir %{_datadir}/appdata
+%{_datadir}/appdata/%{name}.appdata.xml
 
 %files lang
 %defattr(-,root,root)

++ appdata.patch ++
>From 65acfc49047467609e6551d2cbfc64be522ea09e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= 
Date: Sun, 18 Sep 2016 08:08:18 +0200
Subject: [PATCH] Add an appdata.xml file.

---
 minitube.appdata.xml | 19 +++
 minitube.pro |  3 +++
 2 files changed, 22 insertions(+)
 create mode 100644 minitube.appdata.xml

diff --git a/minitube.appdata.xml b/minitube.appdata.xml
new file mode 100644
index 000..c6547b6
--- /dev/null
+++ b/minitube.appdata.xml
@@ -0,0 +1,19 @@
+
+
+  minitube.desktop
+  CC0-1.0
+  GPL-3.0+
+  YouTube app
+  
+
+  Minitube is a YouTube desktop application.
+
+  
+  http://flavio.tordini.org/minitube
+  
+http://flavio.tordini.org/files/minitube/minitube-04.jpg
+
http://flavio.tordini.org/files/minitube/minitube-03.jpg
+
http://flavio.tordini.org/files/minitube/minitube-02.jpg
+
http://flavio.tordini.org/files/minitube/minitube-01.jpg
+  
+
diff --git a/minitube.pro b/minitube.pro
index 42d8808..1e2b1ae 100644
--- a/minitube.pro
+++ b/minitube.pro
@@ -215,6 +215,7 @@ unix:!mac {
 PKGDATADIR=\\\"$$PKGDATADIR\\\"
 INSTALLS += translations \
 desktop \
+appdata \
 iconsvg \
 icon16 \
 icon22 \
@@ -228,6 +229,8 @@ unix:!mac {
 translations.files += $$DESTDIR/locale
 desktop.path = $$DATADIR/applications
 desktop.files += minitube.desktop
+appdata.path = $$DATADIR/appdata
+appdata.files += minitube.appdata.xml
 iconsvg.path = $$DATADIR/icons/hicolor/scalable/apps
 iconsvg.files += data/minitube.svg
 icon16.path = $$DATADIR/icons/hicolor/16x16/apps



commit kiwi-config-openSUSE for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package kiwi-config-openSUSE for 
openSUSE:Factory checked in at 2016-09-20 13:27:00

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


Package is "kiwi-config-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/kiwi-config-openSUSE/kiwi-config-openSUSE.changes
2016-08-25 09:56:47.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kiwi-config-openSUSE.new/kiwi-config-openSUSE.changes
   2016-09-20 13:27:01.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep  8 08:01:50 UTC 2016 - lsle...@suse.cz
+
+- start-install.sh: disable the YaST self-update feature
+  (FATE#319716) in the Live installer, it works only in
+  the installation inst-sys (bsc#997829)
+
+---



Other differences:
--


++ start-install.sh ++
--- /var/tmp/diff_new_pack.wPIoWH/_old  2016-09-20 13:27:03.0 +0200
+++ /var/tmp/diff_new_pack.wPIoWH/_new  2016-09-20 13:27:03.0 +0200
@@ -9,6 +9,8 @@
 cat >/etc/install.inf 

commit belle-sip for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package belle-sip for openSUSE:Factory 
checked in at 2016-09-20 13:26:43

Comparing /work/SRC/openSUSE:Factory/belle-sip (Old)
 and  /work/SRC/openSUSE:Factory/.belle-sip.new (New)


Package is "belle-sip"

Changes:

--- /work/SRC/openSUSE:Factory/belle-sip/belle-sip.changes  2016-09-13 
22:25:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.belle-sip.new/belle-sip.changes 2016-09-20 
13:26:46.0 +0200
@@ -1,0 +2,11 @@
+Sat Sep 17 12:50:36 UTC 2016 - idon...@suse.com
+
+- Remove reference to unneeded wakelock.h file (fix-build.patch) 
+
+---
+Tue Sep 13 12:54:30 UTC 2016 - sor.ale...@meowr.ru
+
+- Switch to building with CMake.
+- Add belle-sip-fix-pkgconfig.patch: Fix up pkgconfig.
+
+---

New:

  belle-sip-fix-pkgconfig.patch
  fix-build.patch



Other differences:
--
++ belle-sip.spec ++
--- /var/tmp/diff_new_pack.CXde9v/_old  2016-09-20 13:26:47.0 +0200
+++ /var/tmp/diff_new_pack.CXde9v/_new  2016-09-20 13:26:47.0 +0200
@@ -25,18 +25,21 @@
 Summary:C object oriented SIP Stack
 License:GPL-2.0+
 Group:  System/Libraries
-Url:http://linphone.org/technical-corner/belle-sip/overview
-Source: 
https://github.com/BelledonneCommunications/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Url:https://www.linphone.org/technical-corner/belle-sip/overview
+Source: 
https://linphone.org/releases/sources/%{name}/%{name}-%{version}.tar.gz
 Source1:http://antlr3.org/download/antlr-3.4-complete.jar
 Source2:baselibs.conf
+# PATCH-FIX-OPENSUSE belle-sip-fix-pkgconfig.patch sor.ale...@meowr.ru -- Fix 
up pkgconfig.
+Patch0: belle-sip-fix-pkgconfig.patch
+# PATCH-FIX-OPENSUSE fix-build.patch idoen...@suse.de -- Remove reference to 
wakelock.h
+Patch1: fix-build.patch
 BuildRequires:  antlr3c-devel
-BuildRequires:  autoconf
-BuildRequires:  automake
+BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  java
-BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(bctoolbox)
+BuildRequires:  pkgconfig(zlib)
 
 %description
 Belle-sip is a SIP (RFC3261) implementation written in C, with an object 
oriented API.
@@ -52,6 +55,8 @@
 Summary:Headers and libraries for the belle-sip library
 Group:  Development/Libraries/C and C++
 Requires:   %{soname}%{sover} = %{version}
+Requires:   pkgconfig(bctoolbox)
+Requires:   pkgconfig(zlib)
 
 %description devel
 Belle-sip is a SIP (RFC3261) implementation written in C, with an object 
oriented API.
@@ -60,19 +65,20 @@
 
 %prep
 %setup -q
-cp -f %{SOURCE1} antlr.jar
-sed -i "s|^\(antlr_java_prefixes=\).*$|\1\"$PWD\"|" configure.ac
+%patch0 -p1
+%patch1 -p1
+cp -f %{SOURCE1} antlr3.jar
 
 %build
-NOCONFIGURE=1 ./autogen.sh
-%configure \
-  --disable-strict \
-  --disable-static
+antlr_jar="$PWD/antlr3.jar"
+%cmake \
+  -DANTLR3_JAR_PATH="$antlr_jar" \
+  -DENABLE_STRICT=OFF\
+  -DENABLE_STATIC=OFF
 make %{?_smp_mflags}
 
 %install
-%make_install
-find %{buildroot} -type f -name "*.la" -delete -print
+%cmake_install
 
 %post -n %{soname}%{sover} -p /sbin/ldconfig
 
@@ -86,7 +92,9 @@
 %files devel
 %defattr(-,root,root)
 %doc AUTHORS COPYING NEWS README
+%{_bindir}/belle_sip_tester
 %{_includedir}/%{name}/
+%{_datadir}/BelleSIP/
 %{_libdir}/%{soname}.so
 %{_libdir}/pkgconfig/%{name}.pc
 


++ belle-sip-1.5.0.tar.gz ++
 59974 lines of diff (skipped)

++ belle-sip-fix-pkgconfig.patch ++
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -137,14 +137,14 @@ configure_file(${CMAKE_CURRENT_SOURCE_DI
 
 set(prefix ${CMAKE_INSTALL_PREFIX})
 set(exec_prefix ${prefix}/bin)
-set(libdir ${prefix}/lib)
+set(libdir ${CMAKE_INSTALL_FULL_LIBDIR})
 set(includedir ${prefix}/include)
 get_filename_component(antlr3c_library_path "${ANTLR3C_LIBRARIES}" PATH)
 set(LIBS_PRIVATE "-L${antlr3c_library_path} -lantlr3c")
 get_filename_component(bctoolbox_library_path "${BCTOOLBOX_CORE_LIBRARIES}" 
PATH)
 set(LIBS_PRIVATE "${LIBS_PRIVATE} -L${bctoolbox_library_path} -lbctoolbox")
 if(ZLIB_FOUND)
-   set(REQUIRES_PRIVATE "${REQUIRES_PRIVATE} z")
+   set(REQUIRES_PRIVATE "${REQUIRES_PRIVATE} zlib")
 endif()
 if(HAVE_LIBDL)
set(LIBS_PRIVATE "${LIBS_PRIVATE} -ldl")
++ fix-build.patch ++
Index: belle-sip-1.5.0/include/CMakeLists.txt
===
--- belle-sip-1.5.0.orig/include/CMakeLists.txt
+++ belle-sip-1.5.0/include/CMakeLists.txt
@@ -48,7 +48,6 @@ set(HEADER_FILES
transaction.h
   

commit kmymoney for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package kmymoney for openSUSE:Factory 
checked in at 2016-09-20 13:26:54

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


Package is "kmymoney"

Changes:

--- /work/SRC/openSUSE:Factory/kmymoney/kmymoney.changes2016-07-18 
21:23:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmymoney.new/kmymoney.changes   2016-09-20 
13:26:55.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 15 21:01:31 UTC 2016 - nico.kru...@gmail.com
+
+- add kmymoney-4.8.0-fix-csv-import-account-type.patch which fixes
+  the default CSV import to credit card accounts (kde#364425)
+
+---

New:

  kmymoney-4.8.0-fix-csv-import-account-type.patch



Other differences:
--
++ kmymoney.spec ++
--- /var/tmp/diff_new_pack.cOk32I/_old  2016-09-20 13:26:56.0 +0200
+++ /var/tmp/diff_new_pack.cOk32I/_new  2016-09-20 13:26:56.0 +0200
@@ -24,6 +24,8 @@
 Group:  Productivity/Office/Finance
 Url:http://www.kmymoney.org/
 Source0:
http://download.kde.org/stable/kmymoney/%{version}/src/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM kmymoney-4.8.0-fix-csv-import-account-type.patch 
kde#364425
+Patch1: kmymoney-4.8.0-fix-csv-import-account-type.patch
 BuildRequires:  aqbanking-devel
 BuildRequires:  boost-devel
 BuildRequires:  fdupes
@@ -80,6 +82,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 %cmake_kde4 -d build

++ kmymoney-4.8.0-fix-csv-import-account-type.patch ++
From: Łukasz Wojniłowicz 
Date: Sat, 18 Jun 2016 17:15:02 +
Subject: Set type of banking statement to unknown during CSV import
X-Git-Url: 
http://quickgit.kde.org/?p=kmymoney.git&a=commitdiff&h=9c5397238947c8a010eb2e0939cb34d729dfb751
---
Set type of banking statement to unknown during CSV import

Type of banking statement shouldn't be set to 'checkings' by default,
bacause statement to be imported could be 'checking' but also 'credit
card'.

BUG: 364425
---


--- a/kmymoney/plugins/csvimport/csvdialog.cpp
+++ b/kmymoney/plugins/csvimport/csvdialog.cpp
@@ -821,7 +821,7 @@
   m_screenUpdated = false;
 
   //  Display the buffer
-
+  st.m_eType = MyMoneyStatement::etNone;
   for (int line = 0; line < m_lineList.count(); line++) {
 m_inBuffer = m_lineList[line];
 
@@ -1398,7 +1398,6 @@
   QString payee = m_trData.payee;//  
extractLine('P')
   // Process transaction data
   tr.m_strBankID = m_trData.id;
-  st.m_eType = MyMoneyStatement::etCheckings;
   tr.m_datePosted = m_trData.date;
   if (!tr.m_datePosted.isValid()) {
 int rc = KMessageBox::warningContinueCancel(0, i18n("The date entry \"%1\" 
read from the file cannot be interpreted through the current "




commit vym for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package vym for openSUSE:Factory checked in 
at 2016-09-20 13:26:38

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


Package is "vym"

Changes:

--- /work/SRC/openSUSE:Factory/vym/vym.changes  2016-08-17 12:06:21.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vym.new/vym.changes 2016-09-20 
13:26:43.0 +0200
@@ -1,0 +2,5 @@
+Sat Sep 17 11:37:38 UTC 2016 - v...@insilmaril.de
+
+- Update to upstream 2.6.0 (bugfix and languages added)
+
+---

Old:

  vym-2.5.21.tar.bz2

New:

  vym-2.6.0.tar.bz2



Other differences:
--
++ vym.spec ++
--- /var/tmp/diff_new_pack.8UbyOW/_old  2016-09-20 13:26:46.0 +0200
+++ /var/tmp/diff_new_pack.8UbyOW/_new  2016-09-20 13:26:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   vym
-Version:2.5.21
+Version:2.6.0
 Release:0
 Summary:View Your Mind - generate and manipulate maps which show your 
thoughts
 License:GPL-2.0

++ debian.changelog ++
--- /var/tmp/diff_new_pack.8UbyOW/_old  2016-09-20 13:26:46.0 +0200
+++ /var/tmp/diff_new_pack.8UbyOW/_new  2016-09-20 13:26:46.0 +0200
@@ -1,3 +1,9 @@
+vym (2.6.0.1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Uwe Drechsel   Sat, 17 Aug 2016 13:04:00 +0100
+
 vym (2.5.22.1) unstable; urgency=low
 
   * New upstream release

++ vym-2.5.21.tar.bz2 -> vym-2.6.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/vym/vym-2.5.21.tar.bz2 
/work/SRC/openSUSE:Factory/.vym.new/vym-2.6.0.tar.bz2 differ: char 11, line 1





commit chromium for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

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

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


Package is "chromium"

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2016-09-16 
11:02:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2016-09-20 
13:26:33.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 17 11:36:18 UTC 2016 - tchva...@suse.com
+
+- Apply sandbox patch to fix crashers on tumbleweed bnc#999091
+  * chromium-sandbox.patch
+
+---

New:

  chromium-sandbox.patch



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.Wxv9Qn/_old  2016-09-20 13:26:42.0 +0200
+++ /var/tmp/diff_new_pack.Wxv9Qn/_new  2016-09-20 13:26:42.0 +0200
@@ -50,6 +50,8 @@
 Patch7: fix_network_api_crash.patch
 # PATCH-FIX-OPENSUSE gcc60-fixes.diff - Fix crashes due to the GCC6 
optimizations
 Patch8: gcc60-fixes.diff
+# PATCH-FIX-UPSTREAM: sanbox crashers avoidance
+Patch9: chromium-sandbox.patch
 # archlinux arm enhancement patches
 Patch100:   arm-webrtc-fix.patch
 Patch101:   arm_use_right_compiler.patch
@@ -257,6 +259,7 @@
 %if 0%{?suse_version} > 1320
 %patch8
 %endif
+%patch9 -p1
 
 # archlinux arm enhancements
 %patch100



++ chromium-sandbox.patch ++
diff -up 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp.madv_free
 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
--- 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp.madv_free
  2016-08-15 13:07:29.279655676 -0400
+++ 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
2016-08-15 13:08:38.447317416 -0400
@@ -41,6 +41,11 @@
 #include 
 #include 
 
+#if OS(LINUX) && defined(MADV_FREE)
+// Added in Linux 4.5, but it breaks the sandbox.
+#undef MADV_FREE
+#endif
+
 #ifndef MADV_FREE
 #define MADV_FREE MADV_DONTNEED
 #endif



commit php-composer for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package php-composer for openSUSE:Factory 
checked in at 2016-09-20 13:26:16

Comparing /work/SRC/openSUSE:Factory/php-composer (Old)
 and  /work/SRC/openSUSE:Factory/.php-composer.new (New)


Package is "php-composer"

Changes:

--- /work/SRC/openSUSE:Factory/php-composer/php-composer.changes
2016-07-14 09:49:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.php-composer.new/php-composer.changes   
2016-09-20 13:26:18.0 +0200
@@ -1,0 +2,31 @@
+Sat Sep 10 06:52:54 UTC 2016 - jweberho...@weberhofer.at
+
+- version 1.2.0
+
+ * Security: Fixed httpoxy vulnerability. This only affects people using
+   Composer outside of the CLI
+ * Added caching of git repositories if you have git 2.3+ installed.
+   Repositories will now be cached once and then cloned from local cache so
+   subsequent installs should be faster
+ * Added detection of HEAD changes to the status command. If you git checkout X
+   in a vendor directory for example it will tell you that it is not at the
+   version that was installed
+ * Added a virtual php-ipv6 extension to require PHP compiled with IPv6 support
+ * Added --no-suggest to install and update commands to skip output of 
suggestions at the end
+ * Added --type to the search command to restrict to a given package type
+ * Added fossil support as alternative to git/svn/.. for package downloads
+ * Improved BitBucket OAuth support
+ * Added support for blocking cache operations using 
+   COMPOSER_CACHE_DIR=/dev/null (or NUL on windows)
+ * Added support for using declare(strict_types=1) in plugins
+ * Added --prefer-stable and --prefer-lowest to the require command
+ * Added --no-scripts to the require and remove commands
+ * Added _comment top level key to the schema to endorse using it as a place
+   to store comments (it can be a string or array of strings)
+ * Added support for justinrainbow/json-schema 2.0
+ * Fixed binaries not being re-installed if deleted by users or the bin-dir
+   changes. update and install will now re-install them
+ * Fixed home command to avoid rogue output on unix
+ * Many minor UX and docs improvements
+
+---



Other differences:
--
++ php-composer.spec ++
--- /var/tmp/diff_new_pack.2Eobfc/_old  2016-09-20 13:26:20.0 +0200
+++ /var/tmp/diff_new_pack.2Eobfc/_new  2016-09-20 13:26:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   php-composer
-Version:1.1.3
+Version:1.2.0
 Release:0
 Summary:Dependency Management for PHP
 License:MIT

++ composer.phar ++
Files /var/tmp/diff_new_pack.2Eobfc/_old and /var/tmp/diff_new_pack.2Eobfc/_new 
differ




commit scite for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

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

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


Package is "scite"

Changes:

--- /work/SRC/openSUSE:Factory/scite/scite.changes  2016-03-26 
15:24:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.scite.new/scite.changes 2016-09-20 
13:26:12.0 +0200
@@ -1,0 +2,61 @@
+Fri Sep 16 00:03:38 UTC 2016 - malcolmle...@opensuse.org
+
+- Updated to version 3.6.7:
+  + C++11 range-based for loops used in SciTE so GCC 4.6 is now the
+minimum supported version.
+  + SCVS_NOWRAPLINESTART option stops left arrow from wrapping to
+the previous line. Most commonly wanted when virtual space is
+used, (sf#1648).
+  + The C++ lexer can fold on #else and #elif with the
+fold.cpp.preprocessor.at.else property, (sf#210).
+  + The HTML lexer no longer treats " support built by default. Can be disabled by
+defining NO_CXX11_REGEX.
+  + SciTE_USERHOME environment variable allows separate location
+for writeable properties files, Feature #965.
+  + GObject introspection supports notify and command events.
+  + The Progress lexer now allows comments preceded by a tab.
+  + Scripts reading Scintilla.iface file include comments for enu
+and lex definitions, (sf#1829).
+  + Fix crashes on GTK+ if idle work active when destroyed,
+(sf#1827).
+  + Fixed bugs when used on GTK+ 3.20, (sf#1825 and sf#1831).
+  + Fix SciTE search field background with dark theme on GTK+
+2.x,(sf#1826).
+- Changes from version 3.6.5:
+  + JSON lexer added, Feature #1140.
+  + The C++ lexer fixes a bug with multi-line strings with line
+continuation where the string style overflowed after an edit,
+(sf#1824).
+  + The Python lexer treats '@' as an operator except when it is
+the first visible character on a line. This is for Python 3.5.
+  + The Rust lexer allows '?' as an operator, Feature #1146.
+  + Doubled size of compiled regex buffer, (sf#1822).
+  + For GTK+, the Super modifier key can be used in key bindings,
+Feature #1142.
+  + For GTK+, fix some crashes when using multiple threads.
+  + Platform layer font cache removed on GTK+ as platform-
+independent caches are used. This avoids the use of thread
+locking and initialisation of threads so any GTK+ applications
+that rely on Scintilla initialising threads will have to do
+that themselves.
+  + SciTE bug fixed with exported HTML where extra line shown,
+(sf#1816).
+
+---

Old:

  scite364.tgz

New:

  scite367.tgz



Other differences:
--
++ scite.spec ++
--- /var/tmp/diff_new_pack.sAwQwM/_old  2016-09-20 13:26:13.0 +0200
+++ /var/tmp/diff_new_pack.sAwQwM/_new  2016-09-20 13:26:13.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package scite
 #
-# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012-2016 Malcolm J Lewis 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,9 +18,9 @@
 
 
 Name:   scite
-Version:3.6.4
+Version:3.6.7
 Release:0
-%define tar_ver 364
+%define tar_ver 367
 Summary:Source Code Editor based on Scintilla
 License:MIT
 Group:  Productivity/Text/Editors

++ scite364.tgz -> scite367.tgz ++
 22531 lines of diff (skipped)




commit fsharp for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package fsharp for openSUSE:Factory checked 
in at 2016-09-20 13:26:28

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


Package is "fsharp"

Changes:

--- /work/SRC/openSUSE:Factory/fsharp/fsharp.changes2016-01-28 
17:25:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.fsharp.new/fsharp.changes   2016-09-20 
13:26:30.0 +0200
@@ -1,0 +2,6 @@
+Sat Aug  6 08:06:47 UTC 2016 - idon...@suse.com
+
+- Update to version 4.0.1.10 
+- Drop use-internal-nunit.patch, no longer needed.
+
+---

Old:

  4.0.1.1.tar.gz
  use-internal-nunit.patch

New:

  fsharp-4.0.1.10.tar.bz2



Other differences:
--
++ fsharp.spec ++
--- /var/tmp/diff_new_pack.BqhdEj/_old  2016-09-20 13:26:33.0 +0200
+++ /var/tmp/diff_new_pack.BqhdEj/_new  2016-09-20 13:26:33.0 +0200
@@ -17,21 +17,21 @@
 
 
 Name:   fsharp
-Version:4.0.1.1
+Version:4.0.1.10
 Release:0
 Summary:F# compiler, core library and core tools
 License:Apache-2.0
 Group:  Development/Languages/Other
 Url:http://fsharp.github.io
-Source: https://github.com/%{name}/%{name}/archive/%{version}.tar.gz
+#Source: https://github.com/%{name}/%{name}/archive/%{version}.tar.gz
+# Run nuget restore
+Source: %{name}-%{version}.tar.bz2
 Source1:fsharp.rpmlintrc
-Patch1: use-internal-nunit.patch
 BuildRequires:  automake
 BuildRequires:  fdupes
 BuildRequires:  mono-devel >= 4.0.0
 BuildRequires:  mono-wcf >= 4.0.0
 BuildRequires:  mono-winfxcore >= 4.0.0
-BuildRequires:  nunit >= 2.6.4
 BuildArch:  noarch
 
 %description
@@ -43,11 +43,11 @@
 
 %prep
 %setup -q
-%patch1 -p1
 
 %build
 autoreconf
 %configure --libexecdir=%{_prefix}/lib
+echo '' > 
packages.config
 make
 
 %install
@@ -55,11 +55,15 @@
 rm -rf ${RPM_BUILD_ROOT}%{_prefix}/lib/mono/monodroid
 rm -rf ${RPM_BUILD_ROOT}%{_prefix}/lib/mono/monotouch
 
-#fix script-without-shebang warnings
+# Fix script-without-shebang warnings
 find %{buildroot}%{_prefix}/lib/mono -iname "*.Fsharp.Targets" -type f -print0 
| xargs -0 chmod -v -x
 find %{buildroot}%{_prefix}/lib/mono -iname "Fsharp.*.xml" -type f -print0 | 
xargs -0 chmod -v -x
 
-#fix brp-25-symlink failure
+# FIXME
+cp 
packages/System.Collections.Immutable.1.2.0/lib/portable-net45+win8+wp8+wpa81/* 
%{buildroot}%{_prefix}/lib/mono/4.5/
+cp 
packages/System.Reflection.Metadata.1.4.1-beta-24227-04/lib/portable-net45+win8/*
 %{buildroot}%{_prefix}/lib/mono/4.5/
+
+# Fix brp-25-symlink failure
 while read line
 do
   src=`readlink -f "$line"`
@@ -68,7 +72,7 @@
   cp "$src" "$line"
 done <<< "$(find %{buildroot}%{_prefix}/lib/mono/Reference* -type l)"
 
-#fix duplicate files
+# Fix duplicate files
 %fdupes %{buildroot}%{_prefix}
 
 %files
@@ -88,10 +92,12 @@
 %{_prefix}/lib/mono/4.5/FSharp.Core.xml
 %{_prefix}/lib/mono/4.5/FSharp.Core.optdata
 %{_prefix}/lib/mono/4.5/FSharp.Core.sigdata
-%{_prefix}/lib/mono/4.5/FSharp.Data.TypeProviders.dll
-%{_prefix}/lib/mono/4.5/FSharp.Data.TypeProviders.xml
 %{_prefix}/lib/mono/4.5/Microsoft.FSharp.Targets
 %{_prefix}/lib/mono/4.5/Microsoft.Portable.FSharp.Targets
+%{_prefix}/lib/mono/4.5/System.Collections.Immutable.dll
+%{_prefix}/lib/mono/4.5/System.Collections.Immutable.xml
+%{_prefix}/lib/mono/4.5/System.Reflection.Metadata.dll
+%{_prefix}/lib/mono/4.5/System.Reflection.Metadata.xml
 %{_prefix}/lib/mono/4.5/fsc.exe
 %{_prefix}/lib/mono/4.5/fsi.exe
 %{_prefix}/lib/mono/4.5/fsiAnyCpu.exe
@@ -110,7 +116,6 @@
 %{_prefix}/lib/mono/gac/FSharp.Compiler.Server.Shared/
 %{_prefix}/lib/mono/gac/FSharp.Compiler/
 %{_prefix}/lib/mono/gac/FSharp.Core/
-%{_prefix}/lib/mono/gac/FSharp.Data.TypeProviders/
 %{_prefix}/lib/mono/gac/policy.2.0.FSharp.Core/
 %{_prefix}/lib/mono/gac/policy.2.3.FSharp.Core/
 %{_prefix}/lib/mono/gac/policy.3.3.FSharp.Core/




commit u3-tool for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package u3-tool for openSUSE:Factory checked 
in at 2016-09-20 13:25:42

Comparing /work/SRC/openSUSE:Factory/u3-tool (Old)
 and  /work/SRC/openSUSE:Factory/.u3-tool.new (New)


Package is "u3-tool"

Changes:

--- /work/SRC/openSUSE:Factory/u3-tool/u3-tool.changes  2015-03-30 
19:33:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.u3-tool.new/u3-tool.changes 2016-09-20 
13:25:44.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 24 18:47:22 UTC 2016 - aloi...@gmx.com
+
+- Update to latest svn version (1.0r60)
+ * Fix behaviour with newer U3 devices
+ * Printing fixes
+ * Detach mass-storage prior to USB access
+ * Gracefully quit with Ctrl-C
+ * Print data partition size when too small
+ * Limit update printing rate
+ * Fix linking to libusb; recommended over SG
+
+---

Old:

  u3-tool-0.3.tar.gz

New:

  u3-tool-code-60-tags-u3-tool-1.0.zip



Other differences:
--
++ u3-tool.spec ++
--- /var/tmp/diff_new_pack.3Hm2jT/_old  2016-09-20 13:25:45.0 +0200
+++ /var/tmp/diff_new_pack.3Hm2jT/_new  2016-09-20 13:25:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package u3-tool
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 Guido Berhoerster.
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,17 +17,23 @@
 #
 
 
+%define  _tag   1.0
+%define  _rel   60
+
 Name:   u3-tool
-Version:0.3
+Version:%{_tag}+svn%{_rel}
 Release:0
 Summary:Tool for Controlling the Special Features of an U3 USB Flash 
disk
 License:GPL-2.0+
 Group:  Hardware/Other
 Url:http://u3-tool.sourceforge.net/
-Source0:
http://sourceforge.net/projects/u3-tool/files/u3-tool/%{version}/u3-tool-%{version}.tar.gz
+Source0:u3-tool-code-%{_rel}-tags-u3-tool-%{_tag}.zip
 Patch0: u3-tool-0.3-fix-manpage-section.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
+BuildRequires:  pkgconfig
+BuildRequires:  unzip
+BuildRequires:  pkgconfig(libusb)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExcludeArch:ppc ppc64
 
@@ -38,7 +44,7 @@
 data partition.
 
 %prep
-%setup -q
+%setup -q -n u3-tool-code-%{_rel}-tags-u3-tool-%{_tag}
 %patch0 -p1
 
 %build




commit rust for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package rust for openSUSE:Factory checked in 
at 2016-09-20 13:25:50

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


Package is "rust"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.rust.new/rust.changes   2016-09-20 
13:25:51.0 +0200
@@ -0,0 +1,238 @@
+---
+Tue Sep  6 06:35:03 UTC 2016 - kgronl...@suse.com
+
+- Move to package named rust 
+
+---
+Thu Aug  4 19:41:56 UTC 2016 - mvysko...@opensuse.org
+
+- Update to 1.10
++ -C panic=abort flag for rustc or equivalent in Cargo.toml
++ new crate type cdylib, embeded library for other languages
++ In addition, a number of performance improvements landed in
+  the compiler, and so did a number of usability improvements
+  across the documentation, rustdoc itself, and various error
+  messages.
++ This is the first release, which is guaranteed to be built
+by previous stable release of rustc
+- Packaging:
++ drop bootstrap mode and use rustc 1.9
++ move documentation to versioned directory
+
+---
+Sun Jul 31 15:03:38 UTC 2016 - jeng...@inai.de
+
+- Use smp_mflags for parallel building. Avoid sh invocation for
+  simple ldconfig calls. Drop archaic %clean section.
+  Drop filler words from summary.
+
+---
+Tue Jul 26 13:34:17 UTC 2016 - kgronl...@suse.com
+
+- Rename source package to rustc-1_9 to conform to naming standards. 
+
+---
+Tue Jul 12 05:57:11 UTC 2016 - mvysko...@opensuse.org
+
+- Rename source package to rustc-190 to avoid unecessary rebuilds
+  of rustc packages on upgrade
+
+---
+Wed Jul  6 11:11:50 UTC 2016 - kgronl...@suse.com
+
+- Move stage0 binaries into separate package
+- Disable embedding timestamp information
+- Add 0003-Disable-embedding-timestamp-information.patch
+
+---
+Tue Jun 28 12:43:26 UTC 2016 - kgronl...@suse.com
+
+- Rename package to rustc-stable
+- Add rpmlintrc
+- Make bootstrapping conditional
+
+---
+Mon Jun 27 15:40:53 UTC 2016 - kgronl...@suse.com
+
+- Fix misleading indentation errors on GCC 6.0
+- Remove snap2.sh
+- Add 0001-Fix-misleading-intentation-errors-on-gcc-6.0.patch 
+- Add 0002-Fix-GCC-6-misleading-indentation-error-in-hoedown.patch
+
+---
+Mon May 30 09:15:21 UTC 2016 - mvysko...@opensuse.org
+
+- Update to version 1.9.0
++ Stabilization of std::panic
++ Deprecation warnings, #[deprecated] attribute
++ Compile time improvements
++ Rolling out use of specialization
++ Library stabilizations
+  About 80 library functions and methods are now stable in 1.
++ http://blog.rust-lang.org/2016/05/26/Rust-1.9.html
+
+---
+Fri Apr 15 19:39:18 UTC 2016 - mvysko...@opensuse.org
+
+- Update to version 1.8.0:
++ Various “operator equals” operators, such as += and -=, are now
+  overloadable via various traits.
++ Empty struct declaration can contain cutly braces
++ New (non default) cargo based build system for rustc
++ About 20 library functions and methods are now stable in 1.8
+
+---
+Fri Mar  4 16:10:07 UTC 2016 - kgronl...@suse.com
+
+- Update to version 1.7.0:
++ Many stabilized APIs
++ Improved library performance
++ BTreeSet and its iterators, Iter, IntoIter, and Range are covariant over 
their contained type.
++ LinkedList and its iterators, Iter and IntoIter are covariant over their 
contained type.
++ str::replace now accepts a Pattern, like other string searching methods.
++ Any is implemented for unsized types.
++ Hash is implemented for Duration.
++ Soundness fixes, may break code. See RFC 1214 for more information.
++ Several bugs in the compiler's visibility calculations were fixed.
++ Parsing "." as a float results in an error instead of 0.
++ Borrows of closure parameters may not outlive the closure.
+
+---
+Thu Jan 20 19:28:34 UTC 2016 - i...@xuzhao.net
+
+- Update to version 1.6.0:
++ Stabilization of libcore and other library functions
++ Crates.io disallows wildcards
+
+

commit python3-pytest for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python3-pytest for openSUSE:Factory 
checked in at 2016-09-20 13:24:33

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


Package is "python3-pytest"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pytest/python3-pytest-doc.changes
2016-05-17 17:12:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pytest.new/python3-pytest-doc.changes   
2016-09-20 13:24:34.0 +0200
@@ -1,0 +2,23 @@
+Sat Jun 18 18:07:29 UTC 2016 - a...@gmx.de
+
+- update to version 2.9.2:
+  * fix #510: skip tests where one parameterize dimension was empty
+thanks Alex Stapleton for the Report and @RonnyPfannschmidt for
+the PR
+  * Fix Xfail does not work with condition keyword argument. Thanks
+@astraw38 for reporting the issue (#1496) and @tomviner for PR the
+(#1524).
+  * Fix win32 path issue when puttinging custom config file with
+absolute path in pytest.main("-c your_absolute_path").
+  * Fix maximum recursion depth detection when raised error class is
+not aware of unicode/encoded bytes. Thanks @prusse-martin for the
+PR (#1506).
+  * Fix pytest.mark.skip mark when used in strict mode. Thanks
+@pquentin for the PR and @RonnyPfannschmidt for showing how to fix
+the bug.
+  * Minor improvements and fixes to the documentation. Thanks
+@omarkohl for the PR.
+  * Fix --fixtures to show all fixture definitions as opposed to just
+one per fixture name. Thanks to @hackebrot for the PR.
+
+---
@@ -7 +29,0 @@
-
--- /work/SRC/openSUSE:Factory/python3-pytest/python3-pytest.changes
2016-05-17 17:12:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pytest.new/python3-pytest.changes   
2016-09-20 13:24:34.0 +0200
@@ -1,0 +2,285 @@
+Thu Sep 15 22:28:08 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 3.0.2
+  * Improve error message when passing non-string ids to 
``pytest.mark.parametrize`` (`#1857`_).
+Thanks `@okken`_ for the report and `@nicoddemus`_ for the PR.
+  * Add ``buffer`` attribute to stdin stub class 
``pytest.capture.DontReadFromInput``
+Thanks `@joguSD`_ for the PR.
+  * Fix ``UnicodeEncodeError`` when string comparison with unicode has failed. 
(`#1864`_)
+Thanks `@AiOO`_ for the PR.
+  * ``pytest_plugins`` is now handled correctly if defined as a string (as 
opposed as
+a sequence of strings) when modules are considered for assertion rewriting.
+Due to this bug, much more modules were being rewritten than necessary
+if a test suite uses ``pytest_plugins`` to load internal plugins 
(`#1888`_).
+Thanks `@jaraco`_ for the report and `@nicoddemus`_ for the PR (`#1891`_).
+  * Do not call tearDown and cleanups when running tests from
+``unittest.TestCase`` subclasses with ``--pdb``
+enabled. This allows proper post mortem debugging for all applications
+which have significant logic in their tearDown machinery (`#1890`_). Thanks
+`@mbyt`_ for the PR.
+  * Fix use of deprecated ``getfuncargvalue`` method in the internal doctest 
plugin.
+Thanks `@ViviCoder`_ for the report (`#1898`_).
+- update to version 3.0.1
+  * Fix regression when ``importorskip`` is used at module level (`#1822`_).
+Thanks `@jaraco`_ and `@The-Compiler`_ for the report and `@nicoddemus`_ 
for the PR.
+  * Fix parametrization scope when session fixtures are used in conjunction
+with normal parameters in the same call (`#1832`_).
+Thanks `@The-Compiler`_ for the report, `@Kingdread`_ and `@nicoddemus`_ 
for the PR.
+  * Fix internal error when parametrizing tests or fixtures using an empty 
``ids`` argument (`#1849`_).
+Thanks `@OPpuolitaival`_ for the report and `@nicoddemus`_ for the PR.
+  * Fix loader error when running ``pytest`` embedded in a zipfile.
+Thanks `@mbachry`_ for the PR.
+- update to version 3.0.0
+  + Incompatible changes
+* Reinterpretation mode has now been removed.  Only plain and rewrite
+  mode are available, consequently the ``--assert=reinterp`` option is
+  no longer available.  Thanks `@flub`_ for the PR.
+* The following deprecated commandline options were removed:
+* ``--genscript``: no longer supported;
+  > ``--no-assert``: use ``--assert=plain`` instead;
+  > ``--nomagic``: use ``--assert=plain`` instead;
+  > ``--report``: use ``-r`` instead;
+* ImportErrors in plugins now are a fatal error instead of issuing a
+  pytest warning (`#1479`_). Thanks to `@The-Compiler`_ for the PR.
+* Removed support code for Python 3 versions < 3.3 (`#1627`_).
+* Removed all ``py.test-X*`` entry points. The versioned, suffixed entry 
points
+  were never documented and a leftover from a p

commit python3-cffi for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python3-cffi for openSUSE:Factory 
checked in at 2016-09-20 13:24:51

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


Package is "python3-cffi"

Changes:

--- /work/SRC/openSUSE:Factory/python3-cffi/python3-cffi-doc.changes
2016-06-25 01:56:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-cffi.new/python3-cffi-doc.changes   
2016-09-20 13:24:53.0 +0200
@@ -1,0 +2,41 @@
+Sun Sep 18 15:53:20 UTC 2016 - a...@gmx.de
+
+- update to version 1.8.3:
+  * When passing a void * argument to a function with a different
+pointer type, or vice-versa, the cast occurs automatically, like
+in C. The same occurs for initialization with ffi.new() and a few
+other places. However, I thought that char * had the same
+property—but I was mistaken. In C you get the usual warning if you
+try to give a char * to a char ** argument, for example. Sorry
+about the confusion. This has been fixed in CFFI by giving for now
+a warning, too. It will turn into an error in a future version.
+
+---
+Fri Sep 16 15:10:25 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 1.8.2
+  * Issue #283: fixed ``ffi.new()`` on structures/unions with nested
+anonymous structures/unions, when there is at least one union in
+the mix.  When initialized with a list or a dict, it should now
+behave more closely like the ``{ }`` syntax does in GCC.
+- Update to 1.8.1
+  * CPython 3.x: experimental: the generated C extension modules now use
+the "limited API", which means that, as a compiled .so/.dll, it should
+work directly on any version of CPython >= 3.2.  The name produced by
+distutils is still version-specific.  To get the version-independent
+name, you can rename it manually to ``NAME.abi3.so``, or use the very
+recent setuptools 26.
+  * Added ``ffi.compile(debug=...)``, similar to ``python setup.py build
+--debug`` but defaulting to True if we are running a debugging
+version of Python itself.
+- Update to 1.8
+  * Removed the restriction that ``ffi.from_buffer()`` cannot be used on
+byte strings.  Now you can get a ``char *`` out of a byte string,
+which is valid as long as the string object is kept alive.  (But
+don't use it to *modify* the string object!  If you need this, use
+``bytearray`` or other official techniques.)
+  * PyPy 5.4 can now pass a byte string directly to a ``char *``
+argument (in older versions, a copy would be made).  This used to be
+a CPython-only optimization.
+
+---
python3-cffi.changes: same change

Old:

  cffi-1.7.0.tar.gz

New:

  cffi-1.8.3.tar.gz



Other differences:
--
++ python3-cffi-doc.spec ++
--- /var/tmp/diff_new_pack.CijluO/_old  2016-09-20 13:24:54.0 +0200
+++ /var/tmp/diff_new_pack.CijluO/_new  2016-09-20 13:24:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-cffi-doc
-Version:1.7.0
+Version:1.8.3
 Release:0
 Summary:Documentation for python3-cffi
 License:MIT

python3-cffi.spec: same change
++ cffi-1.7.0.tar.gz -> cffi-1.8.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cffi-1.7.0/PKG-INFO new/cffi-1.8.3/PKG-INFO
--- old/cffi-1.7.0/PKG-INFO 2016-06-20 16:33:45.0 +0200
+++ new/cffi-1.8.3/PKG-INFO 2016-09-17 12:21:52.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cffi
-Version: 1.7.0
+Version: 1.8.3
 Summary: Foreign Function Interface for Python calling C code.
 Home-page: http://cffi.readthedocs.org
 Author: Armin Rigo, Maciej Fijalkowski
@@ -27,5 +27,6 @@
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cffi-1.7.0/c/_cffi_backend.c 
new/cffi-1.8.3/c/_cffi_backend.c
--- old/cffi-1.7.0/c/_cffi_backend.c2016-06-20 16:30:45.0 +0200
+++ new/cffi-1.8.3/c/_cffi_backend.c2016-09-17 12:21:34.0 +0200
@@ -2,7 +2,7 @@
 #include 
 #include "structmember.h"
 
-#define CFFI_VERSION  "1.7.0"
+#define CFFI_VERSION  "1.8.3"
 
 #ifdef MS_WIN32
 #include 
@@ -128,7 +128,7 @@
 #define CT_VOID 512/* void */
 
 /* other flags th

commit python3-PyYAML for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python3-PyYAML for openSUSE:Factory 
checked in at 2016-09-20 13:24:08

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


Package is "python3-PyYAML"

Changes:

--- /work/SRC/openSUSE:Factory/python3-PyYAML/python3-PyYAML.changes
2016-05-17 17:08:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-PyYAML.new/python3-PyYAML.changes   
2016-09-20 13:24:09.0 +0200
@@ -1,0 +2,12 @@
+Fri Sep 16 14:38:55 UTC 2016 - toddrme2...@gmail.com
+
+- Update to version 3.12
+  * Wheel packages for Windows binaries.
+  * Adding an implicit resolver to a derived loader should not affect
+the base loader (fixes issue #57).
+  * Uniform representation for OrderedDict across different versions
+of Python (fixes issue #61).
+  * Fixed comparison to None warning (closes issue #64).
+- Remove upstream-included PyYAML-big-endian.patch
+
+---

Old:

  PyYAML-3.11.tar.gz
  PyYAML-big-endian.patch

New:

  PyYAML-3.12.tar.gz



Other differences:
--
++ python3-PyYAML.spec ++
--- /var/tmp/diff_new_pack.ADw1CB/_old  2016-09-20 13:24:11.0 +0200
+++ /var/tmp/diff_new_pack.ADw1CB/_new  2016-09-20 13:24:11.0 +0200
@@ -17,15 +17,13 @@
 
 
 Name:   python3-PyYAML
-Version:3.11
+Version:3.12
 Release:0
 Url:http://pyyaml.org/wiki/PyYAML
 Summary:YAML parser and emitter for Python
 License:MIT
 Group:  Development/Languages/Python
 Source: 
https://files.pythonhosted.org/packages/source/P/PyYAML/PyYAML-%{version}.tar.gz
-#PATCH-FIX-UPSTREAM 
https://bitbucket.org/xi/pyyaml/issue/35/test-fails-on-be-s390-x-ppc64 Fix big 
endian builds
-Patch0: PyYAML-big-endian.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libyaml-devel
 BuildRequires:  python3
@@ -48,7 +46,6 @@
 
 %prep
 %setup -q -n PyYAML-%{version}
-%patch0 -p1
 
 %build
 #regenerate _yaml.c

++ PyYAML-3.11.tar.gz -> PyYAML-3.12.tar.gz ++
 21767 lines of diff (skipped)




commit vlc for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package vlc for openSUSE:Factory checked in 
at 2016-09-20 13:23:22

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


Package is "vlc"

Changes:

--- /work/SRC/openSUSE:Factory/vlc/vlc.changes  2016-09-09 10:17:23.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vlc.new/vlc.changes 2016-09-20 
13:23:24.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 16 14:24:01 UTC 2016 - dims...@opensuse.org
+
+- Rename vlc-noX-lang to vlc-lang: this helps the AppStream builder
+  in confirming that 'vlc' (the application) does have a full
+  translation set. Obsolete vlc-noX-lang by vlc-noX directly.
+
+---



Other differences:
--
++ vlc.spec ++
--- /var/tmp/diff_new_pack.VOAFCL/_old  2016-09-20 13:23:26.0 +0200
+++ /var/tmp/diff_new_pack.VOAFCL/_new  2016-09-20 13:23:26.0 +0200
@@ -258,9 +258,11 @@
 Requires:   libvlc%{libvlc} = %{version}-%{release}
 Requires:   libvlccore%{libvlccore} = %{version}-%{release}
 # lang subpackage
-Recommends: %{name}-noX-lang
+Recommends: %{name}-lang
 Recommends: %{name}-codecs
 Recommends: libdvdcss
+# Tha lang-package was renamed to vlc-lang to assist AppStream building
+Obsoletes:  %{name}-noX-lang
 # This is a hack only due to libbluray not having versioned symbols as well as
 # having a strange ABI/API break between 0.3 and 0.7
 %requires_gelibbluray1
@@ -274,7 +276,7 @@
 Should you decide to install the GUI modules, %{name}-noX will stay
 installed as a dependency.
 
-%lang_package -n %{name}-noX
+%lang_package
 
 %package codec-gstreamer
 Summary:VLC: VideoLAN Client - Decode using GStreamer
@@ -593,7 +595,7 @@
 %endif
 %endif
 
-%files noX-lang -f vlc.lang
+%files lang -f vlc.lang
 %defattr(-,root,root)
 
 %files noX




commit python-pytest for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python-pytest for openSUSE:Factory 
checked in at 2016-09-20 13:23:40

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


Package is "python-pytest"

Changes:

--- /work/SRC/openSUSE:Factory/python-pytest/python-pytest-doc.changes  
2016-02-16 09:27:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pytest.new/python-pytest-doc.changes 
2016-09-20 13:23:41.0 +0200
@@ -1,0 +2,362 @@
+Fri Sep 16 14:25:04 UTC 2016 - toddrme2...@gmail.com
+
+- Fix download url.
+
+---
+Thu Sep 15 22:20:01 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 3.0.2
+  * Improve error message when passing non-string ids to 
``pytest.mark.parametrize`` (`#1857`_).
+Thanks `@okken`_ for the report and `@nicoddemus`_ for the PR.
+  * Add ``buffer`` attribute to stdin stub class 
``pytest.capture.DontReadFromInput``
+Thanks `@joguSD`_ for the PR.
+  * Fix ``UnicodeEncodeError`` when string comparison with unicode has failed. 
(`#1864`_)
+Thanks `@AiOO`_ for the PR.
+  * ``pytest_plugins`` is now handled correctly if defined as a string (as 
opposed as
+a sequence of strings) when modules are considered for assertion rewriting.
+Due to this bug, much more modules were being rewritten than necessary
+if a test suite uses ``pytest_plugins`` to load internal plugins 
(`#1888`_).
+Thanks `@jaraco`_ for the report and `@nicoddemus`_ for the PR (`#1891`_).
+  * Do not call tearDown and cleanups when running tests from
+``unittest.TestCase`` subclasses with ``--pdb``
+enabled. This allows proper post mortem debugging for all applications
+which have significant logic in their tearDown machinery (`#1890`_). Thanks
+`@mbyt`_ for the PR.
+  * Fix use of deprecated ``getfuncargvalue`` method in the internal doctest 
plugin.
+Thanks `@ViviCoder`_ for the report (`#1898`_).
+- update to version 3.0.1
+  * Fix regression when ``importorskip`` is used at module level (`#1822`_).
+Thanks `@jaraco`_ and `@The-Compiler`_ for the report and `@nicoddemus`_ 
for the PR.
+  * Fix parametrization scope when session fixtures are used in conjunction
+with normal parameters in the same call (`#1832`_).
+Thanks `@The-Compiler`_ for the report, `@Kingdread`_ and `@nicoddemus`_ 
for the PR.
+  * Fix internal error when parametrizing tests or fixtures using an empty 
``ids`` argument (`#1849`_).
+Thanks `@OPpuolitaival`_ for the report and `@nicoddemus`_ for the PR.
+  * Fix loader error when running ``pytest`` embedded in a zipfile.
+Thanks `@mbachry`_ for the PR.
+- update to version 3.0.0
+  + Incompatible changes
+* Reinterpretation mode has now been removed.  Only plain and rewrite
+  mode are available, consequently the ``--assert=reinterp`` option is
+  no longer available.  Thanks `@flub`_ for the PR.
+* The following deprecated commandline options were removed:
+* ``--genscript``: no longer supported;
+  > ``--no-assert``: use ``--assert=plain`` instead;
+  > ``--nomagic``: use ``--assert=plain`` instead;
+  > ``--report``: use ``-r`` instead;
+* ImportErrors in plugins now are a fatal error instead of issuing a
+  pytest warning (`#1479`_). Thanks to `@The-Compiler`_ for the PR.
+* Removed support code for Python 3 versions < 3.3 (`#1627`_).
+* Removed all ``py.test-X*`` entry points. The versioned, suffixed entry 
points
+  were never documented and a leftover from a pre-virtualenv era. These 
entry
+  points also created broken entry points in wheels, so removing them also
+  removes a source of confusion for users (`#1632`_).
+  Thanks `@obestwalter`_ for the PR.
+* ``pytest.skip()`` now raises an error when used to decorate a test 
function,
+  as opposed to its original intent (to imperatively skip a test inside a 
test function). Previously
+  this usage would cause the entire module to be skipped (`#607`_).
+  Thanks `@omarkohl`_ for the complete PR (`#1519`_).
+* Exit tests if a collection error occurs. A poll indicated most users 
will hit CTRL-C
+  anyway as soon as they see collection errors, so pytest might as well 
make that the default behavior (`#1421`_).
+  A ``--continue-on-collection-errors`` option has been added to restore 
the previous behaviour.
+  Thanks `@olegpidsadnyi`_ and `@omarkohl`_ for the complete PR (`#1628`_).
+* Renamed the pytest ``pdb`` module (plugin) into ``debugging`` to avoid 
clashes with the builtin ``pdb`` module.
+* Raise a helpful failure message when requesting a parametrized fixture 
at runtime,
+  e.g. with ``request.getfixturevalue``. Previously these parameters were 
sim

commit python-pexpect for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python-pexpect for openSUSE:Factory 
checked in at 2016-09-20 13:22:56

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


Package is "python-pexpect"

Changes:

--- /work/SRC/openSUSE:Factory/python-pexpect/python-pexpect.changes
2015-04-28 20:48:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pexpect.new/python-pexpect.changes   
2016-09-20 13:22:58.0 +0200
@@ -1,0 +2,48 @@
+Thu Sep 15 22:52:06 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 4.2.1:
+  * Fix to allow running ``env`` in replwrap-ed bash.
+  * Raise more informative exception from pxssh if it fails to connect.
+  * Change ``passmass`` example to not log passwords entered.
+- update to version 4.2.0:
+  * Change: When an "env" parameter is specified to the
+:class:`~.spawn` or :class:`~.run` family of calls containing a
+value for "PATH", its value is used to discover the target
+executable from a relative path, rather than the current process's
+environment "PATH".  This mirrors the behavior of
+:func:`subprocess.Popen` in the standard library (:ghissue:`348`).
+  * Regression: Re-introduce capability for :meth:`read_nonblocking`
+in class :class:`fdspawn` as previously supported in version 3.3
+(:ghissue:`359`).
+- update to version 4.1.0:
+  * No upstream changelog
+- update to version 4.0.1:
+  * Integration with :mod:`asyncio`: passing "async=True" to 
:meth:`~.spawn.expect`,
+:meth:`~.spawn.expect_exact` or :meth:`~.spawn.expect_list` will make them 
return a
+coroutine. You can get the result using "yield from", or wrap it in an
+:class:`asyncio.Task`. This allows the event loop to do other things while
+waiting for output that matches a pattern.
+  * Experimental support for Windows (with some caveats)—see :ref:`windows`.
+  * Enhancement: allow method as callbacks of argument "events" for
+:func:`pexpect.run` (:ghissue:`176`).
+  * It is now possible to call :meth:`~.spawn.wait` multiple times, or after a 
process
+is already determined to be terminated without raising an exception
+(:ghpull:`211`).
+  * New :class:`pexpect.spawn` keyword argument, "dimensions=(rows, columns)"
+allows setting terminal screen dimensions before launching a program
+(:ghissue:`122`).
+  * Fix regression that prevented executable, but unreadable files from
+being found when not specified by absolute path -- such as
+/usr/bin/sudo (:ghissue:`104`).
+  * Fixed regression when executing pexpect with some prior releases of
+the multiprocessing module where stdin has been closed (:ghissue:`86`).
+  * Deprecated "pexpect.screen" and "pexpect.ANSI". Please use other packages
+such as `pyte `__ to emulate a terminal.
+  * Removed the independent top-level modules ("pxssh fdpexpect FSM screen 
ANSI")
+which were installed alongside Pexpect. These were moved into the Pexpect
+package in 3.0, but the old names were left as aliases.
+  * Child processes created by Pexpect no longer ignore SIGHUP by default: the
+"ignore_sighup" parameter of :class:`pexpect.spawn` defaults to False. To
+get the old behaviour, pass "ignore_sighup=True".
+
+---

Old:

  pexpect-3.3.tar.gz

New:

  pexpect-4.2.1.tar.gz



Other differences:
--
++ python-pexpect.spec ++
--- /var/tmp/diff_new_pack.lUShX6/_old  2016-09-20 13:23:00.0 +0200
+++ /var/tmp/diff_new_pack.lUShX6/_new  2016-09-20 13:23:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pexpect
 #
-# 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,18 @@
 
 
 Name:   python-pexpect
-BuildRequires:  python-devel
-Version:3.3
+Version:4.2.1
 Release:0
 Summary:Pure Python Expect-like module
 License:ISC
 Group:  Development/Libraries/Python
-Url:http://pexpect.sourceforge.net/
-Source: 
https://pypi.python.org/packages/source/p/pexpect/pexpect-%{version}.tar.gz
+Url:http://pexpect.readthedocs.org/en/latest/
+Source: 
https://files.pythonhosted.org/packages/source/p/pexpect/pexpect-%{version}.tar.gz
+BuildRequires:  python-devel
+BuildRequires:  man
+BuildRequires:  python-ptyprocess
+BuildRequires:  python-pytest
+Requires:   python-ptyprocess
 BuildRoot:  %{_tmppath}/%

commit python-argparse for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python-argparse for openSUSE:Factory 
checked in at 2016-09-20 13:21:45

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


Package is "python-argparse"

Changes:

--- /work/SRC/openSUSE:Factory/python-argparse/python-argparse.changes  
2015-08-23 15:42:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-argparse.new/python-argparse.changes 
2016-09-20 13:21:47.0 +0200
@@ -1,0 +2,13 @@
+Thu Sep 15 22:58:55 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 1.4.0
+  - make argparse behave for default args aka
+issue #12776, #11839: call argparse type function only once.
+  - move to github:ThomasWaldmann/argparse
+  - add TW as maintainer / give TW's email
+  - add some usecase to README, clarify issue tracking
+  - add a note to tox.ini about testing on dead snakes
+- Remove ancient documentation file
+- Clean up documentation handling
+
+---

Old:

  argparse-1.1.pdf
  argparse-1.3.0.tar.gz

New:

  argparse-1.4.0.tar.gz



Other differences:
--
++ python-argparse.spec ++
--- /var/tmp/diff_new_pack.k5oT0z/_old  2016-09-20 13:21:48.0 +0200
+++ /var/tmp/diff_new_pack.k5oT0z/_new  2016-09-20 13:21:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-argparse
 #
-# 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,23 +17,15 @@
 
 
 Name:   python-argparse
-Version:1.3.0
+Version:1.4.0
 Release:0
-Url:http://code.google.com/p/argparse/
+Url:https://github.com/ThomasWaldmann/argparse/
 Summary:Python command-line parsing library
 License:Python-2.0
 Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/a/argparse/argparse-%{version}.tar.gz
-Source1:argparse-1.1.pdf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Source: 
https://files.pythonhosted.org/packages/source/a/argparse/argparse-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version} > 1110
-BuildArch:  noarch
-%endif
-%endif
 Provides:   python-argparse-doc = %{version}
 Obsoletes:  python-argparse-doc < %{version}
 # For some distros, the "python" package provides python-argparse.
@@ -41,7 +33,11 @@
 # backported version rather than the included version.
 Provides:   python-argparse-backport = %{version}
 Obsoletes:  python-argparse-backport < %{version}
+%if 0%{?suse_version} > 1110
+BuildArch:  noarch
+%else
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%endif
 
 %description
 The argparse module provides an easy, declarative interface for
@@ -64,13 +60,7 @@
 
 %prep
 %setup -n argparse-%{version}
-mkdir html
-pushd doc
-mv * ../html/
-mv ../html .
-popd
 sed -i "s/\r//" NEWS.txt # Avoid warning wrong-file-end-of-line-encoding
-cp %{SOURCE1} doc/
 
 %build
 python setup.py build
@@ -80,7 +70,8 @@
 
 %files 
 %defattr(-,root,root,-)
-%doc NEWS.txt README.txt doc/*
-%python_sitelib/*
+%doc NEWS.txt README.txt
+%doc doc/source/Python-License.txt doc/source/license.rst
+%{python_sitelib}/*
 
 %changelog

++ argparse-1.3.0.tar.gz -> argparse-1.4.0.tar.gz ++
 5285 lines of diff (skipped)




commit python-Mako for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package python-Mako for openSUSE:Factory 
checked in at 2016-09-20 13:22:24

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


Package is "python-Mako"

Changes:

--- /work/SRC/openSUSE:Factory/python-Mako/python-Mako.changes  2015-07-28 
11:41:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Mako.new/python-Mako.changes 
2016-09-20 13:22:25.0 +0200
@@ -1,0 +2,41 @@
+Fri Sep 16 04:04:40 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 1.0.4:
+  * [test] [feature] The default test runner is now py.test. Running
+“python setup.py test” will make use of py.test instead of
+nose. nose still works as a test runner as well, however.
+  * [lexer] [bug] Major improvements to lexing of intricate Python
+sections which may contain complex backslash sequences, as well as
+support for the bitwise operator (e.g. pipe symbol) inside of
+expression sections distinct from the Mako “filter” operator,
+provided the operator is enclosed within parentheses or
+brackets. Pull request courtesy Daniel Martin.
+  * [feature] Added new method Template.list_defs(). Pull request
+courtesy Jonathan Vanasco.
+- update to version 1.0.3:
+  * Fixed an issue where the Babel plugin would not handle a
+translation symbol that contained non-ascii characters. Pull
+request courtesy Roman Imankulov.
+- Update to version 1.0.2
+  * The "universal wheel" marker is removed from setup.cfg, because
+our setup.py currently makes use of conditional dependencies.
+In :ticket:`249`, the discussion is ongoing on how to correct our
+setup.cfg / setup.py fully so that we can handle the per-version
+dependency changes while still maintaining optimal wheel settings,
+so this issue is not yet fully resolved.
+  * Repair some calls within the ast module that no longer work on Python3.5;
+additionally replace the use of ``inspect.getargspec()`` under
+Python 3 (seems to be called from the TG plugin) to avoid deprecation
+warnings.
+  * Update the Lingua translation extraction plugin to correctly
+handle templates mixing Python control statements (such as if,
+for and while) with template fragments. Pull request courtesy
+Laurent Daverio.
+  * Added ``STOP_RENDERING`` keyword for returning/exiting from a
+template early, which is a synonym for an empty string ``""``.
+Previously, the docs suggested a bare
+``return``, but this could cause ``None`` to appear in the
+rendered template result.
+- Implement update-alternatives
+  
+---

Old:

  Mako-1.0.1.tar.gz

New:

  Mako-1.0.4.tar.gz



Other differences:
--
++ python-Mako.spec ++
--- /var/tmp/diff_new_pack.NhDpcY/_old  2016-09-20 13:22:26.0 +0200
+++ /var/tmp/diff_new_pack.NhDpcY/_new  2016-09-20 13:22:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Mako
 #
-# 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,25 +17,21 @@
 
 
 Name:   python-Mako
-Version:1.0.1
+Version:1.0.4
 Release:0
 Url:http://www.makotemplates.org/
 Summary:A super-fast Python templating language
 License:MIT
 Group:  Development/Languages/Python
-Source: 
http://pypi.python.org/packages/source/M/Mako/Mako-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/M/Mako/Mako-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-MarkupSafe
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-BuildRequires:  python-argparse
-%endif
 BuildRequires:  python-devel
 BuildRequires:  python-mock
-BuildRequires:  python-nose
+BuildRequires:  python-pbr
+BuildRequires:  python-pytest
 BuildRequires:  python-setuptools
-%if 0%{?suse_version}
-Suggests:   python-Beaker >= 1.1
-%endif
+Requires:   python-Beaker >= 1.1
 Requires:   python-MarkupSafe
 Provides:   python-mako = %{version}
 Obsoletes:  python-mako < %{version}
@@ -44,6 +40,8 @@
 %else
 BuildArch:  noarch
 %endif
+Requires(post): update-alternatives
+Requires(preun): update-alternatives
 
 %description
 Mako is a template library written in Python. It provides a familiar, non-XML 
@@ -64,17 +62,31 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-%if 0%{?suse_version} > 1320
-#FIXME : 

commit suse-xsl-stylesheets for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package suse-xsl-stylesheets for 
openSUSE:Factory checked in at 2016-09-20 13:21:23

Comparing /work/SRC/openSUSE:Factory/suse-xsl-stylesheets (Old)
 and  /work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new (New)


Package is "suse-xsl-stylesheets"

Changes:

--- 
/work/SRC/openSUSE:Factory/suse-xsl-stylesheets/suse-xsl-stylesheets.changes
2016-08-09 22:14:16.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new/suse-xsl-stylesheets.changes
   2016-09-20 13:21:25.0 +0200
@@ -1,0 +2,25 @@
+Thu Sep 15 15:06:10 UTC 2016 - skn...@suse.com
+
+Stable release of the SUSE XSL stylesheets 2.0.6.2:
+
+Find issues in our GitHub tracker at
+https://github.com/openSUSE/suse-xsl/issues/NUMBER
+
+* Packaging
+  - Fixed post/postun segments of spec file
+
+* SUSE Word List for aspell
+  - Added more words
+
+* Stylesheets (common)
+  - Added VERSION.xsl for suse2005 stylesheets
+
+* Stylesheets (PDF)
+  - Removed duplicate fo:markers that led to build errors with XEP
+(suse-xsl #260)
+
+* Stylesheets (XHTML)
+  - Fixed embedded JavaScript, removed old Chrome/Android quirk
+  - Fixed embedding of branding CSS
+
+---
@@ -11,0 +37,2 @@
+  - Made syntax highlighting functional with openSUSE and DAPS
+brandings

Old:

  suse-xsl-stylesheets-2.0.6.1.tar.bz2

New:

  suse-xsl-stylesheets-2.0.6.2.tar.bz2



Other differences:
--
++ suse-xsl-stylesheets.spec ++
--- /var/tmp/diff_new_pack.KCZv2T/_old  2016-09-20 13:21:26.0 +0200
+++ /var/tmp/diff_new_pack.KCZv2T/_new  2016-09-20 13:21:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package suse-xsl-stylesheets
 #
-# 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,24 +17,23 @@
 
 
 Name:   suse-xsl-stylesheets
-Version:2.0.6.1
+Version:2.0.6.2
 Release:0
 
 ###
 #
-# ATTENTION: Do NOT edit this file outside of
-#https://svn.code.sf.net/p/daps/svn/trunk/daps/\
-#suse/packaging/suse-xsl-stylesheets.spec
+#  IMPORTANT:
+#  Only edit this file directly in the Git repo:
+#  https://github.com/openSUSE/daps, branch develop,
+#  packaging/suse-xsl-stylesheets.spec
 #
-#  Your changes will be lost on the next update
-#  If you do not have access to the SVN repository, notify
+#  Your changes will be lost on the next update.
+#  If you do not have access to the Git repository, notify
 #   and 
-#  or send a patch
+#  or send a patch.
 #
 
 
-%define dbstyles  %{_datadir}/xml/docbook/stylesheet/nwalsh/current
-%define susexsl_catalog   catalog-for-%{name}.xml
 %define db_xml_dir%{_datadir}/xml/docbook
 %define suse_styles_dir   %{db_xml_dir}/stylesheet
 
@@ -67,7 +66,6 @@
 Requires:   docbook_5
 Requires:   docbook-xsl-stylesheets >= 1.77
 Requires:   docbook5-xsl-stylesheets >= 1.77
-
 Requires:   libxslt
 Requires:   aspell-en
 
@@ -80,10 +78,8 @@
 
 # Western fallback: currently necessary for building with XEP, it seems.
 Requires:   ghostscript-fonts-std
-
 # Western fallback 2: These should make the Ghostscript fonts unnecessary.
 Requires:   gnu-free-fonts
-
 # "Generic" font for use in cases where we don't want one of the gnu-free-fonts
 Requires:   dejavu-fonts
 
@@ -99,7 +95,6 @@
 # Chinese:
 Requires:   wqy-microhei-fonts
 
-
 # FONTS USED IN "suse2013" STYLESHEETS
 # Western fonts:
 Requires:   google-opensans-fonts
@@ -127,64 +122,52 @@
 subset of the DocBook 5 schema.
 
 #--
+
 %prep
 %setup -q -n %{name}
 
 #--
+
 %build
 %__make  %{?_smp_mflags}
 
 #--
+
 %install
-make install DESTDIR=$RPM_BUILD_ROOT  LIBDIR=%_libdir
+make install DESTDIR=%{buildroot}  LIBDIR=%{_libdir}
 
 # create symlinks:
-%fdupes -s $RPM_BUILD_ROOT/%{_datadir}
+%fdupes -s %{buildroot}/%{_datadir}
 
 #--
+
 %post
-# XML Catalogs
-#
-# remove existing entries first - needed for
-# zypper in, since it does not call postun
-# delete ...
-if [ "2" = "$1" ]; then
+%reconfigure_fonts_post
+if [ ! -f %{_sysconfdir}/xml/suse-catalog.xml -a -x 
%{_bindir}/edit-xml-catalog ] ; then
+# susexsl entry

commit autoyast2 for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2016-09-20 13:20:49

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


Package is "autoyast2"

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2016-08-31 
00:02:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2016-09-20 
13:20:51.0 +0200
@@ -1,0 +2,17 @@
+Wed Sep 14 17:19:01 CEST 2016 - sch...@suse.de
+
+- Adding an missing PREP partition for PPC, BUT not for
+  Power8 system (powerNV). PowerNV do not have PREP partitions
+  and do not need any because they do not call grub2-install
+  (bnc#989392).
+- 3.1.151
+
+---
+Wed Sep  7 07:27:53 UTC 2016 - igonzalezs...@suse.com
+
+- Fix IP detection in AutoYaST installation rules
+  in order to find the correct profile when "ip route"
+  mentions "metric" (bnc#997548).
+- 3.1.150
+
+---

Old:

  autoyast2-3.1.149.tar.bz2

New:

  autoyast2-3.1.151.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.3KMgAN/_old  2016-09-20 13:20:53.0 +0200
+++ /var/tmp/diff_new_pack.3KMgAN/_new  2016-09-20 13:20:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.1.149
+Version:3.1.151
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ autoyast2-3.1.149.tar.bz2 -> autoyast2-3.1.151.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.149/package/autoyast2.changes 
new/autoyast2-3.1.151/package/autoyast2.changes
--- old/autoyast2-3.1.149/package/autoyast2.changes 2016-08-26 
14:10:05.0 +0200
+++ new/autoyast2-3.1.151/package/autoyast2.changes 2016-09-15 
13:09:13.0 +0200
@@ -1,4 +1,21 @@
 ---
+Wed Sep 14 17:19:01 CEST 2016 - sch...@suse.de
+
+- Adding an missing PREP partition for PPC, BUT not for
+  Power8 system (powerNV). PowerNV do not have PREP partitions
+  and do not need any because they do not call grub2-install
+  (bnc#989392).
+- 3.1.151
+
+---
+Wed Sep  7 07:27:53 UTC 2016 - igonzalezs...@suse.com
+
+- Fix IP detection in AutoYaST installation rules
+  in order to find the correct profile when "ip route"
+  mentions "metric" (bnc#997548).
+- 3.1.150
+
+---
 Fri Aug 26 09:39:55 UTC 2016 - kanders...@suse.com
 
 - Profile Location: Use Report instead of Popup to not block
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.149/package/autoyast2.spec 
new/autoyast2-3.1.151/package/autoyast2.spec
--- old/autoyast2-3.1.149/package/autoyast2.spec2016-08-26 
14:10:05.0 +0200
+++ new/autoyast2-3.1.151/package/autoyast2.spec2016-09-15 
13:09:13.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.1.149
+Version:3.1.151
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/autoyast2-3.1.149/src/include/autoinstall/autopart.rb 
new/autoyast2-3.1.151/src/include/autoinstall/autopart.rb
--- old/autoyast2-3.1.149/src/include/autoinstall/autopart.rb   2016-08-26 
14:10:05.0 +0200
+++ new/autoyast2-3.1.151/src/include/autoinstall/autopart.rb   2016-09-15 
13:09:13.0 +0200
@@ -270,7 +270,12 @@
 end
 
 def try_add_boot(conf, disk)
-  conf = deep_copy(conf)
+  tc = Builtins.eval(conf)
+  # If it is a ppc but not a baremetal Power8 system (powerNV).
+  # powerNV do not have prep partition and do not need any because
+  # they do not call grub2-install (bnc#989392).
+  return tc if Arch.ppc && Arch.board_powernv
+
   disk = deep_copy(disk)
   dlabel = disk.fetch("label", "")
   root = Ops.greater_than(
@@ -279,16 +284,13 @@
 end),
 0
   )
-  tc = Builtins.eval(conf)
+
   if !@planHasBoot && root &&
-  (Ops.greater_than(
-Ops.get_integer(disk, "cyl_count", 0),
-Partitions.BootCyl
-  ) ||
-Arch.ia64 ||
-Arch.ppc ||
-Arch.sparc)
+ (Ops.greater_than(
+   Ops.get_integer(disk, "cyl_count", 0),
+   Partitions.BootCyl) || Arch.ppc)
 pb = {}
+# PPCs do not need /boot

commit btrfsprogs for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package btrfsprogs for openSUSE:Factory 
checked in at 2016-09-20 13:20:33

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


Package is "btrfsprogs"

Changes:

--- /work/SRC/openSUSE:Factory/btrfsprogs/btrfsprogs.changes2016-09-05 
21:15:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.btrfsprogs.new/btrfsprogs.changes   
2016-09-20 13:20:35.0 +0200
@@ -1,0 +2,22 @@
+Thu Sep  8 00:00:00 CEST 2016 - dste...@suse.cz
+
+- removed btrfsprogs-only-install-udev-rules-for-udev-190.patch: fix build
+
+---
+Tue Sep  6 00:00:00 CEST 2016 - dste...@suse.cz
+
+- update to 4.7.2
+  * check:
+* urgent fix: false report of backref mismatches; do not --repair
+  last unaffected version 4.6.1 (code reverted to that state)
+  * fuzzing and fixes
+* added more sanity checks for various structures
+* testing images added
+  * build: udev compatibility: do not install .rules on version < 190
+  * other:
+* dump-super: do not crash on garbage value in csum_type
+* minor improvements in messages and help strings
+  * documentation:
+* filesystem features
+
+---

Old:

  btrfs-progs-v4.7.1.tar.gz
  btrfsprogs-only-install-udev-rules-for-udev-190.patch

New:

  btrfs-progs-v4.7.2.tar.gz



Other differences:
--
++ btrfsprogs.spec ++
--- /var/tmp/diff_new_pack.WUYiYn/_old  2016-09-20 13:20:36.0 +0200
+++ /var/tmp/diff_new_pack.WUYiYn/_new  2016-09-20 13:20:36.0 +0200
@@ -28,7 +28,7 @@
 %endif
 
 Name:   btrfsprogs
-Version:4.7.1
+Version:4.7.2
 Release:0
 Summary:Utilities for the Btrfs filesystem
 License:GPL-2.0
@@ -46,7 +46,6 @@
 Patch168:   0168-Btrfs-progs-don-t-bug-out-if-we-can-t-find-the-last-.patch
 
 Patch1000:  local-version-override.patch
-Patch1001:  btrfsprogs-only-install-udev-rules-for-udev-190.patch
 
 BuildRequires:  asciidoc
 BuildRequires:  autoconf
@@ -142,7 +141,6 @@
 %patch167 -p1
 %patch168 -p1
 %patch1000 -p1
-%patch1001 -p1
 
 %build
 ./autogen.sh

++ btrfs-progs-v4.7.1.tar.gz -> btrfs-progs-v4.7.2.tar.gz ++
 2153 lines of diff (skipped)

++ local-version-override.patch ++
--- /var/tmp/diff_new_pack.WUYiYn/_old  2016-09-20 13:20:37.0 +0200
+++ /var/tmp/diff_new_pack.WUYiYn/_new  2016-09-20 13:20:37.0 +0200
@@ -6,8 +6,8 @@
  # Copyright 2008, Oracle
  # Released under the GNU GPLv2
  
--v="v4.7.1"
-+v="v4.7.1+20160829"
+-v="v4.7.2"
++v="v4.7.2+20160906"
  
  opt=$1
  




commit kernel-source for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2016-09-20 13:19:30

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


Package is "kernel-source"

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/kernel-debug.changes   
2016-09-13 22:22:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/kernel-debug.changes  
2016-09-20 13:19:32.0 +0200
@@ -1,0 +2,19 @@
+Thu Sep 15 09:32:40 CEST 2016 - jsl...@suse.cz
+
+- Linux 4.7.4.
+- commit b93c795
+
+---
+Wed Sep 14 13:45:16 CEST 2016 - ti...@suse.de
+
+- drm/i915: Ignore OpRegion panel type except on select machines (bsc#993996).
+- commit 6a5bbb1
+
+---
+Mon Sep 12 21:25:36 CEST 2016 - mho...@suse.cz
+
+- mm, oom: prevent premature OOM killer invocation for high
+  order request (bnc#994066).
+- commit d2c8eb9
+
+---
kernel-default.changes: same change
kernel-docs.changes: same change
kernel-lpae.changes: same change
kernel-obs-build.changes: same change
kernel-obs-qa.changes: same change
kernel-pae.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change



Other differences:
--
++ kernel-debug.spec ++
--- /var/tmp/diff_new_pack.zUjGvh/_old  2016-09-20 13:19:38.0 +0200
+++ /var/tmp/diff_new_pack.zUjGvh/_new  2016-09-20 13:19:38.0 +0200
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 4.7
-%define patchversion 4.7.3
+%define patchversion 4.7.4
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -61,9 +61,9 @@
 Summary:A Debug Version of the Kernel
 License:GPL-2.0
 Group:  System/Kernel
-Version:4.7.3
+Version:4.7.4
 %if 0%{?is_kotd}
-Release:.g7ad9c1d
+Release:.g6a5bbb1
 %else
 Release:0
 %endif

kernel-default.spec: same change
++ kernel-docs.spec ++
--- /var/tmp/diff_new_pack.zUjGvh/_old  2016-09-20 13:19:38.0 +0200
+++ /var/tmp/diff_new_pack.zUjGvh/_new  2016-09-20 13:19:38.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define patchversion 4.7.3
+%define patchversion 4.7.4
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -27,9 +27,9 @@
 Summary:Kernel Documentation (man pages)
 License:GPL-2.0
 Group:  Documentation/Man
-Version:4.7.3
+Version:4.7.4
 %if 0%{?is_kotd}
-Release:.g7ad9c1d
+Release:.g6a5bbb1
 %else
 Release:0
 %endif

++ kernel-lpae.spec ++
--- /var/tmp/diff_new_pack.zUjGvh/_old  2016-09-20 13:19:38.0 +0200
+++ /var/tmp/diff_new_pack.zUjGvh/_new  2016-09-20 13:19:38.0 +0200
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 4.7
-%define patchversion 4.7.3
+%define patchversion 4.7.4
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -61,9 +61,9 @@
 Summary:Kernel for LPAE enabled systems
 License:GPL-2.0
 Group:  System/Kernel
-Version:4.7.3
+Version:4.7.4
 %if 0%{?is_kotd}
-Release:.g7ad9c1d
+Release:.g6a5bbb1
 %else
 Release:0
 %endif

++ kernel-obs-build.spec ++
--- /var/tmp/diff_new_pack.zUjGvh/_old  2016-09-20 13:19:38.0 +0200
+++ /var/tmp/diff_new_pack.zUjGvh/_new  2016-09-20 13:19:38.0 +0200
@@ -19,7 +19,7 @@
 
 #!BuildIgnore: post-build-checks
 
-%define patchversion 4.7.3
+%define patchversion 4.7.4
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -51,9 +51,9 @@
 Summary:package kernel and initrd for OBS VM builds
 License:GPL-2.0
 Group:  SLES
-Version:4.7.3
+Version:4.7.4
 %if 0%{?is_kotd}
-Release:.g7ad9c1d
+Release:.g6a5bbb1
 %else
 Release:0
 %endif

++ kernel-obs-qa.spec ++
--- /var/tmp/diff_new_pack.zUjGvh/_old  2016-09-20 13:19:38.0 +0200
+++ /var/tmp/diff_new_pack.zUjGvh/_new  2016-09-20 13:19:38.0 +0200
@@ -17,7 +17,7 @@
 # needsrootforbuild
 
 
-%define patchversion 4.7.3
+%define patchversion 4.7.4
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -36,9 +36,9 @@
 Summary:Basic QA tests for the kernel
 License:GPL-2.0
 Group:  SLES
-Version:4.7.3
+Version:4.7.4
 %if 0%{?is_kotd}
-Release:.g7ad9c1d
+Release:.g6a5bbb1
 %else
 Release:0
 %endif

++ kernel-pae.spec ++
--- /var/tmp/diff_new_pack.zUjGvh/_old  2016-09-20 13:19:38.0 +0200
+++ /var/tmp/di

commit virtualbox for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory 
checked in at 2016-09-20 13:18:46

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


Package is "virtualbox"

Changes:

--- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes2016-09-16 
10:59:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes   
2016-09-20 13:18:49.0 +0200
@@ -1,0 +2,37 @@
+Mon Sep 12 22:25:42 UTC 2016 - larry.fin...@lwfinger.net
+
+- Remove file "fix_removal_of_DEFINE_PCI_DEVICE_TABLE" - fixed upstream.
+- Version bump to 5.1.6 (released 2016-09-12 by Oracle)
+
+This is a maintenance release. The following items were fixed and/or added:
+
+GUI: fixed issue with opening '.vbox' files and it's aliases
+GUI: keyboard grabbing fixes (bugs #15771 and #15745)
+GUI: fix for passing through Ctrl + mouse-click (Mac OS X hosts only; bug 
#15714)
+GUI: fixed automatic deletion of extension pack files (bugs #11352 and 
#14742)
+USB: fixed showing unknown device instead of the manufacturer or product 
description under certain circumstances (5.1.0 regression; bug #15764)
+XHCI: another fix for a hanging guest under certain conditions as result 
of the fix for bug #15747, this time for Windows 7 guests
+Serial: fixed high CPU usage with certain USB to serial converters on 
Linux hosts (bug #7796)
+Storage: fixed attaching stream optimized VMDK images (bug #14764)
+Storage: reject image variants which are unsupported by the backend (bug 
#7227)
+Storage: fixed loading saved states created with VirtualBox 5.0.10 and 
older when using a SCSI controller (bug #15865)
+Storage: fixed broken NVMe emulation if the host I/O cache setting is 
enabled
+Storage: fixed using multiple NVMe controllers if ICH9 is used
+NVMe: fixed a crash during reset which could happen under certain 
circumstances
+Audio: fixed microphone input (5.1.2 regression; bugs #14386 and #15802)
+Audio: fixed crashes under certain conditions (5.1.0 regression; bug 
#15887 and others)
+Audio: fixed recording with the ALSA backend (5.1 regression)
+Audio: fixed stream access mode with OSS backend (5.1 regression, thanks 
to Jung-uk Kim)
+E1000: do also return masked bits when reading the ICR register, this 
fixes booting from iPXE (5.1.2 regression; bug #15846)
+BIOS: fixed 4bpp scanline calculation (bug #15787)
+API: relax the check for the version attribute in OVF/OVA appliances (bug 
#15856)
+Windows hosts: fixed crashes when terminating the VM selector or other 
VBox COM clients (bug #15726 and others)
+Linux Installer: fixed path to the documentation in .rpm packages (5.1.0 
regression)
+Linux Installer: fixed the vboxdrv.sh script to prevent an SELinux 
complaint (bug #15816)
+Linux hosts: don't use 32-bit legacy capabilities
+Linux Additions: Linux 4.8 fix for the kernel display driver (bugs #15890 
and #15896)
+Linux Additions: don't load the kernel modules provided by the Linux 
distribution but load the kernel modules from the official Guest Additions 
package instead (bug #15324)
+Linux Additions: fix dynamic resizing problems in recent Linux guests (bug 
#15875)
+User Manual: fixed error in the VBoxManage chapter for the getextradata 
enumerate example (bug #15862) 
+
+---

Old:

  VirtualBox-5.1.4-patched.tar.bz2
  fix_removal_of_DEFINE_PCI_DEVICE_TABLE

New:

  VirtualBox-5.1.6-patched.tar.bz2



Other differences:
--
++ virtualbox.spec ++
--- /var/tmp/diff_new_pack.H0B8fE/_old  2016-09-20 13:18:55.0 +0200
+++ /var/tmp/diff_new_pack.H0B8fE/_new  2016-09-20 13:18:55.0 +0200
@@ -19,7 +19,7 @@
 %define _vbox_instdir  %{_libexecdir}/virtualbox
 %define _udevrulesdir %{_libexecdir}/udev/rules.d
 Name:   virtualbox
-Version:5.1.4
+Version:5.1.6
 Release:0
 Summary:VirtualBox is an Emulator
 License:GPL-2.0+
@@ -86,8 +86,6 @@
 Patch111:   vbox_prevent_wrong_SONAME.patch
 # Fix change in kernel API for ttm_bo_move_memcpy()
 Patch112:   modify_for_4_8_bo_move.patch
-# Fix source for removal of DEFINE_PCI_DEVICE_TABLE macro
-Patch113:   fix_removal_of_DEFINE_PCI_DEVICE_TABLE
 #
 BuildRequires:  LibVNCServer-devel
 BuildRequires:  SDL-devel
@@ -321,7 +319,6 @@
 %patch109 -p1
 %patch111 -p1
 %patch112 -p1
-%patch113 -p1
 
 #copy user manual
 cp %{SOURCE1} UserManual.pdf

++ UserManual.pdf ++
(binary differes)

++ VirtualBox-5.1.4-patched.tar.bz2 -> VirtualBox-5.1.6-patched.tar.bz2 
++
/work/SRC/openSUSE:Factory/virtu

commit php5 for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package php5 for openSUSE:Factory checked in 
at 2016-09-20 13:18:07

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


Package is "php5"

Changes:

--- /work/SRC/openSUSE:Factory/php5/php5.changes2016-08-25 
09:52:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.php5.new/php5.changes   2016-09-20 
13:18:08.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep 16 07:15:37 UTC 2016 - pgaj...@suse.com
+
+- updated to 5.6.26: Several security bugs were fixed in this 
+  release.
+
+---

Old:

  php-5.6.25.tar.xz
  php-5.6.25.tar.xz.asc

New:

  php-5.6.26.tar.xz
  php-5.6.26.tar.xz.asc



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.K1UTom/_old  2016-09-20 13:18:12.0 +0200
+++ /var/tmp/diff_new_pack.K1UTom/_new  2016-09-20 13:18:12.0 +0200
@@ -46,7 +46,7 @@
 %define need_libxml2_hack %(if [ -e %{_includedir}/libxml/parser.h ]; then if 
grep -q XML_PARSE_OLDSAX %{_includedir}/libxml/parser.h; then echo 1; else echo 
0; fi; else echo 0; fi)
 
 Name:   php5
-Version:5.6.25
+Version:5.6.26
 Release:0
 Summary:PHP5 Core Files
 License:PHP-3.01
@@ -1028,7 +1028,7 @@
 %patch12
 %patch13
 %patch14
-%patch16
+%patch16 -p1
 %patch17 -p1
 %patch18 -p1
 %patch19

++ php-5.6.25.tar.xz -> php-5.6.26.tar.xz ++
/work/SRC/openSUSE:Factory/php5/php-5.6.25.tar.xz 
/work/SRC/openSUSE:Factory/.php5.new/php-5.6.26.tar.xz differ: char 27, line 1

++ php5-format-string-issues.patch ++
--- /var/tmp/diff_new_pack.K1UTom/_old  2016-09-20 13:18:12.0 +0200
+++ /var/tmp/diff_new_pack.K1UTom/_new  2016-09-20 13:18:12.0 +0200
@@ -1,7 +1,7 @@
-Index: main/snprintf.h
+Index: php-5.6.26/main/snprintf.h
 ===
 main/snprintf.h.orig
-+++ main/snprintf.h
+--- php-5.6.26.orig/main/snprintf.h2016-09-15 23:02:50.0 +0200
 php-5.6.26/main/snprintf.h 2016-09-16 09:16:17.357620879 +0200
 @@ -83,7 +83,7 @@ PHPAPI int ap_php_vslprintf(char *buf, s
  PHPAPI int ap_php_snprintf(char *, size_t, const char *, ...);
  PHPAPI int ap_php_vsnprintf(char *, size_t, const char *, va_list ap);
@@ -11,11 +11,11 @@
  PHPAPI int php_sprintf (char* s, const char* format, ...) 
PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
  PHPAPI char * php_gcvt(double value, int ndigit, char dec_point, char 
exponent, char *buf);
  PHPAPI char * php_conv_fp(register char format, register double num,
-Index: main/main.c
+Index: php-5.6.26/main/main.c
 ===
 main/main.c.orig
-+++ main/main.c
-@@ -935,7 +935,7 @@ PHPAPI void php_html_puts(const char *st
+--- php-5.6.26.orig/main/main.c2016-09-15 23:02:50.0 +0200
 php-5.6.26/main/main.c 2016-09-16 09:16:17.361620934 +0200
+@@ -1026,7 +1026,7 @@ PHPAPI void php_html_puts(const char *st
  
  /* {{{ php_error_cb
   extended error handling function */
@@ -24,18 +24,19 @@
  {
char *buffer;
int buffer_len, display;
-Index: Zend/zend_alloc.h
+Index: php-5.6.26/Zend/zend_alloc.h
 ===
 Zend/zend_alloc.h.orig
-+++ Zend/zend_alloc.h
-@@ -55,13 +55,13 @@ BEGIN_EXTERN_C()
+--- php-5.6.26.orig/Zend/zend_alloc.h  2016-09-15 23:02:50.0 +0200
 php-5.6.26/Zend/zend_alloc.h   2016-09-16 09:22:16.678535960 +0200
+@@ -55,14 +55,14 @@ BEGIN_EXTERN_C()
  ZEND_API char *zend_strndup(const char *s, unsigned int length) 
ZEND_ATTRIBUTE_MALLOC;
  
  ZEND_API void *_emalloc(size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) 
ZEND_ATTRIBUTE_MALLOC ZEND_ATTRIBUTE_ALLOC_SIZE(1);
 -ZEND_API void *_safe_emalloc(size_t nmemb, size_t size, size_t offset 
ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) ZEND_ATTRIBUTE_MALLOC;
--ZEND_API void *_safe_malloc(size_t nmemb, size_t size, size_t offset) 
ZEND_ATTRIBUTE_MALLOC;
 +ZEND_API void *_safe_emalloc(size_t nmemb, size_t size, size_t offset 
ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) ZEND_ATTRIBUTE_MALLOC 
ZEND_ATTR_ALLOC_SIZE2(1,2);
-+ZEND_API void *_safe_malloc(size_t nmemb, size_t size, size_t offset) 
ZEND_ATTR_ALLOC_SIZE2(1,2);
+ ZEND_API void *_safe_emalloc_string(size_t nmemb, size_t size, size_t offset 
ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) ZEND_ATTRIBUTE_MALLOC;
+-ZEND_API void *_safe_malloc(size_t nmemb, size_t size, size_t offset) 
ZEND_ATTRIBUTE_MALLOC;
++ZEND_API void *_safe_malloc(size_t nmemb, size_t size, size_t offset) 
ZEND_ATTRIBUTE_MALLOC ZEND_ATTR_ALLOC_SIZE2(1,2);
  ZEND_API void _efree(void *ptr ZEND_FILE_LINE_DC ZE

commit yast2-ruby-bindings for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-ruby-bindings for 
openSUSE:Factory checked in at 2016-09-20 13:18:26

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


Package is "yast2-ruby-bindings"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes  
2016-07-07 15:09:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new/yast2-ruby-bindings.changes 
2016-09-20 13:18:28.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 16 10:28:16 UTC 2016 - mvid...@suse.com
+
+- Rescue "invalid byte sequence in UTF-8", with a custom message
+  (bsc#992821).
+- 3.1.51
+
+---

Old:

  yast2-ruby-bindings-3.1.50.tar.bz2

New:

  yast2-ruby-bindings-3.1.51.tar.bz2



Other differences:
--
++ yast2-ruby-bindings.spec ++
--- /var/tmp/diff_new_pack.bm8a5k/_old  2016-09-20 13:18:29.0 +0200
+++ /var/tmp/diff_new_pack.bm8a5k/_new  2016-09-20 13:18:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ruby-bindings
-Version:3.1.50
+Version:3.1.51
 Release:0
 Url:https://github.com/yast/yast-ruby-bindings
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ruby-bindings-3.1.50.tar.bz2 -> yast2-ruby-bindings-3.1.51.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-3.1.50/.rubocop.yml 
new/yast2-ruby-bindings-3.1.51/.rubocop.yml
--- old/yast2-ruby-bindings-3.1.50/.rubocop.yml 2016-06-30 14:15:47.0 
+0200
+++ new/yast2-ruby-bindings-3.1.51/.rubocop.yml 2016-09-16 14:02:43.0 
+0200
@@ -24,6 +24,10 @@
 Metrics/ClassLength:
   Max: 107
 
+# Legacy Ops module is long
+Metrics/ModuleLength:
+  Max: 553
+
 # Offense count: 20
 Metrics/CyclomaticComplexity:
   Max: 17
@@ -72,3 +76,7 @@
 Lint/Debugger:
   Exclude:
 - src/ruby/yast/debugger.rb
+
+# alias method is more convenient method for method aliasing
+Style/Alias:
+  EnforcedStyle: prefer_alias_method
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-3.1.50/.travis.yml 
new/yast2-ruby-bindings-3.1.51/.travis.yml
--- old/yast2-ruby-bindings-3.1.50/.travis.yml  2016-06-30 14:15:47.0 
+0200
+++ new/yast2-ruby-bindings-3.1.51/.travis.yml  2016-09-16 14:02:43.0 
+0200
@@ -5,7 +5,7 @@
 # disable rvm, use system Ruby
 - rvm reset
 - wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
-- sh ./travis_setup.sh -p "docbook-xsl xsltproc yast2-core-dev 
yast2-devtools libxcrypt-dev cmake yast2-ycp-ui-bindings-dev ruby2.1 
ruby2.1-dev rake ruby-fast-gettext language-pack-en language-pack-cs screen" -g 
"yast-rake rspec:3.3.0 rubocop:0.29.1"
+- sh ./travis_setup.sh -p "docbook-xsl xsltproc yast2-core-dev 
yast2-devtools libxcrypt-dev cmake yast2-ycp-ui-bindings-dev ruby2.1 
ruby2.1-dev rake ruby-fast-gettext language-pack-en language-pack-cs screen" -g 
"yast-rake rspec:3.3.0 rubocop:0.41.2"
 script:
 - rake check:syntax
 - rubocop
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-3.1.50/CONTRIBUTING.md 
new/yast2-ruby-bindings-3.1.51/CONTRIBUTING.md
--- old/yast2-ruby-bindings-3.1.50/CONTRIBUTING.md  2016-06-30 
14:15:47.0 +0200
+++ new/yast2-ruby-bindings-3.1.51/CONTRIBUTING.md  2016-09-16 
14:02:43.0 +0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by buil

commit texlive for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package texlive for openSUSE:Factory checked 
in at 2016-09-20 13:17:44

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


Package is "texlive"

Changes:

--- /work/SRC/openSUSE:Factory/texlive/texlive.changes  2016-08-22 
10:00:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.texlive.new/texlive.changes 2016-09-20 
13:17:45.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 23 14:14:49 UTC 2016 - bwiedem...@suse.com
+
+- perl-biber requires perl(Class::Accessor) and perl(Data::Uniqid)
+  at runtime (boo#995076)
+
+---



Other differences:
--
++ texlive.spec ++
--- /var/tmp/diff_new_pack.HYsEus/_old  2016-09-20 13:17:48.0 +0200
+++ /var/tmp/diff_new_pack.HYsEus/_new  2016-09-20 13:17:48.0 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2016
 %define texlive_previous 2015
 %define texlive_release  20160523
-%define texlive_noarch   110
+%define texlive_noarch   111
 %define texlive_source   texlive-20160523-source
 
 %define __perl_requires%{nil}
@@ -3106,8 +3106,10 @@
 Requires:   perl(Business::ISBN)
 Requires:   perl(Business::ISMN)
 Requires:   perl(Business::ISSN)
+Requires:   perl(Class::Accessor)
 Requires:   perl(Data::Compare)
 Requires:   perl(Data::Dump)
+Requires:   perl(Data::Uniqid)
 Requires:   perl(Date::Simple)
 Requires:   perl(Encode::EUCJPASCII)
 Requires:   perl(Encode::HanExtra)