commit pix for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package pix for openSUSE:Factory checked in 
at 2017-06-13 16:09:46

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


Package is "pix"

Tue Jun 13 16:09:46 2017 rev:9 rq:503271 version:1.4.4

Changes:

--- /work/SRC/openSUSE:Factory/pix/pix.changes  2017-05-27 13:18:57.246508173 
+0200
+++ /work/SRC/openSUSE:Factory/.pix.new/pix.changes 2017-06-13 
16:09:50.268027760 +0200
@@ -1,0 +2,8 @@
+Mon Jun 12 19:52:24 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 1.4.4 (changes since 1.4.2):
+  * Add support for image/x-fuji-raf raw files.
+  * RAW images: Apply rotation to satisfy EXIF orientation.
+- Require dcraw.
+
+---

Old:

  pix-1.4.2.tar.gz

New:

  pix-1.4.4.tar.gz



Other differences:
--
++ pix.spec ++
--- /var/tmp/diff_new_pack.D4rxMB/_old  2017-06-13 16:09:51.099910522 +0200
+++ /var/tmp/diff_new_pack.D4rxMB/_new  2017-06-13 16:09:51.099910522 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   pix
-Version:1.4.2
+Version:1.4.4
 Release:0
 Summary:Image viewer and browser utility
 License:GPL-2.0+
@@ -25,6 +25,7 @@
 Url:https://github.com/linuxmint/pix
 Source: 
https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  bison
+BuildRequires:  dcraw
 BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  gcc-c++

++ pix-1.4.2.tar.gz -> pix-1.4.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.4.2/configure.ac new/pix-1.4.4/configure.ac
--- old/pix-1.4.2/configure.ac  2017-05-23 14:52:17.0 +0200
+++ new/pix-1.4.4/configure.ac  2017-06-10 16:37:23.0 +0200
@@ -1,6 +1,6 @@
 m4_define([pix_major_version], [1])
 m4_define([pix_minor_version], [4])
-m4_define([pix_micro_version], [2])
+m4_define([pix_micro_version], [4])
 m4_define([pix_version],
   [pix_major_version.pix_minor_version.pix_micro_version])
 m4_define([pix_api_version],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.4.2/debian/changelog 
new/pix-1.4.4/debian/changelog
--- old/pix-1.4.2/debian/changelog  2017-05-23 14:52:17.0 +0200
+++ new/pix-1.4.4/debian/changelog  2017-06-10 16:37:23.0 +0200
@@ -1,3 +1,19 @@
+pix (1.4.4) sonya; urgency=medium
+
+  * RAW images: Apply rotation to satisfy EXIF orientation
+
+ -- Clement Lefebvre   Sat, 10 Jun 2017 15:36:54 +0100
+
+pix (1.4.3) sonya; urgency=medium
+
+  [ leigh123linux ]
+  * added support for image/x-fuji-raf raw files (#29)
+
+  [ Clement Lefebvre ]
+  * Packaging: Depend on dcraw
+
+ -- Clement Lefebvre   Fri, 09 Jun 2017 18:16:01 +0100
+
 pix (1.4.2) sonya; urgency=medium
 
   * Grid view: Activate item when pressing Space
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.4.2/debian/control new/pix-1.4.4/debian/control
--- old/pix-1.4.2/debian/control2017-05-23 14:52:17.0 +0200
+++ new/pix-1.4.4/debian/control2017-06-10 16:37:23.0 +0200
@@ -45,6 +45,7 @@
  ${shlibs:Depends}
  , ${misc:Depends}
  , pix-data (= ${source:Version})
+ , dcraw
  , gsettings-desktop-schemas
  , xapps-common (>= 1.0.0)
 Recommends: gvfs-bin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.4.2/extensions/raw_files/main.c 
new/pix-1.4.4/extensions/raw_files/main.c
--- old/pix-1.4.2/extensions/raw_files/main.c   2017-05-23 14:52:17.0 
+0200
+++ new/pix-1.4.4/extensions/raw_files/main.c   2017-06-10 16:37:23.0 
+0200
@@ -421,6 +421,16 @@
 
pixbuf = gdk_pixbuf_new_from_file (cache_file, NULL);
 
+   if (pixbuf != NULL) {
+   GdkPixbuf *rotated;
+
+   rotated = gdk_pixbuf_apply_embedded_orientation (pixbuf);
+   if (rotated != NULL) {
+   g_object_unref (pixbuf);
+   pixbuf = rotated;
+   }
+   }
+
/* Thumbnail files are already cached, so delete the conversion cache 
copies */
if (is_thumbnail) {
GFile *file;
@@ -461,6 +471,7 @@
 "image/x-olympus-orf",
 "image/x-pentax-pef",
 "image/x-sony-arw",
+"image/x-fuji-raf",
 NULL);
 }
 




commit golang-github-jteeuwen-go-bindata for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package golang-github-jteeuwen-go-bindata 
for openSUSE:Factory checked in at 2017-06-13 16:10:06

Comparing /work/SRC/openSUSE:Factory/golang-github-jteeuwen-go-bindata (Old)
 and  /work/SRC/openSUSE:Factory/.golang-github-jteeuwen-go-bindata.new 
(New)


Package is "golang-github-jteeuwen-go-bindata"

Tue Jun 13 16:10:06 2017 rev:3 rq:503334 version:3.0.7+git20151023.72.a0ff256

Changes:

--- 
/work/SRC/openSUSE:Factory/golang-github-jteeuwen-go-bindata/golang-github-jteeuwen-go-bindata.changes
  2017-05-17 10:55:10.375916426 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-github-jteeuwen-go-bindata.new/golang-github-jteeuwen-go-bindata.changes
 2017-06-13 16:10:07.28962 +0200
@@ -1,0 +2,25 @@
+Mon Jun 12 17:06:10 UTC 2017 - jmassaguer...@suse.com
+
+- make it compatible with old version 14 of golang-packaging where the
+  macro gofilelist was called go_filelist. 
+
+  This is so we can use this package with go 1.6 and golang-packaging
+  14.9.* in order to fix bsc#1039663.
+---
+Mon Jun 12 15:03:46 UTC 2017 - jmassaguer...@suse.com
+
+- use commit date in version otherwise this package was seen as
+  a downgrade from a previous package
+
+  see https://build.opensuse.org/request/show/503052 
+
+---
+Fri Jun  2 11:50:04 UTC 2017 - jmassaguer...@suse.com
+
+- change the way we "calculate" the version so that it is always
+  incremental. Now we are using the date, but that can conflict if
+  2 commits are done in the same day and then zypper wouldn't know
+  which is the newest one. Instead us the offset from the previous
+  tag, that is, the number of commits 
+
+---

Old:

  go-bindata-3.0.7+git20151023.a0ff2567cfb7.tar.xz

New:

  go-bindata-v3.0.7+git20151023.72.a0ff256.tar.xz



Other differences:
--
++ golang-github-jteeuwen-go-bindata.spec ++
--- /var/tmp/diff_new_pack.3Pduxo/_old  2017-06-13 16:10:08.073518413 +0200
+++ /var/tmp/diff_new_pack.3Pduxo/_new  2017-06-13 16:10:08.073518413 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   golang-github-jteeuwen-go-bindata
-Version:3.0.7+git20151023.a0ff2567cfb7
+Version:3.0.7+git20151023.72.a0ff256
 Release:0
 Summary:A small utility which generates Go code from any file
 License:CC0-1.0
 Group:  Development/Languages/Golang
 Url:https://github.com/jteeuwen/go-bindata
-Source: go-bindata-%{version}.tar.xz
+Source: go-bindata-v%{version}.tar.xz
 BuildRequires:  golang-packaging
 BuildRequires:  xz
 Provides:   go-bindata = %{version}
@@ -38,7 +38,7 @@
 It comes with a command line tool in the go-bindata sub directory. This tool 
offers a set of command line options, used to customize the output being 
generated.
 
 %prep
-%setup -q -n go-bindata-%{version}
+%setup -q -n go-bindata-v%{version}
 
 %build
 %{goprep} github.com/jteeuwen/go-bindata
@@ -46,7 +46,11 @@
 
 %install
 %{goinstall}
-%{gofilelist}
+%if 0%{?go_filelist:1} > 0
+ %{go_filelist}
+%else
+ %{gofilelist}
+%endif
 
 %check
 %{gotest} github.com/jteeuwen/go-bindata

++ _service ++
--- /var/tmp/diff_new_pack.3Pduxo/_old  2017-06-13 16:10:08.105513904 +0200
+++ /var/tmp/diff_new_pack.3Pduxo/_new  2017-06-13 16:10:08.105513904 +0200
@@ -3,7 +3,7 @@
 https://github.com/jteeuwen/go-bindata
 git
 .git
-3.0.7+git%cd.%h
+@PARENT_TAG@+git%cd.@TAG_OFFSET@.%h
 master
 enable
   




commit blueberry for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package blueberry for openSUSE:Factory 
checked in at 2017-06-13 16:09:53

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


Package is "blueberry"

Tue Jun 13 16:09:53 2017 rev:20 rq:503279 version:1.1.13

Changes:

--- /work/SRC/openSUSE:Factory/blueberry/blueberry.changes  2017-05-27 
13:18:24.279168900 +0200
+++ /work/SRC/openSUSE:Factory/.blueberry.new/blueberry.changes 2017-06-13 
16:09:59.682700940 +0200
@@ -1,0 +2,7 @@
+Mon Jun 12 19:52:24 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 1.1.13:
+  * Fix how autostart of the tray icon is handled.
+  * Add exception handling around bt-adapter -i.
+
+---

Old:

  blueberry-1.1.12.tar.gz

New:

  blueberry-1.1.13.tar.gz



Other differences:
--
++ blueberry.spec ++
--- /var/tmp/diff_new_pack.HUosYg/_old  2017-06-13 16:10:01.686418555 +0200
+++ /var/tmp/diff_new_pack.HUosYg/_new  2017-06-13 16:10:01.694417427 +0200
@@ -18,7 +18,7 @@
 
 %define __requires_exclude typelib\\((St)\\)
 Name:   blueberry
-Version:1.1.12
+Version:1.1.13
 Release:0
 Summary:A configuration tool for Bluetooth
 License:GPL-3.0+

++ blueberry-1.1.12.tar.gz -> blueberry-1.1.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blueberry-1.1.12/debian/changelog 
new/blueberry-1.1.13/debian/changelog
--- old/blueberry-1.1.12/debian/changelog   2017-05-23 15:14:00.0 
+0200
+++ new/blueberry-1.1.13/debian/changelog   2017-06-12 17:56:55.0 
+0200
@@ -1,3 +1,13 @@
+blueberry (1.1.13) sonya; urgency=medium
+
+  [ JosephMcc ]
+  * Fix how autostart of the tray icon is handled (#37)
+
+  [ Clement Lefebvre ]
+  * Add exception handling around bt-adapter -i
+
+ -- Clement Lefebvre   Mon, 12 Jun 2017 16:56:30 +0100
+
 blueberry (1.1.12) sonya; urgency=medium
 
   * l10n: Update translations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/blueberry-1.1.12/etc/xdg/autostart/blueberry-tray.desktop 
new/blueberry-1.1.13/etc/xdg/autostart/blueberry-tray.desktop
--- old/blueberry-1.1.12/etc/xdg/autostart/blueberry-tray.desktop   
2017-05-23 15:14:00.0 +0200
+++ new/blueberry-1.1.13/etc/xdg/autostart/blueberry-tray.desktop   
2017-06-12 17:56:55.0 +0200
@@ -3,6 +3,7 @@
 Name=blueberry
 Comment=Blueberry tray icon
 Exec=blueberry-tray
+AutostartCondition=GSettings org.blueberry tray-enabled
 Terminal=false
 Type=Application
 Categories=GTK;GNOME;Settings;X-GNOME-NetworkSettings;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blueberry-1.1.12/usr/lib/blueberry/blueberry.py 
new/blueberry-1.1.13/usr/lib/blueberry/blueberry.py
--- old/blueberry-1.1.12/usr/lib/blueberry/blueberry.py 2017-05-23 
15:14:00.0 +0200
+++ new/blueberry-1.1.13/usr/lib/blueberry/blueberry.py 2017-06-12 
17:56:55.0 +0200
@@ -151,7 +151,9 @@
 
 section = page.add_section(_("Bluetooth settings"))
 self.adapter_name_entry = Gtk.Entry()
-self.adapter_name_entry.set_text(self.get_default_adapter_name())
+adapter_name = self.get_default_adapter_name()
+if adapter_name is not None:
+self.adapter_name_entry.set_text(adapter_name)
 self.adapter_name_entry.connect("changed", 
self.on_adapter_name_changed)
 row = SettingsRow(Gtk.Label(_("Name")), self.adapter_name_entry)
 row.set_tooltip_text(_("This is the Bluetooth name of your computer"))
@@ -169,9 +171,7 @@
 self.tray_switch.set_active(self.settings.get_boolean("tray-enabled"))
 self.tray_switch.connect("notify::active", self.on_tray_switch_toggled)
 self.settings.connect("changed", self.on_settings_changed)
-if self.de != "Cinnamon":
-# In Cinnamon we're using an applet instead
-section.add_row(SettingsRow(Gtk.Label(_("Show a tray icon")), 
self.tray_switch))
+section.add_row(SettingsRow(Gtk.Label(_("Show a tray icon")), 
self.tray_switch))
 
 self.window.add(self.main_box)
 
@@ -228,12 +228,15 @@
 
 def get_default_adapter_name(self):
 name = None
-output = subprocess.check_output(["bt-adapter", "-i"]).strip()
-for line in output.split("\n"):
-line = line.strip()
-if line.startswith("Alias: "):
-name = line.replace("Alias: ", "").replace(" [rw]", 
"").replace(" [ro]", "")
-break
+try:
+output = 

commit gnome-todo for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package gnome-todo for openSUSE:Factory 
checked in at 2017-06-13 16:09:41

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


Package is "gnome-todo"

Tue Jun 13 16:09:41 2017 rev:9 rq:503266 version:3.24.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-todo/gnome-todo.changes2017-06-01 
16:32:45.798876945 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-todo.new/gnome-todo.changes   
2017-06-13 16:09:46.256593095 +0200
@@ -1,0 +2,10 @@
+Fri Jun  9 08:07:30 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.2:
+  + Enable Todo.txt plugin by default.
+  + Vast improvements to Todo.txt plugin.
+  + Set default application icon.
+  + Many fixes to the Scheduled panel.
+  + Updated translations.
+
+---

Old:

  gnome-todo-3.24.1.tar.xz

New:

  gnome-todo-3.24.2.tar.xz



Other differences:
--
++ gnome-todo.spec ++
--- /var/tmp/diff_new_pack.tU2ku9/_old  2017-06-13 16:09:46.928498403 +0200
+++ /var/tmp/diff_new_pack.tU2ku9/_new  2017-06-13 16:09:46.932497839 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-todo
-Version:3.24.1
+Version:3.24.2
 Release:0
 Summary:Personal task manager for GNOME
 License:GPL-3.0+
@@ -97,6 +97,7 @@
 %{_datadir}/dbus-1/services/org.gnome.Todo.service
 %{_datadir}/glib-2.0/schemas/org.gnome.todo.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.todo.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.todo.txt.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.todo.background.gschema.xml
 %dir %{_datadir}/%{name}
 %{_datadir}/gnome-todo/org.gnome.Todo.Autostart.desktop

++ gnome-todo-3.24.1.tar.xz -> gnome-todo-3.24.2.tar.xz ++
 3770 lines of diff (skipped)




commit latexila for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package latexila for openSUSE:Factory 
checked in at 2017-06-13 16:09:35

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


Package is "latexila"

Tue Jun 13 16:09:35 2017 rev:27 rq:503261 version:3.24.1

Changes:

--- /work/SRC/openSUSE:Factory/latexila/latexila.changes2017-03-22 
23:08:31.138753145 +0100
+++ /work/SRC/openSUSE:Factory/.latexila.new/latexila.changes   2017-06-13 
16:09:40.797362469 +0200
@@ -1,0 +2,9 @@
+Sun Jun 11 12:02:34 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.1:
+  + Create app menu only if the desktop prefers one, to avoid a
+double menubar on e.g. Xfce.
+  + Other small code improvements.
+  + Updated translations.
+
+---

Old:

  latexila-3.24.0.tar.xz

New:

  latexila-3.24.1.tar.xz



Other differences:
--
++ latexila.spec ++
--- /var/tmp/diff_new_pack.vQTdU5/_old  2017-06-13 16:09:41.721232267 +0200
+++ /var/tmp/diff_new_pack.vQTdU5/_new  2017-06-13 16:09:41.725231704 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   latexila
-Version:3.24.0
+Version:3.24.1
 Release:0
 Summary:Integrated LaTeX Environment for the GNOME desktop
 License:GPL-3.0+

++ latexila-3.24.0.tar.xz -> latexila-3.24.1.tar.xz ++
 14164 lines of diff (skipped)




commit xournal for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package xournal for openSUSE:Factory checked 
in at 2017-06-13 16:09:22

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


Package is "xournal"

Tue Jun 13 16:09:22 2017 rev:29 rq:503229 version:0.4.8

Changes:

--- /work/SRC/openSUSE:Factory/xournal/xournal.changes  2017-01-09 
11:53:28.773317642 +0100
+++ /work/SRC/openSUSE:Factory/.xournal.new/xournal.changes 2017-06-13 
16:09:28.115149782 +0200
@@ -1,0 +2,5 @@
+Mon Jun 12 15:52:41 UTC 2017 - r...@fthiessen.de
+
+- Fixed build with Tumbleweed by adding xournal-decl-spec.patch
+
+---

New:

  xournal-decl-spec.patch



Other differences:
--
++ xournal.spec ++
--- /var/tmp/diff_new_pack.6EZUm6/_old  2017-06-13 16:09:29.011023526 +0200
+++ /var/tmp/diff_new_pack.6EZUm6/_new  2017-06-13 16:09:29.011023526 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xournal
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,6 +31,8 @@
 Patch2: %{name}-Improve-window-title.patch
 # PATCH-FIX-UPSTREAM xournal-appdata.patch badshah...@gmail.com -- Add, 
translate and install appdata file
 Patch3: xournal-appdata.patch
+# PATCH-FIX-UPSTREAM xournal-decl-spec.patch -- 
https://sourceforge.net/p/xournal/patches/85/
+Patch4: xournal-decl-spec.patch
 BuildRequires:  automake >= 1.11.2
 BuildRequires:  fdupes
 BuildRequires:  gtk2-devel
@@ -55,6 +57,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 autoreconf -fi

++ xournal-decl-spec.patch ++
diff -Nur xournal-0.4.8/src/xo-shapes.c new/src/xo-shapes.c
--- xournal-0.4.8/src/xo-shapes.c   2014-06-15 22:21:05.0 +0200
+++ new/src/xo-shapes.c 2017-06-12 17:39:26.638290098 +0200
@@ -25,6 +25,7 @@
 #include "xournal.h"
 #include "xo-shapes.h"
 #include "xo-paint.h"
+#include "xo-misc.h"
 
 typedef struct Inertia {
   double mass, sx, sy, sxx, sxy, syy;



commit docker-distribution for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package docker-distribution for 
openSUSE:Factory checked in at 2017-06-13 16:10:11

Comparing /work/SRC/openSUSE:Factory/docker-distribution (Old)
 and  /work/SRC/openSUSE:Factory/.docker-distribution.new (New)


Package is "docker-distribution"

Tue Jun 13 16:10:11 2017 rev:13 rq:503350 version:2.6.1

Changes:

--- /work/SRC/openSUSE:Factory/docker-distribution/docker-distribution.changes  
2017-04-14 13:41:16.449261605 +0200
+++ 
/work/SRC/openSUSE:Factory/.docker-distribution.new/docker-distribution.changes 
2017-06-13 16:10:15.724440159 +0200
@@ -1,0 +2,5 @@
+Mon Jun 12 21:51:23 UTC 2017 - abergm...@suse.com
+
+- Add SuSEfirewall2 service file for TCP port 5000.
+
+---

New:

  registry.SuSEfirewall2



Other differences:
--
++ docker-distribution.spec ++
--- /var/tmp/diff_new_pack.6nWKHg/_old  2017-06-13 16:10:17.300218083 +0200
+++ /var/tmp/diff_new_pack.6nWKHg/_new  2017-06-13 16:10:17.304217519 +0200
@@ -26,7 +26,8 @@
 Source0:distribution-%{version}.tar.xz
 Source1:registry-configuration.yml
 Source2:registry.service
-Source3:README-registry.SUSE
+Source3:registry.SuSEfirewall2
+Source4:README-registry.SUSE
 BuildRequires:  go >= 1.7.0
 BuildRequires:  make
 BuildRequires:  systemd-rpm-macros
@@ -55,7 +56,7 @@
 
 %prep
 %setup -q -n distribution-%{version}
-cp %{SOURCE3} .
+cp %{SOURCE4} .
 
 %build
 export GOPATH=$PWD/go
@@ -79,6 +80,11 @@
 install -D  -m 0644  %{SOURCE2} %{buildroot}%{_unitdir}/registry.service
 ln -sv %{_sbindir}/service %{buildroot}%{_sbindir}/rcregistry
 
+#
+# install SuSEfirewall2 rules
+#
+install -Dpm 0644  %{SOURCE3} 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/registry
+
 %pre registry
 %service_add_pre registry.service
 
@@ -97,6 +103,7 @@
 %{_bindir}/registry
 %{_sbindir}/rcregistry
 %{_unitdir}/registry.service
+%config(noreplace) %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/registry
 %config %{_sysconfdir}/registry
 %config %{_sysconfdir}/registry/config.yml
 %doc LICENSE README.md README-registry.SUSE

++ registry.SuSEfirewall2 ++
## Name: Docker Registry
## Description: Open port for Docker Registry

# space separated list of allowed TCP ports
TCP="5000"



commit python-xapp for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-xapp for openSUSE:Factory 
checked in at 2017-06-13 16:09:49

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


Package is "python-xapp"

Tue Jun 13 16:09:49 2017 rev:2 rq:503276 version:1.0.1

Changes:

--- /work/SRC/openSUSE:Factory/python-xapp/python-xapp.changes  2017-05-09 
18:03:29.597981496 +0200
+++ /work/SRC/openSUSE:Factory/.python-xapp.new/python-xapp.changes 
2017-06-13 16:09:55.723258949 +0200
@@ -1,0 +2,13 @@
+Mon Jun 12 19:52:24 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 1.0.1:
+  * OS: Turn pkexec support into an opt-in and don't set
+DISPLAY/XAUTHORITY.
+  * Add mate-polkit agent support.
+  * run_with_admin_privs: Use pkexec as a last ditch chance.
+  * Support polkit processname under Ubuntu 17.04.
+  * OS: Add is_guest_session() and is_live_session().
+- Add python-xapp-xdgsu.patch: Escalate privileges using xdg-su.
+- Add xdg-utils to requirements for xdg-su.
+
+---

Old:

  python-xapp-1.0.0.tar.gz

New:

  python-xapp-1.0.1.tar.gz
  python-xapp-xdgsu.patch



Other differences:
--
++ python-xapp.spec ++
--- /var/tmp/diff_new_pack.zuSGzy/_old  2017-06-13 16:09:57.562999672 +0200
+++ /var/tmp/diff_new_pack.zuSGzy/_new  2017-06-13 16:09:57.562999672 +0200
@@ -18,16 +18,19 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-xapp
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:Python XApp library
 License:GPL-2.0+
 Group:  Development/Languages/Python
 Url:https://github.com/linuxmint/python-xapp
 Source: 
https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FEATURE-OPENSUSE python-xapp-xdgsu.patch -- Escalate privileges using 
xdg-su.
+Patch0: python-xapp-xdgsu.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  python-rpm-macros
 Requires:   python-psutil
+Requires:   xdg-utils
 BuildArch:  noarch
 
 %description
@@ -38,6 +41,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %python_build
@@ -49,6 +53,6 @@
 %defattr(-,root,root)
 %doc COPYING debian/changelog
 %{python_sitelib}/xapp/
-%{python_sitelib}/python_xapp-%{version}-*.egg-info
+%{python_sitelib}/python_xapp-*.egg-info
 
 %changelog

++ python-xapp-1.0.0.tar.gz -> python-xapp-1.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-xapp-1.0.0/debian/changelog 
new/python-xapp-1.0.1/debian/changelog
--- old/python-xapp-1.0.0/debian/changelog  2017-04-27 11:21:06.0 
+0200
+++ new/python-xapp-1.0.1/debian/changelog  2017-06-09 16:43:51.0 
+0200
@@ -1,3 +1,22 @@
+python-xapp (1.0.1) sonya; urgency=medium
+
+  [ Clement Lefebvre ]
+  * OS: Turn pkexec support into an opt-in and don't set DISPLAY/XAUTHORITY
+
+  [ Sam Burgos ]
+  * added mate-polkit agent support
+
+  [ Michael Webster ]
+  * run_with_admin_privs: use pkexec as a last ditch chance, rather (#3)
+
+  [ David Mohammed ]
+  * support policykit processname under ubuntu 17.04 (#4)
+
+  [ Clement Lefebvre ]
+  * OS: Add is_guest_session() and is_live_session()
+
+ -- Clement Lefebvre   Fri, 09 Jun 2017 15:43:22 +0100
+
 python-xapp (1.0.0) sonya; urgency=medium
 
   * Initial version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-xapp-1.0.0/xapp/os.py 
new/python-xapp-1.0.1/xapp/os.py
--- old/python-xapp-1.0.0/xapp/os.py2017-04-27 11:21:06.0 +0200
+++ new/python-xapp-1.0.1/xapp/os.py2017-06-09 16:43:51.0 +0200
@@ -41,6 +41,23 @@
 def is_desktop_gnome():
 return get_current_desktop() == SESSION_GNOME
 
+def is_live_session():
+is_live_session = False
+if os.path.exists("/proc/cmdline"):
+cmdline = subprocess.check_output("cat /proc/cmdline", shell = 
True).decode("utf-8")
+for keyword in ["boot=casper", "boot=live"]:
+if keyword in cmdline:
+is_live_session = True
+break
+return is_live_session
+
+def is_guest_session():
+home_path = os.path.expanduser("~")
+if "/tmp/guest" in home_path:
+return True
+else:
+return False
+
 ### PROCESS DETECTION
 
 def is_process_running(process_name):
@@ -62,9 +79,11 @@
 if is_desktop_kde() and 
is_process_running("polkit-kde-authentication-agent-1"):
 return True
 if is_desktop_mate() and 
is_process_running("polkit-mate-authentication-agent-1"):
-   return True
+

commit bcm43xx-firmware for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package bcm43xx-firmware for 
openSUSE:Factory checked in at 2017-06-13 16:09:05

Comparing /work/SRC/openSUSE:Factory/bcm43xx-firmware (Old)
 and  /work/SRC/openSUSE:Factory/.bcm43xx-firmware.new (New)


Package is "bcm43xx-firmware"

Tue Jun 13 16:09:05 2017 rev:7 rq:503086 version:20170410

Changes:

--- /work/SRC/openSUSE:Factory/bcm43xx-firmware/bcm43xx-firmware.changes
2017-04-11 12:45:52.188603680 +0200
+++ /work/SRC/openSUSE:Factory/.bcm43xx-firmware.new/bcm43xx-firmware.changes   
2017-06-13 16:09:08.453920650 +0200
@@ -1,0 +2,7 @@
+Mon Jun 12 12:24:22 UTC 2017 - afaer...@suse.de
+
+- Add Supplements for Raspberry Pi 3 (bsc#1041823)
+- Resolve NUL char warning on modprobe for Tumbleweed by properly
+  iterating over zero-separated DT compatible strings
+
+---



Other differences:
--
++ bcm43xx-firmware.spec ++
--- /var/tmp/diff_new_pack.Exe531/_old  2017-06-13 16:09:09.705744230 +0200
+++ /var/tmp/diff_new_pack.Exe531/_new  2017-06-13 16:09:09.709743666 +0200
@@ -49,11 +49,14 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 Requires:   kernel-firmware
+# Raspberry Pi 3 Model B
+Supplements:modalias(sdio:c*v02D0dA9A6*)
 
 %description
 This package provides the firmware files needed for the
 Broadcom (now Cypress) BCM43430 Wifi+Bluetooth chipset
-as well as NVRAM config files for BCM43362 and BCM43430.
+as well as NVRAM config files for BCM43362, BCM43430 and
+further related chipsets.
 
 %prep
 %setup -q -c -T


++ install-brcmfmac.sh ++
--- /var/tmp/diff_new_pack.Exe531/_old  2017-06-13 16:09:09.889718302 +0200
+++ /var/tmp/diff_new_pack.Exe531/_new  2017-06-13 16:09:09.889718302 +0200
@@ -1,27 +1,29 @@
 #!/bin/sh
 
 if [[ -e /sys/firmware/devicetree/base/compatible ]]; then
-  case "$(cat /sys/firmware/devicetree/base/compatible 2>/dev/null)" in
-  *lemaker,bananapro*)
-ln -sf brcmfmac43362-sdio-bananapi-m1+.txt 
/lib/firmware/brcm/brcmfmac43362-sdio.txt
-;;
-  *sinovoip,bpi-m2*)
-ln -sf brcmfmac43362-sdio-bananapi-m2.txt 
/lib/firmware/brcm/brcmfmac43362-sdio.txt
-;;
-  *cubietech,cubietruck*)
-ln -sf brcmfmac43362-sdio-cubietruck.txt 
/lib/firmware/brcm/brcmfmac43362-sdio.txt
-;;
-  *solidrun,cubox-i*)
-ln -sf brcmfmac4329-sdio-cubox-i.txt 
/lib/firmware/brcm/brcmfmac4329-sdio.txt
-ln -sf brcmfmac4330-sdio-cubox-i.txt 
/lib/firmware/brcm/brcmfmac4330-sdio.txt
-;;
-  *raspberrypi,3-model-b*)
-ln -sf brcmfmac43430-sdio-raspberrypi3b.txt 
/lib/firmware/brcm/brcmfmac43430-sdio.txt
-;;
-  *tronsmart,vega-s95-telos*)
-ln -sf brcmfmac4339-sdio-vega-s95-telos.txt 
/lib/firmware/brcm/brcmfmac4339-sdio.txt
-;;
-  esac
+  while IFS= read -r -d '' compatible; do
+case "$compatible" in
+lemaker,bananapro)
+  ln -sf brcmfmac43362-sdio-bananapi-m1+.txt 
/lib/firmware/brcm/brcmfmac43362-sdio.txt
+  ;;
+sinovoip,bpi-m2)
+  ln -sf brcmfmac43362-sdio-bananapi-m2.txt 
/lib/firmware/brcm/brcmfmac43362-sdio.txt
+  ;;
+cubietech,cubietruck)
+  ln -sf brcmfmac43362-sdio-cubietruck.txt 
/lib/firmware/brcm/brcmfmac43362-sdio.txt
+  ;;
+solidrun,cubox-i)
+  ln -sf brcmfmac4329-sdio-cubox-i.txt 
/lib/firmware/brcm/brcmfmac4329-sdio.txt
+  ln -sf brcmfmac4330-sdio-cubox-i.txt 
/lib/firmware/brcm/brcmfmac4330-sdio.txt
+  ;;
+raspberrypi,3-model-b)
+  ln -sf brcmfmac43430-sdio-raspberrypi3b.txt 
/lib/firmware/brcm/brcmfmac43430-sdio.txt
+  ;;
+tronsmart,vega-s95-telos)
+  ln -sf brcmfmac4339-sdio-vega-s95-telos.txt 
/lib/firmware/brcm/brcmfmac4339-sdio.txt
+  ;;
+esac
+  done < /sys/firmware/devicetree/base/compatible
 fi
 
 /usr/sbin/modprobe --ignore-install brcmfmac "$@" || exit $?




commit knot for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package knot for openSUSE:Factory checked in 
at 2017-06-13 16:08:41

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


Package is "knot"

Tue Jun 13 16:08:41 2017 rev:30 rq:503037 version:1.6.8

Changes:

--- /work/SRC/openSUSE:Factory/knot/knot.changes2016-05-19 
12:15:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.knot.new/knot.changes   2017-06-13 
16:08:44.665273189 +0200
@@ -1,0 +2,13 @@
+Mon Jun  5 08:57:24 UTC 2017 - pgaj...@suse.com
+
+- refreshed 0002-make-configure.ac-compatible-with-old-tools.patch
+  to fix build
+
+---
+Mon Feb 13 11:55:40 UTC 2017 - mrueck...@suse.de
+
+- update to 1.6.8
+  - Zone size limit restriction for DDNS, AXFR, and IXFR
+(CVE-2016-6171)
+
+---

Old:

  knot-1.6.7.tar.xz

New:

  knot-1.6.8.tar.xz



Other differences:
--
++ knot.spec ++
--- /var/tmp/diff_new_pack.X3HvVj/_old  2017-06-13 16:08:45.449162715 +0200
+++ /var/tmp/diff_new_pack.X3HvVj/_new  2017-06-13 16:08:45.453162152 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package knot
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if 0%{?suse_version} > 1320
 %bcond_without  dnstap
 %bcond_without  lto
@@ -34,7 +35,7 @@
 %endif
 
 Name:   knot
-Version:1.6.7
+Version:1.6.8
 Release:0
 %define pkg_name knot
 Summary:An authoritative DNS daemon
@@ -57,7 +58,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  xz
 Requires(pre):  pwdutils
-BuildRoot:  %{_tmppath}/%{pkg_name}-%{version}-build
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with rosedb}
 BuildRequires:  lmdb-devel
 %endif
@@ -66,9 +67,9 @@
 BuildRequires:  python-Sphinx
 %endif
 %if %{with dnstap}
-BuildRequires:  protobuf-c >= 1.0.0
-BuildRequires:  libprotobuf-c-devel >= 1.0.0
 BuildRequires:  libfstrm-devel
+BuildRequires:  libprotobuf-c-devel >= 1.0.0
+BuildRequires:  protobuf-c >= 1.0.0
 %endif
 %if %{with systemd}
 %define has_systemd 1
@@ -83,7 +84,7 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 %patch0 -p1
-%patch1
+%patch1 -p1
 
 %build
 autoreconf -fvi

++ 0002-make-configure.ac-compatible-with-old-tools.patch ++
--- /var/tmp/diff_new_pack.X3HvVj/_old  2017-06-13 16:08:45.477158770 +0200
+++ /var/tmp/diff_new_pack.X3HvVj/_new  2017-06-13 16:08:45.477158770 +0200
@@ -1,11 +1,11 @@
-Index: configure.ac
+Index: knot-1.6.8/configure.ac
 ===
 configure.ac.orig
-+++ configure.ac
+--- knot-1.6.8.orig/configure.ac   2017-06-05 10:55:45.049766182 +0200
 knot-1.6.8/configure.ac2017-06-05 10:56:44.258809504 +0200
 @@ -2,8 +2,8 @@
  
  AC_PREREQ([2.60])
- AC_INIT([knot], [1.6.7], [knot-...@labs.nic.cz])
+ AC_INIT([knot], [1.6.8], [knot-...@labs.nic.cz])
 -AM_INIT_AUTOMAKE([gnits subdir-objects dist-xz -Wall -Werror])
 -AM_SILENT_RULES([yes])
 +AM_INIT_AUTOMAKE([gnits subdir-objects -Wall -Werror])

++ knot-1.6.7.tar.xz -> knot-1.6.8.tar.xz ++
 25428 lines of diff (skipped)




commit ufraw for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package ufraw for openSUSE:Factory checked 
in at 2017-06-13 16:08:44

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


Package is "ufraw"

Tue Jun 13 16:08:44 2017 rev:46 rq:503059 version:0.22

Changes:

--- /work/SRC/openSUSE:Factory/ufraw/ufraw.changes  2016-08-12 
15:43:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.ufraw.new/ufraw.changes 2017-06-13 
16:08:46.261048296 +0200
@@ -1,0 +2,6 @@
+Mon Jun 12 07:24:34 UTC 2017 - meiss...@suse.com
+
+- ufraw-gcc7.patch: pull up the abs() to the call where
+  the float -> unsigned int conversions happens.
+
+---

New:

  ufraw-gcc7.patch



Other differences:
--
++ ufraw.spec ++
--- /var/tmp/diff_new_pack.RYGqLX/_old  2017-06-13 16:08:46.996944587 +0200
+++ /var/tmp/diff_new_pack.RYGqLX/_new  2017-06-13 16:08:46.996944587 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ufraw
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -45,6 +45,7 @@
 Patch1: %{name}-boundary.patch
 Patch2: %{name}-glibc210.patch
 Patch3: narrowing-conversion.patch
+Patch4: ufraw-gcc7.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Recommends: %{name}-lang
 
@@ -96,6 +97,7 @@
 %patch1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %ifarch ppc64

++ ufraw-gcc7.patch ++
Index: ufraw-0.22/dcraw.cc
===
--- ufraw-0.22.orig/dcraw.cc
+++ ufraw-0.22/dcraw.cc
@@ -9240,9 +9240,9 @@ canon_a5:
   filters = 0x16161616;
 }
 if (make[0] == 'O') {
-  i = find_green (12, 32, 1188864, 3576832);
-  c = find_green (12, 32, 2383920, 2387016);
-  if (abs(i) < abs(c)) {
+  i = abs(find_green (12, 32, 1188864, 3576832));
+  c = abs(find_green (12, 32, 2383920, 2387016));
+  if (i < c) {
SWAP(i,c);
load_flags = 24;
   }



commit patterns-caasp for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package patterns-caasp for openSUSE:Factory 
checked in at 2017-06-13 16:09:17

Comparing /work/SRC/openSUSE:Factory/patterns-caasp (Old)
 and  /work/SRC/openSUSE:Factory/.patterns-caasp.new (New)


Package is "patterns-caasp"

Tue Jun 13 16:09:17 2017 rev:9 rq:503209 version:1.0

Changes:

--- /work/SRC/openSUSE:Factory/patterns-caasp/patterns-caasp.changes
2017-06-07 09:56:16.883408420 +0200
+++ /work/SRC/openSUSE:Factory/.patterns-caasp.new/patterns-caasp.changes   
2017-06-13 16:09:18.724473216 +0200
@@ -1,0 +2,5 @@
+Fri Jun  9 15:11:20 UTC 2017 - jmassaguer...@suse.com
+
+- Add supportutils-plugin-suse-caasp 
+
+---



Other differences:
--
++ patterns-caasp.spec ++
--- /var/tmp/diff_new_pack.Bem8YK/_old  2017-06-13 16:09:19.292393179 +0200
+++ /var/tmp/diff_new_pack.Bem8YK/_new  2017-06-13 16:09:19.296392615 +0200
@@ -192,6 +192,7 @@
 Requires:   caasp-container-manifests
 Requires:   kubernetes-salt
 Requires:   python-etcd
+Requires:   supportutils-plugin-suse-caasp
 %endif
 Requires:   python-pyroute2
 %endif




commit dstat for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package dstat for openSUSE:Factory checked 
in at 2017-06-13 16:09:28

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


Package is "dstat"

Tue Jun 13 16:09:28 2017 rev:5 rq:503231 version:0.7.3

Changes:

--- /work/SRC/openSUSE:Factory/dstat/dstat.changes  2016-03-31 
13:02:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.dstat.new/dstat.changes 2017-06-13 
16:09:34.418261481 +0200
@@ -1,0 +2,9 @@
+Mon Jun 12 13:57:30 UTC 2017 - adam.ma...@suse.de
+
+- Sync SLE .changes file with OBS (bnc#1041627)
+- Don't run %fdupes on entire %buildroot, but only on specific
+  directory
+- Replace dangling symlink in examples directory
+- Don't ship documentation directory with executable examples
+
+---
@@ -31,0 +41,5 @@
+
+---
+Thu Feb 11 08:29:39 UTC 2016 - mvet...@suse.com
+
+- Adding as required by fate#319795



Other differences:
--
++ dstat.spec ++
--- /var/tmp/diff_new_pack.WL6pJ7/_old  2017-06-13 16:09:36.234005587 +0200
+++ /var/tmp/diff_new_pack.WL6pJ7/_new  2017-06-13 16:09:36.234005587 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dstat
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -56,16 +56,24 @@
 %build
 
 %install
+# Makes examples non-executable
+find examples/ -type f -print0 | xargs -0 chmod 0644
+# Replace dangling symlink
+rm examples/dstat.py
+ln -s %{_bindir}/dstat examples/dstat.py
+
 make %{?_smp_mflags} DESTDIR=%{buildroot} install
 
 install -D -m 0644 docs/dstat.1 "%{buildroot}%{_mandir}/man1/dstat.1"
 install -D -m 0644 "%{SOURCE1}" 
"%{buildroot}%{_datadir}/applications/%{name}.desktop"
 %if 0%{?suse_update_desktop_file:1}
 %suse_update_desktop_file -r "%{name}" System Monitor
-%fdupes -s %{buildroot}
 %endif
 
 rm docs/Makefile
+%if 0%{?suse_version}
+%fdupes "%{buildroot}%{_datadir}/%{name}"
+%endif
 
 %if 0%{?suse_version}
 %post




commit diskimage-builder for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package diskimage-builder for 
openSUSE:Factory checked in at 2017-06-13 16:09:12

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


Package is "diskimage-builder"

Tue Jun 13 16:09:12 2017 rev:8 rq:503202 version:2.5.0

Changes:

--- /work/SRC/openSUSE:Factory/diskimage-builder/diskimage-builder.changes  
2017-05-27 13:20:47.970854763 +0200
+++ /work/SRC/openSUSE:Factory/.diskimage-builder.new/diskimage-builder.changes 
2017-06-13 16:09:15.184972040 +0200
@@ -1,0 +2,10 @@
+Sun Jun 11 16:59:45 UTC 2017 - mchand...@suse.de
+
+- Version bump 2.5.0
+  * Disable recommended package installations for zypper-minimal
+  * Use networkx for digraph
+  * Various internal fixes
+  * Adding unit testing for configuration
+  * Produce API documentation
+
+---

Old:

  diskimage-builder-2.4.1.tar.gz

New:

  diskimage-builder-2.5.0.tar.gz



Other differences:
--
++ diskimage-builder.spec ++
--- /var/tmp/diff_new_pack.udX8WL/_old  2017-06-13 16:09:16.572776456 +0200
+++ /var/tmp/diff_new_pack.udX8WL/_new  2017-06-13 16:09:16.576775892 +0200
@@ -21,7 +21,7 @@
 
 %global __requires_exclude_from 
^%{python_sitelib}/diskimage_builder/elements/.*$
 Name:   diskimage-builder
-Version:2.4.1
+Version:2.5.0
 Release:0
 Summary:Image Building Tools for OpenStack
 License:Apache-2.0
@@ -32,6 +32,7 @@
 BuildRequires:  fdupes
 BuildRequires:  python-PyYAML >= 3.10.0
 BuildRequires:  python-devel
+BuildRequires:  python2-networkx >= 1.10
 # Test requirements:
 BuildRequires:  python-fixtures
 BuildRequires:  python-oslotest
@@ -45,6 +46,7 @@
 Requires:   python-PyYAML >= 3.10.0
 Requires:   python-six >= 1.9.0
 Requires:   python-stevedore >= 1.20.0
+Requires:   python2-networkx >= 1.10
 Requires:   qemu-tools
 Requires:   python(abi) = %{py_ver}
 # diskimage-builder-2.0.0 was merged with python-dib-utils

++ diskimage-builder-2.4.1.tar.gz -> diskimage-builder-2.5.0.tar.gz ++
 2693 lines of diff (skipped)




commit libstoragemgmt for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libstoragemgmt for openSUSE:Factory 
checked in at 2017-06-13 16:08:28

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


Package is "libstoragemgmt"

Tue Jun 13 16:08:28 2017 rev:12 rq:500390 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/libstoragemgmt/libstoragemgmt.changes
2017-05-27 13:09:24.831435691 +0200
+++ /work/SRC/openSUSE:Factory/.libstoragemgmt.new/libstoragemgmt.changes   
2017-06-13 16:08:29.971344004 +0200
@@ -1,0 +2,6 @@
+Thu Jun  1 06:22:27 UTC 2017 - nw...@suse.com
+
+- To unify the package in SLE and Leap.
+- bsc#931426, bsc#980651 and bsc#988547 also fixed in this package
+
+---



Other differences:
--



commit postfix for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package postfix for openSUSE:Factory checked 
in at 2017-06-13 16:08:30

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


Package is "postfix"

Tue Jun 13 16:08:30 2017 rev:143 rq:500451 version:3.2.0

Changes:

--- /work/SRC/openSUSE:Factory/postfix/postfix.changes  2017-05-03 
15:51:56.948619782 +0200
+++ /work/SRC/openSUSE:Factory/.postfix.new/postfix.changes 2017-06-13 
16:08:31.159176603 +0200
@@ -603 +603 @@
-- postfix-no-md5.patch: replace fingerprint defaults by sha1.
+- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885
@@ -618,0 +619,3 @@
+- Bugfix (introduced: Postfix 2.11): with connection caching
+  enabled (the default), recipients could be given to the wrong
+  mail server. (bsc#944722)



Other differences:
--



commit re2 for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package re2 for openSUSE:Factory checked in 
at 2017-06-13 16:08:58

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


Package is "re2"

Tue Jun 13 16:08:58 2017 rev:8 rq:503083 version:MACRO

Changes:

--- /work/SRC/openSUSE:Factory/re2/re2.changes  2017-05-20 10:14:23.433717632 
+0200
+++ /work/SRC/openSUSE:Factory/.re2.new/re2.changes 2017-06-13 
16:09:00.739007915 +0200
@@ -1,0 +2,6 @@
+Sun Jun 11 09:55:00 UTC 2017 - mplus...@suse.com
+
+- Update to version 2017-06-01
+  * No upstream changelog available 
+
+---

Old:

  2017-05-01.tar.gz

New:

  2017-06-01.tar.gz



Other differences:
--
++ re2.spec ++
--- /var/tmp/diff_new_pack.EUlDKq/_old  2017-06-13 16:09:03.442626893 +0200
+++ /var/tmp/diff_new_pack.EUlDKq/_new  2017-06-13 16:09:03.446626329 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%global longver 2017-05-01
+%global longver 2017-06-01
 %global shortver %(echo %{longver}|sed 's|-||g')
 %define libname libre2-0
 Name:   re2

++ 2017-05-01.tar.gz -> 2017-06-01.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/re2-2017-05-01/CMakeLists.txt 
new/re2-2017-06-01/CMakeLists.txt
--- old/re2-2017-05-01/CMakeLists.txt   2017-04-24 06:59:29.0 +0200
+++ new/re2-2017-06-01/CMakeLists.txt   2017-05-18 07:20:04.0 +0200
@@ -26,6 +26,9 @@
 cmake_minimum_required(VERSION 3.4)
 set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
   endif()
+  # CMake defaults to /W3, but some users like /W4 (or /Wall) and /WX,
+  # so we disable various warnings that aren't particularly helpful.
+  add_compile_options(/wd4100 /wd4201 /wd4456 /wd4457 /wd4702 /wd4815)
 elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
   add_compile_options(-std=c++11)
 endif()
@@ -72,59 +75,59 @@
 
 add_library(re2 ${RE2_SOURCES})
 
-set(TESTING_SOURCES
-re2/testing/backtrack.cc
-re2/testing/dump.cc
-re2/testing/exhaustive_tester.cc
-re2/testing/null_walker.cc
-re2/testing/regexp_generator.cc
-re2/testing/string_generator.cc
-re2/testing/tester.cc
-util/pcre.cc
-)
-
-add_library(testing STATIC ${TESTING_SOURCES})
-
-set(TEST_TARGETS
-charclass_test
-compile_test
-filtered_re2_test
-mimics_pcre_test
-parse_test
-possible_match_test
-re2_test
-re2_arg_test
-regexp_test
-required_prefix_test
-search_test
-set_test
-simplify_test
-string_generator_test
-
-dfa_test
-exhaustive1_test
-exhaustive2_test
-exhaustive3_test
-exhaustive_test
-random_test
-)
-
-set(BENCHMARK_TARGETS
-regexp_benchmark
-)
-
-foreach(target ${TEST_TARGETS})
-  add_executable(${target} re2/testing/${target}.cc util/test.cc)
-  target_link_libraries(${target} testing re2 ${EXTRA_TARGET_LINK_LIBRARIES})
-  if(RE2_BUILD_TESTING)
+if(RE2_BUILD_TESTING)
+  set(TESTING_SOURCES
+  re2/testing/backtrack.cc
+  re2/testing/dump.cc
+  re2/testing/exhaustive_tester.cc
+  re2/testing/null_walker.cc
+  re2/testing/regexp_generator.cc
+  re2/testing/string_generator.cc
+  re2/testing/tester.cc
+  util/pcre.cc
+  )
+
+  add_library(testing STATIC ${TESTING_SOURCES})
+
+  set(TEST_TARGETS
+  charclass_test
+  compile_test
+  filtered_re2_test
+  mimics_pcre_test
+  parse_test
+  possible_match_test
+  re2_test
+  re2_arg_test
+  regexp_test
+  required_prefix_test
+  search_test
+  set_test
+  simplify_test
+  string_generator_test
+
+  dfa_test
+  exhaustive1_test
+  exhaustive2_test
+  exhaustive3_test
+  exhaustive_test
+  random_test
+  )
+
+  set(BENCHMARK_TARGETS
+  regexp_benchmark
+  )
+
+  foreach(target ${TEST_TARGETS})
+add_executable(${target} re2/testing/${target}.cc util/test.cc)
+target_link_libraries(${target} testing re2 ${EXTRA_TARGET_LINK_LIBRARIES})
 add_test(NAME ${target} COMMAND ${target})
-  endif()
-endforeach(target)
+  endforeach(target)
 
-foreach(target ${BENCHMARK_TARGETS})
-  add_executable(${target} re2/testing/${target}.cc util/benchmark.cc)
-  target_link_libraries(${target} testing re2 ${EXTRA_TARGET_LINK_LIBRARIES})
-endforeach(target)
+  foreach(target ${BENCHMARK_TARGETS})
+add_executable(${target} re2/testing/${target}.cc util/benchmark.cc)
+target_link_libraries(${target} testing re2 ${EXTRA_TARGET_LINK_LIBRARIES})
+  endforeach(target)
+endif()
 
 set(RE2_HEADERS
 re2/filtered_re2.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit python-pyOpenSSL for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-pyOpenSSL for 
openSUSE:Factory checked in at 2017-06-13 16:07:26

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


Package is "python-pyOpenSSL"

Tue Jun 13 16:07:26 2017 rev:26 rq:503335 version:17.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-pyOpenSSL/python-pyOpenSSL.changes
2017-05-16 14:29:26.711561142 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyOpenSSL.new/python-pyOpenSSL.changes   
2017-06-13 16:07:27.960083216 +0200
@@ -1,0 +2,7 @@
+Tue Jun 13 07:05:41 UTC 2017 - dims...@opensuse.org
+
+- Add python-pyOpenSSL=replace-expired-cert.patch: the root cert
+  expired, mking the test suite fail. Replace the certificate with
+  a new one, valid for 20 years (gh#pyca/pyopenssl#637).
+
+---

New:

  python-pyOpenSSL=replace-expired-cert.patch



Other differences:
--
++ python-pyOpenSSL.spec ++
--- /var/tmp/diff_new_pack.v57gwT/_old  2017-06-13 16:07:28.587994725 +0200
+++ /var/tmp/diff_new_pack.v57gwT/_new  2017-06-13 16:07:28.587994725 +0200
@@ -31,13 +31,15 @@
 Patch0: bug-lp-1265482.diff
 Patch1: skip-networked-test.patch
 Patch2: rsa128-i586.patch
+# PATCH-FIX-UPSTREAM python-pyOpenSSL=replace-expired-cert.patch 
gh#pyca/pyopenssl#637 dims...@opensuse.org -- the root cert expired
+Patch3: python-pyOpenSSL=replace-expired-cert.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  openssl-devel
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
+BuildRequires:  %{python_module cryptography >= 1.3.4}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module cryptography >= 1.3.4}
+BuildRequires:  fdupes
+BuildRequires:  openssl-devel
+BuildRequires:  python-rpm-macros
 BuildRequires:  python3-Sphinx
 %if %{with tests}
 BuildRequires:  %{python_module pytest}
@@ -72,6 +74,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 %python_build

++ python-pyOpenSSL=replace-expired-cert.patch ++
>From 6eeb0ef13e578d8b51ca332e43c581484ac965b2 Mon Sep 17 00:00:00 2001
From: Paul Kehrer 
Date: Sun, 11 Jun 2017 12:36:25 -1000
Subject: [PATCH 1/4] the root cert expired, make a new one (using the same
 values)

The new one lasts 20 years. If this project is still in use in 20 years
we have failed.
---
 tests/test_crypto.py | 24 ++--
 1 file changed, 22 insertions(+), 2 deletions(-)

diff --git a/tests/test_crypto.py b/tests/test_crypto.py
index 10f47180..7f54a11d 100644
--- a/tests/test_crypto.py
+++ b/tests/test_crypto.py
@@ -58,7 +58,7 @@ def normalize_privatekey_pem(pem):
 GOOD_DIGEST = "SHA1"
 BAD_DIGEST = "monkeys"
 
-root_cert_pem = b"""-BEGIN CERTIFICATE-
+old_root_cert_pem = b"""-BEGIN CERTIFICATE-
 MIIC7TCCAlagAwIBAgIIPQzE4MbeufQwDQYJKoZIhvcNAQEFBQAwWDELMAkGA1UE
 BhMCVVMxCzAJBgNVBAgTAklMMRAwDgYDVQQHEwdDaGljYWdvMRAwDgYDVQQKEwdU
 ZXN0aW5nMRgwFgYDVQQDEw9UZXN0aW5nIFJvb3QgQ0EwIhgPMjAwOTAzMjUxMjM2
@@ -78,6 +78,26 @@ def normalize_privatekey_pem(pem):
 -END CERTIFICATE-
 """
 
+root_cert_pem = b"""-BEGIN CERTIFICATE-
+MIIC6TCCAlKgAwIBAgIIPQzE4MbeufQwDQYJKoZIhvcNAQEFBQAwWDELMAkGA1UE
+BhMCVVMxCzAJBgNVBAgTAklMMRAwDgYDVQQHEwdDaGljYWdvMRAwDgYDVQQKEwdU
+ZXN0aW5nMRgwFgYDVQQDEw9UZXN0aW5nIFJvb3QgQ0EwHhcNMTcwNjExMjIzMjU5
+WhcNMzcwNjA2MjIzMjU5WjBYMQswCQYDVQQGEwJVUzELMAkGA1UECBMCSUwxEDAO
+BgNVBAcTB0NoaWNhZ28xEDAOBgNVBAoTB1Rlc3RpbmcxGDAWBgNVBAMTD1Rlc3Rp
+bmcgUm9vdCBDQTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA+ZpC6Yu6ukTn
+bu5IQd0vWmpwNGZbO773xjpgfNP8nspYRqbIwI1np9FbUkJHvzZRDxrTt/LbFewr
+LhZ0prHIbwJxq3CZe+m9FDjh1IA0yKEcQukA1N3JWnoMLKwQPrCRAW6seUXV2yER
+onDxv/KkOGZtUijoKLXG8ImqK9ssWdsCAwEAAaOBuzCBuDAdBgNVHQ4EFgQUg1V3
+LV4h8UkMCSTnVAkSjch+BK4wgYgGA1UdIwSBgDB+gBSDVXctXiHxSQwJJOdUCRKN
+yH4ErqFcpFowWDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAklMMRAwDgYDVQQHEwdD
+aGljYWdvMRAwDgYDVQQKEwdUZXN0aW5nMRgwFgYDVQQDEw9UZXN0aW5nIFJvb3Qg
+Q0GCCD0MxODG3rn0MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEANFYQ
+R+T70VcZ+SnvURnwviFgCXeedBzCr21meo+DNHbkp2gudB9W8Xrned/wtUBVymy9
+gjB5jINfU7Lci0H57Evsw96UJJVfhXdUMHpqt1RGCoEd9FWnrDyrSy0NysnBT2bH
+lEqxh3aFEUx9IOQ4sgnx1/NOFXBpkRtivl6O0Ec=
+-END CERTIFICATE-
+"""
+
 root_key_pem = b"""-BEGIN RSA PRIVATE KEY-
 MIICXQIBAAKBgQD5mkLpi7q6ROdu7khB3S9aanA0Zls7vvfGOmB80/yeylhGpsjA
 jWen0VtSQke/NlEPGtO38tsV7CsuFnSmschvAnGrcJl76b0UOOHUgDTIoRxC6QDU
@@ -1646,7 +1666,7 @@ def test_digest(self):
 `X509.digest` returns a string giving ":"-separated hex-encoded
 words of the digest of the certificate.
 """
-  

commit texworks for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package texworks for openSUSE:Factory 
checked in at 2017-06-13 16:08:06

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


Package is "texworks"

Tue Jun 13 16:08:06 2017 rev:20 rq:492272 version:0.6.2

Changes:

--- /work/SRC/openSUSE:Factory/texworks/texworks.changes2016-07-30 
00:26:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.texworks.new/texworks.changes   2017-06-13 
16:08:16.657220361 +0200
@@ -1,0 +2,29 @@
+Sun Apr 30 21:52:52 UTC 2017 - badshah...@gmail.com
+
+- Update to version 0.6.2:
+  + Implement handling of links to external files in the PDF
+preview.
+  + Implement a simple screen calibration widget to allow adapting
+the PDF preview to the screen's resolution.
+  + Improve responsiveness when opening large documents.
+  + Use old content instead of rendering placeholers after a PDF
+was reloaded to facilitate seeing changes.
+  + Improve the usability of the "Remove Aux Files..." dialog by
+letting the user toogle the selection by clicking anywhere on
+the row.
+  + Add support for the bibliography program "biber" by default.
+  + Allow custom zoom levels in the PDF status bar context menu.
+  + Bugs fixed:
+- Fix PDF zoom speed for high-resolution mouse-wheels.
+- Fix a deadlock causing TeXworks to hang when loading PDF
+  annotations such as links.
+- Fix crash when changing files outside TeXworks.
+- Fix crash when syncing from an if-block in the TeX file.
+- Fix crash when reloading a PDF while text was selected.
+- Fix enabling of the first/previous/next/last page toolbar
+  buttons in the PDF preview.
+- Fix the wrong appearance of the PDF magnifier in some cases.
+- Fix truncation issues and misreported Windows versions in
+  "Email to mailing list".
+
+---

Old:

  release-0.6.1.tar.gz

New:

  release-0.6.2.tar.gz



Other differences:
--
++ texworks.spec ++
--- /var/tmp/diff_new_pack.XbqmJL/_old  2017-06-13 16:08:17.537096360 +0200
+++ /var/tmp/diff_new_pack.XbqmJL/_new  2017-06-13 16:08:17.541095796 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package texworks
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2007-09 by Jonathan Kew.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   texworks
-Version:0.6.1
+Version:0.6.2
 Release:0
 Summary:TeXshop-like TeX Editor
 License:GPL-2.0+

++ release-0.6.1.tar.gz -> release-0.6.2.tar.gz ++
/work/SRC/openSUSE:Factory/texworks/release-0.6.1.tar.gz 
/work/SRC/openSUSE:Factory/.texworks.new/release-0.6.2.tar.gz differ: char 12, 
line 1




commit hwdata for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package hwdata for openSUSE:Factory checked 
in at 2017-06-13 16:08:55

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


Package is "hwdata"

Tue Jun 13 16:08:55 2017 rev:3 rq:503082 version:0.301

Changes:

--- /work/SRC/openSUSE:Factory/hwdata/hwdata.changes2017-05-27 
13:15:42.274072503 +0200
+++ /work/SRC/openSUSE:Factory/.hwdata.new/hwdata.changes   2017-06-13 
16:08:55.727714158 +0200
@@ -1,0 +2,5 @@
+Mon Jun 12 12:48:13 UTC 2017 - mplus...@suse.com
+
+- Update to version 0.301
+
+---

Old:

  hwdata-0.300.tar.gz

New:

  hwdata-0.301.tar.gz



Other differences:
--
++ hwdata.spec ++
--- /var/tmp/diff_new_pack.hNU6rz/_old  2017-06-13 16:08:56.295634121 +0200
+++ /var/tmp/diff_new_pack.hNU6rz/_new  2017-06-13 16:08:56.295634121 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   hwdata
-Version:0.300
+Version:0.301
 Release:0
 Summary:Hardware identification and configuration data
 License:GPL-2.0+

++ hwdata-0.300.tar.gz -> hwdata-0.301.tar.gz ++
 6360 lines of diff (skipped)




commit yast2-slide-show for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package yast2-slide-show for 
openSUSE:Factory checked in at 2017-06-13 16:08:46

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


Package is "yast2-slide-show"

Tue Jun 13 16:08:46 2017 rev:122 rq:503067 version:84.87.20170604.1a40600

Changes:

--- /work/SRC/openSUSE:Factory/yast2-slide-show/yast2-slide-show.changes
2016-11-08 18:27:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-slide-show.new/yast2-slide-show.changes   
2017-06-13 16:08:51.360329654 +0200
@@ -1,0 +2,15 @@
+Wed Jun 07 08:43:29 UTC 2017 - g...@opensuse.org
+
+- Update to version 84.87.20170604.1a40600:
+  * Fix typos in slideshow.xml (#7)
+  * Translated using Weblate (Arabic)
+  * Translated using Weblate (Chinese (China))
+  * Translated using Weblate (Chinese (Taiwan))
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Spanish)
+  * Translated using Weblate (Swedish)
+  * changed version number
+  * update slideshow (#8)
+
+---

Old:

  yast2-slide-show-84.87.20161105.deddea9.tar.xz

New:

  yast2-slide-show-84.87.20170604.1a40600.tar.xz



Other differences:
--
++ yast2-slide-show.spec ++
--- /var/tmp/diff_new_pack.o0ZaiX/_old  2017-06-13 16:08:53.072088415 +0200
+++ /var/tmp/diff_new_pack.o0ZaiX/_new  2017-06-13 16:08:53.072088415 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-slide-show
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,12 +16,12 @@
 #
 
 
-%define version_unconverted 84.87.20161105.deddea9
+%define version_unconverted 84.87.20170604.1a40600
 # xml2po uses temporary files that do not like being called twice
 # xml2po probably is not thread-safe.
 %define jobs 1
 Name:   yast2-slide-show
-Version:84.87.20161105.deddea9
+Version:84.87.20170604.1a40600
 Release:0
 Summary:Slide show displayed during package installation with YaST
 License:GPL-2.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.o0ZaiX/_old  2017-06-13 16:08:53.132079961 +0200
+++ /var/tmp/diff_new_pack.o0ZaiX/_new  2017-06-13 16:08:53.136079397 +0200
@@ -3,4 +3,4 @@
 git://github.com/lnussel/yast-slide-show.git
   6f56730fc1760741bd3b6e95b3f02dad104347f0
 git://github.com/openSUSE/yast-slide-show.git
-  deddea9932160ab049fd1397c6def3b720f21c6b
\ No newline at end of file
+  1a40600d2d43d265b33201cb4d32aa041f94ae8a
\ No newline at end of file

++ yast2-slide-show-84.87.20161105.deddea9.tar.xz -> 
yast2-slide-show-84.87.20170604.1a40600.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-slide-show-84.87.20161105.deddea9/po/ar.po 
new/yast2-slide-show-84.87.20170604.1a40600/po/ar.po
--- old/yast2-slide-show-84.87.20161105.deddea9/po/ar.po2016-11-05 
17:12:31.0 +0100
+++ new/yast2-slide-show-84.87.20170604.1a40600/po/ar.po2017-06-04 
21:01:10.0 +0200
@@ -11,8 +11,8 @@
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: translat...@suse.de\n"
 "POT-Creation-Date: 2016-10-06 13:07+0200\n"
-"PO-Revision-Date: 2016-11-01 08:54+\n"
-"Last-Translator: benalia behchich \n"
+"PO-Revision-Date: 2016-12-01 05:45+\n"
+"Last-Translator: mohammad alhargan \n"
 "Language-Team: Arabic \n"
 "Language: ar\n"
@@ -61,7 +61,6 @@
 msgstr "openSUSE.org"
 
 #: slideshow.xml:27(para)
-#, fuzzy
 #| msgid ""
 #| "openSUSE is a community project created and sponsored by SUSE to deliver "
 #| "the world's most user-friendly computing platform. Many people from "
@@ -78,11 +77,12 @@
 "(Open Build Service) and projects (Portus and Machinery). Find out more at "
 "www.opensuse.org."
 msgstr ""
-"أوبن سوزي مشروع مجتمعي أنشأته وترعاها سوزي لتقدمه للحواسيب الأكثر استعمالا "
-"في العالم. كثير من الناس من جميع أنحاء العالم تساهم في مشروع أوبن سوزي "
-"بتحزيم البرمجيات، اختبار البرامج وكتابة الوثائق وترجمة المكونات إلى عشرات "
-"اللغات. كل ذلك العمل متاح مجاناً في توزيعة لينكس أوبن سوزي المتوفرة في www."
-"opensuse.org."
+"أوبن سوزي مشروع مجتمع ترعاه سوزي. يدعم المشروع كثير من الناس في جميع أنحاء "
+"العالم الذين يساهمون في مشروع أوبن سوزي عن طريق برمجة البرامج، واختبار "
+"البرامج وكتابة الوثائق وترجمتها في اللغات 

commit praat for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package praat for openSUSE:Factory checked 
in at 2017-06-13 16:08:20

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


Package is "praat"

Tue Jun 13 16:08:20 2017 rev:1 rq:493400 version:6.0.28

Changes:

New Changes file:

--- /dev/null   2017-03-01 00:40:19.279048016 +0100
+++ /work/SRC/openSUSE:Factory/.praat.new/praat.changes 2017-06-13 
16:08:26.127885662 +0200
@@ -0,0 +1,111 @@
+---
+Mon May  8 08:10:07 UTC 2017 - aloi...@gmx.com
+
+- Improved description
+
+---
+Thu May  4 08:25:39 UTC 2017 - aloi...@gmx.com
+
+- Added %optflags
+- Added praat-rpmlint_warnings.patch
+
+---
+Tue May  2 12:41:22 UTC 2017 - aloi...@gmx.com
+
+- Corrected license
+
+---
+Thu Mar 23 19:38:26 UTC 2017 - aloi...@gmx.com
+
+- Update to version 6.0.28
+  * Scripting: demoPeekInput() for animations in combination
+with demoShow() and sleep().
+
+---
+Sat Mar 18 17:54:51 UTC 2017 - aloi...@gmx.com
+
+- Update to version 6.0.27
+  * Fixed a bug by which Remove right boundary would choose
+the wrong tier.
+  * TextGrid window: click to insert a phonetic symbol from
+an IPA chart.
+
+---
+Thu Mar  2 10:39:32 UTC 2017 - aloi...@gmx.com
+
+- Update to version 6.0.26
+  * PraatBarren: better error message when an attempt is made
+to run PraatBarren interactively. 
+
+---
+Sun Feb 12 07:51:54 UTC 2017 - aloi...@gmx.com
+
+- Update to version 6.0.25
+
+---
+Mon Dec 12 17:09:44 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.0.23
+  * Linux: fixed a bug that caused Praat to crash when
+playing a sound of more than 7 channels.
+  * Change Gender: fixed a bug introduced in 6.0.22 by
+which the pitch range factor could not be 0.
+  * Improvements in the manual and in texts. 
+
+---
+Wed Nov 16 09:11:36 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.0.22
+  * Scripting: correct error messages for expressions
+like 5 + "hello" 
+  * Command line: the --open option works correctly in
+the GUI if you open multiple files.
+
+---
+Mon Sep 26 06:32:21 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.0.21
+  * ExperimentMFC: you can now specify font sizes and response 
+keys for goodness judgments.
+  * Table: when drawing ellipses, a font size of 0 can now be 
+used to prevent drawing the labels.
+  * Mac: dragging selections repaired for System 10.11.6 (but 
+we advise to upgrade to 10.12).
+  * Mac: re-enabled Return key for confirming some dialog 
+boxes. 
+
+---
+Sun Sep  4 12:16:22 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.0.20
+  * Can open UTF-8 text files with Byte Order Mark.
+  * Scripting improvement: function names can now be used
+as names of indexed variables. 
+
+---
+Tue Jul 19 13:50:46 UTC 2016 - toddrme2...@gmail.com
+
+- Update to version 6.0.19
+  * Mac: dragging selections repaired for System 10.11.5.
+
+---
+Tue May 24 07:07:22 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.0.18
+  * Windows: better dotted lines.
+  * TextGrid window: again better automatic alignment.
+
+---
+Thu Apr 21 16:44:02 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.0.17
+  * TextGrid window: better automatic alignment.
+
+- Removed praat.png and praat.desktop as Source1 and Source2
+  and produced them internally
+
+---
+Tue Apr 19 16:14:31 UTC 2016 - aloi...@gmx.com
+
+- Initial version 6.0.16
+

New:

  praat-6.0.28.tar.gz
  praat-rpmlint_warnings.patch
  praat.changes
  praat.spec



Other differences:
--
++ praat.spec ++
#
# spec file for package praat
#
# Copyright (c) 2017 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
# 

commit libzip for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libzip for openSUSE:Factory checked 
in at 2017-06-13 16:07:22

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


Package is "libzip"

Tue Jun 13 16:07:22 2017 rev:27 rq:502527 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/libzip/libzip.changes2017-02-22 
13:49:16.252727388 +0100
+++ /work/SRC/openSUSE:Factory/.libzip.new/libzip.changes   2017-06-13 
16:07:22.852802980 +0200
@@ -1,0 +2,6 @@
+Wed Jun  7 07:36:54 UTC 2017 - mplus...@suse.com
+
+- Small spec file and dependencies cleanup
+- Try profiled build
+
+---



Other differences:
--
++ libzip.spec ++
--- /var/tmp/diff_new_pack.W0T5Rm/_old  2017-06-13 16:07:23.448718998 +0200
+++ /var/tmp/diff_new_pack.W0T5Rm/_new  2017-06-13 16:07:23.456717871 +0200
@@ -16,20 +16,20 @@
 #
 
 
-%define soname 5
-
+%define sover 5
 Name:   libzip
 Version:1.2.0
 Release:0
 Summary:C library for reading, creating, and modifying zip archives
 License:BSD-3-Clause
 Group:  Development/Libraries/C and C++
+Url:http://www.nih.at/libzip
 Source0:http://www.nih.at/libzip/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-Url:http://www.nih.at/libzip
-BuildRequires:  autoconf >= 2.68
+# PATCH-FIX-OPENSUSE: close on exec, upstream is aware, will be probably fixes 
next release
+Patch1: libzip-ocloexec.patch
 BuildRequires:  libtool
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 # for tests
 BuildRequires:  timezone
 # for tests
@@ -38,9 +38,6 @@
 BuildRequires:  zlib-devel
 Provides:   libzip-util = %{version}
 Obsoletes:  libzip-util < %{version}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-#PATCH-FIX-OPENSUSE: close on exec, upstream is aware, will be probably fixes 
next release
-Patch1: libzip-ocloexec.patch
 
 %description
 libzip is a C library for reading, creating, and modifying zip
@@ -49,11 +46,11 @@
  * zipmerge - merge source zip archives into the target one
  * zipcmp - compares the zip archives and check if they contains same files
 
-%package -n libzip%soname
+%package -n libzip%{sover}
 Summary:C library for reading, creating, and modifying zip archives
 Group:  Development/Libraries/C and C++
 
-%description -n libzip%{soname}
+%description -n libzip%{sover}
 This is libzip, a C library for reading, creating, and modifying zip
 archives.  Files can be added from data buffers, files, or compressed
 data copied directly from other zip archives.  Changes made without
@@ -64,7 +61,7 @@
 Summary:C library for reading, creating, and modifying zip archives
 Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
-Requires:   libzip%{soname} = %{version}
+Requires:   libzip%{sover} = %{version}
 
 %description devel
 libzip is a C library for reading, creating, and modifying zip
@@ -85,33 +82,42 @@
 %patch1 -p1
 
 %build
-autoreconf -fiv
-%configure --disable-static --with-pic
-make %{?_smp_mflags}
+%configure \
+  --disable-static \
+  --with-pic
+%if %{do_profiling}
+  make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_generate}"
+  TZ=Europe/Vienna make %{?_smp_mflags} check VERBOSE=1
+  make clean
+  make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_feedback}"
+%else
+  make %{?_smp_mflags} CFLAGS="%{optflags}"
+%endif
 
 %check
 TZ=Europe/Vienna make %{?_smp_mflags} check VERBOSE=1
 
 %install
-%{__make} install DESTDIR=%{buildroot}
-%__cp lib/zipconf.h %buildroot/%_includedir/zipconf.h
+%make_install
+install -Dpm 0644 lib/zipconf.h %{buildroot}/%{_includedir}/zipconf.h
 rm -f %{buildroot}%{_libdir}/libzip.la
 
-%post -n libzip%{soname} -p /sbin/ldconfig
-
-%postun -n libzip%{soname} -p /sbin/ldconfig
+%post -n libzip%{sover} -p /sbin/ldconfig
+%postun -n libzip%{sover} -p /sbin/ldconfig
 
 %files tools
 %defattr(-,root,root)
 %{_bindir}/zipcmp
 %{_bindir}/zipmerge
 %{_bindir}/ziptool
-%{_mandir}/man1/*.1*
+%{_mandir}/man1/zipcmp.1%{ext_man}
+%{_mandir}/man1/zipmerge.1%{ext_man}
+%{_mandir}/man1/ziptool.1%{ext_man}
 
-%files -n libzip%{soname}
+%files -n libzip%{sover}
 %defattr(-,root,root)
 %doc LICENSE
-%{_libdir}/libzip.so.%{soname}*
+%{_libdir}/libzip.so.%{sover}*
 
 %files devel
 %defattr(-,root,root)
@@ -121,6 +127,6 @@
 %{_includedir}/zipconf.h
 %{_libdir}/%{name}/
 %{_libdir}/pkgconfig/%{name}.pc
-%{_mandir}/man3/*.3*
+%{_mandir}/man3/*.3%{ext_man}
 
 %changelog




commit kdesdk3 for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package kdesdk3 for openSUSE:Factory checked 
in at 2017-06-13 16:08:39

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


Package is "kdesdk3"

Tue Jun 13 16:08:39 2017 rev:14 rq:502830 version:3.5.10

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk3/kdesdk3.changes  2016-06-23 
13:36:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk3.new/kdesdk3.changes 2017-06-13 
16:08:40.301888121 +0200
@@ -1,0 +2,5 @@
+Sun Jun 11 01:24:57 UTC 2017 - an...@opensuse.org
+
+- use fabs instead of abs to fix build
+
+---



Other differences:
--
++ kdesdk3.spec ++
--- /var/tmp/diff_new_pack.qyaKu8/_old  2017-06-13 16:08:41.065780466 +0200
+++ /var/tmp/diff_new_pack.qyaKu8/_new  2017-06-13 16:08:41.069779902 +0200
@@ -99,6 +99,10 @@
 %patch2 -p1
 # kmtrace does not work with glibc 2.3 anymore and valgrind is way better
 rm -rf kmtrace
+
+sed -i 1i\ '#include ' 
kbabel/kbabeldict/modules/dbsearchengine/database.cpp
+sed -i 's|abs (|fabs (|g' kbabel/kbabeldict/modules/dbsearchengine/database.cpp
+
 . %{_sysconfdir}/opt/kde3/common_options
 update_admin
 




commit kdeutils3 for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package kdeutils3 for openSUSE:Factory 
checked in at 2017-06-13 16:08:37

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


Package is "kdeutils3"

Tue Jun 13 16:08:37 2017 rev:13 rq:502828 version:3.5.10

Changes:

--- /work/SRC/openSUSE:Factory/kdeutils3/kdeutils3.changes  2016-06-23 
13:36:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdeutils3.new/kdeutils3.changes 2017-06-13 
16:08:38.170188542 +0200
@@ -1,0 +2,5 @@
+Sun Jun 11 00:13:41 UTC 2017 - an...@opensuse.org
+
+- use fabs instead of abs to fix build
+
+---



Other differences:
--
++ kdeutils3.spec ++
--- /var/tmp/diff_new_pack.i5ScAP/_old  2017-06-13 16:08:39.138052140 +0200
+++ /var/tmp/diff_new_pack.i5ScAP/_new  2017-06-13 16:08:39.138052140 +0200
@@ -130,6 +130,9 @@
 sed -i 1i\ '#define HAVE_STRLCAT' ksim/monitors/snmp/value.cpp
 sed -i 1i\ '#define HAVE_STRLCAT' ksim/monitors/snmp/session.cpp
 
+sed -i 1i\ '#include ' khexedit/lib/kbigbuffer.cpp
+sed -i 's|abs(|fabs(|g' khexedit/lib/kbigbuffer.cpp
+
 %ifarch s390 s390x
 rm -rf kfloppy doc/kfloppy
 %endif




commit malaga-suomi for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package malaga-suomi for openSUSE:Factory 
checked in at 2017-06-13 16:07:12

Comparing /work/SRC/openSUSE:Factory/malaga-suomi (Old)
 and  /work/SRC/openSUSE:Factory/.malaga-suomi.new (New)


Package is "malaga-suomi"

Tue Jun 13 16:07:12 2017 rev:22 rq:502000 version:2.1

Changes:

--- /work/SRC/openSUSE:Factory/malaga-suomi/malaga-suomi.changes
2017-05-18 20:46:05.718099468 +0200
+++ /work/SRC/openSUSE:Factory/.malaga-suomi.new/malaga-suomi.changes   
2017-06-13 16:07:14.190023816 +0200
@@ -1,0 +2,6 @@
+Thu Jun  8 11:57:25 UTC 2017 - dims...@opensuse.org
+
+- BuildIgnore malaga-suomi, otherwise this package can't be
+  bootsrapped (nothing provides malaga-suomi needed by libvoikko1).
+
+---



Other differences:
--
++ malaga-suomi.spec ++
--- /var/tmp/diff_new_pack.IY0Thj/_old  2017-06-13 16:07:14.857929689 +0200
+++ /var/tmp/diff_new_pack.IY0Thj/_new  2017-06-13 16:07:14.857929689 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  foma
 BuildRequires:  python3
 BuildRequires:  voikkospell >= 4.0
+#!BuildIgnore:  %{name}
 Provides:   %{_name} = %{version}
 Obsoletes:  %{_name} < %{version}
 Provides:   %{_altname} = %{version}




commit hunspell for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package hunspell for openSUSE:Factory 
checked in at 2017-06-13 16:07:17

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


Package is "hunspell"

Tue Jun 13 16:07:17 2017 rev:50 rq:502446 version:1.6.1

Changes:

--- /work/SRC/openSUSE:Factory/hunspell/hunspell.changes2017-01-11 
11:52:38.372801678 +0100
+++ /work/SRC/openSUSE:Factory/.hunspell.new/hunspell.changes   2017-06-13 
16:07:19.161323216 +0200
@@ -1,0 +2,16 @@
+Wed Jun  7 13:03:41 UTC 2017 - mplus...@suse.com
+
+- Update to version 1.6.1:
+  * Library changes:
++ Performance improvements in suggest()
++ Fixes regressions for Hungarian related to compounding.
++ Fixes regressions for Korean related to ICONV.
+  * Command line tool:
++ Added Tajik translation
++ Fix regarding serching of OOo dicts installed in user folder
+  * Manpages:
++ Fix microsoft-cp1251 to cp1251. Dicts should not use the
+  first.
++ Typos.
+
+---

Old:

  hunspell-1.6.0.tar.gz

New:

  hunspell-1.6.1.tar.gz



Other differences:
--
++ hunspell.spec ++
--- /var/tmp/diff_new_pack.WWCqLJ/_old  2017-06-13 16:07:19.749240362 +0200
+++ /var/tmp/diff_new_pack.WWCqLJ/_new  2017-06-13 16:07:19.753239798 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hunspell
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define ver 1.6
 %define libname lib%{name}-1_6-0
 Name:   hunspell
-Version:1.6.0
+Version:1.6.1
 Release:0
 Summary:A spell checker and morphological analyzer library
 License:(GPL-2.0+ or LGPL-2.1+ or MPL-1.1+) and LGPL-2.1+
@@ -29,6 +29,7 @@
 Source1:baselibs.conf
 BuildRequires:  autoconf
 BuildRequires:  automake
+BuildRequires:  bison
 BuildRequires:  gcc-c++
 BuildRequires:  libstdc++-devel
 BuildRequires:  libtool
@@ -37,7 +38,6 @@
 BuildRequires:  readline-devel
 Recommends: %{name}-tools
 Recommends: unzip
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Hunspell is a spell checker and morphological analyzer library and
@@ -98,7 +98,7 @@
 find %{buildroot} -type f -name "*.la" -delete -print
 rm -f %{buildroot}%{_bindir}/example
 install -p -m 644 src/tools/{,un}munch.h %{buildroot}%{_includedir}
-ln -sf %{_libdir}/libhunspell-%{ver}.so.0.0.0 
%{buildroot}%{_libdir}/libhunspell.so
+ln -sf %{_libdir}/libhunspell-%{ver}.so.0.0.1 
%{buildroot}%{_libdir}/libhunspell.so
 
 %check
 make check %{?_smp_mflags}

++ hunspell-1.6.0.tar.gz -> hunspell-1.6.1.tar.gz ++
 4646 lines of diff (skipped)




commit python-requests for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-requests for openSUSE:Factory 
checked in at 2017-06-13 16:06:34

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


Package is "python-requests"

Tue Jun 13 16:06:34 2017 rev:42 rq:501303 version:2.13.0

Changes:

--- /work/SRC/openSUSE:Factory/python-requests/python-requests.changes  
2017-05-16 14:30:07.217870746 +0200
+++ /work/SRC/openSUSE:Factory/.python-requests.new/python-requests.changes 
2017-06-13 16:06:37.339217148 +0200
@@ -1,0 +2,5 @@
+Fri May  5 22:43:27 UTC 2017 - jeng...@inai.de
+
+- Ensure neutrality of description.
+
+---



Other differences:
--
++ python-requests.spec ++
--- /var/tmp/diff_new_pack.W7bG6Y/_old  2017-06-13 16:06:38.067114566 +0200
+++ /var/tmp/diff_new_pack.W7bG6Y/_new  2017-06-13 16:06:38.071114002 +0200
@@ -64,27 +64,22 @@
 %python_subpackages
 
 %description
-Requests is an ISC Licensed HTTP library, written in Python, for
-human beings.
+Requests is an HTTP library, written in Python, as an alternative
+to Python's builtin urllib2 which requires a work (even
+method overrides) to perform basic tasks.
 
-Most existing Python modules for sending HTTP requests are
-extremely verbose and cumbersome. Python's builtin urllib2 module
-provides most of the HTTP capabilities you should need, but the api
-is thoroughly broken. It requires an enormous amount of work (even
-method overrides) to perform the simplest of tasks.
-
-Features:
- - Extremely simple GET, HEAD, POST, PUT, DELETE Requests:
-   + Simple HTTP Header Request Attachment.
-   + Simple Data/Params Request Attachment.
-   + Simple Multipart File Uploads.
+Features of Requests:
+ - GET, HEAD, POST, PUT, DELETE Requests:
+   + HTTP Header Request Attachment.
+   + Data/Params Request Attachment.
+   + Multipart File Uploads.
+ CookieJar Support.
+ Redirection History.
+ Redirection Recursion Urllib Fix.
-   + Auto Decompression of GZipped Content.
+   + Automatic Decompression of GZipped Content.
+ Unicode URL Support.
- - Simple Authentication:
-   + Simple URL + HTTP Auth Registry.
+ - Authentication:
+   + URL + HTTP Auth Registry.
 
 %prep
 %setup -q -n requests-%{version}




commit python-beautifulsoup4 for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-beautifulsoup4 for 
openSUSE:Factory checked in at 2017-06-13 16:06:46

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


Package is "python-beautifulsoup4"

Tue Jun 13 16:06:46 2017 rev:20 rq:501448 version:4.5.3

Changes:

--- 
/work/SRC/openSUSE:Factory/python-beautifulsoup4/python-beautifulsoup4.changes  
2017-04-28 10:37:52.049857260 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-beautifulsoup4.new/python-beautifulsoup4.changes
 2017-06-13 16:06:47.885730844 +0200
@@ -1,0 +2,5 @@
+Mon May 22 13:25:06 UTC 2017 - aloi...@gmx.com
+
+- Fixed failing tests in python3
+
+---



Other differences:
--
++ python-beautifulsoup4.spec ++
--- /var/tmp/diff_new_pack.LG1WQE/_old  2017-06-13 16:06:50.041427045 +0200
+++ /var/tmp/diff_new_pack.LG1WQE/_new  2017-06-13 16:06:50.049425918 +0200
@@ -23,8 +23,8 @@
 Summary:HTML/XML Parser for Quick-Turnaround Applications Like 
Screen-Scraping
 License:MIT
 Group:  Development/Libraries/Python
-Url:http://www.crummy.com/software/BeautifulSoup/
-Source: 
https://pypi.io/packages/source/b/beautifulsoup4/beautifulsoup4-%{version}.tar.gz
+Url:https://www.crummy.com/software/BeautifulSoup/
+Source: 
https://files.pythonhosted.org/packages/source/b/beautifulsoup4/beautifulsoup4-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM speili...@suse.com -- Backport of 
https://code.launchpad.net/~saschpe/beautifulsoup/beautifulsoup/+merge/200849
 Patch0: beautifulsoup4-lxml-fixes.patch
 # Documentation requirements:
@@ -85,16 +85,13 @@
 %build
 %python_build
 pushd doc && make html && rm build/html/.buildinfo build/html/objects.inv &&  
popd
-%{_python_use_flavor python3}
-%__python3 %{_bindir}/2to3 -w -n build/lib/bs4
 
 %install
 %python_install
-# until it can be fixed
-find %{buildroot}%{python3_sitelib} -name test_soup.* -delete
 %python_expand %fdupes -s %{buildroot}%{$python_sitelib}
 
 %check
+export LANG=en_US.UTF-8
 %{python_expand export PYTHONPATH="%{buildroot}%{$python_sitelib}"
  pushd $PYTHONPATH
  $python %{_bindir}/nosetests-%{$python_version}




commit python-docutils for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-docutils for openSUSE:Factory 
checked in at 2017-06-13 16:07:04

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


Package is "python-docutils"

Tue Jun 13 16:07:04 2017 rev:22 rq:501919 version:0.13.1

Changes:

--- /work/SRC/openSUSE:Factory/python-docutils/python-docutils.changes  
2017-05-16 14:28:03.903194026 +0200
+++ /work/SRC/openSUSE:Factory/.python-docutils.new/python-docutils.changes 
2017-06-13 16:07:07.135018069 +0200
@@ -1,0 +2,7 @@
+Tue Jun  6 13:31:03 UTC 2017 - jmate...@suse.com
+
+- only emit rst2html5 alternatives for python 3
+- switch the "docutils" provides to the python 3 package (all the comands live 
there)
+  (this fixes bsc#1039394)
+
+---



Other differences:
--
++ python-docutils.spec ++
--- /var/tmp/diff_new_pack.06trhk/_old  2017-06-13 16:07:08.790784724 +0200
+++ /var/tmp/diff_new_pack.06trhk/_new  2017-06-13 16:07:08.794784161 +0200
@@ -32,13 +32,13 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-xml
-%ifpython2
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
+BuildArch:  noarch
+%ifpython3
 Provides:   docutils = %{version}
 Obsoletes:  docutils < %{version}
 %endif
-Requires(post):   update-alternatives
-Requires(preun):  update-alternatives
-BuildArch:  noarch
 %python_subpackages
 
 %description
@@ -47,7 +47,7 @@
 easy-to-read, what-you-see-is-what-you-get plaintext markup syntax.
 
 %prep
-%setup -n docutils-%{version}
+%setup -q -n docutils-%{version}
 # Remove useless ".py" ending from executables:
 for i in tools/rst*; do mv "$i" "${i/.py}"; done
 sed -i "s|'tools/\(rst.*\)\.py'|'tools/\1'|" setup.py
@@ -68,13 +68,17 @@
 mv %{buildroot}%{_bindir}/rst2html5 %{buildroot}%{_bindir}/rst2html5-docutils
 ln -s -f %{_sysconfdir}/alternatives/rst2html5 %{buildroot}%{_bindir}/rst2html5
 
+%ifpython3
 %post
 update-alternatives --install %{_bindir}/rst2html5 rst2html5 
%{_bindir}/rst2html5-docutils 15
+%endif
 
-%preun
+%ifpython3
+%postun
 if [ ! -f %{_bindir}/rst2html5-docutils ] ; then
update-alternatives --remove rst2html5 %{_bindir}/rst2html5-docutils
 fi
+%endif
 
 %check
 %python_exec -c 'import subprocess; import sys; 
sys.exit(subprocess.call([sys.executable, "test/alltests.py" if 
sys.version_info[0] == 2 else "test3/alltests.py"]))'




commit python-gpgme for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-gpgme for openSUSE:Factory 
checked in at 2017-06-13 16:06:57

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


Package is "python-gpgme"

Tue Jun 13 16:06:57 2017 rev:16 rq:501741 version:0.3

Changes:

--- /work/SRC/openSUSE:Factory/python-gpgme/python-gpgme.changes
2012-02-23 15:34:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-gpgme.new/python-gpgme.changes   
2017-06-13 16:07:01.991742904 +0200
@@ -1,0 +2,16 @@
+Tue Jun  6 12:31:55 UTC 2017 - ngomp...@gmail.com
+
+- Update to 0.3
+- Add patches from Fedora to fix pygpgme with new gpgme
+  * 0001-reflect-2.1-reporting-for-key-imports.patch
+  * 0002-passphrase_cb-is-deprecated.patch
+  * 0003-handle-generic-error-when-no-passphrase-callback-pre.patch
+  * 0004-add-pubkey_algo-and-hash_algo-attributes-to-signatur.patch
+  * 0005-add-ENCRYPT_NO_ENCRYPT_TO-constant.patch
+  * 0006-ignore-STATUS_KEY_CONSIDERED-when-editing.patch
+- Drop old patches for pygpgme 0.1
+  * pygpgme-0.1-py23.patch
+  * pygpgme-0.1-context.patch
+- Convert to singlespec to build for Python 2 and Python 3
+
+---

Old:

  pygpgme-0.1-context.patch
  pygpgme-0.1-py23.patch
  pygpgme-0.1.tar.bz2

New:

  0001-reflect-2.1-reporting-for-key-imports.patch
  0002-passphrase_cb-is-deprecated.patch
  0003-handle-generic-error-when-no-passphrase-callback-pre.patch
  0004-add-pubkey_algo-and-hash_algo-attributes-to-signatur.patch
  0005-add-ENCRYPT_NO_ENCRYPT_TO-constant.patch
  0006-ignore-STATUS_KEY_CONSIDERED-when-editing.patch
  pygpgme-0.3.tar.gz



Other differences:
--
++ python-gpgme.spec ++
--- /var/tmp/diff_new_pack.ABm8DK/_old  2017-06-13 16:07:02.683645395 +0200
+++ /var/tmp/diff_new_pack.ABm8DK/_new  2017-06-13 16:07:02.683645395 +0200
@@ -1,7 +1,8 @@
 #
 # spec file for package python-gpgme
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 Neal Gompa .
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +17,31 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-gpgme
-Version:0.1
+Version:0.3
 Release:0
 Summary:A Python module for working with OpenPGP messages
 License:LGPL-2.1+
 Group:  Development/Libraries/Python
 Url:http://pypi.python.org/pypi/pygpgme
-Source: pygpgme-%{version}.tar.bz2
-Patch:  pygpgme-0.1-py23.patch
-Patch1: pygpgme-0.1-context.patch
+Source: pygpgme-%{version}.tar.gz
+# Upstream is dead, but Fedora maintains a fork
+# All patches tracked at: https://pagure.io/pygpgme
+# Patches for working with gnupg >= 2.1
+Patch0001:  0001-reflect-2.1-reporting-for-key-imports.patch
+Patch0002:  0002-passphrase_cb-is-deprecated.patch
+Patch0003:  0003-handle-generic-error-when-no-passphrase-callback-pre.patch
+Patch0004:  0004-add-pubkey_algo-and-hash_algo-attributes-to-signatur.patch
+Patch0005:  0005-add-ENCRYPT_NO_ENCRYPT_TO-constant.patch
+Patch0006:  0006-ignore-STATUS_KEY_CONSIDERED-when-editing.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gpgme-devel
 BuildRequires:  python-devel
+BuildRequires:  python-rpm-macros
+BuildRequires:  python3-devel
+
+%python_subpackages
 
 %description
 PyGPGME is a Python module that lets you sign, verify, encrypt and
@@ -44,23 +57,19 @@
 
 %prep
 %setup -q -n pygpgme-%{version}
-%patch -p1
-%patch1 -p2
+%if 0%{?suse_version} >= 1330
+%autopatch -p1
+%endif
 
 %build
-#CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
+%python_build
 
 %install
-%{__python} setup.py install --root $RPM_BUILD_ROOT --prefix=%{_prefix}
-# No need to ship the tests
-rm -rf $RPM_BUILD_ROOT%{py_sitedir}/gpgme/tests/
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+%python_install
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
-%doc README PKG-INFO
-%{py_sitedir}/*
+%doc README examples tests
+%{python_sitearch}/*
 
 %changelog

++ 0001-reflect-2.1-reporting-for-key-imports.patch ++
>From 4f15b1c042e9cb8c68223c3f78a47b6c18678802 Mon Sep 17 00:00:00 2001
From: Daniel Kahn Gillmor 
Date: Tue, 26 Jan 2016 14:24:26 -0500
Subject: [PATCH 1/6] reflect 2.1 reporting for key imports

GnuPG 2.1 changes how it reports key imports.  These changes should
make the pygpgme test suite compatible with GnuPG 2.1.

See also:

commit python-iniparse for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-iniparse for openSUSE:Factory 
checked in at 2017-06-13 16:06:39

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


Package is "python-iniparse"

Tue Jun 13 16:06:39 2017 rev:19 rq:501425 version:0.4

Changes:

--- /work/SRC/openSUSE:Factory/python-iniparse/python-iniparse.changes  
2013-10-25 11:19:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-iniparse.new/python-iniparse.changes 
2017-06-13 16:06:44.710178370 +0200
@@ -1,0 +2,9 @@
+Tue Jun  6 13:38:02 UTC 2017 - ngomp...@gmail.com
+
+- Add patches from Fedora to enable Python 3 support
+  * iniparse-fix-issue-28.patch
+  * python-iniparse-python3-compat.patch
+  * python-iniparse-setup-fixes.patch
+- Convert to singlespec to offer Python 3 variant
+
+---

New:

  iniparse-fix-issue-28.patch
  python-iniparse-python3-compat.patch
  python-iniparse-setup-fixes.patch



Other differences:
--
++ python-iniparse.spec ++
--- /var/tmp/diff_new_pack.k46K0b/_old  2017-06-13 16:06:45.334090443 +0200
+++ /var/tmp/diff_new_pack.k46K0b/_new  2017-06-13 16:06:45.338089879 +0200
@@ -1,7 +1,8 @@
 #
 # spec file for package python-iniparse
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 Neal Gompa .
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,6 +17,7 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-iniparse
 Version:0.4
 Release:0
@@ -26,14 +28,24 @@
 Source: http://iniparse.googlecode.com/files/iniparse-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM: speili...@suse.com -- Backport of 
https://code.google.com/p/iniparse/issues/detail?id=31
 Patch0: iniparse-insert-after-commented-option.patch
+# PATCH-FIX-UPSTREAM: tim...@fedoraproject.org -- Backport of 
https://code.google.com/p/iniparse/issues/detail?id=28
+Patch1: iniparse-fix-issue-28.patch
+# PATCH-FIX-OPENSUSE: tim...@fedoraproject.org -- Variant of 
http://code.google.com/p/iniparse/issues/detail?id=22 that uses python-six to 
support py2+py3, from Fedora
+Patch2: python-iniparse-python3-compat.patch
+# PATCH-FIX-OPENSUSE: ngomp...@gmail.com -- Fix setup.py to have correct 
information, from Fedora
+Patch3: python-iniparse-setup-fixes.patch
+
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six}
 BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+BuildRequires:  python-rpm-macros
+BuildRequires:  python3-devel
+# tests require testsuite modules
+BuildRequires:  python3-testsuite
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
+
+%python_subpackages
 
 %description
 iniparse is an INI parser for Python which is API compatible with the
@@ -44,20 +56,24 @@
 %prep
 %setup -q -n iniparse-%{version}
 %patch0 -p0
+%patch1 -p1
+%patch2 -p0
+%patch3 -p0
+
 chmod 644 html/index.html
 sed -i "/.*test_multiprocessing.*/d" tests/__init__.py # NOTE(saschpe): 
Doesn't work and I'm lazy
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --root %{buildroot} --prefix=%{_prefix}
+%python_install
 rm -rf %{buildroot}%{_datadir}/doc/iniparse-%{version} # Remove unwanted stuff
 
 %check
-python runtests.py
+%python_exec runtests.py
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
 %doc Changelog LICENSE LICENSE-PSF README html/*
 %{python_sitelib}/*

++ iniparse-fix-issue-28.patch ++
>From b3d6ea5ed88b0e6cf9fdb411a14e725665ded92e Mon Sep 17 00:00:00 2001
From: Tim Lauridsen 
Date: Fri, 7 Mar 2014 19:06:40 +0100
Subject: [PATCH] Fix handling of REM  as a comment, but REM is not
 (upstream issue #28)

---
 tests/test_ini.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/test_ini.py b/tests/test_ini.py
index 07d4f4e..6d974f0 100644
--- a/tests/test_ini.py
+++ b/tests/test_ini.py
@@ -144,8 +144,7 @@ class test_comment_line(unittest.TestCase):
 '#this is a comment',
 ';; this is also a comment',
 '; so is this   ',
-'Rem and this',
-'remthis too!'
+'Rem and this'
 ]
 def test_parsing(self):
  

commit libqt5-qtbase for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtbase for openSUSE:Factory 
checked in at 2017-06-13 16:06:00

Comparing /work/SRC/openSUSE:Factory/libqt5-qtbase (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtbase.new (New)


Package is "libqt5-qtbase"

Tue Jun 13 16:06:00 2017 rev:59 rq:501456 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtbase/libqt5-qtbase.changes  
2016-12-22 16:06:07.401079872 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qtbase.new/libqt5-qtbase.changes 
2017-06-13 16:06:03.024053118 +0200
@@ -1,0 +2,59 @@
+Tue Jun  6 10:19:48 UTC 2017 - alarr...@suse.com
+
+- Add 0001-Add-remote-print-queue-support.patch to support remote print
+  queues. This adds a delay the first time the print dialog is opened in
+  order to search for print queues. If you don't have any network printer
+  queue and you find the delay too annoying, it can be disabled by setting
+  the QT_DISABLE_PRINTER_DISCOVERY environment variable to 1 (fate#322052,
+  bsc#955432).
+- Add 0001-Fix-open-chmod-race-condition-in-QSaveFile.patch to fix
+  a potential info leak due to race condition in QSaveFile (bsc#1034005).
+
+---
+Fri Jun  2 21:11:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Revert upstream commit to workaround QTBUG-61197:
+  * de63bbd2f806b0219a60775017899cedb121581f.patch
+
+---
+Fri Jun  2 17:57:54 UTC 2017 - fab...@ritter-vogt.de
+
+- Add upstream patch to fix QTBUG-61140:
+  * dont-destroy-foreign-windows.patch
+- Replaces c585802e946d97e7d177ea334a162dc7bc286b84.patch
+
+---
+Fri Jun  2 08:49:53 UTC 2017 - fab...@ritter-vogt.de
+
+- Add upstream patch to fix various HiDPI-related issues:
+  * native-children-hidpi-offset.patch (QTBUG-59017, kde#363548)
+
+---
+Wed May 31 19:46:07 UTC 2017 - fab...@ritter-vogt.de
+
+- Revert upstream commit to workaround QTBUG-61140:
+  c585802e946d97e7d177ea334a162dc7bc286b84.patch
+
+---
+Wed May 31 07:05:05 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+- Remove patches, now upstream:
+  * Stop-unloading-plugins-in-QPluginLoader-and-QFactoryLoader.patch
+  * Fix-some-QtDBus-crashes-during-application-destruction.patch
+  * Merge-the-QDBusMetaTypes-custom-information-to-QDBusConnectionManager.patch
+- Refresh patches:
+  * Fix-some-QtDBus-crashes-during-application-destruction.patch
+  * Merge-the-QDBusMetaTypes-custom-information-to-QDBusConnectionManager.patch
+  * libqt5-prioritise-gtk2-platformtheme.patch
+  * tell-the-truth-about-private-api.patch
+
+---

Old:

  Fix-some-QtDBus-crashes-during-application-destruction.patch
  Merge-the-QDBusMetaTypes-custom-information-to-QDBusConnectionManager.patch
  Stop-unloading-plugins-in-QPluginLoader-and-QFactoryLoader.patch
  qtbase-opensource-src-5.7.1.tar.xz

New:

  0001-Add-remote-print-queue-support.patch
  0001-Fix-open-chmod-race-condition-in-QSaveFile.patch
  de63bbd2f806b0219a60775017899cedb121581f.patch
  dont-destroy-foreign-windows.patch
  native-children-hidpi-offset.patch
  qtbase-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtbase.spec ++
--- /var/tmp/diff_new_pack.iFnuzy/_old  2017-06-13 16:06:07.235459613 +0200
+++ /var/tmp/diff_new_pack.iFnuzy/_new  2017-06-13 16:06:07.239459049 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-qtbase
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,17 +26,17 @@
 %endif
 
 Name:   libqt5-qtbase
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:C++ Program Library, Core Components
 License:GPL-3.0 or SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  System/Libraries
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define 

commit libqt5-qtmultimedia for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtmultimedia for 
openSUSE:Factory checked in at 2017-06-13 16:06:06

Comparing /work/SRC/openSUSE:Factory/libqt5-qtmultimedia (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtmultimedia.new (New)


Package is "libqt5-qtmultimedia"

Tue Jun 13 16:06:06 2017 rev:29 rq:502780 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtmultimedia/libqt5-qtmultimedia.changes  
2016-12-22 16:06:44.739796509 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtmultimedia.new/libqt5-qtmultimedia.changes 
2017-06-13 16:06:13.042641219 +0200
@@ -1,0 +2,19 @@
+Fri Jun  9 09:25:23 UTC 2017 - jeng...@inai.de
+
+- Rework description.
+- Use find -exec's "+" strategy.
+
+---
+Wed May 31 07:05:15 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---
@@ -90 +109 @@
-- Don't BuildRequire openal-soft-devel for SLE
+- Don't BuildRequire openal-soft-devel for SLE (bsc#886207)

Old:

  qtmultimedia-opensource-src-5.7.1.tar.xz

New:

  qtmultimedia-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtmultimedia.spec ++
--- /var/tmp/diff_new_pack.GSJq1V/_old  2017-06-13 16:06:15.426305294 +0200
+++ /var/tmp/diff_new_pack.GSJq1V/_new  2017-06-13 16:06:15.426305294 +0200
@@ -26,17 +26,17 @@
 %endif
 
 Name:   libqt5-qtmultimedia
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Multimedia Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtmultimedia-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  alsa-devel
 BuildRequires:  fdupes
@@ -74,10 +74,11 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+Qt Multimedia is a module that provides a set of QML types and C++
+classes to handle multimedia content. It also provides APIs to access
+the camera and radio functionality. The included Qt Audio Engine
+provides types for 3D positional audio playback and content
+management.
 
 %prep
 %setup -q -n qtmultimedia-opensource-src-%{real_version}
@@ -87,13 +88,14 @@
 Group:  Development/Libraries/X11
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+Qt Multimedia is a module that provides a set of QML types and C++
+classes to handle multimedia content. It also provides APIs to access
+the camera and radio functionality. The included Qt Audio Engine
+provides types for 3D positional audio playback and content
+management.
 
 %package devel
-Summary:Qt Development Kit
+Summary:Development files for the Qt5 Multimedia library
 Group:  Development/Libraries/X11
 Requires:   %libname = %{version}
 Requires:   libqt5-qtdeclarative-devel >= %{version}
@@ -104,10 +106,10 @@
 Obsoletes:  libQt5Multimedia-devel < %{version}
 
 %description devel
-You need this package, if you want to compile programs with qtmultimedia.
+You need this package if you want to compile programs with qtmultimedia.
 
 %package private-headers-devel
-Summary:Non-ABI stable experimental API
+Summary:Non-ABI stable experimental API for the Qt5 Multimedia library
 Group:  Development/Libraries/C and C++
 BuildArch:  noarch
 Requires:   %{name}-devel = %{version}
@@ -128,7 +130,7 @@
 Recommends: %{name}-devel
 
 %description examples
-Examples for libqt5-qtmultimedia module.
+Examples for the libqt5-qtmultimedia module.
 
 %post -n %libname -p /sbin/ldconfig
 
@@ -149,8 +151,8 @@
 
 %install
 %qmake5_install
-find %{buildroot}/%{_libdir} -type f -name '*la' -print -exec perl -pi -e 's, 
-L%{_builddir}/\S+,,g' {} \;
-find 

commit libqt5-qtwebengine for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtwebengine for 
openSUSE:Factory checked in at 2017-06-13 16:05:23

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebengine (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new (New)


Package is "libqt5-qtwebengine"

Tue Jun 13 16:05:23 2017 rev:19 rq:500324 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebengine/libqt5-qtwebengine.changes
2017-05-27 13:08:13.529516740 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new/libqt5-qtwebengine.changes   
2017-06-13 16:05:31.512493966 +0200
@@ -1,0 +2,43 @@
+Thu Jun  1 07:58:09 UTC 2017 - fab...@ritter-vogt.de
+
+- Remove patch that is apparently not enough for aarch64:
+  * gn-add-aarch64.patch
+
+---
+Thu Jun  1 07:49:42 UTC 2017 - jeng...@inai.de
+
+- Update descriptions.
+- Use find -exec's "+" strategy.
+
+---
+Wed May 31 07:05:31 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Tue May 30 14:32:33 UTC 2017 - fab...@ritter-vogt.de
+
+- Disable usage of system ICU on TW as ICU 59 is not supported
+  and patches do not apply
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+- Remove patches, now upstream:
+  * fix-chromium-gcc7.patch
+  * use-fno-delete-null-pointer-checks-with-gcc-6.diff
+  * webrtc-build-with-neon.patch
+- Refresh patches:
+  * armv6-ffmpeg-no-thumb.patch
+  * disable-gpu-when-using-nouveau-boo-1005323.diff
+- Support new build system, which does not support manual unbundling
+  anymore
+- Add patch to allow building on aarch64:
+  * gn-add-aarch64.patch
+- Reorder rpm sections
+
+---

Old:

  fix-chromium-gcc7.patch
  qtwebengine-opensource-src-5.7.1.tar.xz
  use-fno-delete-null-pointer-checks-with-gcc-6.diff
  webrtc-build-with-neon.patch

New:

  qtwebengine-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtwebengine.spec ++
--- /var/tmp/diff_new_pack.5WAvDg/_old  2017-06-13 16:05:40.751191980 +0200
+++ /var/tmp/diff_new_pack.5WAvDg/_new  2017-06-13 16:05:40.751191980 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-qtwebengine
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,29 +18,48 @@
 
 %define qt5_snapshot 0
 
+%if %{?suse_version} <= 1320
+%bcond_with system_vpx
+%else
+%bcond_without system_vpx
+%endif
+%if %{?suse_version} < 1330
+%bcond_with system_icu
+%else
+# Change to without once ICU 59 in TW is supported
+%bcond_with system_icu
+%endif
+%if %{?suse_version} >= 1320 || (%{?suse_version} == 1315 && 0%{?leap_version} 
>= 420200)
+%bcond_without system_minizip
+%else
+%bcond_with system_minizip
+%endif
+# This is just overall condition to contain everything we can't provide on 
SLE12
+%if 0%{?suse_version} >= 1320 || 0%{?is_opensuse}
+%bcond_with sle_bundles
+%bcond_without system_harfbuzz
+%else
+%bcond_without sle_bundles
+%bcond_with system_harfbuzz
+%endif
+
 Name:   libqt5-qtwebengine
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 WebEngine Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtwebengine-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM: use-fno-delete-null-pointer-checks-with-gcc-6.diff - Fix 
crashes when using GCC6
-Patch0: use-fno-delete-null-pointer-checks-with-gcc-6.diff
 # PATCH-FIX-UPSTREAM armv6-ffmpeg-no-thumb.patch - Fix ffmpeg configuration 
for armv6
 Patch2: armv6-ffmpeg-no-thumb.patch
-# PATCH-FIX-UPSTREAM webrtc-build-with-neon.patch - Properly configure webrtc 
for neon support
-Patch3: 

commit libqt5-qtwebchannel for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtwebchannel for 
openSUSE:Factory checked in at 2017-06-13 16:05:35

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebchannel (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwebchannel.new (New)


Package is "libqt5-qtwebchannel"

Tue Jun 13 16:05:35 2017 rev:10 rq:500327 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebchannel/libqt5-qtwebchannel.changes  
2016-12-22 16:07:51.438358789 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebchannel.new/libqt5-qtwebchannel.changes 
2017-06-13 16:05:41.167133362 +0200
@@ -1,0 +2,18 @@
+Thu Jun  1 07:58:25 UTC 2017 - jeng...@inai.de
+
+- Update descriptions.
+
+---
+Wed May 31 07:05:30 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtwebchannel-opensource-src-5.7.1.tar.xz

New:

  qtwebchannel-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtwebchannel.spec ++
--- /var/tmp/diff_new_pack.Z53rkf/_old  2017-06-13 16:05:41.843038109 +0200
+++ /var/tmp/diff_new_pack.Z53rkf/_new  2017-06-13 16:05:41.847037545 +0200
@@ -19,17 +19,17 @@
 %define qt5_snapshot 0
 %define libname libQt5WebChannel5
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtwebchannel-opensource-src-%{real_version}
 Name:   libqt5-qtwebchannel
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 WebChannel Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
-Source: %{tar_version}.tar.xz
+Url:https://www.qt.io
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libqt5-qtbase-private-headers-devel >= %{version}
@@ -43,7 +43,14 @@
 %endif
 
 %description
-Qt is a set of libraries for developing applications.
+Qt WebChannel enables peer-to-peer communication between a server
+(QML/C++ application) and a client (HTML/JavaScript or QML
+application).
+
+The module provides a JavaScript library for seamless integration of
+C++ and QML applications with HTML/JavaScript and QML clients. The
+clients must use the JavaScript library to access the serialized
+QObjects published by the host applications.
 
 %prep
 %setup -q -n qtwebchannel-opensource-src-%{real_version}
@@ -54,10 +61,17 @@
 %requires_ge libQtQuick5
 
 %description -n %{libname}
-Qt is a set of libraries for developing applications.
+Qt WebChannel enables peer-to-peer communication between a server
+(QML/C++ application) and a client (HTML/JavaScript or QML
+application).
+
+The module provides a JavaScript library for seamless integration of
+C++ and QML applications with HTML/JavaScript and QML clients. The
+clients must use the JavaScript library to access the serialized
+QObjects published by the host applications.
 
 %package -n %{libname}-imports
-Summary:Qt 5 WebSockets Library - QML imports
+Summary:QML imports for the Qt5 WebSockets library
 Group:  Development/Libraries/X11
 Supplements:packageand(%{libname}:libQtQuick5)
 # imports splited with 5.4.1
@@ -65,21 +79,19 @@
 %requires_ge libQtQuick5
 
 %description -n %{libname}-imports
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The module provides a JavaScript library for seamless integration of
+C++ and QML applications with HTML/JavaScript and QML clients.
 
 %package devel
-Summary:Qt Development Kit
+Summary:Development files for the Qt5 WebChannel library
 Group:  Development/Libraries/X11
 Requires:   %{libname} = %{version}
 
 %description devel
-You need this package, if you want to compile programs with qtwebchannel.
+You need this package if you want to compile programs with qtwebchannel.
 
 %package private-headers-devel
-Summary:Non-ABI stable experimental API
+Summary:Non-ABI stable experimental API for the Qt5 WebChannel library
 Group:  Development/Libraries/C and C++
 Requires:   

commit libqt5-qtsvg for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtsvg for openSUSE:Factory 
checked in at 2017-06-13 16:05:45

Comparing /work/SRC/openSUSE:Factory/libqt5-qtsvg (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtsvg.new (New)


Package is "libqt5-qtsvg"

Tue Jun 13 16:05:45 2017 rev:28 rq:500617 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtsvg/libqt5-qtsvg.changes
2016-12-22 16:07:27.565736718 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qtsvg.new/libqt5-qtsvg.changes   
2017-06-13 16:05:46.246417551 +0200
@@ -1,0 +2,19 @@
+Fri Jun  2 10:04:22 UTC 2017 - jeng...@inai.de
+
+- Description updates.
+- Use find -exec's "+" strategy.
+
+---
+Wed May 31 07:05:25 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtsvg-opensource-src-5.7.1.tar.xz

New:

  qtsvg-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtsvg.spec ++
--- /var/tmp/diff_new_pack.E4b9os/_old  2017-06-13 16:05:47.246276643 +0200
+++ /var/tmp/diff_new_pack.E4b9os/_new  2017-06-13 16:05:47.250276080 +0200
@@ -21,17 +21,17 @@
 %define libname libQt5Svg5
 
 Name:   libqt5-qtsvg
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 SVG Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtsvg-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
 BuildRequires:  libQt5Gui-private-headers-devel >= %{version}
@@ -46,10 +46,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt SVG module provides functionality for displaying SVG images
+as a widget, and to create SVG files using drawing commands.
 
 %prep
 %setup -q -n qtsvg-opensource-src-%{real_version}
@@ -60,23 +58,21 @@
 %requires_ge libQt5Widgets5
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt SVG module provides functionality for displaying SVG images
+as a widget, and to create SVG files using drawing commands.
 
 %package devel
-Summary:Qt Development Kit
+Summary:Development files for the Qt5 SVG library
 Group:  Development/Libraries/X11
 Requires:   %libname = %{version}
 Provides:   libQt5Svg-devel = %{version}
 Obsoletes:  libQt5Svg-devel < %{version}
 
 %description devel
-You need this package, if you want to compile programs with QtSvg.
+You need this package if you want to compile programs with QtSvg.
 
 %package private-headers-devel
-Summary:Non-ABI stable experimental API
+Summary:Non-ABI stable experimental API for the Qt5 SVG library
 Group:  Development/Libraries/C and C++
 BuildArch:  noarch
 Requires:   %{name}-devel = %{version}
@@ -90,12 +86,12 @@
 the exact Qt version.
 
 %package examples
-Summary:Qt5 svg examples
+Summary:Qt5 SVG examples
 Group:  Development/Libraries/X11
 Recommends: %{name}-devel
 
 %description examples
-Examples for libqt5-qtsvg modules.
+Examples for the libqt5-qtsvg modules.
 
 %post -n %libname -p /sbin/ldconfig
 
@@ -111,7 +107,7 @@
 
 %install
 %qmake5_install
-find %{buildroot}/%{_libqt5_libdir} -type f -name '*prl' -exec sed -i -e 
"/^QMAKE_PRL_BUILD_DIR/d" {} \;
+find %{buildroot}/%{_libqt5_libdir} -type f -name '*prl' -exec sed -i -e 
"/^QMAKE_PRL_BUILD_DIR/d" {} +
 # kill .la files
 rm -f %{buildroot}%{_libqt5_libdir}/lib*.la
 

++ qtsvg-opensource-src-5.7.1.tar.xz -> qtsvg-opensource-src-5.9.0.tar.xz 
++
 21824 lines of diff (skipped)




commit libqt5-qtwebkit for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtwebkit for openSUSE:Factory 
checked in at 2017-06-13 16:05:49

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebkit (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwebkit.new (New)


Package is "libqt5-qtwebkit"

Tue Jun 13 16:05:49 2017 rev:42 rq:500811 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebkit/libqt5-qtwebkit.changes  
2017-05-18 20:44:23.864473581 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-qtwebkit.new/libqt5-qtwebkit.changes 
2017-06-13 16:05:50.321843211 +0200
@@ -1,0 +2,19 @@
+Thu Jun  1 07:45:36 UTC 2017 - jeng...@inai.de
+
+- Update descriptions.
+- Use find -exec option with "+" strategy.
+
+---
+Wed May 31 07:05:32 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtwebkit-opensource-src-5.7.1.tar.xz

New:

  qtwebkit-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtwebkit.spec ++
--- /var/tmp/diff_new_pack.qW34Cz/_old  2017-06-13 16:05:52.893480796 +0200
+++ /var/tmp/diff_new_pack.qW34Cz/_new  2017-06-13 16:05:52.893480796 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-qtwebkit
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,11 +21,11 @@
 %define libname libQt5WebKitWidgets5
 
 Name:   libqt5-qtwebkit
-Version:5.7.1
+Version:5.9.0
 Release:0
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtwebkit-opensource-src-%{real_version}
 # Workaround ppc64le build failures due to OOM issue, bnc#863533
 %ifarch ppc64le
@@ -34,8 +34,8 @@
 Summary:Qt 5 WebKit Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
-Source: %{tar_version}.tar.xz
+Url:https://www.qt.io
+Source: 
https://download.qt.io/community_releases/5.9/%{real_version}-final/%{tar_version}.tar.xz
 Source1:baselibs.conf
 Source99:   libqt5-qtwebkit-rpmlintrc
 Patch1: 04_enable_debug_information.diff
@@ -112,10 +112,10 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt WebKit module provides the WebView API, which allows QML
+applications to render regions of dynamic web content. A WebView
+component may share the screen with other QML components or encompass
+the full screen as specified within the QML application.
 
 %prep
 %setup -q -n qtwebkit-opensource-src-%{real_version}
@@ -128,7 +128,7 @@
 %patch130 -p1
 
 %package -n %libname
-Summary:Qt 5 WebKit Library
+Summary:Qt 5 WebKit Widget library
 Group:  Development/Libraries/X11
 Requires:   libQt5WebKit5 = %version
 %requires_ge libQt5OpenGL5
@@ -136,10 +136,10 @@
 %requires_ge libQt5Widgets5
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt WebKit module provides the WebView API, which allows QML
+applications to render regions of dynamic web content. A WebView
+component may share the screen with other QML components or encompass
+the full screen as specified within the QML application.
 
 %package -n libQt5WebKit5
 Summary:Qt5 WebKit Library
@@ -152,10 +152,10 @@
 %requires_ge libQt5WebChannel5
 
 %description -n libQt5WebKit5
-You need this package, if you want to compile programs with qtwebkit.
+You need this package if you want to compile programs with qtwebkit.
 
 %package -n libQt5WebKit5-imports
-Summary:Qt5 WebKit Library - QML imports
+Summary:QML imports for the Qt5 WebKit library
 Group:  Development/Libraries/X11
 Supplements:packageand(libQt5WebKit5:libQtQuick5)
 # imports splited with 5.4.1
@@ -164,10 +164,10 @@
 %requires_ge libQtQuick5
 
 %description -n 

commit libqt5-qtserialport for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtserialport for 
openSUSE:Factory checked in at 2017-06-13 16:05:40

Comparing /work/SRC/openSUSE:Factory/libqt5-qtserialport (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtserialport.new (New)


Package is "libqt5-qtserialport"

Tue Jun 13 16:05:40 2017 rev:26 rq:500616 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtserialport/libqt5-qtserialport.changes  
2016-12-22 16:07:17.427171306 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtserialport.new/libqt5-qtserialport.changes 
2017-06-13 16:05:42.158993582 +0200
@@ -1,0 +2,18 @@
+Fri Jun  2 11:25:07 UTC 2017 - jeng...@inai.de
+
+- Update descriptions.
+
+---
+Wed May 31 07:05:22 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtserialport-opensource-src-5.7.1.tar.xz

New:

  qtserialport-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtserialport.spec ++
--- /var/tmp/diff_new_pack.96lL22/_old  2017-06-13 16:05:42.906888183 +0200
+++ /var/tmp/diff_new_pack.96lL22/_new  2017-06-13 16:05:42.910887620 +0200
@@ -21,17 +21,17 @@
 %define libname libQt5SerialPort5
 
 Name:   libqt5-qtserialport
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Serial Port Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtserialport-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
@@ -45,10 +45,11 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+Qt Serial Port provides the basic functionality, which includes
+configuring, I/O operations, getting and setting the control signals
+of the RS-232 pinouts. This module does not support terminal features
+(echo, CR/LF control, text mode, timeouts/delays, or poinout signal
+change notification).
 
 %prep
 %setup -q -n qtserialport-opensource-src-%{real_version}
@@ -59,23 +60,24 @@
 %requires_ge libQt5Core5
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+Qt Serial Port provides the basic functionality, which includes
+configuring, I/O operations, getting and setting the control signals
+of the RS-232 pinouts. This module does not support terminal features
+(echo, CR/LF control, text mode, timeouts/delays, or poinout signal
+change notification).
 
 %package devel
-Summary:Qt Development Kit
+Summary:Development files for the Qt5 SerialPort library
 Group:  Development/Libraries/X11
 Requires:   %libname = %{version}
 Provides:   libQt5SerialPort-devel = %{version}
 Obsoletes:  libQt5SerialPort-devel < %{version}
 
 %description devel
-You need this package, if you want to compile programs with qtserialport.
+You need this package if you want to compile programs with qtserialport.
 
 %package private-headers-devel
-Summary:Non-ABI stable experimental API
+Summary:Non-ABI stable experimental API for the Qt5 SerialPort library
 Group:  Development/Libraries/C and C++
 BuildArch:  noarch
 Requires:   %{name}-devel = %{version}
@@ -95,7 +97,7 @@
 Recommends: %{name}-devel
 
 %description examples
-Examples for libqt5-qtserialport module.
+Examples for the libqt5-qtserialport module.
 
 %post -n %libname -p /sbin/ldconfig
 

++ qtserialport-opensource-src-5.7.1.tar.xz -> 
qtserialport-opensource-src-5.9.0.tar.xz ++
 5048 lines of diff (skipped)




commit python-qt5 for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package python-qt5 for openSUSE:Factory 
checked in at 2017-06-13 16:05:54

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


Package is "python-qt5"

Tue Jun 13 16:05:54 2017 rev:22 rq:500900 version:5.8.2

Changes:

--- /work/SRC/openSUSE:Factory/python-qt5/python-qt5.changes2017-06-01 
16:24:31.412590055 +0200
+++ /work/SRC/openSUSE:Factory/.python-qt5.new/python-qt5.changes   
2017-06-13 16:05:55.389129090 +0200
@@ -1,0 +2,5 @@
+Fri Jun  2 11:22:22 UTC 2017 - jeng...@inai.de
+
+- Trim redundant platform support mentions.
+
+---



Other differences:
--
++ python-qt5.spec ++
--- /var/tmp/diff_new_pack.euxrPq/_old  2017-06-13 16:05:56.332996073 +0200
+++ /var/tmp/diff_new_pack.euxrPq/_new  2017-06-13 16:05:56.332996073 +0200
@@ -81,10 +81,7 @@
 
 %description
 PyQt is a set of Python bindings for Trolltech's Qt application
-framework and runs on all platforms supported by Qt including Windows,
-MacOS/X and Linux. There are two sets of bindings: PyQt v5 supports Qt
-v5, and it can be co-installed with PyQt4.
-
+framework. The qt4 and qt5 bindings can be co-installed.
 
 %package devel
 Summary:PyQt - devel part of python bindings for Qt 5
@@ -133,9 +130,7 @@
 
 %description devel
 PyQt is a set of Python bindings for Trolltech's Qt application
-framework and runs on all platforms supported by Qt including Windows,
-MacOS/X and Linux. There are two sets of bindings: PyQt v5 supports Qt
-v5, and it can be co-installed with PyQt4.
+framework. The qt4 and qt5 bindings can be co-installed.
 
 This package contains all the developer tools you need to create your
 own PyQt applications.
@@ -148,9 +143,7 @@
 
 %description -n %{name}-utils
 PyQt is a set of Python bindings for Trolltech's Qt application
-framework and runs on all platforms supported by Qt including Windows,
-MacOS/X and Linux. There are two sets of bindings: PyQt v5 supports Qt
-v5, and it can be co-installed with PyQt4.
+framework. The qt4 and qt5 bindings can be co-installed.
 
 This package contains common files shared between python2 and python3
 versions of PyQt5.




commit libqt5-qtwebsockets for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtwebsockets for 
openSUSE:Factory checked in at 2017-06-13 16:05:07

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebsockets (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwebsockets.new (New)


Package is "libqt5-qtwebsockets"

Tue Jun 13 16:05:07 2017 rev:18 rq:500321 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebsockets/libqt5-qtwebsockets.changes  
2016-12-22 16:08:22.913905064 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebsockets.new/libqt5-qtwebsockets.changes 
2017-06-13 16:05:13.978964918 +0200
@@ -1,0 +2,18 @@
+Thu Jun  1 07:44:57 UTC 2017 - jeng...@inai.de
+
+- Update descriptions.
+
+---
+Wed May 31 07:05:33 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtwebsockets-opensource-src-5.7.1.tar.xz

New:

  qtwebsockets-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtwebsockets.spec ++
--- /var/tmp/diff_new_pack.tFy4xz/_old  2017-06-13 16:05:16.422620541 +0200
+++ /var/tmp/diff_new_pack.tFy4xz/_new  2017-06-13 16:05:16.430619414 +0200
@@ -21,17 +21,17 @@
 %define libname libQt5WebSockets5
 
 Name:   libqt5-qtwebsockets
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 WebSockets Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtwebsockets-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
 BuildRequires:  pkgconfig(Qt5Core) >= %{version}
@@ -48,10 +48,10 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt WebSockets module provides C++ and QML interfaces that enable
+Qt applications to act as a server that can process WebSocket
+requests, or a client that can consume data received from the server,
+or both.
 
 %prep
 %setup -q -n qtwebsockets-opensource-src-%{real_version}
@@ -62,13 +62,13 @@
 %requires_ge libQt5Network5
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt WebSockets module provides C++ and QML interfaces that enable
+Qt applications to act as a server that can process WebSocket
+requests, or a client that can consume data received from the server,
+or both.
 
 %package -n %libname-imports
-Summary:Qt 5 WebSockets Library - QML imports
+Summary:QML imports for the Qt 5 WebSockets library
 Group:  Development/Libraries/X11
 Supplements:packageand(%libname:libQtQuick5)
 # imports splited with 5.4.1
@@ -76,21 +76,21 @@
 %requires_ge libQtQuick5
 
 %description -n %libname-imports
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt WebSockets module provides C++ and QML interfaces that enable
+Qt applications to act as a server that can process WebSocket
+requests, or a client that can consume data received from the server,
+or both.
 
 %package devel
-Summary:Qt Development Kit
+Summary:Developemnt files for the Qt5 WebSockets library
 Group:  Development/Libraries/X11
 Requires:   %libname = %{version}
 
 %description devel
-You need this package, if you want to compile programs with QtWebSockets.
+You need this package if you want to compile programs with QtWebSockets.
 
 %package private-headers-devel
-Summary:Non-ABI stable experimental API
+Summary:Non-ABI stable experimental API for the Qt5 WebSocket library
 Group:  Development/Libraries/C and C++
 BuildArch:  noarch
 Requires:   %{name}-devel = %{version}
@@ -108,7 +108,7 @@
 Recommends: 

commit libqt5-qtwayland for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtwayland for 
openSUSE:Factory checked in at 2017-06-13 16:04:42

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwayland (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwayland.new (New)


Package is "libqt5-qtwayland"

Tue Jun 13 16:04:42 2017 rev:12 rq:500010 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwayland/libqt5-qtwayland.changes
2016-12-22 16:07:43.587469674 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qtwayland.new/libqt5-qtwayland.changes   
2017-06-13 16:04:47.842648230 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:29 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtwayland-opensource-src-5.7.1.tar.xz

New:

  qtwayland-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtwayland.spec ++
--- /var/tmp/diff_new_pack.PI3n6i/_old  2017-06-13 16:04:48.890500559 +0200
+++ /var/tmp/diff_new_pack.PI3n6i/_new  2017-06-13 16:04:48.89446 +0200
@@ -16,20 +16,20 @@
 #
 
 
-%define qt5_snapshot 1
+%define qt5_snapshot 0
 %define libname libQt5WaylandCompositor5
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtwayland-opensource-src-%{real_version}
 Name:   libqt5-qtwayland
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Wayland Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
-Source: %{tar_version}.tar.xz
+Url:https://www.qt.io
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libqt5-qtbase-private-headers-devel >= %{version}
@@ -134,24 +134,24 @@
 
 %files
 %defattr(-,root,root,-)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_bindir}/qtwaylandscanner
 %{_libqt5_plugindir}/
 %{_libqt5_archdatadir}/qml/QtWayland/
 
 %files -n libQt5WaylandCompositor5
 %defattr(-,root,root,-)
-%doc *.txt LICENSE.*
+%doc  LICENSE.*
 %{_libqt5_libdir}/libQt5WaylandCompositor.so.*
 
 %files -n libQt5WaylandClient5
 %defattr(-,root,root,-)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_libdir}/libQt5WaylandClient.so.*
 
 %files devel
 %defattr(-,root,root,-)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_libdir}/*.prl
 %{_libqt5_libdir}/*.so
 %{_libqt5_libdir}/pkgconfig/*
@@ -162,12 +162,12 @@
 
 %files private-headers-devel
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_includedir}/Qt*/%{so_version}
 
 %files examples
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_examplesdir}/
 
 %changelog

++ qtwayland-opensource-src-5.7.1.tar.xz -> 
qtwayland-opensource-src-5.9.0.tar.xz ++
 44979 lines of diff (skipped)




commit libqt5-qtxmlpatterns for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtxmlpatterns for 
openSUSE:Factory checked in at 2017-06-13 16:04:52

Comparing /work/SRC/openSUSE:Factory/libqt5-qtxmlpatterns (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtxmlpatterns.new (New)


Package is "libqt5-qtxmlpatterns"

Tue Jun 13 16:04:52 2017 rev:26 rq:500315 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtxmlpatterns/libqt5-qtxmlpatterns.changes
2016-12-22 16:08:42.479136625 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtxmlpatterns.new/libqt5-qtxmlpatterns.changes
   2017-06-13 16:04:56.693400922 +0200
@@ -1,0 +2,18 @@
+Thu Jun  1 07:43:43 UTC 2017 - jeng...@inai.de
+
+- Update RPM group and descriptions.
+
+---
+Wed May 31 07:05:36 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtxmlpatterns-opensource-src-5.7.1.tar.xz

New:

  qtxmlpatterns-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtxmlpatterns.spec ++
--- /var/tmp/diff_new_pack.igo9gm/_old  2017-06-13 16:04:58.301174343 +0200
+++ /var/tmp/diff_new_pack.igo9gm/_new  2017-06-13 16:04:58.305173779 +0200
@@ -21,17 +21,17 @@
 %define libname libQt5XmlPatterns5
 
 Name:   libqt5-qtxmlpatterns
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 XmlPatterns Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
-Group:  System/Libraries
-Url:http://qt.digia.com
+Group:  Development/Libraries/X11
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtxmlpatterns-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
 BuildRequires:  libqt5-qtbase-devel >= %{version}
@@ -44,10 +44,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt XML Patterns module provides support for XPath, XQuery, XSLT,
+and XML Schema validation.
 
 %prep
 %setup -q -n qtxmlpatterns-opensource-src-%{real_version}
@@ -59,23 +57,21 @@
 %requires_ge libQt5Network5
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+The Qt XML Patterns module provides support for XPath, XQuery, XSLT,
+and XML Schema validation.
 
 %package devel
-Summary:Qt Development Kit
+Summary:Development files for the Qt5 XML Patterns library
 Group:  Development/Libraries/C and C++
 Requires:   %libname = %{version}
 Provides:   libQt5XmlPatterns-devel = %{version}
 Obsoletes:  libQt5XmlPatterns-devel < %{version}
 
 %description devel
-You need this package, if you want to compile programs with QtXmlPatterns.
+You need this package if you want to compile programs with QtXmlPatterns.
 
 %package private-headers-devel
-Summary:Non-ABI stable experimental API
+Summary:Non-ABI stable experimental API for the Qt5 XML Patterns 
library
 Group:  Development/Libraries/C and C++
 BuildArch:  noarch
 Requires:   %{name}-devel = %{version}
@@ -95,7 +91,7 @@
 Recommends: %{name}-devel
 
 %description examples
-Examples for libqt5-qtxmlpatterns module.
+Examples for the libqt5-qtxmlpatterns module.
 
 %post -n %libname -p /sbin/ldconfig
 

++ qtxmlpatterns-opensource-src-5.7.1.tar.xz -> 
qtxmlpatterns-opensource-src-5.9.0.tar.xz ++
 13460 lines of diff (skipped)




commit libqt5-qtx11extras for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtx11extras for 
openSUSE:Factory checked in at 2017-06-13 16:05:00

Comparing /work/SRC/openSUSE:Factory/libqt5-qtx11extras (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtx11extras.new (New)


Package is "libqt5-qtx11extras"

Tue Jun 13 16:05:00 2017 rev:24 rq:500320 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtx11extras/libqt5-qtx11extras.changes
2016-12-22 16:08:31.412702502 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtx11extras.new/libqt5-qtx11extras.changes   
2017-06-13 16:05:02.640562806 +0200
@@ -1,0 +2,18 @@
+Thu Jun  1 07:44:25 UTC 2017 - jeng...@inai.de
+
+- Update descriptions.
+
+---
+Wed May 31 07:05:35 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtx11extras-opensource-src-5.7.1.tar.xz

New:

  qtx11extras-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtx11extras.spec ++
--- /var/tmp/diff_new_pack.7Iec7M/_old  2017-06-13 16:05:03.468446135 +0200
+++ /var/tmp/diff_new_pack.7Iec7M/_new  2017-06-13 16:05:03.468446135 +0200
@@ -21,13 +21,13 @@
 %define libname libQt5X11Extras5
 
 Name:   libqt5-qtx11extras
-Version:5.7.1
+Version:5.9.0
 Release:0
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtx11extras-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libQt5Gui-private-headers-devel >= %{version}
@@ -37,17 +37,17 @@
 BuildRequires:  perl
 %endif
 BuildRequires:  xz
-Url:http://qt.digia.com
+Url:https://www.qt.io
 Summary:Qt 5 X11 Extras Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+Qt X11 Extras enables the Qt programmer to write applications for the
+Linux/X11 platform. (Applications developed with Qt can also be
+deployed across several other desktop and embedded operating systems
+without having to rewrite the source code.)
 
 %prep
 %setup -q -n qtx11extras-opensource-src-%{real_version}
@@ -58,20 +58,20 @@
 %requires_ge libQt5Gui5
 
 %description -n %libname
-Qt is a set of libraries for developing applications.
-
-This package contains base tools, like string, xml, and network
-handling.
+Qt X11 Extras enables the Qt programmer to write applications for the
+Linux/X11 platform. (Applications developed with Qt can also be
+deployed across several other desktop and embedded operating systems
+without having to rewrite the source code.)
 
 %package devel
-Summary:Qt Development Kit
+Summary:Development files for the Qt5 X11 Extras library
 Group:  Development/Libraries/X11
 Requires:   %libname = %version
 Provides:   libQt5X11Extras-devel = %{version}
 Obsoletes:  libQt5X11Extras-devel < %{version}
 
 %description devel
-You need this package, if you want to compile programs with qtx11extras.
+You need this package if you want to compile programs with qtx11extras.
 
 %post -n %libname -p /sbin/ldconfig
 

++ qtx11extras-opensource-src-5.7.1.tar.xz -> 
qtx11extras-opensource-src-5.9.0.tar.xz ++
 7897 lines of diff (skipped)




commit libqt5-qttools for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qttools for openSUSE:Factory 
checked in at 2017-06-13 16:04:17

Comparing /work/SRC/openSUSE:Factory/libqt5-qttools (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qttools.new (New)


Package is "libqt5-qttools"

Tue Jun 13 16:04:17 2017 rev:30 rq:57 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qttools/libqt5-qttools.changes
2016-12-22 16:07:35.928553396 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qttools.new/libqt5-qttools.changes   
2017-06-13 16:04:35.176433238 +0200
@@ -1,0 +2,14 @@
+Wed May 31 07:05:26 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+- Qt5CLucene5 dropped upstream
+
+---

Old:

  qttools-opensource-src-5.7.1.tar.xz

New:

  qttools-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qttools.spec ++
--- /var/tmp/diff_new_pack.LEcUmI/_old  2017-06-13 16:04:38.483967118 +0200
+++ /var/tmp/diff_new_pack.LEcUmI/_new  2017-06-13 16:04:38.487966554 +0200
@@ -19,17 +19,17 @@
 %define qt5_snapshot 0
 
 Name:   libqt5-qttools
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 QtTools Module
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qttools-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 Source11:   designer5.desktop
 Source12:   linguist5.desktop
@@ -74,7 +74,6 @@
 Group:  Development/Libraries/X11
 Requires:   %{name} = %{version}
 Requires:   %{name}-doc = %{version}
-Requires:   libQt5CLucene5 = %{version}
 Requires:   libQt5Designer5 = %{version}
 Requires:   libQt5DesignerComponents5 = %{version}
 Requires:   libQt5Help5 = %{version}
@@ -105,14 +104,6 @@
 %description examples
 Examples for libqt5-qttools module.
 
-%package -n libQt5CLucene5
-Summary:Qt 5 Clucene Library
-Group:  Development/Libraries/X11
-%requires_ge libQt5Core5
-
-%description -n libQt5CLucene5
-The Qt 5 Clucene library.
-
 %package -n libQt5Designer5
 Summary:Qt 5 Designer Library
 Group:  Development/Libraries/X11
@@ -133,7 +124,6 @@
 %package -n libQt5Help5
 Summary:Qt 5 Help Library
 Group:  Development/Libraries/X11
-Requires:   libQt5CLucene5 = %{version}
 %requires_ge libQt5Widgets5
 %requires_ge libQt5Sql5
 %requires_ge libQt5Network5
@@ -187,8 +177,6 @@
 
 %post -p /sbin/ldconfig
 
-%post -n libQt5CLucene5 -p /sbin/ldconfig
-
 %post -n libQt5Designer5 -p /sbin/ldconfig
 
 %post -n libQt5DesignerComponents5 -p /sbin/ldconfig
@@ -197,8 +185,6 @@
 
 %postun -p /sbin/ldconfig
 
-%postun -n libQt5CLucene5 -p /sbin/ldconfig
-
 %postun -n libQt5Designer5 -p /sbin/ldconfig
 
 %postun -n libQt5DesignerComponents5 -p /sbin/ldconfig
@@ -255,7 +241,7 @@
 
 %files
 %defattr(-,root,root,755)
-%doc LGPL_EXCEPTION.txt LICENSE.*
+%doc LICENSE.*
 %{_bindir}/assistant*
 %{_bindir}/designer*
 %{_bindir}/pixeltool*
@@ -265,6 +251,7 @@
 %{_bindir}/qhelpgenerator*
 %{_bindir}/qtdiag*
 %{_bindir}/qtplugininfo*
+%{_bindir}/qtattributionsscanner*
 %{_libqt5_bindir}/assistant*
 %{_libqt5_bindir}/designer*
 %{_libqt5_bindir}/pixeltool*
@@ -274,6 +261,7 @@
 %{_libqt5_bindir}/qhelpgenerator*
 %{_libqt5_bindir}/qtdiag*
 %{_libqt5_bindir}/qtplugininfo*
+%{_libqt5_bindir}/qtattributionsscanner*
 %{_datadir}/applications/assistant5.desktop
 %{_datadir}/applications/designer5.desktop
 %{_datadir}/applications/qdbusviewer5.desktop
@@ -287,7 +275,7 @@
 
 %files -n libqt5-linguist
 %defattr(-,root,root,755)
-%doc LGPL_EXCEPTION.txt LICENSE.*
+%doc LICENSE.*
 %{_bindir}/lconvert*
 %{_bindir}/linguist*
 %{_bindir}/lrelease*
@@ -302,55 +290,49 @@
 %dir %{_datadir}/icons/hicolor/*/apps
 %{_datadir}/icons/hicolor/*/apps/linguist5.png
 
-%files -n libQt5CLucene5
-%defattr(-,root,root,755)
-%doc LGPL_EXCEPTION.txt LICENSE.*
-%{_libqt5_libdir}/libQt5CLucene.so.*
-
 %files -n libQt5Designer5
 %defattr(-,root,root,755)
-%doc 

commit libqt5-qtsensors for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtsensors for 
openSUSE:Factory checked in at 2017-06-13 16:03:38

Comparing /work/SRC/openSUSE:Factory/libqt5-qtsensors (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtsensors.new (New)


Package is "libqt5-qtsensors"

Tue Jun 13 16:03:38 2017 rev:26 rq:51 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtsensors/libqt5-qtsensors.changes
2016-12-22 16:07:10.380168443 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qtsensors.new/libqt5-qtsensors.changes   
2017-06-13 16:03:48.894955513 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:21 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtsensors-opensource-src-5.7.1.tar.xz

New:

  qtsensors-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtsensors.spec ++
--- /var/tmp/diff_new_pack.nhAZwU/_old  2017-06-13 16:03:53.218346235 +0200
+++ /var/tmp/diff_new_pack.nhAZwU/_new  2017-06-13 16:03:53.222345671 +0200
@@ -21,17 +21,17 @@
 %define libname libQt5Sensors5
 
 Name:   libqt5-qtsensors
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Serial Port Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtsensors-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}

++ qtsensors-opensource-src-5.7.1.tar.xz -> 
qtsensors-opensource-src-5.9.0.tar.xz ++
 10289 lines of diff (skipped)




commit libqt5-qtscript for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtscript for openSUSE:Factory 
checked in at 2017-06-13 16:03:23

Comparing /work/SRC/openSUSE:Factory/libqt5-qtscript (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtscript.new (New)


Package is "libqt5-qtscript"

Tue Jun 13 16:03:23 2017 rev:28 rq:49 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtscript/libqt5-qtscript.changes  
2016-12-22 16:06:58.369867878 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qtscript.new/libqt5-qtscript.changes 
2017-06-13 16:03:28.553822103 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:19 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtscript-opensource-src-5.7.1.tar.xz

New:

  qtscript-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtscript.spec ++
--- /var/tmp/diff_new_pack.8EzK4z/_old  2017-06-13 16:03:30.845499147 +0200
+++ /var/tmp/diff_new_pack.8EzK4z/_new  2017-06-13 16:03:30.849498583 +0200
@@ -21,17 +21,17 @@
 %define libname libQt5Script5
 
 Name:   libqt5-qtscript
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 QtScript Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtscript-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM libqt5-qtscript-s390-support.patch -- adds s390, taken 
from webkit upstream
 Patch1: libqt5-qtscript-s390-support.patch

++ qtscript-opensource-src-5.7.1.tar.xz -> 
qtscript-opensource-src-5.9.0.tar.xz ++
 11132 lines of diff (skipped)




commit libqt5-qtquickcontrols2 for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtquickcontrols2 for 
openSUSE:Factory checked in at 2017-06-13 16:03:06

Comparing /work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2 (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new (New)


Package is "libqt5-qtquickcontrols2"

Tue Jun 13 16:03:06 2017 rev:3 rq:47 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2/libqt5-qtquickcontrols2.changes
  2017-01-15 11:15:49.277583381 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new/libqt5-qtquickcontrols2.changes
 2017-06-13 16:03:17.75138 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:17 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtquickcontrols2-opensource-src-5.7.1.tar.xz

New:

  qtquickcontrols2-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtquickcontrols2.spec ++
--- /var/tmp/diff_new_pack.2HbKqq/_old  2017-06-13 16:03:20.586944839 +0200
+++ /var/tmp/diff_new_pack.2HbKqq/_new  2017-06-13 16:03:20.590944275 +0200
@@ -19,17 +19,17 @@
 %define qt5_snapshot 0
 
 Name:   libqt5-qtquickcontrols2
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Quick Controls Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtquickcontrols2-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
 BuildRequires:  libQt5Gui-private-headers-devel >= %{version}

++ qtquickcontrols2-opensource-src-5.7.1.tar.xz -> 
qtquickcontrols2-opensource-src-5.9.0.tar.xz ++
 113066 lines of diff (skipped)




commit libqt5-qtquickcontrols for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtquickcontrols for 
openSUSE:Factory checked in at 2017-06-13 16:02:42

Comparing /work/SRC/openSUSE:Factory/libqt5-qtquickcontrols (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new (New)


Package is "libqt5-qtquickcontrols"

Tue Jun 13 16:02:42 2017 rev:25 rq:46 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/libqt5-qtquickcontrols.changes
2016-12-22 16:06:52.346720143 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new/libqt5-qtquickcontrols.changes
   2017-06-13 16:02:51.81198 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:16 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtquickcontrols-opensource-src-5.7.1.tar.xz

New:

  qtquickcontrols-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtquickcontrols.spec ++
--- /var/tmp/diff_new_pack.3qVdbb/_old  2017-06-13 16:02:56.266372224 +0200
+++ /var/tmp/diff_new_pack.3qVdbb/_new  2017-06-13 16:02:56.270371661 +0200
@@ -19,17 +19,17 @@
 %define qt5_snapshot 0
 
 Name:   libqt5-qtquickcontrols
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Quick Controls Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtquickcontrols-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
 BuildRequires:  libQt5Gui-private-headers-devel >= %{version}

++ qtquickcontrols-opensource-src-5.7.1.tar.xz -> 
qtquickcontrols-opensource-src-5.9.0.tar.xz ++
 4361 lines of diff (skipped)




commit libqt5-qtlocation for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtlocation for 
openSUSE:Factory checked in at 2017-06-13 16:02:27

Comparing /work/SRC/openSUSE:Factory/libqt5-qtlocation (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtlocation.new (New)


Package is "libqt5-qtlocation"

Tue Jun 13 16:02:27 2017 rev:20 rq:43 version:5.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtlocation/libqt5-qtlocation.changes  
2016-12-22 16:06:38.328703667 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-qtlocation.new/libqt5-qtlocation.changes 
2017-06-13 16:02:34.801397176 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:14 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtlocation-opensource-src-5.7.1.tar.xz

New:

  qtlocation-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtlocation.spec ++
--- /var/tmp/diff_new_pack.92DXGO/_old  2017-06-13 16:02:40.424604726 +0200
+++ /var/tmp/diff_new_pack.92DXGO/_new  2017-06-13 16:02:40.428604162 +0200
@@ -21,25 +21,28 @@
 %define libname libQt5Positioning5
 
 Name:   libqt5-qtlocation
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Location Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtlocation-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libqt5-qtbase-private-headers-devel >= %{version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{version}
+BuildRequires:  libicu-devel
 BuildRequires:  xz
 BuildRequires:  pkgconfig(gconf-2.0)
 BuildRequires:  pkgconfig(geoclue)
 BuildRequires:  pkgconfig(gypsy)
+BuildRequires:  pkgconfig(libcrypto)
+BuildRequires:  pkgconfig(libssl)
 %if %qt5_snapshot
 #to create the forwarding headers
 BuildRequires:  perl

++ qtlocation-opensource-src-5.7.1.tar.xz -> 
qtlocation-opensource-src-5.9.0.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-qtlocation/qtlocation-opensource-src-5.7.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-qtlocation.new/qtlocation-opensource-src-5.9.0.tar.xz
 differ: char 25, line 1




commit libqt5-qtdeclarative for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtdeclarative for 
openSUSE:Factory checked in at 2017-06-13 16:02:07

Comparing /work/SRC/openSUSE:Factory/libqt5-qtdeclarative (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new (New)


Package is "libqt5-qtdeclarative"

Tue Jun 13 16:02:07 2017 rev:37 rq:499987 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtdeclarative/libqt5-qtdeclarative.changes
2016-12-22 16:06:16.427802606 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new/libqt5-qtdeclarative.changes
   2017-06-13 16:02:07.801202168 +0200
@@ -1,0 +2,21 @@
+Wed May 31 07:05:09 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+- Refresh patches:
+  * sse2_nojit.patch
+
+---
+Fri Apr 28 12:34:26 UTC 2017 - wba...@tmo.at
+
+- Add back sse2_nojit.patch to support 32bit CPUs without SSE2
+  instructions (boo#1027691)
+
+---

Old:

  qtdeclarative-opensource-src-5.7.1.tar.xz

New:

  qtdeclarative-opensource-src-5.9.0.tar.xz
  sse2_nojit.patch



Other differences:
--
++ libqt5-qtdeclarative.spec ++
--- /var/tmp/diff_new_pack.0atQds/_old  2017-06-13 16:02:10.384838071 +0200
+++ /var/tmp/diff_new_pack.0atQds/_new  2017-06-13 16:02:10.388837507 +0200
@@ -21,18 +21,20 @@
 %define libname libQtQuick5
 
 Name:   libqt5-qtdeclarative
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Declarative Library
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtdeclarative-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-OPENSUSE sse2_nojit.patch -- enable JIT and sse2 only on sse2 case
+Patch100:   sse2_nojit.patch
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{version}
 BuildRequires:  libQt5Gui-private-headers-devel >= %{version}
@@ -69,6 +71,9 @@
 
 %prep
 %setup -q -n qtdeclarative-opensource-src-%{real_version}
+%ifarch %ix86
+%patch100 -p1
+%endif
 
 %package -n %libname
 Summary:Qt 5 Declarative Library
@@ -139,16 +144,34 @@
 
 mkdir -p %{_target_platform}
 pushd %{_target_platform}
-%qmake5 ..
+qmake-qt5 ..
 popd
 
 %make_jobs -C %{_target_platform}
 
+%ifarch %ix86
+# build libQt5Qml with no_sse2
+mkdir -p %{_target_platform}-no_sse2
+pushd %{_target_platform}-no_sse2
+%qmake5 -config no_sse2 ..
+make sub-src-clean
+%make_jobs -C src/qml
+popd
+%endif
+
 %install
 pushd %{_target_platform}
 %qmake5_install
 popd
 
+%ifarch %ix86
+mkdir -p %{buildroot}%{_libqt5_libdir}//sse2
+mv %{buildroot}%{_libqt5_libdir}/libQt5Qml.so.5* 
%{buildroot}%{_libqt5_libdir}/sse2/
+pushd %{_target_platform}-no_sse2/src/qml
+%qmake5_install
+popd
+%endif
+
 find %{buildroot}/%{_libdir} -type f -name '*la' -print -exec perl -pi -e 's, 
-L%{_builddir}/\S+,,g' {} \;
 find %{buildroot}/%{_libdir}/pkgconfig -type f -name '*pc' -print -exec perl 
-pi -e 's, -L%{_builddir}/\S+,,g' {} \;
 # kill .la files
@@ -177,36 +200,37 @@
 
 %files -n %libname
 %defattr(-,root,root,755)
-%doc LGPL_EXCEPTION.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_libdir}/libQt5Q*.so.*
-%{_libqt5_archdatadir}/qml/QtQuick
-%{_libqt5_archdatadir}/qml/QtQuick.2
-%{_libqt5_archdatadir}/qml/QtQml/Models.2
-%{_libqt5_archdatadir}/qml/QtQml/StateMachine/
+%ifarch %ix86
+%{_libqt5_libdir}/sse2/libQt5Q*.so.*
+%endif
 %dir %{_libqt5_archdatadir}/qml
 %dir %{_libqt5_archdatadir}/qml/Qt
+%{_libqt5_archdatadir}/qml/QtQuick
+%{_libqt5_archdatadir}/qml/QtQuick.2
+%{_libqt5_archdatadir}/qml/QtQml
+%{_libqt5_archdatadir}/qml/builtins.qmltypes
 %dir %{_libqt5_archdatadir}/qml/Qt/labs
-%dir %{_libqt5_archdatadir}/qml/QtQml
 %{_libqt5_archdatadir}/qml/Qt/labs/folderlistmodel
 %{_libqt5_archdatadir}/qml/Qt/labs/settings/
-%{_libqt5_archdatadir}/qml/QtQml
-%{_libqt5_archdatadir}/qml/builtins.qmltypes
+%{_libqt5_archdatadir}/qml/Qt/labs/sharedimage/
 

commit libqt5-qtconnectivity for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtconnectivity for 
openSUSE:Factory checked in at 2017-06-13 16:02:02

Comparing /work/SRC/openSUSE:Factory/libqt5-qtconnectivity (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtconnectivity.new (New)


Package is "libqt5-qtconnectivity"

Tue Jun 13 16:02:02 2017 rev:11 rq:499985 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtconnectivity/libqt5-qtconnectivity.changes  
2017-01-22 00:29:14.594268034 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtconnectivity.new/libqt5-qtconnectivity.changes
 2017-06-13 16:02:04.193710552 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:08 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtconnectivity-opensource-src-5.7.1.tar.xz

New:

  qtconnectivity-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtconnectivity.spec ++
--- /var/tmp/diff_new_pack.Jaqt6W/_old  2017-06-13 16:02:05.045590501 +0200
+++ /var/tmp/diff_new_pack.Jaqt6W/_new  2017-06-13 16:02:05.053589374 +0200
@@ -19,17 +19,17 @@
 %define qt5_snapshot 0
 %define libname libQt5Bluetooth5
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtconnectivity-opensource-src-%{real_version}
 Name:   libqt5-qtconnectivity
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Nfc Addon
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
-Source: %{tar_version}.tar.xz
+Url:https://www.qt.io
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  fdupes
 BuildRequires:  libqt5-qtbase-devel
@@ -139,6 +139,7 @@
 #force the configure script to generate the forwarding headers (it checks 
whether .git directory exists)
 mkdir .git
 %endif
+rm -rfv src/tools/sdpscanner/qt_attribution.json
 %{qmake5}
 %{make_jobs}
 
@@ -160,33 +161,33 @@
 
 %files -n %{libname}
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_libdir}/libQt5Bluetooth.so.*
 
 %files -n %{libname}-imports
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_archdatadir}/qml/QtBluetooth/
 
 %files -n libQt5Nfc5
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_libdir}/libQt5Nfc.so.*
 
 %files -n libQt5Nfc5-imports
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_archdatadir}/qml/QtNfc/
 
 %files private-headers-devel
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_includedir}/QtNfc/%{so_version}
 %{_libqt5_includedir}/QtBluetooth/%{so_version}
 
 %files devel
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %exclude %{_libqt5_includedir}/QtNfc/%{so_version}
 %exclude %{_libqt5_includedir}/QtBluetooth/%{so_version}
 %{_libqt5_includedir}/QtNfc
@@ -203,13 +204,13 @@
 
 %files tools
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_bindir}/sdpscanner*
 %{_libqt5_bindir}/sdpscanner*
 
 %files examples
 %defattr(-,root,root,755)
-%doc *.txt LICENSE.*
+%doc LICENSE.*
 %{_libqt5_examplesdir}/
 
 %changelog

++ qtconnectivity-opensource-src-5.7.1.tar.xz -> 
qtconnectivity-opensource-src-5.9.0.tar.xz ++
 33559 lines of diff (skipped)




commit libqt5-qtgraphicaleffects for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtgraphicaleffects for 
openSUSE:Factory checked in at 2017-06-13 16:02:12

Comparing /work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new (New)


Package is "libqt5-qtgraphicaleffects"

Tue Jun 13 16:02:12 2017 rev:22 rq:41 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects/libqt5-qtgraphicaleffects.changes
  2016-12-22 16:06:23.586789622 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new/libqt5-qtgraphicaleffects.changes
 2017-06-13 16:02:14.836210763 +0200
@@ -1,0 +2,13 @@
+Wed May 31 07:05:12 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---

Old:

  qtgraphicaleffects-opensource-src-5.7.1.tar.xz

New:

  qtgraphicaleffects-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtgraphicaleffects.spec ++
--- /var/tmp/diff_new_pack.qzT4CX/_old  2017-06-13 16:02:17.543829193 +0200
+++ /var/tmp/diff_new_pack.qzT4CX/_new  2017-06-13 16:02:17.543829193 +0200
@@ -19,17 +19,17 @@
 %define qt5_snapshot 0
 
 Name:   libqt5-qtgraphicaleffects
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Graphical Effects
 License:BSD-3-Clause and (SUSE-LGPL-2.1-with-digia-exception-1.1 or 
GPL-3.0)
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtgraphicaleffects-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 BuildRequires:  libqt5-qtdeclarative-devel >= %{version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{version}
 %if %qt5_snapshot

++ qtgraphicaleffects-opensource-src-5.7.1.tar.xz -> 
qtgraphicaleffects-opensource-src-5.9.0.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects/qtgraphicaleffects-opensource-src-5.7.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new/qtgraphicaleffects-opensource-src-5.9.0.tar.xz
 differ: char 26, line 1




commit libqt5-qtimageformats for openSUSE:Factory

2017-06-13 Thread root
Hello community,

here is the log from the commit of package libqt5-qtimageformats for 
openSUSE:Factory checked in at 2017-06-13 16:02:20

Comparing /work/SRC/openSUSE:Factory/libqt5-qtimageformats (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtimageformats.new (New)


Package is "libqt5-qtimageformats"

Tue Jun 13 16:02:20 2017 rev:23 rq:42 version:5.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtimageformats/libqt5-qtimageformats.changes  
2016-12-22 16:06:29.369971312 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtimageformats.new/libqt5-qtimageformats.changes
 2017-06-13 16:02:22.303158487 +0200
@@ -1,0 +2,15 @@
+Wed May 31 07:05:13 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 final
+
+---
+Wed May 24 19:16:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0 RC:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000115.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+- Add patch to fix build:
+  * jas_version.patch
+
+---

Old:

  qtimageformats-opensource-src-5.7.1.tar.xz

New:

  jas_version.patch
  qtimageformats-opensource-src-5.9.0.tar.xz



Other differences:
--
++ libqt5-qtimageformats.spec ++
--- /var/tmp/diff_new_pack.YIe7Za/_old  2017-06-13 16:02:24.246884568 +0200
+++ /var/tmp/diff_new_pack.YIe7Za/_new  2017-06-13 16:02:24.250884004 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-qtimageformats
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,18 +19,20 @@
 %define qt5_snapshot 0
 
 Name:   libqt5-qtimageformats
-Version:5.7.1
+Version:5.9.0
 Release:0
 Summary:Qt 5 Image Format Plugins
 License:SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:  Development/Libraries/X11
-Url:http://qt.digia.com
+Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.7.1
-%define so_version 5.7.1
+%define real_version 5.9.0
+%define so_version 5.9.0
 %define tar_version qtimageformats-opensource-src-%{real_version}
-Source: %{tar_version}.tar.xz
+Source: 
https://download.qt.io/official_releases/qt/5.9/%{real_version}/submodules/%{tar_version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-OPENSUSE jas_version.patch
+Patch0: jas_version.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libmng-devel
 BuildRequires:  libtiff-devel
@@ -71,6 +73,7 @@
 
 %prep
 %setup -q -n qtimageformats-opensource-src-%{real_version}
+%patch0 -p1
 
 %build
 %if %qt5_snapshot

++ jas_version.patch ++
--- qtimageformats-opensource-src-5.8.0/config.tests/jasper/jasper.cpp  
2016-12-13 12:06:00.0 +0100
+++ qtimageformats-opensource-src-5.8.0.new/config.tests/jasper/jasper.cpp  
2017-01-31 08:09:48.0 +0100
@@ -28,7 +28,7 @@
 /
 
 #include 
-#include 
+#include 
 
 int main(int, char **)
 {
++ qtimageformats-opensource-src-5.7.1.tar.xz -> 
qtimageformats-opensource-src-5.9.0.tar.xz ++
 79460 lines of diff (skipped)