commit NetworkManager for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory 
checked in at 2018-05-08 13:31:39

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


Package is "NetworkManager"

Tue May  8 13:31:39 2018 rev:183 rq:603931 version:1.10.6

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes
2018-03-26 12:39:02.849355602 +0200
+++ /work/SRC/openSUSE:Factory/.NetworkManager.new/NetworkManager.changes   
2018-05-08 13:31:40.761809237 +0200
@@ -1,0 +2,6 @@
+Fri May  4 06:56:55 UTC 2018 - sck...@suse.com
+
+- Add NM-look-at-all-rp-filter-value.patch: look at 'all' rp_filter
+  value too to determine actual value (bsc#1084336, bgo#794689).
+
+---

New:

  NM-look-at-all-rp-filter-value.patch



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.AtCcI8/_old  2018-05-08 13:31:42.217756707 +0200
+++ /var/tmp/diff_new_pack.AtCcI8/_new  2018-05-08 13:31:42.225756418 +0200
@@ -43,6 +43,8 @@
 Patch3: networkmanager-obs-net.patch
 # PATCH-FIX-OPENSUSE nm-dont-overwrite-resolv-conf.patch bsc#1021665, 
bsc#960153 sck...@suse.com -- NetworkManager spawns netconfig to update DNS 
settings, and terminates netconfig after 1s. But 1s isn't quite long enough for 
netconfig to complete the task. Adjust it to 0 seconds(don't send SIGKILL) to 
avoid NM overwriting /etc/resolv.conf.
 Patch4: nm-dont-overwrite-resolv-conf.patch
+# PATCH-FIX-UPSTREAM NM-look-at-all-rp-filter-value.patch bsc#1084336 
bgo#794689 sck...@suse.com -- device: look at 'all' rp_filter value too to 
determine actual value
+Patch5: NM-look-at-all-rp-filter-value.patch
 BuildRequires:  dnsmasq
 BuildRequires:  fdupes
 BuildRequires:  intltool
@@ -230,6 +232,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %build
 NOCONFIGURE=1 ./autogen.sh

++ NM-look-at-all-rp-filter-value.patch ++
>From 150cf44d501c82810e7033b7a8278713919d1d89 Mon Sep 17 00:00:00 2001
From: Beniamino Galvani 
Date: Tue, 10 Apr 2018 16:22:00 +0200
Subject: [PATCH] device: look at 'all' rp_filter value too to determine actual
 value

Currently we overwrite the interface rp_filter value with 2 ("loose")
only when it is 1 ("strict") because when it is 0 ("no validation") it
is already more permissive.

So, if the value for the interface is 0 and
net/ipv4/conf/all/rp_filter is 1 (like it happens by default on Fedora
28), we don't overwrite it; since kernel considers the maximum between
{all,$dev}/rp_filter, the effective value remains 'strict'.

We should instead combine the two {all,$dev}/rp_filter, and if it's 1
overwrite the value with 2.

https://bugzilla.redhat.com/show_bug.cgi?id=1565529
---
 src/devices/nm-device.c | 33 +
 1 file changed, 25 insertions(+), 8 deletions(-)

diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 9b9584ce7..d20563598 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -1052,19 +1052,36 @@ nm_device_ipv4_sysctl_set (NMDevice *self, const char 
*property, const char *val
 }
 
 static guint32
-nm_device_ipv4_sysctl_get_uint32 (NMDevice *self, const char *property, 
guint32 fallback)
+nm_device_ipv4_sysctl_get_effective_uint32 (NMDevice *self, const char 
*property, guint32 fallback)
 {
char buf[NM_UTILS_SYSCTL_IP_CONF_PATH_BUFSIZE];
+   gint64 v, v_all;
 
if (!nm_device_get_ip_ifindex (self))
return fallback;
 
-   return nm_platform_sysctl_get_int_checked (nm_device_get_platform 
(self),
-  NMP_SYSCTL_PATHID_ABSOLUTE 
(nm_utils_sysctl_ip_conf_path (AF_INET, buf, nm_device_get_ip_iface (self), 
property)),
-  10,
-  0,
-  G_MAXUINT32,
-  fallback);
+   v = nm_platform_sysctl_get_int_checked (nm_device_get_platform (self),
+   NMP_SYSCTL_PATHID_ABSOLUTE 
(nm_utils_sysctl_ip_conf_path (AF_INET,
+   
  buf,
+   
  nm_device_get_ip_iface (self),
+   
  property)),
+   10,
+   0,
+   

commit installation-images for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2018-05-08 13:31:52

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


Package is "installation-images"

Tue May  8 13:31:52 2018 rev:44 rq:603975 version:14.371

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2018-04-26 13:30:31.684575989 +0200
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2018-05-08 13:31:53.245358831 +0200
@@ -1,0 +2,8 @@
+Fri May 4 10:08:04 UTC 2018 - jsr...@suse.cz
+
+- merge gh#openSUSE/installation-images#247
+- adjusted libopenssl*_*-hmac dependency to match current versions
+  (bsc#1090360)
+- 14.371
+
+

Old:

  installation-images-14.370.tar.xz

New:

  installation-images-14.371.tar.xz



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.shCjFS/_old  2018-05-08 13:31:54.277321598 +0200
+++ /var/tmp/diff_new_pack.shCjFS/_new  2018-05-08 13:31:54.277321598 +0200
@@ -260,7 +260,7 @@
 BuildRequires:  kmod-compat
 BuildRequires:  krb5-devel
 BuildRequires:  less
-BuildRequires:  libopenssl1_0_0-hmac
+BuildRequires:  libopenssl1_1-hmac
 BuildRequires:  libpcsclite1
 BuildRequires:  libyui-ncurses-pkg
 BuildRequires:  libyui-qt
@@ -511,7 +511,7 @@
 Summary:Installation Image Files for %theme
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.370
+Version:14.371
 Release:0
 Provides:   installation-images = %version-%release
 Conflicts:  otherproviders(installation-images)

++ installation-images-14.370.tar.xz -> installation-images-14.371.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.370/VERSION 
new/installation-images-14.371/VERSION
--- old/installation-images-14.370/VERSION  2018-04-23 14:02:37.0 
+0200
+++ new/installation-images-14.371/VERSION  2018-05-04 12:08:04.0 
+0200
@@ -1 +1 @@
-14.370
+14.371
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.370/changelog 
new/installation-images-14.371/changelog
--- old/installation-images-14.370/changelog2018-04-23 14:02:37.0 
+0200
+++ new/installation-images-14.371/changelog2018-05-04 12:08:04.0 
+0200
@@ -1,3 +1,7 @@
+2018-05-04:14.371
+   - adjusted libopenssl*_*-hmac dependency to match current versions
+   - (bsc #1090360)
+
 2018-04-23:14.370
- remove last mozilla-nspr reference
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-14.370/data/initrd/initrd.file_list 
new/installation-images-14.371/data/initrd/initrd.file_list
--- old/installation-images-14.370/data/initrd/initrd.file_list 2018-04-23 
14:02:37.0 +0200
+++ new/installation-images-14.371/data/initrd/initrd.file_list 2018-05-04 
12:08:04.0 +0200
@@ -426,7 +426,7 @@
 
 # For FIPS installation:
 
-libopenssl*_*_*-hmac:
+libopenssl*_*-hmac:
 
 ?openssh-fips:
 ?openssh-hmac:




commit man-pages for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package man-pages for openSUSE:Factory 
checked in at 2018-05-08 13:31:46

Comparing /work/SRC/openSUSE:Factory/man-pages (Old)
 and  /work/SRC/openSUSE:Factory/.man-pages.new (New)


Package is "man-pages"

Tue May  8 13:31:46 2018 rev:126 rq:603939 version:4.16

Changes:

--- /work/SRC/openSUSE:Factory/man-pages/man-pages.changes  2017-12-05 
01:27:42.778802703 +0100
+++ /work/SRC/openSUSE:Factory/.man-pages.new/man-pages.changes 2018-05-08 
13:31:49.521493189 +0200
@@ -1,0 +2,39 @@
+Fri May  4 08:13:02 UTC 2018 - pgaj...@suse.com
+
+- update to 4.16:
+  * new and rewritten pages:
+s390_sthyi.2, network_namespaces.7, vsock.7
+  * newly documented interfaces:
+cgroups.7
+Document cgroups v2 "thread mode"
+Document cgroup v2 delegation via the 'nsdelegate' mount 
+ option
+Document the cgroup.max.depth and cgroup.max.descendants
+ files
+Document 'release_agent' mount option
+Document /sys/kernel/cgroup/delegate
+Document /sys/kernel/cgroup/features
+Document cgroups v2 cgroup.stat file
+membarrier.2
+Document new membarrier commands introduced in Linux 4.16
+Document the following membarrier commands introduced
+in Linux 4.16:
+MEMBARRIER_CMD_GLOBAL_EXPEDITED
+MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED
+MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE
+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE
+mmap.2
+Add description of MAP_SHARED_VALIDATE and MAP_SYNC
+Document new MAP_FIXED_NOREPLACE flag
+4.17+ kernels offer a new MAP_FIXED_NOREPLACE flag which
+allows the caller to atomically probe for a given address
+range.
+readv.2
+io_submit.2
+Document RWF_APPEND added in Linux 4.16
+capabilities.7
+Describe file capability versioning
+Document namespaced-file capabilities
+- see Changes and Changes.old for detailed upstream change log
+
+---

Old:

  man-pages-4.14.tar.xz

New:

  man-pages-4.16.tar.xz



Other differences:
--
++ man-pages.spec ++
--- /var/tmp/diff_new_pack.40CqMy/_old  2018-05-08 13:31:50.361462883 +0200
+++ /var/tmp/diff_new_pack.40CqMy/_new  2018-05-08 13:31:50.365462738 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package man-pages
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,10 +17,10 @@
 
 
 Name:   man-pages
-Version:4.14
+Version:4.16
 Release:0
 Summary:Linux  Manual Pages
-License:BSD-3-Clause and GPL-2.0+ and MIT
+License:BSD-3-Clause AND GPL-2.0-or-later AND MIT
 Group:  Documentation/Man
 Url:http://www.kernel.org/doc/man-pages/download.html
 #Git-Clone:git://git.kernel.org/pub/scm/docs/man-pages/man-pages

++ man-pages-4.14.tar.xz -> man-pages-4.16.tar.xz ++
 21959 lines of diff (skipped)




commit cups-filters for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package cups-filters for openSUSE:Factory 
checked in at 2018-05-08 13:31:34

Comparing /work/SRC/openSUSE:Factory/cups-filters (Old)
 and  /work/SRC/openSUSE:Factory/.cups-filters.new (New)


Package is "cups-filters"

Tue May  8 13:31:34 2018 rev:33 rq:603926 version:1.20.3

Changes:

--- /work/SRC/openSUSE:Factory/cups-filters/cups-filters.changes
2018-04-17 11:10:55.684952635 +0200
+++ /work/SRC/openSUSE:Factory/.cups-filters.new/cups-filters.changes   
2018-05-08 13:31:36.937947201 +0200
@@ -1,0 +2,7 @@
+Wed May  2 23:10:52 UTC 2018 - luizl...@gmail.com
+
+- Version upgrade to 1.20.3
+  to fix regression from 1.20.2 that ignores printers published
+  using legacy CUPS broadcast
+
+---

Old:

  cups-filters-1.20.2.tar.xz

New:

  cups-filters-1.20.3.tar.xz



Other differences:
--
++ cups-filters.spec ++
--- /var/tmp/diff_new_pack.RWPWmp/_old  2018-05-08 13:31:37.757917617 +0200
+++ /var/tmp/diff_new_pack.RWPWmp/_new  2018-05-08 13:31:37.769917183 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cups-filters
 #
-# Copyright (c) 2018 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,9 @@
 
 
 Summary:OpenPrinting CUPS filters, backends, and cups-browsed
-License:GPL-2.0 and GPL-2.0+ and GPL-3.0 and MIT
-Group:  Hardware/Printing
 # See also 
http://www.linuxfoundation.org/collaborate/workgroups/openprinting/pdf_as_standard_print_job_format
+License:GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND MIT
+Group:  Hardware/Printing
 Url:
http://www.linuxfoundation.org/collaborate/workgroups/openprinting/cups-filters
 # For a breakdown of the licensing, see COPYING file
 # GPLv2:   filters: commandto*, imagetoraster, pdftops, rasterto*,
@@ -37,7 +37,7 @@
 #   and also run: zypper vcmp 'next version' 'current version'
 # e.g. zypper vcmp '1.0.49' '1.0.49.20140326' -> 1.0.49 is older than 
1.0.49.20140326
 #  and zypper vcmp '1.0.50' '1.0.49.20140326' -> 1.0.50 is newer than 
1.0.49.20140326
-Version:1.20.2
+Version:1.20.3
 Release:0
 Source0:
http://www.openprinting.org/download/cups-filters/cups-filters-%{version}.tar.xz
 # Upstream fix for https://bugs.linuxfoundation.org/show_bug.cgi?id=1421

++ cups-filters-1.20.2.tar.xz -> cups-filters-1.20.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cups-filters-1.20.2/INSTALL 
new/cups-filters-1.20.3/INSTALL
--- old/cups-filters-1.20.2/INSTALL 2018-03-31 23:26:09.0 +0200
+++ new/cups-filters-1.20.3/INSTALL 2018-04-12 15:23:44.0 +0200
@@ -1,4 +1,4 @@
-INSTALL - OpenPrinting CUPS Filters v1.20.2 - 2018-03-31
+INSTALL - OpenPrinting CUPS Filters v1.20.3 - 2018-04-12
 
 
 This file describes how to compile and install OpenPrinting CUPS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cups-filters-1.20.2/Makefile.am 
new/cups-filters-1.20.3/Makefile.am
--- old/cups-filters-1.20.2/Makefile.am 2018-02-13 19:21:59.0 +0100
+++ new/cups-filters-1.20.3/Makefile.am 2018-04-04 18:28:10.0 +0200
@@ -1090,7 +1090,7 @@
$(LN_S) -f pdf.utf-8.simple \
$(DESTDIR)$(pkgcharsetdir)/pdf.utf-8
 if ENABLE_BRAILLE
-   chmod g-rwx,o-rwx $(DESTDIR)/$(pkgbackenddir)/cups-brf
+   chmod g-wx,o-wx $(DESTDIR)/$(pkgbackenddir)/cups-brf
 endif
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cups-filters-1.20.2/Makefile.in 
new/cups-filters-1.20.3/Makefile.in
--- old/cups-filters-1.20.2/Makefile.in 2018-03-31 23:26:37.0 +0200
+++ new/cups-filters-1.20.3/Makefile.in 2018-04-12 15:25:30.0 +0200
@@ -5440,7 +5440,7 @@
 @RCLINKS_TRUE@ $(LN_S) -f ../init.d/cups-browsed 
$(DESTDIR)$(INITDIR)/rc0.d/K$(RCSTOP)cups-browsed;
$(LN_S) -f pdf.utf-8.simple \
$(DESTDIR)$(pkgcharsetdir)/pdf.utf-8
-@ENABLE_BRAILLE_TRUE@  chmod g-rwx,o-rwx $(DESTDIR)/$(pkgbackenddir)/cups-brf
+@ENABLE_BRAILLE_TRUE@  chmod g-wx,o-wx $(DESTDIR)/$(pkgbackenddir)/cups-brf
 
 uninstall-hook:
 @RCLINKS_TRUE@ if test "x$(INITDIR)" != x; then \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cups-filters-1.20.2/NEWS new/cups-filters-1.20.3/NEWS
--- old/cups-filters-1.20.2/NEWS2018-03

commit unbound for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package unbound for openSUSE:Factory checked 
in at 2018-05-08 13:31:57

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


Package is "unbound"

Tue May  8 13:31:57 2018 rev:24 rq:604021 version:1.7.1

Changes:

--- /work/SRC/openSUSE:Factory/unbound/libunbound-devel-mini.changes
2018-04-24 15:30:26.452058441 +0200
+++ /work/SRC/openSUSE:Factory/.unbound.new/libunbound-devel-mini.changes   
2018-05-08 13:31:59.713125472 +0200
@@ -1,0 +2,92 @@
+Thu May  3 16:38:07 UTC 2018 - mich...@stroeder.com
+
+- update to 1.7.1
+
+Features
+- Add --with-libhiredis, unbound support for a new cachedb
+  backend that uses a Redis server as the storage.  This
+  implementation depends on the hiredis client library
+  (https://redislabs.com/lp/hiredis/).
+  And unbound should be built with both --enable-cachedb and
+  --with-libhiredis[=PATH] (where $PATH/include/hiredis/hiredis.h
+  should exist).  Patch from Jinmei Tatuya (Infoblox).
+- Create additional tls service interfaces by opening them on other
+  portnumbers and listing the portnumbers as additional-tls-port: nr.
+- ED448 support.
+- num.query.authzone.up and num.query.authzone.down statistics counters.
+- Accept both option names with and without colon for get_option
+  and set_option.
+- low-rtt and low-rtt-pct in unbound.conf enable the server selection
+  of fast servers for some percentage of the time.
+- num.query.aggressive.NOERROR and num.query.aggressive.NXDOMAIN
+  statistics counters.
+- allow-notify: config statement for auth-zones.
+- Can set tls authentication with forward-addr: IP#tls.auth.name
+  And put the public cert bundle in tls-cert-bundle: "ca-bundle.pem".
+  such as forward-addr: 9.9.9.9@853#dns.quad9.net or
+  1.1.1.1@853#cloudflare-dns.com
+- list_auth_zones unbound-control command.
+- Added root-key-sentinel support
+
+Bug Fixes
+- Fix #3727: Protocol name is TLS, options have been renamed but
+  documentation is not consistent.
+- Check IXFR start serial.
+- Fix typo in documentation.
+- Fix #3736: Fix 0 TTL domains stuck on SERVFAIL unless manually
+  flushed with serve-expired on.
+- Fix #3817: core dump happens in libunbound delete, when queued
+  servfail hits deleted message queue.
+- corrected a minor typo in the changelog.
+- move htobe64/be64toh portability code to cachedb.c.
+- iana port update.
+- Do not use cached NSEC records to generate negative answers for
+  domains under DNSSEC Negative Trust Anchors.
+- Fix unbound-control get_option aggressive-nsec
+- Check "result" in dup_all(), by Florian Obser.
+- Fix #4043: make test fails due to v6 presentation issue in macOS.
+- Fix unable to resolve after new WLAN connection, due to auth-zone
+  failing with a forwarder set.  Now, auth-zone is only used for
+  answers (not referrals) when a forwarder is set.
+- Combine write of tcp length and tcp query for dns over tls.
+- nitpick fixes in example.conf.
+- Fix above stub queries for type NS and useless delegation point.
+- Fix unbound-control over pipe with openssl 1.1.1, the TLSv1.3
+  tls_choose_sigalg routine does not allow the ciphers for the pipe,
+  so use TLSv1.2.
+- Fix that flush_zone sets prefetch ttl expired, so that with
+  serve-expired enabled it'll start prefetching those entries.
+- Fix downstream auth zone, only fallback when auth zone fails to
+  answer and fallback is enabled.
+- Fix for max include depth for authzones.
+- Fix memory free on fail for $INCLUDE in authzone.
+- Fix that an internal error to look up the wrong rr type for
+  auth zone gets stopped, before trying to send there.
+- Fix auth zone target lookup iterator.
+- Fix auth-zone retry timer to be on schedule with retry timeout,
+  with backoff.  Also time a refresh at the zone expiry.
+- Fix #658: unbound using TLS in a forwarding configuration does not
+  verify the server's certificate (RFC 8310 support).
+- For addr with #authname and no @port notation, the default is 853.
+- man page documentation for dns-over-tls forward-addr '#' notation.
+- removed free from failed parse case.
+- Fix #4091: Fix that reload of auth-zone does not merge the zonefile
+  with the previous contents.
+- Delete auth zone when removed from config.
+- makedist uses bz2 for expat code, instead of tar.gz.
+- Fix #4092: libunbound: use-caps-for-id lacks colon in
+  config_set_option.
+- auth zone http download stores exact copy of downloaded file,
+  including comments in the file.
+- Fix sldns parse failure for CDS alternate delete syntax empty hex.
+- Attempt for auth zone fix; add of callback in mesh gets from
+  callback does not skip callback of result.
+- Fix cname classification with qname minimisation enabled.
+- Fix contrib/fastrpz.patch for this release.
+- Fix auth https for libev.
+- Fix

commit xdg-utils for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package xdg-utils for openSUSE:Factory 
checked in at 2018-05-08 13:31:29

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


Package is "xdg-utils"

Tue May  8 13:31:29 2018 rev:46 rq:603863 version:20170508

Changes:

--- /work/SRC/openSUSE:Factory/xdg-utils/xdg-utils.changes  2017-06-02 
10:29:51.445364654 +0200
+++ /work/SRC/openSUSE:Factory/.xdg-utils.new/xdg-utils.changes 2018-05-08 
13:31:31.498143466 +0200
@@ -0,0 +1,5 @@
+Tue May  1 05:28:49 UTC 2018 - sfl...@suse.de
+
+- boo#1051353 can't set default browser on kde.
+  * fix-kde-browser-check.patch
+

New:

  fix-kde-browser-check.patch



Other differences:
--
++ xdg-utils.spec ++
--- /var/tmp/diff_new_pack.eOenC2/_old  2018-05-08 13:31:32.346112872 +0200
+++ /var/tmp/diff_new_pack.eOenC2/_new  2018-05-08 13:31:32.346112872 +0200
@@ -31,6 +31,7 @@
 Patch1: xdg-terminal-fix-gsettings.patch
 # PATCH-FIX-UPSTREAM xdg-terminal-fix-terminal--x-arg.patch fdo#93231 
sor.ale...@meowr.ru -- https://bugs.freedesktop.org/show_bug.cgi?id=93231#c5
 Patch3: xdg-terminal-fix-terminal--x-arg.patch
+Patch4: fix-kde-browser-check.patch
 BuildRequires:  make
 # for xmlto to be able to generate text from html
 BuildRequires:  w3m
@@ -65,9 +66,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
-%patch3 -p1
+%autopatch -p1
 
 %build
 %configure

++ fix-kde-browser-check.patch ++
Index: xdg-utils-20160610/scripts/xdg-settings.in
===
--- xdg-utils-20160610.orig/scripts/xdg-settings.in
+++ xdg-utils-20160610/scripts/xdg-settings.in
@@ -226,6 +226,14 @@ check_browser_kde()
 fi
 browser="`read_kde_browser`"
 binary="`resolve_kde_browser`"
+
+# The browser may contain a relative entry to the binary starting with !
+if [ x"!" == x"${browser:0:1}" ]; then
+# get the full path
+browser="`binary_to_desktop_file ${browser:1}`"
+binary="`desktop_file_to_binary $browser`"
+fi
+
 # Because KDE will use the handler for MIME type text/html if this value
 # is empty, we allow either the empty string or a match to $check here.
 if [ x"$binary" != x -a x"$binary" != x"$check" ]; then
@@ -575,16 +583,23 @@ check_url_scheme_handler_kde()
 fi
 if [ x"$1" = "mailto" ]; then
 binary="`read_kde_config emaildefaults PROFILE_Default EmailClient`"
+# The field may contain a relative entry to the binary starting with !
+if [ x"!" == x"${binary:0:1}" ]; then
+# get the full path
+desktop_file="`binary_to_desktop_file ${binary:1}`"
+binary="`desktop_file_to_binary $desktop_file`"
+fi
+if [ x"$binary" != x"$check" ]; then
+echo no
+exit_success
+fi
+else
+handler="`get_browser_mime x-scheme-handler/$1`"
+binary="`desktop_file_to_binary "$handler"`"
 if [ x"$binary" != x"$check" ]; then
 echo no
 exit_success
 fi
-fi
-handler="`get_browser_mime x-scheme-handler/$1`"
-binary="`desktop_file_to_binary "$handler"`"
-if [ x"$binary" != x"$check" ]; then
-echo no
-exit_success
 fi
 echo yes
 exit_success



commit libblockdev for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package libblockdev for openSUSE:Factory 
checked in at 2018-05-08 13:32:09

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


Package is "libblockdev"

Tue May  8 13:32:09 2018 rev:4 rq:604037 version:2.17

Changes:

--- /work/SRC/openSUSE:Factory/libblockdev/libblockdev.changes  2018-04-22 
14:29:39.066656764 +0200
+++ /work/SRC/openSUSE:Factory/.libblockdev.new/libblockdev.changes 
2018-05-08 13:32:10.964719507 +0200
@@ -1,0 +2,15 @@
+Fri May  4 02:53:53 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 2.17:
+  + New Features:
+- New plugin: nvdimm. Support for NVDIMM namespaces management;
+- LUKS2 support for creating LUKS2 format including
+  authenticated disk encryption. Multiple new functions for
+  working with LUKS devices (suspend/resume, header backup,
+  metadata size...);
+- Extended support for opening TrueCrypt/VeraCrypt volumes.
+- Drop pkgconfig(nss) and libvolume_key-devel BuildRequires now
+  that they are optional and pass without-escrow to configure:
+  libvolume_key's code is ancient and nearly dead upstream.
+
+---

Old:

  libblockdev-2.16.tar.gz

New:

  libblockdev-2.17.tar.gz



Other differences:
--
++ libblockdev.spec ++
--- /var/tmp/diff_new_pack.uvd23f/_old  2018-05-08 13:32:11.824688478 +0200
+++ /var/tmp/diff_new_pack.uvd23f/_new  2018-05-08 13:32:11.824688478 +0200
@@ -16,33 +16,30 @@
 #
 
 
-%bcond_with python2
 %define bcachetools_version 1.0.8
 %define lvm2-clvm_version   2.02.156
 %define somajor 2
 %define libname %{name}%{somajor}
-
+%bcond_with python2
 Name:   libblockdev
+Version:2.17
+Release:0
 Summary:A library for low-level manipulation with block devices
 License:LGPL-2.1-only
 Group:  Development/Libraries/C and C++
-Version:2.16
-Release:0
 URL:https://github.com/storaged-project/libblockdev
 Source0:
https://github.com/storaged-project/libblockdev/releases/download/%{version}-1/libblockdev-%{version}.tar.gz
-
-# PATCH-FIX-OPENSUSE libblockdev-fix-libkmod-include.patch 
luc1...@linuxmail.org -- openSUSE's libkmod.h file location are not under the 
expected /usr/include directory but /usr/include/kmod.
+# PATCH-FIX-OPENSUSE libblockdev-fix-libkmod-include.patch 
luc1...@linuxmail.org -- openSUSE's libkmod.h file location is not under the 
expected /usr/include directory but /usr/include/kmod.
 Patch0: libblockdev-fix-libkmod-include.patch
-
 BuildRequires:  dmraid-devel
 BuildRequires:  gobject-introspection-devel >= 1.3.0
 BuildRequires:  gtk-doc
+BuildRequires:  pkgconfig
 %{?with_python2:BuildRequires: python-devel}
 BuildRequires:  python3-base
 BuildRequires:  python3-devel
 # There is a s390x plugin that, until vtoc.h is provided, can't be added.
 #BuildRequires:  s390-tools-devel
-BuildRequires:  volume_key-devel
 BuildRequires:  pkgconfig(blkid) >= 2.23.0
 BuildRequires:  pkgconfig(bytesize) >= 0.1
 BuildRequires:  pkgconfig(devmapper) >= 1.02.93
@@ -54,7 +51,6 @@
 BuildRequires:  pkgconfig(libparted) >= 3.1
 BuildRequires:  pkgconfig(libudev) >= 216
 BuildRequires:  pkgconfig(mount) >= 2.23.0
-BuildRequires:  pkgconfig(nss) >= 3.18.0
 Requires:   %{libname} >= %{version}
 
 %description
@@ -117,7 +113,6 @@
 This package contains enhancements to the gobject-introspection bindings for
 LibBlockDev in Python3.
 
-
 %package -n libbd_btrfs%{somajor}
 Summary:The BTRFS plugin for the LibBlockDev library
 Group:  System/Libraries
@@ -131,8 +126,8 @@
 %package -n libbd_btrfs-devel
 Summary:Development files for the libbd_btrfs plugin/library
 Group:  Development/Libraries/C and C++
-Requires:   libbd_btrfs%{somajor} >= %{version}
 Requires:   glib2-devel
+Requires:   libbd_btrfs%{somajor} >= %{version}
 Requires:   libbd_utils-devel
 Provides:   libblockdev-btrfs-devel = %{version}
 
@@ -140,7 +135,6 @@
 This package contains header files and pkg-config files needed for development
 with the libbd_btrfs plugin/library.
 
-
 %package -n libbd_crypto%{somajor}
 Summary:The crypto plugin for the LibBlockDev library
 Group:  System/Libraries
@@ -153,21 +147,20 @@
 %package -n libbd_crypto-devel
 Summary:Development files for the libbd_crypto plugin/library
 Group:  Development/Libraries/C and C++
-Requires:   libbd_crypto%{somajor} >= %{version}
 Requires:   glib2-devel
+Requires:   libbd_crypto%{somajor} >= %{version}
 Provi

commit python-kiwi for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-kiwi for openSUSE:Factory 
checked in at 2018-05-08 13:32:20

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


Package is "python-kiwi"

Tue May  8 13:32:20 2018 rev:26 rq:604053 version:9.14.7

Changes:

--- /work/SRC/openSUSE:Factory/python-kiwi/python-kiwi.changes  2018-04-17 
11:10:48.109308038 +0200
+++ /work/SRC/openSUSE:Factory/.python-kiwi.new/python-kiwi.changes 
2018-05-08 13:32:21.644334175 +0200
@@ -1,0 +2,319 @@
+Fri May  4 10:52:28 CEST 2018 - m...@suse.de
+
+- Bump version: 9.14.6 → 9.14.7
+  
+---
+Fri May  4 10:23:12 CEST 2018 - m...@suse.de
+  
+- Fixed check for volume group in use
+  
+  The former implementation evaluates the output of the vgs
+  command and set the volume group as in use if one of the
+  listed volume groups on the host contains the group name
+  set by the image description. This would also match if the
+  group name set in the image description is e.g 'System' and
+  the a volume group on the host with name 'SystemVG' exists.
+  However a conflict only exists on exact match of the name.
+  The proposed fix is to use the --select feature from vgs
+  and let it show information on exact match of the vg_name
+  field. The code in kiwi then just evaluates if the selection
+  by vgs has a value or not. This Fixes #721
+  
+---
+Fri May  4 09:07:04 CEST 2018 - m...@suse.de
+  
+- Fix setup of kiwi_lvm profile variable
+  
+  kiwi_lvm was always set to true if a volume management system
+  is in use. However it should only be set to true if the
+  selected volume management system is lvm. The same applies
+  to the kiwi_lvmgroup variable which also only makes sense
+  if the lvm volume management system is used.
+  This Fixes bsc#1090427
+  
+---
+Mon Apr 30 16:12:52 CEST 2018 - m...@suse.de
+  
+- Bump version: 9.14.5 → 9.14.6
+  
+---
+Thu Apr 26 15:40:01 CEST 2018 - m...@suse.de
+  
+- Extend test-image-azure integration test
+  
+  Use xfs as filesystem and set a tag to also test image tags
+  
+---
+Thu Apr 26 10:48:29 CEST 2018 - m...@suse.de
+  
+- Use /dev/zero to really write a zero byte
+  
+  The cleanup of the 512 byte block for the vhdfixed tag
+  was based on reading from /dev/null which does effectively
+  nothing. As the block should be filled with zero bytes
+  this patch changes the source from /dev/null to /dev/zero
+  This was found by tests to reproduce the issue reported
+  in bsc#1090953 but is not causing it
+  
+---
+Tue Apr 24 15:33:18 CEST 2018 - dcass...@suse.com
+  
+- Add test for the utils class StringToSize
+  
+  This commit adds a couple of unit tests for the StringToSize class.
+  
+---
+Tue Apr 24 11:23:43 CEST 2018 - m...@suse.de
+  
+- Bump version: 9.14.4 → 9.14.5
+  
+---
+Tue Apr 24 11:23:08 CEST 2018 - m...@suse.de
+  
+- Run doc target in travis test stage
+  
+---
+Tue Apr 24 11:21:15 CEST 2018 - m...@suse.de
+  
+- Fixup doc conf.py
+  
+  Do not load kiwi logging which is unneeded and causes many
+  superfluous messages on the console when sphinx build runs
+  
+---
+Tue Apr 24 11:20:46 CEST 2018 - m...@suse.de
+  
+- Fixup docstring warning from sphinx build
+  
+---
+Tue Apr 24 10:57:31 CEST 2018 - m...@suse.de
+  
+- Fixup travis unit test stages
+  
+  Build docs in deployment stage only
+  
+---
+Tue Apr 24 10:52:12 CEST 2018 - m...@suse.de
+  
+- Include doc_travis_deploy in travis deploy stage
+  
+---
+Tue Apr 24 10:33:24 CEST 2018 - m...@suse.de
+  
+- Fixed syntax errors shown by travis lint
+  
+---
+Tue Apr 24 10:29:53 CEST 2018 - m...@suse.de
+  
+- Revert "Fixup travis.yml"
+  
+  This reverts commit 79ccbdff394e2aba4f1e8fb6390a9a8e0d1925e2.
+  
+---
+Tue Apr 24 10:29:29 CEST 2018 - m...@suse.de
+  
+- Revert "Yet another try to get travis stages correct"
+  
+  This reverts commit aca0

commit libbytesize for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package libbytesize for openSUSE:Factory 
checked in at 2018-05-08 13:32:04

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


Package is "libbytesize"

Tue May  8 13:32:04 2018 rev:2 rq:604036 version:1.3

Changes:

--- /work/SRC/openSUSE:Factory/libbytesize/libbytesize.changes  2018-02-21 
14:13:20.222158465 +0100
+++ /work/SRC/openSUSE:Factory/.libbytesize.new/libbytesize.changes 
2018-05-08 13:32:05.288924294 +0200
@@ -1,0 +2,10 @@
+Fri May  4 01:06:42 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 1.3:
+  + Do not segfault when trying to bs_size_free NULL.
+- Cleanup specfile removing deprecations.
+- Update LGPL License tag appending '-only' to comply with SPDX
+  3.0.
+- Add gcc BuildRequires to avoid implicit dependencies.
+
+---

Old:

  libbytesize-1.2.tar.gz

New:

  libbytesize-1.3.tar.gz



Other differences:
--
++ libbytesize.spec ++
--- /var/tmp/diff_new_pack.jByJPC/_old  2018-05-08 13:32:06.132893843 +0200
+++ /var/tmp/diff_new_pack.jByJPC/_new  2018-05-08 13:32:06.136893699 +0200
@@ -21,13 +21,14 @@
 %define libname %{name}%{somajor}
 
 Name:   libbytesize
-Version:1.2
+Version:1.3
 Release:0
 Summary:A library for working with sizes in bytes
-License:LGPL-2.1
+License:LGPL-2.1-only
 Group:  Development/Libraries/C and C++
-Url:https://github.com/storaged-project/libbytesize
-Source: 
https://github.com/storaged-project/libbytesize/releases/download/1.2/%{name}-%{version}.tar.gz
+URL:https://github.com/storaged-project/libbytesize
+Source: 
https://github.com/storaged-project/libbytesize/releases/download/%{version}/%{name}-%{version}.tar.gz
+BuildRequires:  gcc
 BuildRequires:  gmp-devel
 BuildRequires:  gtk-doc
 BuildRequires:  mpfr-devel
@@ -35,7 +36,6 @@
 %{?with_python2:BuildRequires: python2-devel}
 BuildRequires:  pkgconfig(libpcre) >= 8.32
 Recommends: %{name}-lang
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The LibBytesize is a C library that facilitates work with sizes in
@@ -101,23 +101,15 @@
 find %{buildroot} -name '*.la' -type f -delete -print
 %find_lang %{name} %{?no_lang_C}
 
-# If python2 bindings are switched off this directory appears.
-# A feature request has been upstreamed for python 2 switch 
(gh#storaged-project/libbytesize#45).
-%if !%{with python2}
-rm -rf %{buildroot}/bytesize
-%endif
-
 %post -n %{libname} -p /sbin/ldconfig
 
 %postun -n %{libname} -p /sbin/ldconfig
 
 %files -n %{libname}
-%defattr(-,root,root)
 %doc README.md LICENSE
 %{_libdir}/%{name}.so.*
 
 %files devel
-%defattr(-,root,root)
 %doc %{_datadir}/gtk-doc/html/%{name}
 %{_libdir}/%{name}.so
 %dir %{_includedir}/bytesize
@@ -126,13 +118,11 @@
 
 %if %{with python2}
 %files -n python2-%{name}
-%defattr(-,root,root)
 %dir %{python2_sitearch}/bytesize
 %{python2_sitearch}/bytesize/*
 %endif
 
 %files -n python3-%{name}
-%defattr(-,root,root)
 %dir %{python3_sitearch}/bytesize
 %{python3_sitearch}/bytesize/*
 

++ libbytesize-1.2.tar.gz -> libbytesize-1.3.tar.gz ++
 23726 lines of diff (skipped)




commit bluedevil5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package bluedevil5 for openSUSE:Factory 
checked in at 2018-05-08 13:32:54

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


Package is "bluedevil5"

Tue May  8 13:32:54 2018 rev:56 rq:603236 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/bluedevil5/bluedevil5.changes2018-03-30 
12:03:00.383315229 +0200
+++ /work/SRC/openSUSE:Factory/.bluedevil5.new/bluedevil5.changes   
2018-05-08 13:32:56.371081167 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:04:31 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  bluedevil-5.12.4.tar.xz

New:

  bluedevil-5.12.5.tar.xz



Other differences:
--
++ bluedevil5.spec ++
--- /var/tmp/diff_new_pack.ChDrrE/_old  2018-05-08 13:32:56.943060529 +0200
+++ /var/tmp/diff_new_pack.ChDrrE/_new  2018-05-08 13:32:56.947060384 +0200
@@ -19,7 +19,7 @@
 
 %bcond_without lang
 Name:   bluedevil5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Bluetooth Manager for KDE Plasma
 License:GPL-2.0+

++ bluedevil-5.12.4.tar.xz -> bluedevil-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluedevil-5.12.4/CMakeLists.txt 
new/bluedevil-5.12.5/CMakeLists.txt
--- old/bluedevil-5.12.4/CMakeLists.txt 2018-03-27 13:01:53.0 +0200
+++ new/bluedevil-5.12.5/CMakeLists.txt 2018-05-01 14:36:11.0 +0200
@@ -1,5 +1,5 @@
 project(bluedevil)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluedevil-5.12.4/po/cs/bluedevil.po 
new/bluedevil-5.12.5/po/cs/bluedevil.po
--- old/bluedevil-5.12.4/po/cs/bluedevil.po 2018-03-27 13:01:23.0 
+0200
+++ new/bluedevil-5.12.5/po/cs/bluedevil.po 2018-05-01 14:35:30.0 
+0200
@@ -2,15 +2,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # Vít Pelčák , 2010, 2011, 2013, 2014, 2015, 2016, 2017.
 # Tomáš Chvátal , 2012, 2013.
-# Vit Pelcak , 2015, 2017.
+# Vit Pelcak , 2015, 2017, 2018.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-02 06:08+0100\n"
-"PO-Revision-Date: 2017-11-01 12:26+0100\n"
-"Last-Translator: Vit Pelcak \n"
+"PO-Revision-Date: 2018-03-01 16:54+0100\n"
+"Last-Translator: Vit Pelcak \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
 "MIME-Version: 1.0\n"
@@ -691,7 +691,7 @@
 #: sendfile/main.cpp:55
 #, kde-format
 msgid "Specify receiving device by MAC address."
-msgstr ""
+msgstr "Zadejte přijímací zařízení pomocí MAC adres."
 
 #: sendfile/main.cpp:59
 #, kde-format
@@ -701,7 +701,7 @@
 #: sendfile/main.cpp:63
 #, kde-format
 msgid "Files to be sent."
-msgstr ""
+msgstr "Soubory k odeslání."
 
 #: sendfile/pages/connectingpage.cpp:45 wizard/pages/connect.cpp:53
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluedevil-5.12.4/po/id/bluedevil.po 
new/bluedevil-5.12.5/po/id/bluedevil.po
--- old/bluedevil-5.12.4/po/id/bluedevil.po 2018-03-27 13:01:31.0 
+0200
+++ new/bluedevil-5.12.5/po/id/bluedevil.po 2018-05-01 14:35:45.0 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: KDE Frameworks 5 Applications\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-02 06:08+0100\n"
-"PO-Revision-Date: 2018-03-14 20:59+0700\n"
+"PO-Revision-Date: 2018-04-16 08:17+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -149,7 +149,7 @@
 #, kde-format
 msgctxt "Action to fix a problem"
 msgid "Fix it"
-msgstr "Memperbaikinya"
+msgstr "Perbaiki"
 
 #: kcmodule/common/systemcheck.cpp:87 sendfile/discoverwidget.cpp:149
 #, kde-format
@@ -159,7 +159,7 @@
 #: kcmodule/common/systemcheck.cpp:102
 #, kde-format
 msgid "Your default Bluetooth adapter is not visible for remote devices."
-msgstr "Adapter Bluetooth baku kamu tidak tampak untuk peranti jarak jauh"
+msgstr "Adapter Bluetooth baku kamu tidak tampak untuk perangkat jarak jauh"
 
 #: kcmodule/common/systemcheck.cpp:113
 #, kde-format
@@ -174,12 +174,12 @@
 #: kcmodule/devices/devicedetails.cpp:162
 #, kde-format
 msgid "Disconnect"
-msgstr "Memutuskan"
+msgstr "Putuskan"
 
 #: kcmodule/devices/devicedetails.cpp:165
 #, kde-format
 msgid "

commit fluidsynth for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package fluidsynth for openSUSE:Factory 
checked in at 2018-05-08 13:32:36

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


Package is "fluidsynth"

Tue May  8 13:32:36 2018 rev:38 rq:604598 version:1.1.11

Changes:

--- /work/SRC/openSUSE:Factory/fluidsynth/fluidsynth.changes2018-03-09 
10:34:03.481768492 +0100
+++ /work/SRC/openSUSE:Factory/.fluidsynth.new/fluidsynth.changes   
2018-05-08 13:32:37.779751983 +0200
@@ -1,0 +2,14 @@
+Sun May  6 06:55:29 UTC 2018 - tom.m...@googlemail.com
+
+- Update to 1.1.11:
+  * fix pkgconfig file for absolute paths
+  * add a cmake option for OSS support
+  * fix broken enable-midishare cmake option
+  * fix double free in fluid_midi_router
+  * prevent malicious soundfonts from causing buffer overflows
+  * avoid SF3 files to be loaded incorrectly
+  * fix an endless loop in fast file renderer
+- remove 0001-Fix-pkgconfig-file-for-absolute-paths-347.patch
+
+
+---

Old:

  0001-Fix-pkgconfig-file-for-absolute-paths-347.patch
  fluidsynth-1.1.10.tar.gz

New:

  fluidsynth-1.1.11.tar.gz



Other differences:
--
++ fluidsynth.spec ++
--- /var/tmp/diff_new_pack.UR6Md5/_old  2018-05-08 13:32:38.355731201 +0200
+++ /var/tmp/diff_new_pack.UR6Md5/_new  2018-05-08 13:32:38.355731201 +0200
@@ -24,7 +24,7 @@
 %endif
 
 Name:   fluidsynth
-Version:1.1.10
+Version:1.1.11
 Release:0
 Summary:A Real-Time Software Synthesizer That Uses Soundfont(tm)
 License:LGPL-2.1+
@@ -32,7 +32,6 @@
 Url:http://www.fluidsynth.org/
 Source: 
https://github.com/FluidSynth/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1000: baselibs.conf
-Patch1: 0001-Fix-pkgconfig-file-for-absolute-paths-347.patch
 BuildRequires:  cmake >= 3.0.2
 BuildRequires:  ladspa-devel
 BuildRequires:  pkgconfig
@@ -71,7 +70,6 @@
 
 %prep
 %setup -q
-%patch1 -p1
 
 %build
 %cmake \

++ fluidsynth-1.1.10.tar.gz -> fluidsynth-1.1.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fluidsynth-1.1.10/CMakeLists.txt 
new/fluidsynth-1.1.11/CMakeLists.txt
--- old/fluidsynth-1.1.10/CMakeLists.txt2018-02-24 18:32:40.0 
+0100
+++ new/fluidsynth-1.1.11/CMakeLists.txt2018-05-06 09:05:11.0 
+0200
@@ -29,7 +29,7 @@
 # FluidSynth package version
 set ( FLUIDSYNTH_VERSION_MAJOR 1 )
 set ( FLUIDSYNTH_VERSION_MINOR 1 )
-set ( FLUIDSYNTH_VERSION_MICRO 10 )
+set ( FLUIDSYNTH_VERSION_MICRO 11 )
 set ( VERSION 
"${FLUIDSYNTH_VERSION_MAJOR}.${FLUIDSYNTH_VERSION_MINOR}.${FLUIDSYNTH_VERSION_MICRO}"
 )
 set ( FLUIDSYNTH_VERSION "\"${VERSION}\"" )
 
@@ -44,30 +44,31 @@
 # This is not exactly the same algorithm as the libtool one, but the results 
are the same.
 set ( LIB_VERSION_CURRENT 1 )
 set ( LIB_VERSION_AGE 7 )
-set ( LIB_VERSION_REVISION 1 )
+set ( LIB_VERSION_REVISION 2 )
 set ( LIB_VERSION_INFO
   "${LIB_VERSION_CURRENT}.${LIB_VERSION_AGE}.${LIB_VERSION_REVISION}" )
 
 # Options disabled by default
+option ( enable-debug "enable debugging (default=no)" off )
 option ( enable-floats "enable type float instead of double for DSP samples" 
off )
 option ( enable-profiling "profile the dsp code" off )
 option ( enable-ladspa "enable LADSPA effect units" off )
+option ( enable-fpe-check "enable Floating Point Exception checks and debug 
messages" off )
 option ( enable-portaudio "compile PortAudio support" off )
 option ( enable-trap-on-fpe "enable SIGFPE trap on Floating Point Exceptions" 
off )
-option ( enable-fpe-check "enable Floating Point Exception checks and debug 
messages" off )
-option ( enable-debug "enable debugging (default=no)" off )
 
 # Options enabled by default
-option ( enable-pkgconfig "use pkg-config to locate fluidsynth's (mostly 
optional) dependencies" on )
-option ( enable-libsndfile "compile libsndfile support (if it is available)" 
on )
 option ( enable-aufile "compile support for sound file output" on )
-option ( enable-pulseaudio "compile PulseAudio support (if it is available)" 
on )
+option ( BUILD_SHARED_LIBS "Build a shared object or DLL" on )
+option ( enable-dbus "compile DBUS support (if it is available)" on )
+option ( enable-ipv6  "enable ipv6 support" on )
 option ( enable-jack "compile JACK support (if it is available)" on )
+option ( enable-libsndfile "compile libsndfile support (if it is available)" 
on )
 option ( enable-midishare "compile MidiShare support (if it is available)" on )
+option ( enable-oss "compile OSS support (if it is available)" on )
+option ( enable-pk

commit gpg2 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package gpg2 for openSUSE:Factory checked in 
at 2018-05-08 13:32:14

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


Package is "gpg2"

Tue May  8 13:32:14 2018 rev:127 rq:604049 version:2.2.7

Changes:

--- /work/SRC/openSUSE:Factory/gpg2/gpg2.changes2018-04-17 
11:15:27.620198410 +0200
+++ /work/SRC/openSUSE:Factory/.gpg2.new/gpg2.changes   2018-05-08 
13:32:16.480520492 +0200
@@ -1,0 +2,22 @@
+Fri May  4 14:15:27 UTC 2018 - astie...@suse.com
+
+- GnuPG 2.2.7:
+  * gpg: New option --no-symkey-cache to disable the passphrase
+cache for symmetrical en- and decryption.
+  * gpg: The ERRSIG status now prints the fingerprint if that is
+part of the signature
+  * gpg: Relax emitting of FAILURE status lines
+  * gpg: Add a status flag to "sig" lines printed with --list-sigs
+  * gpg: Fix "Too many open files" when using --multifile
+  * ssh: Return an error for unknown ssh-agent flags
+  * dirmngr: Fix a CNAME problem with pools and TLS.  Also use a
+fixed mapping of keys.gnupg.net to sks-keyservers.net
+  * dirmngr: Try resurrecting dead hosts earlier (from 3h to 1.5h)
+  * dirmngr: Fallback to CRL if no default OCSP responder is
+configured
+  * dirmngr: Implement CRL fetching via https.  Here a redirection
+to http is explictly allowed
+  * agent,dirmngr: New sub-command "getenv" for "getinfo" to ease
+debugging
+
+---

Old:

  gnupg-2.2.6.tar.bz2
  gnupg-2.2.6.tar.bz2.sig

New:

  gnupg-2.2.7.tar.bz2
  gnupg-2.2.7.tar.bz2.sig



Other differences:
--
++ gpg2.spec ++
--- /var/tmp/diff_new_pack.2OMLQl/_old  2018-05-08 13:32:17.496483834 +0200
+++ /var/tmp/diff_new_pack.2OMLQl/_new  2018-05-08 13:32:17.500483690 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gpg2
-Version:2.2.6
+Version:2.2.7
 Release:0
 Summary:File encryption, decryption, signature creation and 
verification utility
 License:GPL-3.0+

++ gnupg-2.2.6.tar.bz2 -> gnupg-2.2.7.tar.bz2 ++
/work/SRC/openSUSE:Factory/gpg2/gnupg-2.2.6.tar.bz2 
/work/SRC/openSUSE:Factory/.gpg2.new/gnupg-2.2.7.tar.bz2 differ: char 11, line 1

++ gnupg-add_legacy_FIPS_mode_option.patch ++
--- /var/tmp/diff_new_pack.2OMLQl/_old  2018-05-08 13:32:17.556481669 +0200
+++ /var/tmp/diff_new_pack.2OMLQl/_new  2018-05-08 13:32:17.556481669 +0200
@@ -3,11 +3,11 @@
  g10/gpg.c|9 +
  2 files changed, 27 insertions(+)
 
-Index: gnupg-2.2.6/doc/gpg.texi
+Index: gnupg-2.2.7/doc/gpg.texi
 ===
 gnupg-2.2.6.orig/doc/gpg.texi  2018-04-10 09:05:55.807324463 +0200
-+++ gnupg-2.2.6/doc/gpg.texi   2018-04-10 09:05:58.627349563 +0200
-@@ -2094,6 +2094,24 @@ implies, this option is for experts only
+--- gnupg-2.2.7.orig/doc/gpg.texi  2018-05-04 16:14:30.949580264 +0200
 gnupg-2.2.7/doc/gpg.texi   2018-05-04 16:14:34.025609243 +0200
+@@ -2097,6 +2097,24 @@ implies, this option is for experts only
  understand the implications of what it allows you to do, leave this
  off. @option{--no-expert} disables this option.
  
@@ -32,19 +32,19 @@
  @end table
  
  
-Index: gnupg-2.2.6/g10/gpg.c
+Index: gnupg-2.2.7/g10/gpg.c
 ===
 gnupg-2.2.6.orig/g10/gpg.c 2018-04-10 09:05:55.807324463 +0200
-+++ gnupg-2.2.6/g10/gpg.c  2018-04-10 09:06:21.583553887 +0200
-@@ -424,6 +424,7 @@ enum cmd_and_opt_values
- oSender,
+--- gnupg-2.2.7.orig/g10/gpg.c 2018-05-04 16:14:30.949580264 +0200
 gnupg-2.2.7/g10/gpg.c  2018-05-04 16:15:00.441858109 +0200
+@@ -425,6 +425,7 @@ enum cmd_and_opt_values
  oKeyOrigin,
  oRequestOrigin,
+ oNoSymkeyCache,
 +oSetLegacyFips,
  
  oNoop
};
-@@ -871,6 +872,7 @@ static ARGPARSE_OPTS opts[] = {
+@@ -872,6 +873,7 @@ static ARGPARSE_OPTS opts[] = {
ARGPARSE_s_n (oAllowMultipleMessages,  "allow-multiple-messages", "@"),
ARGPARSE_s_n (oNoAllowMultipleMessages, "no-allow-multiple-messages", "@"),
ARGPARSE_s_n (oAllowWeakDigestAlgos, "allow-weak-digest-algos", "@"),
@@ -52,7 +52,7 @@
  
ARGPARSE_s_s (oDefaultNewKeyAlgo, "default-new-key-algo", "@"),
  
-@@ -3565,6 +3567,13 @@ main (int argc, char **argv)
+@@ -3568,6 +3570,13 @@ main (int argc, char **argv)
  opt.def_new_key_algo = pargs.r.ret_str;
  break;
  





commit fonts-config for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package fonts-config for openSUSE:Factory 
checked in at 2018-05-08 13:32:31

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


Package is "fonts-config"

Tue May  8 13:32:31 2018 rev:54 rq:604588 version:20180430

Changes:

--- /work/SRC/openSUSE:Factory/fonts-config/fonts-config.changes
2018-03-20 21:51:08.437599885 +0100
+++ /work/SRC/openSUSE:Factory/.fonts-config.new/fonts-config.changes   
2018-05-08 13:32:32.711934839 +0200
@@ -1,0 +2,13 @@
+Mon Apr 30 03:40:53 UTC 2018 - i...@marguerite.su
+
+- new upstream: https://github.com/openSUSE/fonts-config
+  development will continue there.
+- drop patch: fontconfig-infinality-generate-tt-groups.patch
+  * infinality project is dead, we use a static result in upstream
+instead of generating it every time.
+- update 20180430
+  * support color emoji
+  * modern fonts for symbol
+  * add configurations for Noto Sans/Serif CJK
+
+---

Old:

  10-rendering-options.conf.template
  11-base-rendering.conf
  12-tt-monospace-rendering.conf
  13-selective-rendering-ipa.conf
  31-metric-aliases-bw.conf
  49-family-default.conf
  59-family-prefer-lang-specific.conf
  60-family-prefer.conf
  70-reject.conf
  empty.conf
  fontconfig-infinality-1-20130104_1.tar.bz2
  fontconfig-infinality-generate-tt-groups.patch
  fontconfig.SUSE.properties.template
  fonts-config
  sysconfig.fonts-config

New:

  fonts-config-20180430.tar.xz



Other differences:
--
++ fonts-config.spec ++
--- /var/tmp/diff_new_pack.tXWuxG/_old  2018-05-08 13:32:33.499906408 +0200
+++ /var/tmp/diff_new_pack.tXWuxG/_new  2018-05-08 13:32:33.503906263 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fonts-config
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,30 +21,14 @@
   %define _fillupdir /var/adm/fillup-templates
 %endif
 
-%define infinality_srcver 1-20130104_1
-%define infinality_namefontconfig-infinality
 Name:   fonts-config
-Version:20160921
+Version:20180430
 Release:0
 Summary:Configures Fonts for X Windows and other applications
 # MIT for infinality
-License:GPL-2.0+ and MIT
+License:GPL-2.0-or-later AND MIT
 Group:  System/X11/Fonts
-Source0:fonts-config
-Source1:sysconfig.fonts-config
-Source2:fontconfig.SUSE.properties.template
-Source3:%{infinality_name}-%{infinality_srcver}.tar.bz2
-Source4:10-rendering-options.conf.template
-Source5:11-base-rendering.conf
-Source6:empty.conf
-Source7:12-tt-monospace-rendering.conf
-Source8:13-selective-rendering-ipa.conf
-Source9:49-family-default.conf
-Source10:   60-family-prefer.conf
-Source11:   70-reject.conf
-Source12:   31-metric-aliases-bw.conf
-Source13:   59-family-prefer-lang-specific.conf
-Patch0: fontconfig-infinality-generate-tt-groups.patch
+Source: fonts-config-20180430.tar.xz
 BuildRequires:  fontconfig
 BuildRequires:  fontpackages-devel
 Requires(pre):  %fillup_prereq
@@ -66,22 +50,13 @@
 --debug flag).
 
 %prep
-%setup -cT -a 3 -n %{infinality_name}-%{infinality_srcver}
-%patch0
+%setup
 
 %build
-cd infinality/conf.src/generate60
-./generate60.sh
-mv 60-group-tt-fonts.conf ../../../10-group-tt-hinted-fonts.conf
-mv 60-group-non-tt-fonts.conf ../../../10-group-tt-non-hinted-fonts.conf
-cd ../../..
 # empty configuration now, should be filled after fonts-config call
-cp %{SOURCE6} 10-rendering-options.conf 
+cp 99-example.conf 10-rendering-options.conf 
 # empty configuration now, can be filled after fonts-config call
-cp %{SOURCE6} 58-family-prefer-local.conf 
-mv infinality/conf.src/80-selective-rendering-inf-win-lin.conf 
13-selective-rendering.conf
-mv infinality/conf.src/21-aliases-wine-linux.conf 61-wine-aliases.conf
-cp -a %{SOURCE5} %{SOURCE7} %{SOURCE8} %{SOURCE9} %{SOURCE10} %{SOURCE11} 
%{SOURCE12} %{SOURCE13} .
+cp 99-example.conf 58-family-prefer-local.conf 
 
 %install
 mkdir -p %{buildroot}/sbin/conf.d
@@ -90,17 +65,14 @@
 mkdir -p %{buildroot}/%{_mandir}/man1
 mkdir -p %{buildroot}/%{_docdir}/%{name}/infinality
 mkdir -p %{buildroot}%{_fillupdir}
-install -m 755 %{SOURCE0} %{buildroot}%{_prefix}/sbin
-install -m 644 %{SOURCE1} \
+install -m 755 fonts-config %{buildroot}%{_prefix}/sbin
+install -m 644 sysconfig.fonts-config \
   %{buildroot}%{_fillupdir}/
-install 

commit kio for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kio for openSUSE:Factory checked in 
at 2018-05-08 13:32:26

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


Package is "kio"

Tue May  8 13:32:26 2018 rev:63 rq:604385 version:5.45.0

Changes:

--- /work/SRC/openSUSE:Factory/kio/kio.changes  2018-04-19 15:16:56.957450972 
+0200
+++ /work/SRC/openSUSE:Factory/.kio.new/kio.changes 2018-05-08 
13:32:27.572120292 +0200
@@ -1,0 +2,7 @@
+Fri May  4 14:39:14 UTC 2018 - wba...@tmo.at
+
+- Add 0001-Revert-Support-NTFS-hidden-files.patch to revert the new
+  support for NTFS hidden files, it caused the mount point itself
+  to be hidden (boo#1091780, kde#392913)
+
+---

New:

  0001-Revert-Support-NTFS-hidden-files.patch



Other differences:
--
++ kio.spec ++
--- /var/tmp/diff_new_pack.Z53K1d/_old  2018-05-08 13:32:28.328093016 +0200
+++ /var/tmp/diff_new_pack.Z53K1d/_new  2018-05-08 13:32:28.332092871 +0200
@@ -34,6 +34,8 @@
 Source1:baselibs.conf
 # PATCH-FIX-OPENSUSE kio_help-fallback-to-kde4-docs.patch -- allow kio_help to 
see into kde4 documentation, needed especially for khelpcenter5
 Patch0: kio_help-fallback-to-kde4-docs.patch
+# PATCH-FIX-OPENSUSE
+Patch1: 0001-Revert-Support-NTFS-hidden-files.patch
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
@@ -125,7 +127,7 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
+%autopatch -p1
 
 %build
   %cmake_kf5 -d build

++ 0001-Revert-Support-NTFS-hidden-files.patch ++
>From 3640475b0a8ea4a2eca060ed0bcf1f8f8da22375 Mon Sep 17 00:00:00 2001
From: Wolfgang Bauer 
Date: Fri, 4 May 2018 16:22:57 +0200
Subject: [PATCH] Revert "Support NTFS hidden files"

This reverts commit d7cce9937d5e9af2753fadb82d11f308b58bb8fa.

The new support for NTFS hidden files causes the mountpoint itself
to be hidden as well, apparently the root directory of an NTFS
partition always has the "hidden" attribute set.

https://bugs.kde.org/show_bug.cgi?id=392913
http://bugzilla.opensuse.org/show_bug.cgi?id=1091780
---
 src/ioslaves/file/file_unix.cpp | 54 -
 1 file changed, 54 deletions(-)

diff --git a/src/ioslaves/file/file_unix.cpp b/src/ioslaves/file/file_unix.cpp
index afa2bd3f..826c46cd 100644
--- a/src/ioslaves/file/file_unix.cpp
+++ b/src/ioslaves/file/file_unix.cpp
@@ -37,9 +37,6 @@
 #include 
 
 #include 
-#if HAVE_SYS_XATTR_H
-#include 
-#endif
 #include 
 
 #include 
@@ -413,44 +410,6 @@ static bool isLocalFileSameHost(const QUrl &url)
 return (QString::compare(url.host(), QLatin1String(hostname), 
Qt::CaseInsensitive) == 0);
 }
 
-#if HAVE_SYS_XATTR_H
-static bool isNtfsHidden(const QString &filename)
-{
-constexpr auto attrName = "system.ntfs_attrib_be";
-const auto filenameEncoded = QFile::encodeName(filename);
-auto length = getxattr(filenameEncoded.data(), attrName, nullptr, 0);
-if (length <= 0) {
-return false;
-}
-constexpr size_t xattr_size = 1024;
-char strAttr[xattr_size];
-length = getxattr(filenameEncoded.data(), attrName, strAttr, xattr_size);
-if (length <= 0) {
-return false;
-}
-
-// Decode result to hex string
-static constexpr auto digits = "0123456789abcdef";
-QVarLengthArray hexAttr(static_cast(length) * 2 + 4);
-char *c = strAttr;
-char *e = hexAttr.data();
-*e++ ='0';
-*e++ = 'x';
-for (auto n = 0; n < length; n++, c++) {
-*e++ = digits[(static_cast(*c) >> 4)];
-*e++ = digits[(static_cast(*c) & 0x0F)];
-}
-*e = '\0';
-
-// Decode hex string to int
-auto intAttr = static_cast(strtol(hexAttr.data(), nullptr, 16));
-
-constexpr auto FILE_ATTRIBUTE_HIDDEN = 0x2u;
-return static_cast(intAttr & FILE_ATTRIBUTE_HIDDEN);
-}
-#endif
-
-
 void FileProtocol::listDir(const QUrl &url)
 {
 if (!isLocalFileSameHost(url)) {
@@ -555,11 +506,6 @@ void FileProtocol::listDir(const QUrl &url)
 
 } else {
 if (createUDSEntry(filename, QByteArray(ep->d_name), entry, 
details)) {
-#if HAVE_SYS_XATTR_H
-if (isNtfsHidden(filename)) {
-entry.insert(KIO::UDSEntry::UDS_HIDDEN, 1);
-}
-#endif
 listEntry(entry);
 }
 }
-- 
2.13.6




commit breeze for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package breeze for openSUSE:Factory checked 
in at 2018-05-08 13:33:00

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


Package is "breeze"

Tue May  8 13:33:00 2018 rev:64 rq:603237 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/breeze/breeze.changes2018-03-30 
12:03:53.713386841 +0200
+++ /work/SRC/openSUSE:Factory/.breeze.new/breeze.changes   2018-05-08 
13:33:14.490427369 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:05:34 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---
breeze4-style.changes: same change

Old:

  breeze-5.12.4.tar.xz

New:

  breeze-5.12.5.tar.xz



Other differences:
--
++ breeze.spec ++
--- /var/tmp/diff_new_pack.Pu0Xc1/_old  2018-05-08 13:33:16.630350153 +0200
+++ /var/tmp/diff_new_pack.Pu0Xc1/_new  2018-05-08 13:33:16.634350008 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   breeze
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ breeze4-style.spec ++
--- /var/tmp/diff_new_pack.Pu0Xc1/_old  2018-05-08 13:33:16.666348854 +0200
+++ /var/tmp/diff_new_pack.Pu0Xc1/_new  2018-05-08 13:33:16.674348565 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   breeze4-style
-Version:5.12.4
+Version:5.12.5
 Release:0
 BuildRequires:  automoc4
 BuildRequires:  cmake >= 2.8.12

++ breeze-5.12.4.tar.xz -> breeze-5.12.5.tar.xz ++
/work/SRC/openSUSE:Factory/breeze/breeze-5.12.4.tar.xz 
/work/SRC/openSUSE:Factory/.breeze.new/breeze-5.12.5.tar.xz differ: char 25, 
line 1




commit breeze-gtk for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package breeze-gtk for openSUSE:Factory 
checked in at 2018-05-08 13:33:06

Comparing /work/SRC/openSUSE:Factory/breeze-gtk (Old)
 and  /work/SRC/openSUSE:Factory/.breeze-gtk.new (New)


Package is "breeze-gtk"

Tue May  8 13:33:06 2018 rev:43 rq:603238 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/breeze-gtk/breeze-gtk.changes2018-03-30 
12:03:58.597210246 +0200
+++ /work/SRC/openSUSE:Factory/.breeze-gtk.new/breeze-gtk.changes   
2018-05-08 13:33:16.934339184 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:05:38 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  breeze-gtk-5.12.4.tar.xz

New:

  breeze-gtk-5.12.5.tar.xz



Other differences:
--
++ breeze-gtk.spec ++
--- /var/tmp/diff_new_pack.iV27gd/_old  2018-05-08 13:33:17.674312483 +0200
+++ /var/tmp/diff_new_pack.iV27gd/_new  2018-05-08 13:33:17.678312338 +0200
@@ -18,7 +18,7 @@
 
 %define _name   breeze
 Name:   breeze-gtk
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:GTK+ theme matching KDE's Breeze
 License:LGPL-2.1

++ breeze-gtk-5.12.4.tar.xz -> breeze-gtk-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-5.12.4/CMakeLists.txt 
new/breeze-gtk-5.12.5/CMakeLists.txt
--- old/breeze-gtk-5.12.4/CMakeLists.txt2018-03-27 13:03:47.0 
+0200
+++ new/breeze-gtk-5.12.5/CMakeLists.txt2018-05-01 14:38:07.0 
+0200
@@ -1,5 +1,5 @@
 project(breeze-gtk)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12)




commit drkonqi5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package drkonqi5 for openSUSE:Factory 
checked in at 2018-05-08 13:33:18

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


Package is "drkonqi5"

Tue May  8 13:33:18 2018 rev:13 rq:603241 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/drkonqi5/drkonqi5.changes2018-03-30 
12:04:08.828840281 +0200
+++ /work/SRC/openSUSE:Factory/.drkonqi5.new/drkonqi5.changes   2018-05-08 
13:33:20.146223288 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:05:43 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  drkonqi-5.12.4.tar.xz

New:

  drkonqi-5.12.5.tar.xz



Other differences:
--
++ drkonqi5.spec ++
--- /var/tmp/diff_new_pack.aECH8v/_old  2018-05-08 13:33:20.990192835 +0200
+++ /var/tmp/diff_new_pack.aECH8v/_new  2018-05-08 13:33:21.014191969 +0200
@@ -23,7 +23,7 @@
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}
 # Latest ABI-stable Plasma (e.g. 5.8 in KF5, but 5.9.1 in KUF)
 %{!?_plasma5_version: %global _plasma5_version %(echo %{_plasma5_bugfix} | awk 
-F. '{print $1"."$2}')}
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Helper for debugging and reporting crashes
 License:GPL-2.0+

++ drkonqi-5.12.4.tar.xz -> drkonqi-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/drkonqi-5.12.4/CMakeLists.txt 
new/drkonqi-5.12.5/CMakeLists.txt
--- old/drkonqi-5.12.4/CMakeLists.txt   2018-03-27 13:06:13.0 +0200
+++ new/drkonqi-5.12.5/CMakeLists.txt   2018-05-01 14:40:36.0 +0200
@@ -1,5 +1,5 @@
 project(drkonqi)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/drkonqi-5.12.4/po/cs/drkonqi5.po 
new/drkonqi-5.12.5/po/cs/drkonqi5.po
--- old/drkonqi-5.12.4/po/cs/drkonqi5.po2018-03-27 13:06:03.0 
+0200
+++ new/drkonqi-5.12.5/po/cs/drkonqi5.po2018-05-01 14:40:17.0 
+0200
@@ -2,7 +2,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017.
 # Tomáš Chvátal , 2012, 2013, 2015.
-# Vit Pelcak , 2017.
+# Vit Pelcak , 2017, 2018.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/drkonqi-5.12.4/po/gl/drkonqi5.po 
new/drkonqi-5.12.5/po/gl/drkonqi5.po
--- old/drkonqi-5.12.4/po/gl/drkonqi5.po2018-03-27 13:06:02.0 
+0200
+++ new/drkonqi-5.12.5/po/gl/drkonqi5.po2018-05-01 14:40:21.0 
+0200
@@ -18,8 +18,8 @@
 "Project-Id-Version: drkonqi\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-02 06:09+0100\n"
-"PO-Revision-Date: 2018-01-28 05:12+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) \n"
+"PO-Revision-Date: 2018-04-28 21:24+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -478,8 +478,8 @@
 msgstr ""
 "Se está interesado en axudarnos a manter o sistema de seguimento de "
 "incidencias de KDE limpo e útil, para permitirlles aos desenvolvedores "
-"concentrarse en corrixir os fallos, será benvido a unirse ao equipo BugSquad."
+"concentrarse en corrixir os fallos, poderá unirse ao equipo BugSquad."
 
 #: applicationdetailsexamples.cpp:34
 #, kde-format
@@ -2895,7 +2895,7 @@
 #, kde-format
 msgctxt "@info:shell"
 msgid "The program was started by kdeinit"
-msgstr "O programa foi iniciado por kdeinit"
+msgstr "kdeinit iniciou o programa."
 
 #: main.cpp:99
 #, kde-format
@@ -2907,7 +2907,7 @@
 #, kde-format
 msgctxt "@info:shell"
 msgid "The program has already been restarted"
-msgstr "O programa xa foi reiniciado"
+msgstr "O programa xa se reiniciou."
 
 #: main.cpp:101
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/drkonqi-5.12.4/po/id/drkonqi5.po 
new/drkonqi-5.12.5/po/id/drkonqi5.po
--- old/drkonqi-5.12.4/po/id/drkonqi5.po2018-03-27 13:06:04.0 
+0200
+++ new/drkonqi-5.12.5/po/id/drkonqi5.po2018-05-01 14:40:24.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: drkonqi\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-02 06:09+0100\n"
-"PO-Revision-Date: 2018-03-03 08:13+0700\n"
+"PO-Revi

commit kde-cli-tools5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kde-cli-tools5 for openSUSE:Factory 
checked in at 2018-05-08 13:33:33

Comparing /work/SRC/openSUSE:Factory/kde-cli-tools5 (Old)
 and  /work/SRC/openSUSE:Factory/.kde-cli-tools5.new (New)


Package is "kde-cli-tools5"

Tue May  8 13:33:33 2018 rev:67 rq:603244 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kde-cli-tools5/kde-cli-tools5.changes
2018-03-30 12:06:32.415648465 +0200
+++ /work/SRC/openSUSE:Factory/.kde-cli-tools5.new/kde-cli-tools5.changes   
2018-05-08 13:33:35.705661845 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:30 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kde-cli-tools-5.12.4.tar.xz

New:

  kde-cli-tools-5.12.5.tar.xz



Other differences:
--
++ kde-cli-tools5.spec ++
--- /var/tmp/diff_new_pack.QX2f8q/_old  2018-05-08 13:33:36.353638464 +0200
+++ /var/tmp/diff_new_pack.QX2f8q/_new  2018-05-08 13:33:36.353638464 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kde-cli-tools5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Additional CLI tools for KDE applications
 License:GPL-2.0+

++ kde-cli-tools-5.12.4.tar.xz -> kde-cli-tools-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-cli-tools-5.12.4/CMakeLists.txt 
new/kde-cli-tools-5.12.5/CMakeLists.txt
--- old/kde-cli-tools-5.12.4/CMakeLists.txt 2018-03-27 13:07:49.0 
+0200
+++ new/kde-cli-tools-5.12.5/CMakeLists.txt 2018-05-01 14:42:24.0 
+0200
@@ -1,5 +1,5 @@
 project(KDE-CLI-Tools)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.9.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-cli-tools-5.12.4/keditfiletype/filetypes.desktop 
new/kde-cli-tools-5.12.5/keditfiletype/filetypes.desktop
--- old/kde-cli-tools-5.12.4/keditfiletype/filetypes.desktop2018-03-27 
13:06:48.0 +0200
+++ new/kde-cli-tools-5.12.5/keditfiletype/filetypes.desktop2018-05-01 
14:41:15.0 +0200
@@ -49,7 +49,7 @@
 Name[hsb]=Datajowe asociacije
 Name[hu]=Fájltársítások
 Name[ia]=Associationes de file
-Name[id]=Asosiasi Fail
+Name[id]=Asosiasi File
 Name[is]=Skráavensl
 Name[it]=Associazioni dei file
 Name[ja]=ファイルの関連付け
@@ -141,7 +141,7 @@
 Comment[hsb]=Konfiguracija datajowych asociacijow
 Comment[hu]=A fájlhozzárendelések módosítása
 Comment[ia]=Configura associationes de file
-Comment[id]=Konfigurasi asosiasi fail
+Comment[id]=Konfigurasi asosiasi file
 Comment[is]=Stilla skráavensl
 Comment[it]=Configura le associazioni dei file
 Comment[ja]=ファイルの関連付けを設定
@@ -220,7 +220,7 @@
 X-KDE-Keywords[hi]=फ़ाइल प्रकार, फ़ाइल संघ, माइम प्रकार, फ़ाइल पैटर्न, 
फ़ाइलें, पैटर्न
 
X-KDE-Keywords[hu]=Fájltípusok,Fájltársítások,MIME-típusok,Fájlminták,Fájlok,Minta
 X-KDE-Keywords[ia]=Typos de file,Associationes de file,Typos Mime,Patronos de 
File,Files,Patrono
-X-KDE-Keywords[id]=Tipe Fail,Asosiasi Fail,Tipe Mime,Pola Fail,Fail,Pola
+X-KDE-Keywords[id]=Tipe File,Asosiasi File,Tipe Mime,Pola File,File,Pola
 
X-KDE-Keywords[is]=Skráagerðir,Skráavensl,Mime-tegund,Skráamynstur,Skrár,Mynstur
 X-KDE-Keywords[it]=Tipi di file,associazioni di file,tipi mime,schemi di 
file,file,schema
 X-KDE-Keywords[ja]=Filetypes,File Associations,Mime Types,File 
Patterns,Files,Pattern
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-cli-tools-5.12.4/po/gl/kcm5_filetypes.po 
new/kde-cli-tools-5.12.5/po/gl/kcm5_filetypes.po
--- old/kde-cli-tools-5.12.4/po/gl/kcm5_filetypes.po2018-03-27 
13:07:11.0 +0200
+++ new/kde-cli-tools-5.12.5/po/gl/kcm5_filetypes.po2018-05-01 
14:41:42.0 +0200
@@ -12,14 +12,14 @@
 # Marce Villarino , 2009, 2011.
 # Marce Villarino , 2011, 2012.
 # Adrián Chaves Fernández , 2015, 2017.
-# Adrián Chaves (Gallaecio) , 2017.
+# Adrián Chaves (Gallaecio) , 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: filetypes\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-13 03:17+0100\n"
-"PO-Revision-Date: 2017-11-16 21:26+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) \n"
+"PO-Revision-Date: 2018-04-30 00:03+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -307,8 +307,8 @@
 "todo o sistema, desfacendo calquera cambio que fixese no tipo d

commit kde-user-manager for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kde-user-manager for 
openSUSE:Factory checked in at 2018-05-08 13:33:46

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


Package is "kde-user-manager"

Tue May  8 13:33:46 2018 rev:49 rq:603246 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kde-user-manager/kde-user-manager.changes
2018-03-30 12:04:19.556452381 +0200
+++ /work/SRC/openSUSE:Factory/.kde-user-manager.new/kde-user-manager.changes   
2018-05-08 13:33:47.577233469 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:37 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  user-manager-5.12.4.tar.xz

New:

  user-manager-5.12.5.tar.xz



Other differences:
--
++ kde-user-manager.spec ++
--- /var/tmp/diff_new_pack.E8iRhT/_old  2018-05-08 13:33:48.649194787 +0200
+++ /var/tmp/diff_new_pack.E8iRhT/_new  2018-05-08 13:33:48.653194644 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kde-user-manager
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:KDE System Settings module to manage users
 License:GPL-2.0+

++ user-manager-5.12.4.tar.xz -> user-manager-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/user-manager-5.12.4/CMakeLists.txt 
new/user-manager-5.12.5/CMakeLists.txt
--- old/user-manager-5.12.4/CMakeLists.txt  2018-03-27 13:32:57.0 
+0200
+++ new/user-manager-5.12.5/CMakeLists.txt  2018-05-01 15:10:18.0 
+0200
@@ -1,6 +1,6 @@
 project(user-manager)
 cmake_minimum_required(VERSION 2.8.12)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 find_package(ECM 1.3.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/user-manager-5.12.4/po/zh_CN/user_manager.po 
new/user-manager-5.12.5/po/zh_CN/user_manager.po
--- old/user-manager-5.12.4/po/zh_CN/user_manager.po2018-03-27 
13:32:57.0 +0200
+++ new/user-manager-5.12.5/po/zh_CN/user_manager.po2018-05-01 
15:10:18.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-11-11 03:21+0100\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/user-manager-5.12.4/po/zh_TW/user_manager.po 
new/user-manager-5.12.5/po/zh_TW/user_manager.po
--- old/user-manager-5.12.4/po/zh_TW/user_manager.po2018-03-27 
13:32:57.0 +0200
+++ new/user-manager-5.12.5/po/zh_TW/user_manager.po2018-05-01 
15:10:18.0 +0200
@@ -3,14 +3,15 @@
 #
 # Franklin, 2015.
 # Jeff Huang , 2016.
+# pan93412 , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-11-11 03:21+0100\n"
-"PO-Revision-Date: 2016-09-21 21:39+0800\n"
-"Last-Translator: Jeff Huang \n"
-"Language-Team: Chinese \n"
+"PO-Revision-Date: 2018-04-24 21:08+0800\n"
+"Last-Translator: pan93412 \n"
+"Language-Team: Chinese \n"
 "Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -59,13 +60,13 @@
 #: src/account.ui:208
 #, kde-format
 msgid "Enable administrator privileges for this user"
-msgstr ""
+msgstr "為此使用者啟用管理員權限"
 
 #. i18n: ectx: property (text), widget (QLabel, automaticLoginLabel)
 #: src/account.ui:222
 #, kde-format
 msgid "Log in automatically"
-msgstr ""
+msgstr "自動登入"
 
 #. i18n: ectx: property (text), widget (QLineEdit, passwordEdit)
 #: src/account.ui:235




commit discover for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package discover for openSUSE:Factory 
checked in at 2018-05-08 13:33:11

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


Package is "discover"

Tue May  8 13:33:11 2018 rev:37 rq:603240 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/discover/discover.changes2018-03-30 
12:04:05.824948898 +0200
+++ /work/SRC/openSUSE:Factory/.discover.new/discover.changes   2018-05-08 
13:33:18.874269185 +0200
@@ -1,0 +2,33 @@
+Wed May  2 09:05:40 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Improve display of Progress element (kde#393323)
+  * More elegant syntax for qrc files in cmake
+  * Make sure we update the checkability of all delegates when one changes
+  * PK: Improve information on resources that extend others
+  * Report 0% update progress when not progressing
+  * Infer cancellability of the StandardBackendUpdater (kde#390319)
+  * Forward action enabled state into the button
+  * Don't change the resources while updating (kde#391262)
+  * Remove unused variable
+  * Fix typo
+  * Fix notifier button placement
+  * Fix warning on Qt 5.11
+  * Remove wrongly commented code
+  * Report when root categories change
+  * Readability
+  * Properly concatenate strings
+  * Fix crash when installing flatpak files
+  * Remove unneeded dependency
+  * Don't crash when cancelling flatpak jobs (kde#391941)
+  * Remove unused imports
+  * --debug
+  * Make sure we don't crash automatically (kde#392082)
+  * Fix sorting when the actual comparison matches
+  * Fix warning in Qt 5.11
+
+---

Old:

  discover-5.12.4.tar.xz

New:

  discover-5.12.5.tar.xz



Other differences:
--
++ discover.spec ++
--- /var/tmp/diff_new_pack.DAPp5t/_old  2018-05-08 13:33:19.898232237 +0200
+++ /var/tmp/diff_new_pack.DAPp5t/_new  2018-05-08 13:33:19.898232237 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   discover
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:KDE Software Installer
 License:GPL-2.0 and GPL-3.0 and GPL-3.0+

++ discover-5.12.4.tar.xz -> discover-5.12.5.tar.xz ++
/work/SRC/openSUSE:Factory/discover/discover-5.12.4.tar.xz 
/work/SRC/openSUSE:Factory/.discover.new/discover-5.12.5.tar.xz differ: char 
25, line 1




commit kactivitymanagerd for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kactivitymanagerd for 
openSUSE:Factory checked in at 2018-05-08 13:33:23

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


Package is "kactivitymanagerd"

Tue May  8 13:33:23 2018 rev:42 rq:603242 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kactivitymanagerd/kactivitymanagerd.changes  
2018-03-30 12:04:14.236644740 +0200
+++ /work/SRC/openSUSE:Factory/.kactivitymanagerd.new/kactivitymanagerd.changes 
2018-05-08 13:33:25.202040857 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:27 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kactivitymanagerd-5.12.4.tar.xz

New:

  kactivitymanagerd-5.12.5.tar.xz



Other differences:
--
++ kactivitymanagerd.spec ++
--- /var/tmp/diff_new_pack.4wNJFd/_old  2018-05-08 13:33:25.922014877 +0200
+++ /var/tmp/diff_new_pack.4wNJFd/_new  2018-05-08 13:33:25.922014877 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kactivitymanagerd
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:KDE Plasma Activities support
 License:GPL-2.0+

++ kactivitymanagerd-5.12.4.tar.xz -> kactivitymanagerd-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivitymanagerd-5.12.4/po/id/kactivities5.po 
new/kactivitymanagerd-5.12.5/po/id/kactivities5.po
--- old/kactivitymanagerd-5.12.4/po/id/kactivities5.po  1970-01-01 
01:00:00.0 +0100
+++ new/kactivitymanagerd-5.12.5/po/id/kactivities5.po  2018-05-01 
14:41:01.0 +0200
@@ -0,0 +1,40 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Wantoyo , 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"PO-Revision-Date: 2018-04-29 06:33+0700\n"
+"Last-Translator: Wantoyo \n"
+"Language-Team: Indonesian \n"
+"Language: id\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#, kde-format
+msgctxt "NAME OF TRANSLATORS"
+msgid "Your names"
+msgstr "Wantoyo"
+
+#, kde-format
+msgctxt "EMAIL OF TRANSLATORS"
+msgid "Your emails"
+msgstr "wanto...@gmail.com"
+
+#: service/Activities.cpp:124
+#, kde-format
+msgid "Default"
+msgstr "Baku"
+
+#: service/plugins/globalshortcuts/GlobalShortcutsPlugin.cpp:90
+#: service/plugins/globalshortcuts/GlobalShortcutsPlugin.cpp:125
+#, kde-format
+msgctxt "@action"
+msgid "Switch to activity \"%1\""
+msgstr "Alihkan ke aktivitas \"%1\""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivitymanagerd-5.12.4/po/zh_CN/kactivities5.po 
new/kactivitymanagerd-5.12.5/po/zh_CN/kactivities5.po
--- old/kactivitymanagerd-5.12.4/po/zh_CN/kactivities5.po   2018-03-27 
13:06:45.0 +0200
+++ new/kactivitymanagerd-5.12.5/po/zh_CN/kactivities5.po   2018-05-01 
14:41:12.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:20+0100\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivitymanagerd-5.12.4/src/service/files/kactivitymanagerd-plugin.desktop 
new/kactivitymanagerd-5.12.5/src/service/files/kactivitymanagerd-plugin.desktop
--- 
old/kactivitymanagerd-5.12.4/src/service/files/kactivitymanagerd-plugin.desktop 
2018-03-27 13:06:21.0 +0200
+++ 
new/kactivitymanagerd-5.12.5/src/service/files/kactivitymanagerd-plugin.desktop 
2018-05-01 14:40:41.0 +0200
@@ -23,6 +23,7 @@
 Comment[he]=תוסף מנהל פעילויות
 Comment[hu]=Aktivitáskezelő bővítmény
 Comment[ia]=Plugin de gerente de activitate
+Comment[id]=Plugin pengelola aktivitas
 Comment[is]=Virknistjórnunarviðbót
 Comment[it]=Estensione del gestore delle attività
 Comment[kk]=Белсенділік менеджер плагині
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivitymanagerd-5.12.4/src/service/files/kactivitymanagerd.desktop 
new/kactivitymanagerd-5.

commit kcm_sddm for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kcm_sddm for openSUSE:Factory 
checked in at 2018-05-08 13:33:28

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


Package is "kcm_sddm"

Tue May  8 13:33:28 2018 rev:54 rq:603243 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kcm_sddm/kcm_sddm.changes2018-03-30 
12:04:15.308605979 +0200
+++ /work/SRC/openSUSE:Factory/.kcm_sddm.new/kcm_sddm.changes   2018-05-08 
13:33:29.333891764 +0200
@@ -1,0 +2,17 @@
+Wed May  2 09:06:28 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Also read sddm.conf.d config directories
+  * Use XCursorTheme on wayland as well
+  * Read theme.conf of themes
+
+---
+Wed Apr 18 17:50:45 UTC 2018 - fab...@ritter-vogt.de
+
+- It's whitelisted (bsc#1065563), no need to keep this around
+
+---

Old:

  sddm-kcm-5.12.4.tar.xz

New:

  sddm-kcm-5.12.5.tar.xz



Other differences:
--
++ kcm_sddm.spec ++
--- /var/tmp/diff_new_pack.EWgWjd/_old  2018-05-08 13:33:30.133862898 +0200
+++ /var/tmp/diff_new_pack.EWgWjd/_new  2018-05-08 13:33:30.137862753 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kcm_sddm
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:A sddm control module for KDE
 License:GPL-2.0
@@ -76,8 +76,6 @@
 %install
   %kf5_makeinstall -C build
 
-  echo "setBadness('suse-dbus-unauthorized-service', 0)" > 
$RPM_SOURCE_DIR/%name-rpmlintrc
-
 %if %{with lang}
   %find_lang %{name} %{name}.lang
 %endif

++ sddm-kcm-5.12.4.tar.xz -> sddm-kcm-5.12.5.tar.xz ++
 2357 lines of diff (skipped)




commit kgamma5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kgamma5 for openSUSE:Factory checked 
in at 2018-05-08 13:33:53

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


Package is "kgamma5"

Tue May  8 13:33:53 2018 rev:43 rq:603247 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kgamma5/kgamma5.changes  2018-03-30 
12:04:21.568379633 +0200
+++ /work/SRC/openSUSE:Factory/.kgamma5.new/kgamma5.changes 2018-05-08 
13:33:54.584980597 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:38 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kgamma5-5.12.4.tar.xz

New:

  kgamma5-5.12.5.tar.xz



Other differences:
--
++ kgamma5.spec ++
--- /var/tmp/diff_new_pack.YmV9AL/_old  2018-05-08 13:33:55.424950287 +0200
+++ /var/tmp/diff_new_pack.YmV9AL/_new  2018-05-08 13:33:55.436949854 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kgamma5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Display gamma configuration
 License:GPL-2.0+

++ kgamma5-5.12.4.tar.xz -> kgamma5-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.12.4/CMakeLists.txt 
new/kgamma5-5.12.5/CMakeLists.txt
--- old/kgamma5-5.12.4/CMakeLists.txt   2018-03-27 13:10:00.0 +0200
+++ new/kgamma5-5.12.5/CMakeLists.txt   2018-05-01 14:44:59.0 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.9)
 project(kgamma)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(QT_MIN_VERSION "5.4.0")
 find_package(ECM 1.0.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.12.4/po/gl/kcmkgamma.po 
new/kgamma5-5.12.5/po/gl/kcmkgamma.po
--- old/kgamma5-5.12.4/po/gl/kcmkgamma.po   2018-03-27 13:09:49.0 
+0200
+++ new/kgamma5-5.12.5/po/gl/kcmkgamma.po   2018-05-01 14:44:45.0 
+0200
@@ -5,19 +5,20 @@
 # Xabi G. Feal , 2006.
 # mvillarino , 2007.
 # Marce Villarino , 2009.
+# Adrian Chaves , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-05-18 03:02+0200\n"
-"PO-Revision-Date: 2009-11-29 20:35+0100\n"
-"Last-Translator: Miguel Branco \n"
+"PO-Revision-Date: 2018-03-31 11:01+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.3\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Poedit-Language: Galician\n"
 "X-Environment: kde\n"
@@ -117,7 +118,7 @@
 "no monitor.Emprega os catro controis para definir a corrección de gama de "
 "todos xuntos, ou separado para o vermello, o verde e o azul. Quizais "
 "precisará corrixir luminosidade e contraste do monitor para obter uns bos "
-"resultados. A imaxes de proba axudarano a atopar a configuración adecuada."
+"resultados. A imaxes de proba axudarano a atopar a configuración axeitada."
 " Pode gardalos en XF86Config (ten que acceder como administrador para "
 "facer iso) ou na súa configuración de KDE. Nos sistemas multipantalla pode "
 "corrixir os valores da gama por separado para cada unha das pantallas."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.12.4/po/zh_CN/kcmkgamma.po 
new/kgamma5-5.12.5/po/zh_CN/kcmkgamma.po
--- old/kgamma5-5.12.4/po/zh_CN/kcmkgamma.po2018-03-27 13:10:00.0 
+0200
+++ new/kgamma5-5.12.5/po/zh_CN/kcmkgamma.po2018-05-01 14:44:59.0 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-05-18 03:02+0200\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kinfocenter5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kinfocenter5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:04

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


Package is "kinfocenter5"

Tue May  8 13:34:04 2018 rev:66 rq:603249 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kinfocenter5/kinfocenter5.changes
2018-03-30 12:04:29.276100931 +0200
+++ /work/SRC/openSUSE:Factory/.kinfocenter5.new/kinfocenter5.changes   
2018-05-08 13:34:05.572584110 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:46 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * kcm_opengl: Fix EGL info retrieval.
+
+---

Old:

  kinfocenter-5.12.4.tar.xz

New:

  kinfocenter-5.12.5.tar.xz



Other differences:
--
++ kinfocenter5.spec ++
--- /var/tmp/diff_new_pack.iRBYww/_old  2018-05-08 13:34:06.280558563 +0200
+++ /var/tmp/diff_new_pack.iRBYww/_new  2018-05-08 13:34:06.284558419 +0200
@@ -20,7 +20,7 @@
 
 %bcond_without lang
 Name:   kinfocenter5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ kinfocenter-5.12.4.tar.xz -> kinfocenter-5.12.5.tar.xz ++
 6142 lines of diff (skipped)




commit khotkeys5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package khotkeys5 for openSUSE:Factory 
checked in at 2018-05-08 13:33:58

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


Package is "khotkeys5"

Tue May  8 13:33:58 2018 rev:63 rq:603248 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/khotkeys5/khotkeys5.changes  2018-03-30 
12:04:25.764227916 +0200
+++ /work/SRC/openSUSE:Factory/.khotkeys5.new/khotkeys5.changes 2018-05-08 
13:33:59.776793252 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:40 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  khotkeys-5.12.4.tar.xz

New:

  khotkeys-5.12.5.tar.xz



Other differences:
--
++ khotkeys5.spec ++
--- /var/tmp/diff_new_pack.yo9DiM/_old  2018-05-08 13:34:00.528766117 +0200
+++ /var/tmp/diff_new_pack.yo9DiM/_new  2018-05-08 13:34:00.528766117 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   khotkeys5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ khotkeys-5.12.4.tar.xz -> khotkeys-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khotkeys-5.12.4/CMakeLists.txt 
new/khotkeys-5.12.5/CMakeLists.txt
--- old/khotkeys-5.12.4/CMakeLists.txt  2018-03-27 13:10:58.0 +0200
+++ new/khotkeys-5.12.5/CMakeLists.txt  2018-05-01 14:45:59.0 +0200
@@ -1,5 +1,5 @@
 project(khotkeys)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khotkeys-5.12.4/data/kde32b1.khotkeys 
new/khotkeys-5.12.5/data/kde32b1.khotkeys
--- old/khotkeys-5.12.4/data/kde32b1.khotkeys   2018-03-27 13:10:16.0 
+0200
+++ new/khotkeys-5.12.5/data/kde32b1.khotkeys   2018-05-01 14:45:13.0 
+0200
@@ -1582,7 +1582,7 @@
 Comment[fr]=Lisez d'abord le commentaire de l'action « Saisir « Bonjour »  
».\n\n Tout comme l'action, celle-ci simule une saisie au clavier. 
Spécifiquement, lors de l'appui sur les touches « Ctrl » + « Alt » + « B », 
elle envoie « B » à XMMS (dans XMMS, la touche « B » sert à passer au morceau 
suivant). L'option « Envoyer à une fenêtre spécifique » est cochée et une 
fenêtre avec une classe contenant « XMMS_Player » est définie. Ainsi, la saisie 
sera toujours envoyée à cette fenêtre. De cette façon, vous pouvez toujours 
contrôler XMMS même si, par exemple, il est sur un bureau virtuel 
différent.\n\n (Veuillez exécuter « xprop » et cliquer sur la fenêtre de XMMS, 
puis cherchez « WM_CLASS » pour trouver « XMMS_Player »).
 Comment[fy]=Lês earst it kommentaar fan de aksje "typ 'Hallo'".\n\nKrekt as de 
"typ 'Hallo'" aksje, simulearret dizze in toetseboerd ynfier, om krekt te 
wêzen, nei it drukken op Ctrl+Alt+B, stjoert it B nei XMMS (B in XMMS ljept nei 
de folgjend lied).  De 'stjoer nei bepaalt finster’ karfakje is oankarre en in 
finster mei de class befetsjend 'XMMS_Player' is oantsjutte; dit soarget dat de 
ynfier altyd nei dit finster stjoerd wurdt. Sa kinne jo XMMS bestjoere ek as it 
him op in firtuele buroblêd stiet.\n\n'xprop' útfiere en klik op it XMMS 
finster en sykje om WM_CLASS om 'XMMS_Player' te sjen).
 Comment[ga]=Léigh an nóta a bhaineann leis an ngníomh "Clóscríobh 'Hello'" ar 
dtús.\n\nDíreach cosúil leis an ngníomh "Clóscríobh 'Hello'", déanann an gníomh 
seo insamhladh ar ionchur ón mhéarchlár.  Go sonrach, tar éis Ctrl+Alt+B a 
bhrú, seolann sé 'B' chuig XMMS (ciallaíonn 'B' 'Léim go dtí an chéad amhrán 
eile' i XMMS). Cuirtear tic sa ticbhosca 'Seol chuig fuinneog ar leith' agus tá 
fuinneog ann lena aicme agus a bhfuil 'XMMS_Player' inti sonraithe; leis seo, 
seolfar an t-ionchur chuig an bhfuinneog seo i gcónaí. Sa chaoi seo, is féidir 
leat XMMS a rialú fiú má tá sé ar dheasc fhíorúil eile, mar shampla.\n\n(Rith 
'xprop' agus cliceáil an fhuinneog XMMS agus déan cuardach ar WM_CLASS chun 
'XMMS_Player' a fheiceáil).
-Comment[gl]=Lea primeiro o comentario da acción «Escribir "Hello"».\n\nAo 
igual que aquela acción, esta simula unha entrada polo teclado, 
especificamente, tras premer Ctrl+Alt+B, envía B a XMMS (B en XMMS salta para a 
seguinte canción). A caixa para marcar «Enviar a unha xanela específica» está 
marcada e especifícase unha xanela na que a súa clase base conteña 
«XMMS_Player»; ist

commit kmenuedit5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kmenuedit5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:09

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


Package is "kmenuedit5"

Tue May  8 13:34:09 2018 rev:61 rq:603250 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kmenuedit5/kmenuedit5.changes2018-03-30 
12:04:33.295955579 +0200
+++ /work/SRC/openSUSE:Factory/.kmenuedit5.new/kmenuedit5.changes   
2018-05-08 13:34:10.532405135 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:47 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kmenuedit-5.12.4.tar.xz

New:

  kmenuedit-5.12.5.tar.xz



Other differences:
--
++ kmenuedit5.spec ++
--- /var/tmp/diff_new_pack.ExXLcK/_old  2018-05-08 13:34:11.272378433 +0200
+++ /var/tmp/diff_new_pack.ExXLcK/_new  2018-05-08 13:34:11.276378288 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kmenuedit5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ kmenuedit-5.12.4.tar.xz -> kmenuedit-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmenuedit-5.12.4/CMakeLists.txt 
new/kmenuedit-5.12.5/CMakeLists.txt
--- old/kmenuedit-5.12.4/CMakeLists.txt 2018-03-27 13:12:52.0 +0200
+++ new/kmenuedit-5.12.5/CMakeLists.txt 2018-05-01 14:47:59.0 +0200
@@ -1,5 +1,5 @@
 project(kmenuedit)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmenuedit-5.12.4/org.kde.kmenuedit.desktop 
new/kmenuedit-5.12.5/org.kde.kmenuedit.desktop
--- old/kmenuedit-5.12.4/org.kde.kmenuedit.desktop  2018-03-27 
13:12:17.0 +0200
+++ new/kmenuedit-5.12.5/org.kde.kmenuedit.desktop  2018-05-01 
14:47:15.0 +0200
@@ -44,7 +44,7 @@
 Name[hsb]=Menijowy wobdźěłowar
 Name[hu]=Menüszerkesztő
 Name[ia]=Editor de menu
-Name[id]=Penyunting Menu
+Name[id]=Pengedit Menu
 Name[is]=Valmyndaritill
 Name[it]=Editor dei menu
 Name[ja]=メニューエディタ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmenuedit-5.12.4/po/gl/kmenuedit.po 
new/kmenuedit-5.12.5/po/gl/kmenuedit.po
--- old/kmenuedit-5.12.4/po/gl/kmenuedit.po 2018-03-27 13:12:31.0 
+0200
+++ new/kmenuedit-5.12.5/po/gl/kmenuedit.po 2018-05-01 14:47:33.0 
+0200
@@ -7,14 +7,14 @@
 # marce villarino , 2009.
 # Marce Villarino , 2009, 2011, 2013.
 # Adrián Chaves Fernández (Gallaecio) , 2017.
-# Adrián Chaves (Gallaecio) , 2017.
+# Adrián Chaves (Gallaecio) , 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: kmenuedit\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-25 07:21+0200\n"
-"PO-Revision-Date: 2017-09-09 12:04+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) \n"
+"PO-Revision-Date: 2018-04-29 23:48+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -72,8 +72,8 @@
 "%m - the mini-icon\n"
 "%c - the caption"
 msgstr ""
-"Seguindo a orde, pode pór varios sinais de substitución que serán "
-"substituídos cos valores reais cando o programa se execute:\n"
+"Seguindo a orde, pode pór varios sinais de substitución que se substituirán "
+"polos valores reais cando o programa se execute:\n"
 "%f: un nome de ficheiro\n"
 "%F: unha lista de ficheiros; úseo para aplicativos que poden abrir varios "
 "ficheiros locais dunha vez\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmenuedit-5.12.4/po/id/kmenuedit.po 
new/kmenuedit-5.12.5/po/id/kmenuedit.po
--- old/kmenuedit-5.12.4/po/id/kmenuedit.po 2018-03-27 13:12:32.0 
+0200
+++ new/kmenuedit-5.12.5/po/id/kmenuedit.po 2018-05-01 14:47:35.0 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: kmenuedit\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-25 07:21+0200\n"
-"PO-Revision-Date: 2018-03-02 22:16+0700\n"
+"PO-Revision-Date: 2018-04-03 23:09+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -68,12 +68,12 @@
 msgstr ""
 "Perintah ini, kamu dapat memiliki beberapa tempat yang dapat di gantikan "
 "dengan nilai-nilai pada saat pr

commit ksshaskpass5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package ksshaskpass5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:25

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


Package is "ksshaskpass5"

Tue May  8 13:34:25 2018 rev:56 rq:603253 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/ksshaskpass5/ksshaskpass5.changes
2018-03-30 12:04:44.987532828 +0200
+++ /work/SRC/openSUSE:Factory/.ksshaskpass5.new/ksshaskpass5.changes   
2018-05-08 13:34:26.639823889 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:52 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  ksshaskpass-5.12.4.tar.xz

New:

  ksshaskpass-5.12.5.tar.xz



Other differences:
--
++ ksshaskpass5.spec ++
--- /var/tmp/diff_new_pack.iAh9fm/_old  2018-05-08 13:34:27.363797764 +0200
+++ /var/tmp/diff_new_pack.iAh9fm/_new  2018-05-08 13:34:27.367797620 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   ksshaskpass5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Plasma 5 version of ssh-askpass
 License:GPL-2.0+

++ ksshaskpass-5.12.4.tar.xz -> ksshaskpass-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksshaskpass-5.12.4/CMakeLists.txt 
new/ksshaskpass-5.12.5/CMakeLists.txt
--- old/ksshaskpass-5.12.4/CMakeLists.txt   2018-03-27 13:15:04.0 
+0200
+++ new/ksshaskpass-5.12.5/CMakeLists.txt   2018-05-01 14:50:27.0 
+0200
@@ -1,6 +1,6 @@
 project(ksshaskpass)
 cmake_minimum_required(VERSION 2.8.12)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 find_package(Qt5 REQUIRED COMPONENTS Core)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksshaskpass-5.12.4/po/zh_CN/ksshaskpass.po 
new/ksshaskpass-5.12.5/po/zh_CN/ksshaskpass.po
--- old/ksshaskpass-5.12.4/po/zh_CN/ksshaskpass.po  2018-03-27 
13:15:00.0 +0200
+++ new/ksshaskpass-5.12.5/po/zh_CN/ksshaskpass.po  2018-05-01 
14:50:27.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-22 05:38+0100\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kde-gtk-config5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kde-gtk-config5 for openSUSE:Factory 
checked in at 2018-05-08 13:33:40

Comparing /work/SRC/openSUSE:Factory/kde-gtk-config5 (Old)
 and  /work/SRC/openSUSE:Factory/.kde-gtk-config5.new (New)


Package is "kde-gtk-config5"

Tue May  8 13:33:40 2018 rev:58 rq:603245 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kde-gtk-config5/kde-gtk-config5.changes  
2018-03-30 12:04:16.488563313 +0200
+++ /work/SRC/openSUSE:Factory/.kde-gtk-config5.new/kde-gtk-config5.changes 
2018-05-08 13:33:41.789442318 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:33 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kde-gtk-config-5.12.4.tar.xz

New:

  kde-gtk-config-5.12.5.tar.xz



Other differences:
--
++ kde-gtk-config5.spec ++
--- /var/tmp/diff_new_pack.HY6n9G/_old  2018-05-08 13:33:42.613412585 +0200
+++ /var/tmp/diff_new_pack.HY6n9G/_new  2018-05-08 13:33:42.617412441 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kde-gtk-config5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:KCM Module to Configure GTK2 and GTK3 Applications Appearance 
Under KDE
 License:LGPL-3.0+ and GPL-3.0+

++ kde-gtk-config-5.12.4.tar.xz -> kde-gtk-config-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-5.12.4/CMakeLists.txt 
new/kde-gtk-config-5.12.5/CMakeLists.txt
--- old/kde-gtk-config-5.12.4/CMakeLists.txt2018-03-27 13:08:40.0 
+0200
+++ new/kde-gtk-config-5.12.5/CMakeLists.txt2018-05-01 14:43:24.0 
+0200
@@ -1,5 +1,5 @@
 project(kde-gtk-config)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 cmake_minimum_required(VERSION 2.8.12)
 
 find_package(ECM 0.0.9 REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-5.12.4/cgcgtk3.knsrc 
new/kde-gtk-config-5.12.5/cgcgtk3.knsrc
--- old/kde-gtk-config-5.12.4/cgcgtk3.knsrc 2018-03-27 13:08:15.0 
+0200
+++ new/kde-gtk-config-5.12.5/cgcgtk3.knsrc 2018-05-01 14:42:52.0 
+0200
@@ -15,6 +15,7 @@
 Name[gl]=Temas de GTK 3.x
 Name[he]=ערכות נושא של GTK 3.x
 Name[hu]=GTK 3.x témák
+Name[id]=Tema GTK 3.x
 Name[it]=Temi GTK 3.x
 Name[ko]=GTK 3.x 테마
 Name[nl]=GTK 3.x thema's
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-5.12.4/cgcicon.knsrc 
new/kde-gtk-config-5.12.5/cgcicon.knsrc
--- old/kde-gtk-config-5.12.4/cgcicon.knsrc 2018-03-27 13:08:15.0 
+0200
+++ new/kde-gtk-config-5.12.5/cgcicon.knsrc 2018-05-01 14:42:52.0 
+0200
@@ -15,6 +15,7 @@
 Name[gl]=Temas de iconas
 Name[he]=ערכות סמלים
 Name[hu]=Ikontémák
+Name[id]=Tema Ikon
 Name[it]=Temi di icone
 Name[ko]=아이콘 테마
 Name[nl]=Pictogramthema's
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-5.12.4/cgctheme.knsrc 
new/kde-gtk-config-5.12.5/cgctheme.knsrc
--- old/kde-gtk-config-5.12.4/cgctheme.knsrc2018-03-27 13:08:15.0 
+0200
+++ new/kde-gtk-config-5.12.5/cgctheme.knsrc2018-05-01 14:42:52.0 
+0200
@@ -15,6 +15,7 @@
 Name[gl]=Temas de GTK 2.x
 Name[he]=ערכות נושא של GTK 2.x
 Name[hu]=GTK 2.x témák
+Name[id]=Tema GTK 2.x
 Name[it]=Temi GTK 2.x
 Name[ko]=GTK 2.x 테마
 Name[nl]=GTK 2.x thema's
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-5.12.4/kde-gtk-config.desktop 
new/kde-gtk-config-5.12.5/kde-gtk-config.desktop
--- old/kde-gtk-config-5.12.4/kde-gtk-config.desktop2018-03-27 
13:08:15.0 +0200
+++ new/kde-gtk-config-5.12.5/kde-gtk-config.desktop2018-05-01 
14:42:52.0 +0200
@@ -107,6 +107,7 @@
 X-KDE-Keywords[fr]=gnome,style,gtk
 X-KDE-Keywords[gl]=gnome,style,estilo,gtk
 X-KDE-Keywords[hu]=gnome,stílus,gtk
+X-KDE-Keywords[id]=gnome,gaya,gtk
 X-KDE-Keywords[it]=gnome,stile,gtk
 X-KDE-Keywords[ko]=gnome,style,gtk,그놈,스타일
 X-KDE-Keywords[nl]=gnome,stijl,gtk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-5.12.4/po/id/kde-gtk-config.po 
new/kde-gtk-config-5.12.5/po/id/kde-gtk-config.po
--- old/kde-gtk-config-5.12.4/po/id/kde-gtk-config.po   2018-03-27 
13:08:31.0 +0200
+++ new/kde-gtk-config-5.12.5/po/id/kde-gtk-config.po   2018-05-01 
14:43:12.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs

commit kscreen5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kscreen5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:14

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


Package is "kscreen5"

Tue May  8 13:34:14 2018 rev:58 rq:603251 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kscreen5/kscreen5.changes2018-03-30 
12:04:34.267920434 +0200
+++ /work/SRC/openSUSE:Factory/.kscreen5.new/kscreen5.changes   2018-05-08 
13:34:15.868212590 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:50 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kscreen-5.12.4.tar.xz

New:

  kscreen-5.12.5.tar.xz



Other differences:
--
++ kscreen5.spec ++
--- /var/tmp/diff_new_pack.pdgjDF/_old  2018-05-08 13:34:16.576187043 +0200
+++ /var/tmp/diff_new_pack.pdgjDF/_new  2018-05-08 13:34:16.576187043 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kscreen5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ kscreen-5.12.4.tar.xz -> kscreen-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.12.4/CMakeLists.txt 
new/kscreen-5.12.5/CMakeLists.txt
--- old/kscreen-5.12.4/CMakeLists.txt   2018-03-27 13:13:42.0 +0200
+++ new/kscreen-5.12.5/CMakeLists.txt   2018-05-01 14:48:55.0 +0200
@@ -1,5 +1,5 @@
 project(KScreen)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 cmake_minimum_required(VERSION 2.8.12)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.12.4/po/cs/kscreen.po 
new/kscreen-5.12.5/po/cs/kscreen.po
--- old/kscreen-5.12.4/po/cs/kscreen.po 2018-03-27 13:13:09.0 +0200
+++ new/kscreen-5.12.5/po/cs/kscreen.po 2018-05-01 14:48:19.0 +0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Vit Pelcak , 2013, 2016.
+# Vit Pelcak , 2013, 2016, 2018.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.12.4/po/zh_CN/kcm_displayconfiguration.po 
new/kscreen-5.12.5/po/zh_CN/kcm_displayconfiguration.po
--- old/kscreen-5.12.4/po/zh_CN/kcm_displayconfiguration.po 2018-03-27 
13:13:42.0 +0200
+++ new/kscreen-5.12.5/po/zh_CN/kcm_displayconfiguration.po 2018-05-01 
14:48:55.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-06 06:09+0100\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.12.4/po/zh_CN/kscreen.po 
new/kscreen-5.12.5/po/zh_CN/kscreen.po
--- old/kscreen-5.12.4/po/zh_CN/kscreen.po  2018-03-27 13:13:42.0 
+0200
+++ new/kscreen-5.12.5/po/zh_CN/kscreen.po  2018-05-01 14:48:55.0 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-10-24 03:18+0200\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kscreen-5.12.4/po/zh_CN/plasma_applet_org.kde.plasma.kscreen.po 
new/kscreen-5.12.5/po/zh_CN/plasma_applet_org.kde.plasma.kscreen.po
--- old/kscreen-5.12.4/po/zh_CN/plasma_applet_org.kde.plasma.kscreen.po 
2018-03-27 13:13:42.0 +0200
+++ new/kscreen-5.12.5/po/zh_CN/plasma_applet_org.kde.plasma.kscreen.po 
2018-05-01 14:48:55.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:20+0100\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:07-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.12.4/po/zh_TW/kcm_displayconfiguration.po 
new/kscreen-5.12.5/po/zh_TW/kcm

commit kscreenlocker for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kscreenlocker for openSUSE:Factory 
checked in at 2018-05-08 13:34:20

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


Package is "kscreenlocker"

Tue May  8 13:34:20 2018 rev:45 rq:603252 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kscreenlocker/kscreenlocker.changes  
2018-03-30 12:04:40.667689028 +0200
+++ /work/SRC/openSUSE:Factory/.kscreenlocker.new/kscreenlocker.changes 
2018-05-08 13:34:20.392049345 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:51 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kscreenlocker-5.12.4.tar.xz

New:

  kscreenlocker-5.12.5.tar.xz



Other differences:
--
++ kscreenlocker.spec ++
--- /var/tmp/diff_new_pack.bxutvZ/_old  2018-05-08 13:34:21.088024230 +0200
+++ /var/tmp/diff_new_pack.bxutvZ/_new  2018-05-08 13:34:21.088024230 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   kscreenlocker
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Library and components for secure lock screen architecture
 License:GPL-2.0+

++ kscreenlocker-5.12.4.tar.xz -> kscreenlocker-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.12.4/CMakeLists.txt 
new/kscreenlocker-5.12.5/CMakeLists.txt
--- old/kscreenlocker-5.12.4/CMakeLists.txt 2018-03-27 13:14:30.0 
+0200
+++ new/kscreenlocker-5.12.5/CMakeLists.txt 2018-05-01 14:49:53.0 
+0200
@@ -1,4 +1,4 @@
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.12.4/po/cs/screenlocker_kcm.po 
new/kscreenlocker-5.12.5/po/cs/screenlocker_kcm.po
--- old/kscreenlocker-5.12.4/po/cs/screenlocker_kcm.po  2018-03-27 
13:13:58.0 +0200
+++ new/kscreenlocker-5.12.5/po/cs/screenlocker_kcm.po  2018-05-01 
14:49:16.0 +0200
@@ -105,7 +105,7 @@
 #: kcm.ui:141
 #, kde-format
 msgid "Appearance"
-msgstr ""
+msgstr "Vzhled"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: kcm.ui:176
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.12.4/po/zh_CN/kscreenlocker.po 
new/kscreenlocker-5.12.5/po/zh_CN/kscreenlocker.po
--- old/kscreenlocker-5.12.4/po/zh_CN/kscreenlocker.po  2018-03-27 
13:14:28.0 +0200
+++ new/kscreenlocker-5.12.5/po/zh_CN/kscreenlocker.po  2018-05-01 
14:49:52.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-06-03 03:06+0200\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.12.4/po/zh_CN/kscreenlocker_greet.po 
new/kscreenlocker-5.12.5/po/zh_CN/kscreenlocker_greet.po
--- old/kscreenlocker-5.12.4/po/zh_CN/kscreenlocker_greet.po2018-03-27 
13:14:28.0 +0200
+++ new/kscreenlocker-5.12.5/po/zh_CN/kscreenlocker_greet.po2018-05-01 
14:49:52.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-04-20 02:56+0200\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.12.4/po/zh_CN/screenlocker_kcm.po 
new/kscreenlocker-5.12.5/po/zh_CN/screenlocker_kcm.po
--- old/kscreenlocker-5.12.4/po/zh_CN/screenlocker_kcm.po   2018-03-27 
13:14:28.0 +0200
+++ new/kscreenlocker-5.12.5/po/zh_CN/screenlocker_kcm.po   2018-05-01 
14:49:52.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-10 05:10+0100\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:07-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsig

commit ksysguard5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package ksysguard5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:30

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


Package is "ksysguard5"

Tue May  8 13:34:30 2018 rev:64 rq:603254 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/ksysguard5/ksysguard5.changes2018-03-30 
12:04:52.287268881 +0200
+++ /work/SRC/openSUSE:Factory/.ksysguard5.new/ksysguard5.changes   
2018-05-08 13:34:32.643607237 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:55 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  ksysguard-5.12.4.tar.xz

New:

  ksysguard-5.12.5.tar.xz



Other differences:
--
++ ksysguard5.spec ++
--- /var/tmp/diff_new_pack.DGAV69/_old  2018-05-08 13:34:33.223586308 +0200
+++ /var/tmp/diff_new_pack.DGAV69/_new  2018-05-08 13:34:33.223586308 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   ksysguard5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ ksysguard-5.12.4.tar.xz -> ksysguard-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksysguard-5.12.4/CMakeLists.txt 
new/ksysguard-5.12.5/CMakeLists.txt
--- old/ksysguard-5.12.4/CMakeLists.txt 2018-03-27 13:15:51.0 +0200
+++ new/ksysguard-5.12.5/CMakeLists.txt 2018-05-01 14:51:27.0 +0200
@@ -1,5 +1,5 @@
 project(ksysguard)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
 set(KSYSGUARD_VERSION 4.98.0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksysguard-5.12.4/po/id/ksysguard.po 
new/ksysguard-5.12.5/po/id/ksysguard.po
--- old/ksysguard-5.12.4/po/id/ksysguard.po 2018-03-27 13:15:32.0 
+0200
+++ new/ksysguard-5.12.5/po/id/ksysguard.po 2018-05-01 14:51:03.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: ksysguard\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-02 06:09+0100\n"
-"PO-Revision-Date: 2018-03-25 22:35+0700\n"
+"PO-Revision-Date: 2018-04-03 21:35+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -155,7 +155,7 @@
 #: ksysguard.cpp:164
 #, kde-format
 msgid "Import Tab Fr&om File..."
-msgstr "Impor Fail Da&ri Tab..."
+msgstr "Impor File Da&ri Tab..."
 
 #: ksysguard.cpp:165
 #, kde-format
@@ -297,13 +297,13 @@
 #: ksysguard.cpp:558
 #, kde-format
 msgid "Optional worksheet files to load"
-msgstr "Fail lembar kerja sembarang untuk dimuat"
+msgstr "File lembar kerja sembarang untuk dimuat"
 
 #. i18n: ectx: Menu (file)
 #: ksysguardui.rc:4
 #, kde-format
 msgid "&File"
-msgstr "&Fail"
+msgstr "&File"
 
 #. i18n: ectx: Menu (view)
 #: ksysguardui.rc:14
@@ -369,7 +369,7 @@
 #: SensorDisplayLib/DancingBarsSettings.cpp:43
 #, kde-format
 msgid "Edit BarGraph Preferences"
-msgstr "Sunting Setelan GrafikBilah"
+msgstr "Edit Preferensi GrafikBilah"
 
 #: SensorDisplayLib/DancingBarsSettings.cpp:52
 #, kde-format
@@ -534,7 +534,7 @@
 #: SensorDisplayLib/DancingBarsSettings.cpp:204
 #, kde-format
 msgid "Edit..."
-msgstr "Sunting..."
+msgstr "Edit..."
 
 #: SensorDisplayLib/DancingBarsSettings.cpp:205
 #, kde-format
@@ -566,7 +566,7 @@
 #: SensorDisplayLib/DummyDisplay.cpp:31 SensorDisplayLib/DummyDisplay.cpp:39
 #, kde-format
 msgid "Drop Sensor Here"
-msgstr "Taruh Sensor Di Sini"
+msgstr "Taruh Sensor di Sini"
 
 #: SensorDisplayLib/DummyDisplay.cpp:33
 #, kde-format
@@ -909,7 +909,7 @@
 #: SensorDisplayLib/LogFile.cpp:93
 #, kde-format
 msgid "File logging settings"
-msgstr "Setelan pencatatan fail"
+msgstr "Setelan pencatatan file"
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel1)
 #: SensorDisplayLib/LogFile.cpp:103 SensorDisplayLib/LogFileSettings.ui:72
@@ -1076,7 +1076,7 @@
 #, kde-format
 msgctxt "@title:column"
 msgid "Log File"
-msgstr "Fail Catatan"
+msgstr "File Catatan"
 
 #: SensorDisplayLib/SensorLogger.cpp:428
 #: SensorDisplayLib/SensorLoggerDlg.cpp:30
@@ -1092,7 +1092,7 @@
 #: SensorDisplayLib/SensorLogger.cpp:612
 #, kde-format
 msgid "&Edit Sensor..."
-msgstr "&Sunting Sensor..."
+msgstr "&Edit Sensor..."
 
 #: SensorDisplayLib/SensorLogger.cpp:620
 #, kde-format
@@ -1108,7 +1108,7 @@
 #: SensorDisplayLib/SensorLoggerDlgWidget.ui:17
 #, kde-format
 msgid "File"
-msgstr "Fail"
+msgstr "File"
 

commit kwayland-integration for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kwayland-integration for 
openSUSE:Factory checked in at 2018-05-08 13:34:36

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


Package is "kwayland-integration"

Tue May  8 13:34:36 2018 rev:48 rq:603255 version:5.12.5

Changes:

--- 
/work/SRC/openSUSE:Factory/kwayland-integration/kwayland-integration.changes
2018-03-30 12:04:59.726999873 +0200
+++ 
/work/SRC/openSUSE:Factory/.kwayland-integration.new/kwayland-integration.changes
   2018-05-08 13:34:38.187407182 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:06:56 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kwayland-integration-5.12.4.tar.xz

New:

  kwayland-integration-5.12.5.tar.xz



Other differences:
--
++ kwayland-integration.spec ++
--- /var/tmp/diff_new_pack.XonhH7/_old  2018-05-08 13:34:38.815384521 +0200
+++ /var/tmp/diff_new_pack.XonhH7/_new  2018-05-08 13:34:38.815384521 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kwayland-integration
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ kwayland-integration-5.12.4.tar.xz -> kwayland-integration-5.12.5.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-integration-5.12.4/CMakeLists.txt 
new/kwayland-integration-5.12.5/CMakeLists.txt
--- old/kwayland-integration-5.12.4/CMakeLists.txt  2018-03-27 
13:16:17.0 +0200
+++ new/kwayland-integration-5.12.5/CMakeLists.txt  2018-05-01 
14:51:55.0 +0200
@@ -1,5 +1,5 @@
 project(kwayland-integration)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)




commit kwin5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kwin5 for openSUSE:Factory checked 
in at 2018-05-08 13:34:41

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


Package is "kwin5"

Tue May  8 13:34:41 2018 rev:77 rq:603256 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/kwin5/kwin5.changes  2018-03-30 
12:05:03.466864646 +0200
+++ /work/SRC/openSUSE:Factory/.kwin5.new/kwin5.changes 2018-05-08 
13:34:44.359184465 +0200
@@ -1,0 +2,15 @@
+Wed May  2 09:07:20 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Convert JS files to UTF-8 (from ISO-8859-15)
+  * [KScreen Effect] Fix fade to black (kde#388384)
+  * Reparse the input configuration when we are notified that it changed
+  * Don't try to filter null key combinations (kde#390110)
+  * drm backend: choose correct EGL config with mesa-18
+  * Ensure _NET_CURRENT_DESKTOP is set on startup (kde#391034)
+
+---

Old:

  kwin-5.12.4.tar.xz

New:

  kwin-5.12.5.tar.xz



Other differences:
--
++ kwin5.spec ++
--- /var/tmp/diff_new_pack.HNkKd5/_old  2018-05-08 13:34:45.047159638 +0200
+++ /var/tmp/diff_new_pack.HNkKd5/_new  2018-05-08 13:34:45.051159494 +0200
@@ -21,7 +21,7 @@
 %global wayland (0%{?suse_version} >= 1330)
 %bcond_without lang
 Name:   kwin5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ kwin-5.12.4.tar.xz -> kwin-5.12.5.tar.xz ++
 3457 lines of diff (skipped)




commit libkscreen2 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package libkscreen2 for openSUSE:Factory 
checked in at 2018-05-08 13:34:53

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


Package is "libkscreen2"

Tue May  8 13:34:53 2018 rev:66 rq:603259 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/libkscreen2/libkscreen2.changes  2018-03-30 
12:05:16.926377975 +0200
+++ /work/SRC/openSUSE:Factory/.libkscreen2.new/libkscreen2.changes 
2018-05-08 13:34:54.366823322 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:07:25 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  libkscreen-5.12.4.tar.xz

New:

  libkscreen-5.12.5.tar.xz



Other differences:
--
++ libkscreen2.spec ++
--- /var/tmp/diff_new_pack.kSogv4/_old  2018-05-08 13:34:55.018799795 +0200
+++ /var/tmp/diff_new_pack.kSogv4/_new  2018-05-08 13:34:55.018799795 +0200
@@ -18,7 +18,7 @@
 
 %define lname   libKF5Screen7
 Name:   libkscreen2
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ libkscreen-5.12.4.tar.xz -> libkscreen-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkscreen-5.12.4/CMakeLists.txt 
new/libkscreen-5.12.5/CMakeLists.txt
--- old/libkscreen-5.12.4/CMakeLists.txt2018-03-27 13:18:17.0 
+0200
+++ new/libkscreen-5.12.5/CMakeLists.txt2018-05-01 14:54:01.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.12)
 
 project(libkscreen)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 set(REQUIRED_QT_VERSION "5.9.0")
 set(KF5_MIN_VERSION "5.42.0")




commit libksysguard5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:58

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


Package is "libksysguard5"

Tue May  8 13:34:58 2018 rev:64 rq:603260 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-03-30 12:05:21.694205579 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-05-08 13:34:59.954621675 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:07:27 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * [ProcessModel] Return invalid QVariant() for when window is not known
+
+---

Old:

  libksysguard-5.12.4.tar.xz

New:

  libksysguard-5.12.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.QRd5Q8/_old  2018-05-08 13:35:00.630597282 +0200
+++ /var/tmp/diff_new_pack.QRd5Q8/_new  2018-05-08 13:35:00.634597137 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.12.4.tar.xz -> libksysguard-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.4/CMakeLists.txt 
new/libksysguard-5.12.5/CMakeLists.txt
--- old/libksysguard-5.12.4/CMakeLists.txt  2018-03-27 13:19:16.0 
+0200
+++ new/libksysguard-5.12.5/CMakeLists.txt  2018-05-01 14:55:19.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.4/po/gl/processui.po 
new/libksysguard-5.12.5/po/gl/processui.po
--- old/libksysguard-5.12.4/po/gl/processui.po  2018-03-27 13:18:52.0 
+0200
+++ new/libksysguard-5.12.5/po/gl/processui.po  2018-05-01 14:54:51.0 
+0200
@@ -6,14 +6,14 @@
 # marce villarino , 2009.
 # Marce Villarino , 2009, 2011, 2012, 2013.
 # Adrián Chaves Fernández , 2015, 2017.
-# Adrián Chaves (Gallaecio) , 2017.
+# Adrián Chaves (Gallaecio) , 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-16 05:38+0100\n"
-"PO-Revision-Date: 2017-10-22 21:25+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) \n"
+"PO-Revision-Date: 2018-04-28 21:23+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -373,7 +373,7 @@
 msgid ""
 "- Process has been stopped. It will not respond to user input at the moment."
 msgstr ""
-"- O proceso foi detido. Non responderá por agora aos pedidos do usuario."
+"- Detívose o proceso. De momento non responderá á interacción do usuario."
 
 #: ProcessModel.cpp:608
 #, kde-format
@@ -485,7 +485,7 @@
 #: ProcessModel.cpp:1007
 #, kde-format
 msgid "The command with which this process was launched."
-msgstr "A orde coa que foi iniciado este proceso."
+msgstr "A orde coa que se iniciou este proceso."
 
 #: ProcessModel.cpp:1009
 #, kde-format
@@ -1918,7 +1918,7 @@
 "right:0px; -qt-block-indent:0; text-indent:0px;\">Os procesos con maior "
 "prioridade terán acceso prioritario ao disco duro. Os programas que se "
 "executen coa mesma prioridade Mellor "
-"esforzo/Normal serán servidos como nun  serviranse como nun Round Robin."
 
 #. i18n: ectx: property (text), widget (QRadioButton, radioBestEffort)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.4/po/id/ksysguardlsofwidgets.po 
new/libksysguard-5.12.5/po/id/ksysguardlsofwidgets.po
--- old/libksysguard-5.12.4/po/id/ksysguardlsofwidgets.po   2018-03-27 
13:18:55.0 +0200
+++ new/libksysguard-5.12.5/po/id/ksysguardlsofwidgets.po   2018-05-01 
14:54:55.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: ksysguardlsofwidgets\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2018-03-02 21:29+0700\n"
+"PO-Revision-Date: 2018-04-03 06:29+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -51,4 +51,4 @@
 #: LsofSearchWidget.ui:33
 #, kde-format
 msgid "Fi

commit milou5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package milou5 for openSUSE:Factory checked 
in at 2018-05-08 13:35:04

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


Package is "milou5"

Tue May  8 13:35:04 2018 rev:63 rq:603261 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/milou5/milou5.changes2018-03-30 
12:05:26.478032606 +0200
+++ /work/SRC/openSUSE:Factory/.milou5.new/milou5.changes   2018-05-08 
13:35:05.682414976 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:07:28 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  milou-5.12.4.tar.xz

New:

  milou-5.12.5.tar.xz



Other differences:
--
++ milou5.spec ++
--- /var/tmp/diff_new_pack.BJ5gOa/_old  2018-05-08 13:35:06.534384231 +0200
+++ /var/tmp/diff_new_pack.BJ5gOa/_new  2018-05-08 13:35:06.538384086 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   milou5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Dedicated search application built on top of Baloo
 License:GPL-2.0+ and LGPL-2.1+

++ milou-5.12.4.tar.xz -> milou-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.12.4/CMakeLists.txt 
new/milou-5.12.5/CMakeLists.txt
--- old/milou-5.12.4/CMakeLists.txt 2018-03-27 13:20:05.0 +0200
+++ new/milou-5.12.5/CMakeLists.txt 2018-05-01 14:56:23.0 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.12)
 
 project(Milou)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.9.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.12.4/po/zh_CN/milou.po 
new/milou-5.12.5/po/zh_CN/milou.po
--- old/milou-5.12.4/po/zh_CN/milou.po  2018-03-27 13:20:04.0 +0200
+++ new/milou-5.12.5/po/zh_CN/milou.po  2018-05-01 14:56:22.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-12-04 03:13+0100\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.12.4/po/zh_CN/plasma_applet_org.kde.milou.po 
new/milou-5.12.5/po/zh_CN/plasma_applet_org.kde.milou.po
--- old/milou-5.12.4/po/zh_CN/plasma_applet_org.kde.milou.po2018-03-27 
13:20:04.0 +0200
+++ new/milou-5.12.5/po/zh_CN/plasma_applet_org.kde.milou.po2018-05-01 
14:56:22.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2018-03-18 19:40-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.12.4/po/zh_TW/milou.po 
new/milou-5.12.5/po/zh_TW/milou.po
--- old/milou-5.12.4/po/zh_TW/milou.po  2018-03-27 13:20:05.0 +0200
+++ new/milou-5.12.5/po/zh_TW/milou.po  2018-05-01 14:56:23.0 +0200
@@ -3,14 +3,15 @@
 #
 # Franklin Weng , 2014.
 # Jeff Huang , 2017.
+# pan93412 , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-12-04 03:13+0100\n"
-"PO-Revision-Date: 2017-01-24 15:41+0800\n"
-"Last-Translator: Jeff Huang \n"
-"Language-Team: Chinese \n"
+"PO-Revision-Date: 2018-04-24 21:21+0800\n"
+"Last-Translator: pan93412 \n"
+"Language-Team: Chinese \n"
 "Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -77,12 +78,12 @@
 #: qml/ResultDelegate.qml:56
 #, kde-format
 msgid "%1, in category %2"
-msgstr ""
+msgstr "%1,在類別 %2"
 
 #: qml/ResultDelegate.qml:58
 #, kde-format
 msgid "in category %1"
-msgstr ""
+msgstr "在類別 %1"
 
 #: qml/ResultDelegate.qml:253
 #, kde-format




commit libkdecoration2 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package libkdecoration2 for openSUSE:Factory 
checked in at 2018-05-08 13:34:47

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


Package is "libkdecoration2"

Tue May  8 13:34:47 2018 rev:54 rq:603258 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/libkdecoration2/libkdecoration2.changes  
2018-03-30 12:05:12.130551382 +0200
+++ /work/SRC/openSUSE:Factory/.libkdecoration2.new/libkdecoration2.changes 
2018-05-08 13:34:48.823023380 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:07:24 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  kdecoration-5.12.4.tar.xz

New:

  kdecoration-5.12.5.tar.xz



Other differences:
--
++ libkdecoration2.spec ++
--- /var/tmp/diff_new_pack.PN4URf/_old  2018-05-08 13:34:49.423001729 +0200
+++ /var/tmp/diff_new_pack.PN4URf/_new  2018-05-08 13:34:49.423001729 +0200
@@ -19,7 +19,7 @@
 %define lname   libkdecorations2-5
 %define lname_private   libkdecorations2private5
 Name:   libkdecoration2
-Version:5.12.4
+Version:5.12.5
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 0.0.11

++ kdecoration-5.12.4.tar.xz -> kdecoration-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdecoration-5.12.4/CMakeLists.txt 
new/kdecoration-5.12.5/CMakeLists.txt
--- old/kdecoration-5.12.4/CMakeLists.txt   2018-03-27 13:07:54.0 
+0200
+++ new/kdecoration-5.12.5/CMakeLists.txt   2018-05-01 14:42:28.0 
+0200
@@ -1,5 +1,5 @@
 project(decoration-api)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit plasma5-addons for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma5-addons for openSUSE:Factory 
checked in at 2018-05-08 13:35:15

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


Package is "plasma5-addons"

Tue May  8 13:35:15 2018 rev:60 rq:603264 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-addons/plasma5-addons.changes
2018-03-30 12:05:44.553379040 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-addons.new/plasma5-addons.changes   
2018-05-08 13:35:20.285887972 +0200
@@ -1,0 +2,22 @@
+Wed May  2 09:23:59 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Fix run-time warnings on quick-share
+  * [mediaframe applet] Enable wrapping of fill mode description in config UI 
(kde#393232)
+  * [quickshare applet] Fix sizing of complete color config page
+  * [quickshare applet] Fix layout of elements in config page
+  * [mediaframe applet] Fix defunct adding of new files/folder per DnD
+  * [mediaframe applet] Fix broken selection of fill mode
+  * [notes applet] Remove unused/unneeded import of private.notifications
+  * [potd dataengine] Fix Wikimedia Picture of the Day provider
+  * [Media Frame] Fix config pages to fit themselves into dialog
+  * [weather applet] Fix wind direction arrows to adapt to color theme
+  * [potd wallpaper] Add missing Messages.sh, use wallpaper catalog name
+  * [potd wallpaper] Config UI: fix spacing between UI elements
+  * [potd dataengine] Do not leak pimpl object of PotdProvider class
+
+---

Old:

  kdeplasma-addons-5.12.4.tar.xz

New:

  kdeplasma-addons-5.12.5.tar.xz



Other differences:
--
++ plasma5-addons.spec ++
--- /var/tmp/diff_new_pack.ZoS0ei/_old  2018-05-08 13:35:21.229853906 +0200
+++ /var/tmp/diff_new_pack.ZoS0ei/_new  2018-05-08 13:35:21.257852896 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-addons
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ kdeplasma-addons-5.12.4.tar.xz -> kdeplasma-addons-5.12.5.tar.xz ++
 20009 lines of diff (skipped)




commit oxygen5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package oxygen5 for openSUSE:Factory checked 
in at 2018-05-08 13:35:09

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


Package is "oxygen5"

Tue May  8 13:35:09 2018 rev:66 rq:603262 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/oxygen5/oxygen5.changes  2018-03-30 
12:05:31.901836492 +0200
+++ /work/SRC/openSUSE:Factory/.oxygen5.new/oxygen5.changes 2018-05-08 
13:35:13.562130617 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:23:56 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---

Old:

  oxygen-5.12.4.tar.xz

New:

  oxygen-5.12.5.tar.xz



Other differences:
--
++ oxygen5.spec ++
--- /var/tmp/diff_new_pack.jHU2I0/_old  2018-05-08 13:35:14.282104635 +0200
+++ /var/tmp/diff_new_pack.jHU2I0/_new  2018-05-08 13:35:14.286104491 +0200
@@ -20,7 +20,7 @@
 %define kwin_deco 1
 
 Name:   oxygen5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++ oxygen-5.12.4.tar.xz -> oxygen-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.12.4/CMakeLists.txt 
new/oxygen-5.12.5/CMakeLists.txt
--- old/oxygen-5.12.4/CMakeLists.txt2018-03-27 13:20:08.0 +0200
+++ new/oxygen-5.12.5/CMakeLists.txt2018-05-01 14:56:27.0 +0200
@@ -1,5 +1,5 @@
 project(oxygen)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.12.4/lookandfeel/metadata.desktop 
new/oxygen-5.12.5/lookandfeel/metadata.desktop
--- old/oxygen-5.12.4/lookandfeel/metadata.desktop  2018-03-27 
13:20:08.0 +0200
+++ new/oxygen-5.12.5/lookandfeel/metadata.desktop  2018-05-01 
14:56:27.0 +0200
@@ -59,7 +59,7 @@
 Keywords[gl]=Escritorio;Espazo de traballo;Aparencia;Aparencia e 
Comportamento;Saír;Trancar;Bloquear;Suspender;Apagar;Hibernar;
 
Keywords[hu]=Asztal;Munkaterület;Megjelenés;Kinézet;Kijelentkezés;Zárolás;Felfüggesztés;Leállítás;Hibernálás;
 Keywords[ia]=Scriptorio;Spatio de labor;Apparentia;Look and 
Feel;Logout;Lock;Suspende;Shutdown;Hibernate;
-Keywords[id]=Desktop;Ruang Kerja;Tampilan;Tampilan dan 
Rasa;Keluar;Gembok;Suspensi;Marikan;Hibernasi;
+Keywords[id]=Desktop;Ruang Kerja;Tampilan;Tampilan dan 
Rasa;Keluar;Kancing;Suspensi;Marikan;Hibernasi;
 Keywords[it]=Desktop;spazio di lavoro;aspetto;chiusura della 
sessione;blocco;sospensione;spegnimento;ibernazione;
 Keywords[ko]=Desktop;Workspace;Appearance;Look and 
Feel;Logout;Lock;Suspend;Shutdown;Hibernate;데스크톱;작업공간;모양;로그아웃;잠금;대기모드;종료;끄기;최대절전모드;
 Keywords[lt]=Darbalaukis;Erdvė;Išvaizda;Look and 
Feel;Atsijungti;užrakinti;sulaikyti;Išjungti;Hibernuoti;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.12.4/po/id/oxygen_style_demo.po 
new/oxygen-5.12.5/po/id/oxygen_style_demo.po
--- old/oxygen-5.12.4/po/id/oxygen_style_demo.po2018-03-27 
13:20:29.0 +0200
+++ new/oxygen-5.12.5/po/id/oxygen_style_demo.po2018-05-01 
14:56:57.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kstyle_config\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-09-16 03:34+0200\n"
-"PO-Revision-Date: 2018-03-16 22:02+0700\n"
+"PO-Revision-Date: 2018-04-03 23:09+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -450,13 +450,13 @@
 #: ui/oxygenbuttondemowidget.ui:444 ui/oxygentabdemowidget.ui:105
 #, kde-format
 msgid "Text Alongside Icons"
-msgstr "Teks Di Samping Ikon"
+msgstr "Teks di Samping Ikon"
 
 #. i18n: ectx: property (text), item, widget (KComboBox, textPosition)
 #: ui/oxygenbuttondemowidget.ui:449
 #, kde-format
 msgid "Text Under Icons"
-msgstr "Teks Di Bawah Ikon"
+msgstr "Teks di Bawah Ikon"
 
 #. i18n: ectx: property (text), widget (QLabel, label_12)
 #: ui/oxygenbuttondemowidget.ui:470
@@ -584,7 +584,7 @@
 #: ui/oxygeninputdemowidget.ui:79
 #, kde-format
 msgid "Editable combobox"
-msgstr "Kotak kombo dapat disunting"
+msgstr "Kotak kombo dapat diedit"
 
 #. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
 #: ui/oxygeninputdemowidget.ui:96
@@ -809,7 +809,7 @@
 #: ui/oxygenmdidemowidget.ui:45
 #, kde-format
 msgid "Editors"
-msgstr "Penyu

commit plasma5-desktop for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma5-desktop for openSUSE:Factory 
checked in at 2018-05-08 13:35:20

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


Package is "plasma5-desktop"

Tue May  8 13:35:20 2018 rev:83 rq:603265 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-desktop/plasma5-desktop.changes  
2018-04-17 11:10:00.783528388 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-desktop.new/plasma5-desktop.changes 
2018-05-08 13:35:23.729763690 +0200
@@ -1,0 +2,21 @@
+Wed May  2 09:24:19 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * [Desktop Theme KCM] Workaround bug in FileDialog
+  * FunnelModel: fix invalid model API usage.
+  * [Window List] Show pin icon only when in panel (kde#391145)
+  * Make automounting work even if StorageAccess is ignored (kde#389479)
+  * [Folder View] Set shortcut on plasmoid.action (kde#392730)
+  * [Folder View] Use KStandardAction for rename, delete, and trash
+  * [Folder View] Simplify clearing of lists
+  * [Folder View] Update "Empty Trash" enabled state for files inside Trash 
and links to Trash (kde#392738)
+  * [System Model] Support actions
+  * Do clamping in the model and add missing lower bound check (kde#390888)
+- Remove patches, now upstream:
+  * Make-automounting-work-even-if-StorageAccess-is-ignored.patch
+
+---

Old:

  Make-automounting-work-even-if-StorageAccess-is-ignored.patch
  plasma-desktop-5.12.4.tar.xz

New:

  plasma-desktop-5.12.5.tar.xz



Other differences:
--
++ plasma5-desktop.spec ++
--- /var/tmp/diff_new_pack.gbBV1c/_old  2018-05-08 13:35:24.797725150 +0200
+++ /var/tmp/diff_new_pack.gbBV1c/_new  2018-05-08 13:35:24.801725005 +0200
@@ -20,7 +20,7 @@
 
 %bcond_without lang
 Name:   plasma5-desktop
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.9.3)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}
@@ -34,7 +34,6 @@
 # PATCH-FIX-OPENSUSE
 Patch1: 0001-Use-themed-user-face-icon-in-kickoff.patch
 # PATCHES 100-200 and above are from upstream 5.12 branch
-Patch100:   Make-automounting-work-even-if-StorageAccess-is-ignored.patch
 # PATCHES 201-300 and above are from upstream master/5.13 branch
 Patch201:   0001-Place-toolbox-in-the-top-right-corner-of-the-screen.patch
 %if 0%{?suse_version} > 1325

++ plasma-desktop-5.12.4.tar.xz -> plasma-desktop-5.12.5.tar.xz ++
/work/SRC/openSUSE:Factory/plasma5-desktop/plasma-desktop-5.12.4.tar.xz 
/work/SRC/openSUSE:Factory/.plasma5-desktop.new/plasma-desktop-5.12.5.tar.xz 
differ: char 25, line 1




commit plasma5-pa for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma5-pa for openSUSE:Factory 
checked in at 2018-05-08 13:35:31

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


Package is "plasma5-pa"

Tue May  8 13:35:31 2018 rev:49 rq:603267 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-pa/plasma5-pa.changes2018-03-30 
12:06:09.688470217 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-pa.new/plasma5-pa.changes   
2018-05-08 13:35:32.693440208 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:24:23 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * AbstractModel: Check if index is valid in setData
+
+---

Old:

  plasma-pa-5.12.4.tar.xz

New:

  plasma-pa-5.12.5.tar.xz



Other differences:
--
++ plasma5-pa.spec ++
--- /var/tmp/diff_new_pack.CGBdre/_old  2018-05-08 13:35:33.465412349 +0200
+++ /var/tmp/diff_new_pack.CGBdre/_new  2018-05-08 13:35:33.469412205 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-pa
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:The new Plasma5 Volume Manager
 License:GPL-2.0+

++ plasma-pa-5.12.4.tar.xz -> plasma-pa-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-pa-5.12.4/CMakeLists.txt 
new/plasma-pa-5.12.5/CMakeLists.txt
--- old/plasma-pa-5.12.4/CMakeLists.txt 2018-03-27 13:24:56.0 +0200
+++ new/plasma-pa-5.12.5/CMakeLists.txt 2018-05-01 15:01:37.0 +0200
@@ -1,7 +1,7 @@
 project(plasma-volume-control)
 cmake_minimum_required(VERSION 2.8.12)
 
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.7.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-pa-5.12.4/po/cs/plasma_applet_org.kde.plasma.volume.po 
new/plasma-pa-5.12.5/po/cs/plasma_applet_org.kde.plasma.volume.po
--- old/plasma-pa-5.12.4/po/cs/plasma_applet_org.kde.plasma.volume.po   
2018-03-27 13:24:16.0 +0200
+++ new/plasma-pa-5.12.5/po/cs/plasma_applet_org.kde.plasma.volume.po   
2018-05-01 15:00:50.0 +0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2015, 2016, 2017.
+# Vít Pelčák , 2015, 2016, 2017, 2018.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-pa-5.12.4/po/zh_CN/kcm_pulseaudio.po 
new/plasma-pa-5.12.5/po/zh_CN/kcm_pulseaudio.po
--- old/plasma-pa-5.12.4/po/zh_CN/kcm_pulseaudio.po 2018-03-27 
13:24:43.0 +0200
+++ new/plasma-pa-5.12.5/po/zh_CN/kcm_pulseaudio.po 2018-05-01 
15:01:25.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-05-03 03:00+0200\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-pa-5.12.4/po/zh_CN/plasma_applet_org.kde.plasma.volume.po 
new/plasma-pa-5.12.5/po/zh_CN/plasma_applet_org.kde.plasma.volume.po
--- old/plasma-pa-5.12.4/po/zh_CN/plasma_applet_org.kde.plasma.volume.po
2018-03-27 13:24:43.0 +0200
+++ new/plasma-pa-5.12.5/po/zh_CN/plasma_applet_org.kde.plasma.volume.po
2018-05-01 15:01:25.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-02-13 06:03+0100\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-pa-5.12.4/po/zh_TW/plasma_applet_org.kde.plasma.volume.po 
new/plasma-pa-5.12.5/po/zh_TW/plasma_applet_org.kde.plasma.volume.po
--- old/plasma-pa-5.12.4/po/zh_TW/plasma_applet_org.kde.plasma.volume.po
2018-03-27 13:24:44.0 +0200
+++ new/plasma-pa-5.12.5/po/zh_TW/plasma_applet_org.kde.plasma.volume.po
2018-05-01 15:01:25.0 +0200
@@ -2,14 +2,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Jeff Huang , 2016, 2017.
+# pan

commit plasma5-workspace for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma5-workspace for 
openSUSE:Factory checked in at 2018-05-08 13:35:36

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


Package is "plasma5-workspace"

Tue May  8 13:35:36 2018 rev:92 rq:603270 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-workspace/plasma5-workspace.changes  
2018-04-30 22:52:12.207206451 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-workspace.new/plasma5-workspace.changes 
2018-05-08 13:35:37.857253855 +0200
@@ -1,0 +2,27 @@
+Wed May  2 09:25:29 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * [ksmserver] Use QUrl::fromUserInput to construct sound url (kde#392725)
+  * [Image Wallpaper] Fix auto transform for blurred fill (kde#393498)
+  * sddm-theme: Focus the password field if enter pressed in the username field
+  * [Notifications] Always scroll to the top when opening (kde#391646)
+  * [ContextMenu Containment Action] Fix checking for KIOSK (kde#393329)
+  * [Power Management Engine] Fix kiosk restriction for lockscreen (kde#393331)
+  * [weather dataengine] envcan: fix forecast terms to match "ice pellets"
+  * [weather dataengine] bbc: handle and ignore condition "Not Available"
+  * [weather dataengine] bbc: handle and skip visbility "--"
+  * [OSD] Enforce plain text
+  * [weather] BBCUKMET: add missing "thundery showers"
+  * [weather] BBCUKMET: add missing "light rain showers"/"heavy rain showers"
+  * [weather dataengine] Fix BBC provider to adapt to change RSS feed 
(kde#392510)
+  * KDE logout screen background color fix (kde#382264)
+  * fix: Klipper notifications visually broken since plasma 5.12 (kde#390375)
+  * [notifications applet] Fix two qml warnings about assigning [undefined]
+- Remove patches, now upstream:
+  * Fix-weather-engine-BBC-provider.patch
+
+---

Old:

  Fix-weather-engine-BBC-provider.patch
  plasma-workspace-5.12.4.tar.xz

New:

  plasma-workspace-5.12.5.tar.xz



Other differences:
--
++ plasma5-workspace.spec ++
--- /var/tmp/diff_new_pack.LKR7GQ/_old  2018-05-08 13:35:39.213204921 +0200
+++ /var/tmp/diff_new_pack.LKR7GQ/_new  2018-05-08 13:35:39.225204488 +0200
@@ -27,7 +27,7 @@
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}
 # Lasted ABI-stable Plasma (e.g. 5.8 in KF5, but 5.9.1 in KUF)
 %{!?_plasma5_version: %global _plasma5_version %(echo %{_plasma5_bugfix} | awk 
-F. '{print $1"."$2}')}
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:The KDE Plasma Workspace Components
 License:GPL-2.0+
@@ -36,7 +36,6 @@
 Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-workspace-%{version}.tar.xz
 Source1:baselibs.conf
 # PATCHES 000-100 and above are from upstream 5.12 branch
-Patch0: Fix-weather-engine-BBC-provider.patch
 # PATCHES 101-500 are from upstream master/5.13 branch
 Patch201:   0001-Call-KLocalizedString-setApplicationDomain-after-Q-A.patch
 Patch202:   0002-Add-platform-detection-to-KWorkspace-library-to-adju.patch

++ plasma-workspace-5.12.4.tar.xz -> plasma-workspace-5.12.5.tar.xz ++
 63220 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-05-08 13:35:41

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new (New)


Package is "plasma-nm5"

Tue May  8 13:35:41 2018 rev:70 rq:603272 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-03-30 
12:05:38.365602777 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-05-08 13:35:42.705078904 +0200
@@ -1,0 +2,25 @@
+Wed May  2 14:52:07 UTC 2018 - wba...@tmo.at
+
+- Unconditionally provide the -vpnc subpackage again for now, vpnc
+  is still in Tumbleweed and has been revived for Leap 15.0
+- Activate proper Requires and Supplements for the -openswan,
+  -l2tp, and -iodine subpackages, the corresponding NetworkManager
+  packages are in Factory (and Leap) meanwhile
+
+---
+Wed May  2 09:25:52 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---
+Tue Apr  3 08:58:44 UTC 2018 - fab...@ritter-vogt.de
+
+- Fix plasma-nm5-openconnect supplements
+- Don't provide the -vpnc subpackage anymore on TW and Leap 15
+
+---

Old:

  plasma-nm-5.12.4.tar.xz

New:

  plasma-nm-5.12.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.SWozFC/_old  2018-05-08 13:35:43.273058406 +0200
+++ /var/tmp/diff_new_pack.SWozFC/_new  2018-05-08 13:35:43.281058118 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -126,7 +126,7 @@
 Requires:   %{name} = %{version}
 Requires:   NetworkManager-openconnect
 Requires:   openconnect
-Supplements:packageand(%{name}:NetworkManager-openconnect:openconnect)
+Supplements:packageand(%{name}:NetworkManager-openconnect)
 Provides:   NetworkManager-openconnect-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-nm-openconnect = %{version}
@@ -141,9 +141,8 @@
 Summary:Openswan support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-openswan is not in Factory
-#Requires:   NetworkManager-openswan
-#Supplements:packageand(%{name}:NetworkManager-openswan)
+Requires:   NetworkManager-openswan
+Supplements:packageand(%{name}:NetworkManager-openswan)
 Provides:   NetworkManager-openswan-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-nm-openswan = %{version}
@@ -172,9 +171,8 @@
 Summary:L2TP support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-l2tp is not in Factory
-#Requires:   NetworkManager-l2tp
-#Supplements:packageand(%{name}:NetworkManager-l2tp)
+Requires:   NetworkManager-l2tp
+Supplements:packageand(%{name}:NetworkManager-l2tp)
 Provides:   NetworkManager-l2tp-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-nm-l2tp = %{version}
@@ -228,8 +226,7 @@
 Summary:VPN support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-iodine doesn't exist in Factory
-#Requires:   NetworkManager-iodine
+Requires:   NetworkManager-iodine
 Supplements:packageand(%{name}:NetworkManager-iodine)
 Provides:   NetworkManager-iodine-frontend
 
@@ -261,6 +258,7 @@
 %if %{with lang}
   %kf5_find_lang
 %endif
+
   %fdupes %{buildroot}
 
 %files

++ plasma-nm-5.12.4.tar.xz -> plasma-nm-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.12.4/CMakeLists.txt 
new/plasma-nm-5.12.5/CMakeLists.txt
--- old/plasma-nm-5.12.4/CMakeLists.txt 2018-03-27 13:23:56.0 +0200
+++ new/plasma-nm-5.12.5/CMakeLists.txt 2018-05-01 15:00:26.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore'

commit polkit-kde-agent-5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package polkit-kde-agent-5 for 
openSUSE:Factory checked in at 2018-05-08 13:35:47

Comparing /work/SRC/openSUSE:Factory/polkit-kde-agent-5 (Old)
 and  /work/SRC/openSUSE:Factory/.polkit-kde-agent-5.new (New)


Package is "polkit-kde-agent-5"

Tue May  8 13:35:47 2018 rev:56 rq:603273 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/polkit-kde-agent-5/polkit-kde-agent-5.changes
2018-03-30 12:06:14.288303900 +0200
+++ 
/work/SRC/openSUSE:Factory/.polkit-kde-agent-5.new/polkit-kde-agent-5.changes   
2018-05-08 13:35:47.808894714 +0200
@@ -1,0 +2,12 @@
+Wed May  2 09:25:58 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Add a window icon for authentication dialog under Wayland.
+  * Remove traces of polkit-kde-authorization tool
+- Use %license
+
+---

Old:

  polkit-kde-agent-1-5.12.4.tar.xz

New:

  polkit-kde-agent-1-5.12.5.tar.xz



Other differences:
--
++ polkit-kde-agent-5.spec ++
--- /var/tmp/diff_new_pack.lVMgTv/_old  2018-05-08 13:35:48.368874505 +0200
+++ /var/tmp/diff_new_pack.lVMgTv/_new  2018-05-08 13:35:48.372874361 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   polkit-kde-agent-5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:PolicyKit authentication agent for KDE
 License:GPL-2.0 and LGPL-2.1+
@@ -40,10 +40,7 @@
 BuildRequires:  cmake(Qt5Core) >= 5.4.0
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
-%if %{with lang}
 Recommends: %{name}-lang
-%endif
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Provides Policy Kit Authentication Agent that nicely fits to KDE.
@@ -68,8 +65,8 @@
 %endif
 
 %files
-%defattr(-,root,root)
-%doc COPYING
+%license COPYING
+%{_kf5_applicationsdir}/org.kde.polkit-kde-authentication-agent-1.desktop
 %{_kf5_configdir}/autostart/polkit-kde-authentication-agent-1.desktop
 %{_kf5_libdir}/libexec/polkit-kde-authentication-agent-1
 %{_kf5_notifydir}/

++ polkit-kde-agent-1-5.12.4.tar.xz -> polkit-kde-agent-1-5.12.5.tar.xz 
++
 4158 lines of diff (skipped)




commit powerdevil5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package powerdevil5 for openSUSE:Factory 
checked in at 2018-05-08 13:35:52

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


Package is "powerdevil5"

Tue May  8 13:35:52 2018 rev:64 rq:603274 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/powerdevil5/powerdevil5.changes  2018-04-30 
22:48:56.354352287 +0200
+++ /work/SRC/openSUSE:Factory/.powerdevil5.new/powerdevil5.changes 
2018-05-08 13:35:53.688682519 +0200
@@ -1,0 +2,12 @@
+Wed May  2 09:25:59 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Ignore "migration" key for determining whether the config is empty 
(kde#391782)
+- Remove patches, now upstream:
+  * 0001-Ignore-migration-key-for-determining-whether-the-con.patch
+
+---

Old:

  0001-Ignore-migration-key-for-determining-whether-the-con.patch
  powerdevil-5.12.4.tar.xz

New:

  powerdevil-5.12.5.tar.xz



Other differences:
--
++ powerdevil5.spec ++
--- /var/tmp/diff_new_pack.6yQaX1/_old  2018-05-08 13:35:54.336659135 +0200
+++ /var/tmp/diff_new_pack.6yQaX1/_new  2018-05-08 13:35:54.336659135 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   powerdevil5
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}
@@ -30,7 +30,6 @@
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/plasma/%{version}/powerdevil-%{version}.tar.xz
 # PATCHES 000-100 and above are from upstream 5.12 branch
-Patch1: 0001-Ignore-migration-key-for-determining-whether-the-con.patch
 # PATCHES 101-200 and above are from upstream master/5.13 branch
 Patch101:   0001-Use-platform-detection-from-KWorkspace-in-Powerdevil.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0

++ powerdevil-5.12.4.tar.xz -> powerdevil-5.12.5.tar.xz ++
 16325 lines of diff (skipped)




commit plasma5-integration for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma5-integration for 
openSUSE:Factory checked in at 2018-05-08 13:35:26

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


Package is "plasma5-integration"

Tue May  8 13:35:26 2018 rev:43 rq:603266 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-integration/plasma5-integration.changes  
2018-04-22 14:33:31.294251737 +0200
+++ 
/work/SRC/openSUSE:Factory/.plasma5-integration.new/plasma5-integration.changes 
2018-05-08 13:35:28.305598557 +0200
@@ -1,0 +2,13 @@
+Wed May  2 09:24:20 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * KDEPlatformFileDialog: Fix initial directory selection for remote files 
(kde#374913)
+- Remove patches, now upstream:
+  * Fix-initial-directory-selection-for-remote-files.patch
+- Use %license
+
+---

Old:

  Fix-initial-directory-selection-for-remote-files.patch
  plasma-integration-5.12.4.tar.xz

New:

  plasma-integration-5.12.5.tar.xz



Other differences:
--
++ plasma5-integration.spec ++
--- /var/tmp/diff_new_pack.DVU7gt/_old  2018-05-08 13:35:28.929576039 +0200
+++ /var/tmp/diff_new_pack.DVU7gt/_new  2018-05-08 13:35:28.933575894 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-integration
-Version:5.12.4
+Version:5.12.5
 Release:0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}
@@ -29,8 +29,6 @@
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-integration-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM
-Patch:  Fix-initial-directory-selection-for-remote-files.patch
 BuildRequires:  extra-cmake-modules >= 5.17.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  libQt5Gui-private-headers-devel >= 5.5.0
@@ -51,7 +49,6 @@
 BuildRequires:  libQt5PlatformSupport-private-headers-devel  >= 5.5.0
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcursor)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Plasma Integration is a set of plugins responsible for better
@@ -76,9 +73,9 @@
 Applications do not need to link to this directly.
 
 %lang_package -n plasma5-integration-plugin
+
 %prep
 %setup -q -n plasma-integration-%{version}
-%patch -p1
 
 %build
 %cmake_kf5 -d build
@@ -92,8 +89,7 @@
 %endif
 
 %files plugin
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/
 %{_kf5_sharedir}/kconf_update/
 

++ plasma-integration-5.12.4.tar.xz -> plasma-integration-5.12.5.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-integration-5.12.4/CMakeLists.txt 
new/plasma-integration-5.12.5/CMakeLists.txt
--- old/plasma-integration-5.12.4/CMakeLists.txt2018-03-27 
13:22:41.0 +0200
+++ new/plasma-integration-5.12.5/CMakeLists.txt2018-05-01 
14:58:58.0 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.12)
 
 project(PlasmaIntegration)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 include(FeatureSummary)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-integration-5.12.4/po/zh_CN/plasmaintegration5.po 
new/plasma-integration-5.12.5/po/zh_CN/plasmaintegration5.po
--- old/plasma-integration-5.12.4/po/zh_CN/plasmaintegration5.po
2018-03-27 13:23:06.0 +0200
+++ new/plasma-integration-5.12.5/po/zh_CN/plasmaintegration5.po
2018-05-01 14:59:29.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-26 05:50+0100\n"
-"PO-Revision-Date: 2018-03-18 19:39-0400\n"
+"PO-Revision-Date: 2018-04-26 06:06-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-integration-5.12.4/po/zh_TW/plasmaintegration5.po 
new/plasma-integration-5.12.5/po/zh_TW/plasmaintegration5.po
--- old/plasma-integration-5.12.4/po/zh_TW/plasmaintegration5.po
2018-03-27 13:23:07.0 +0200
+++ new/plasma-integration-5.12.5/po/zh_TW/plasmaintegration5.po
2018-05-01 14:59:29.0 +0200
@@ -119,7 +119,7 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Move to Trash"
-msgstr "搬到資源回收桶"
+

commit systemsettings5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package systemsettings5 for openSUSE:Factory 
checked in at 2018-05-08 13:35:58

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


Package is "systemsettings5"

Tue May  8 13:35:58 2018 rev:65 rq:603275 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/systemsettings5/systemsettings5.changes  
2018-03-30 12:06:29.755744639 +0200
+++ /work/SRC/openSUSE:Factory/.systemsettings5.new/systemsettings5.changes 
2018-05-08 13:36:01.388404643 +0200
@@ -1,0 +2,11 @@
+Wed May  2 09:26:02 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * Polish sidebar header appearance (kde#392340)
+  * Use font.weight instead of font.bold
+
+---

Old:

  systemsettings-5.12.4.tar.xz

New:

  systemsettings-5.12.5.tar.xz



Other differences:
--
++ systemsettings5.spec ++
--- /var/tmp/diff_new_pack.Srgv3S/_old  2018-05-08 13:36:02.560362347 +0200
+++ /var/tmp/diff_new_pack.Srgv3S/_new  2018-05-08 13:36:02.564362203 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   systemsettings5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:KDE's control center
 License:GPL-2.0+

++ systemsettings-5.12.4.tar.xz -> systemsettings-5.12.5.tar.xz ++
 2553 lines of diff (skipped)




commit python-tweepy for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-tweepy for openSUSE:Factory 
checked in at 2018-05-08 13:36:26

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


Package is "python-tweepy"

Tue May  8 13:36:26 2018 rev:8 rq:603035 version:3.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-tweepy/python-tweepy.changes  
2016-03-02 14:21:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-tweepy.new/python-tweepy.changes 
2018-05-08 13:36:28.207436751 +0200
@@ -1,0 +2,10 @@
+Wed May  2 10:42:39 UTC 2018 - tchva...@suse.com
+
+- Switch to github tarball
+- Update url
+- Update to version 3.6.0:
+  * Most notably support for python3 and various tweaks
+- Add patch to work with new pip:
+  * tweepy-pip2.10.patch
+
+---

Old:

  tweepy-3.5.0.tar.gz

New:

  tweepy-pip2.10.patch
  v3.6.0.tar.gz



Other differences:
--
++ python-tweepy.spec ++
--- /var/tmp/diff_new_pack.inAZT7/_old  2018-05-08 13:36:28.939410334 +0200
+++ /var/tmp/diff_new_pack.inAZT7/_new  2018-05-08 13:36:28.939410334 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-tweepy
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,29 +16,34 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-tweepy
-Version:3.5.0
+Version:3.6.0
 Release:0
-Url:http://github.com/joshthecoder/tweepy
 Summary:Twitter library for python
 License:MIT
 Group:  Development/Languages/Python
-Source: 
http://pypi.python.org/packages/source/t/tweepy/tweepy-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
-BuildRequires:  python-pip
-BuildRequires:  python-requests >= 2.4.3
-BuildRequires:  python-requests-oauthlib >= 0.4.1
-BuildRequires:  python-setuptools
-BuildRequires:  python-six >= 1.7.3
-Requires:   python-requests >= 2.4.3
-Requires:   python-requests-oauthlib >= 0.4.1
-Requires:   python-six >= 1.7.3
-%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
+URL:https://github.com/tweepy/tweepy
+Source: https://github.com/tweepy/tweepy/archive/v%{version}.tar.gz
+Patch0: tweepy-pip2.10.patch
+BuildRequires:  %{python_module PySocks >= 1.5.7}
+BuildRequires:  %{python_module mock >= 1.0.1}
+BuildRequires:  %{python_module nose}
+BuildRequires:  %{python_module pip}
+BuildRequires:  %{python_module requests >= 2.11.1}
+BuildRequires:  %{python_module requests-oauthlib >= 0.7.0}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six >= 1.10.0}
+BuildRequires:  %{python_module vcrpy >= 1.0.1}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+BuildRequires:  python2-unittest2
+Requires:   python-PySocks >= 1.5.7
+Requires:   python-requests >= 2.11.1
+Requires:   python-requests-oauthlib >= 0.7.0
+Requires:   python-six >= 1.10.0
 BuildArch:  noarch
-%endif
+%python_subpackages
 
 %description
 A library for accessing the Twitter.com API. Supports OAuth, covers the entire
@@ -46,17 +51,23 @@
 
 %prep
 %setup -q -n tweepy-%{version}
+%patch0 -p1
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-# remove the examples from site package root
-rm -r %{buildroot}%{python_sitelib}/examples
+%python_install
+# do not install generic example folder
+%python_expand rm -r %{buildroot}%{$python_sitelib}/examples
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
+
+%check
+# Sadly tests need access to twitter api
+#%%python_expand nosetests-%{$python_bin_suffix} -v tests.test_cursors 
tests.test_api tests.test_utils
 
-%files
-%defattr(-,root,root,-)
+%files %{python_files}
+%license LICENSE
 %{python_sitelib}/*
 
 %changelog

++ tweepy-pip2.10.patch ++
>From 778bd7a31d2f5fae98652735e7844533589ca221 Mon Sep 17 00:00:00 2001
From: Ben Cipollini 
Date: Wed, 18 Apr 2018 10:26:07 -0700
Subject: [PATCH] #1029 - migrate requirements to setup.py, reference in
 requirements.txt

---
 requirements.txt |  7 +++
 setup.py | 11 ++-
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/requirements.txt b/requirements.txt
index 14440314..

commit plasma5-openSUSE for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma5-openSUSE for 
openSUSE:Factory checked in at 2018-05-08 13:36:06

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


Package is "plasma5-openSUSE"

Tue May  8 13:36:06 2018 rev:72 rq:604002 
version:15.0~git20180504T125857~b35c1c4

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-openSUSE/plasma5-openSUSE.changes
2018-04-30 22:52:06.523413832 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-openSUSE.new/plasma5-openSUSE.changes   
2018-05-08 13:36:08.864134848 +0200
@@ -1,0 +2,17 @@
+Fri May  4 11:03:30 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to version 15.0~git20180504T125857~b35c1c4:
+  * Bump theme versions to cause cache refresh
+
+---
+Thu May  3 13:41:06 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to version 15.0~git20180503T153654~628130a:
+  * Remove outdated and incompatible calendar.svg (boo#1091832)
+
+---
+Wed May  2 09:24:20 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+
+---

Old:

  plasma-opensuse-15.0~git20180421T093411~6c02346.tar.xz

New:

  plasma-opensuse-15.0~git20180504T125857~b35c1c4.tar.xz



Other differences:
--
++ plasma5-openSUSE.spec ++
--- /var/tmp/diff_new_pack.tyI3pg/_old  2018-05-08 13:36:09.472112907 +0200
+++ /var/tmp/diff_new_pack.tyI3pg/_new  2018-05-08 13:36:09.476112762 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define plasma_version 5.12.4
+%define plasma_version 5.12.5
 Name:   plasma5-openSUSE
-Version:15.0~git20180421T093411~6c02346
+Version:15.0~git20180504T125857~b35c1c4
 Release:0
 Summary:openSUSE KDE Extension
 License:GPL-2.0+ AND CC-BY-SA-4.0

++ plasma-opensuse-15.0~git20180421T093411~6c02346.tar.xz -> 
plasma-opensuse-15.0~git20180504T125857~b35c1c4.tar.xz ++
 4812 lines of diff (skipped)




commit python-PyMsgBox for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-PyMsgBox for openSUSE:Factory 
checked in at 2018-05-08 13:36:31

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


Package is "python-PyMsgBox"

Tue May  8 13:36:31 2018 rev:2 rq:603084 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/python-PyMsgBox/python-PyMsgBox.changes  
2018-03-07 10:36:25.430699276 +0100
+++ /work/SRC/openSUSE:Factory/.python-PyMsgBox.new/python-PyMsgBox.changes 
2018-05-08 13:36:33.327251975 +0200
@@ -1,0 +2,5 @@
+Mon Mar  5 22:30:08 UTC 2018 - jeng...@inai.de
+
+- Trim description to relevant parts.
+
+---



Other differences:
--
++ python-PyMsgBox.spec ++
--- /var/tmp/diff_new_pack.STDqvt/_old  2018-05-08 13:36:34.135222815 +0200
+++ /var/tmp/diff_new_pack.STDqvt/_new  2018-05-08 13:36:34.139222671 +0200
@@ -13,30 +13,31 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-PyMsgBox
 Version:1.0.6
 Release:0
+Summary:A Python module for JavaScript-like message boxes
 License:BSD-3-Clause
-Summary:A simple python module for JavaScript-like message boxes
-Url:https://github.com/asweigart/PyMsgBox
 Group:  Development/Languages/Python
+Url:https://github.com/asweigart/PyMsgBox
 Source: 
https://files.pythonhosted.org/packages/source/P/PyMsgBox/PyMsgBox-%{version}.zip
 Source99:   
https://raw.githubusercontent.com/asweigart/PyMsgBox/master/LICENSE.txt
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  unzip
-BuildRequires:  fdupes
 BuildRequires:  dos2unix
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+BuildRequires:  unzip
 BuildArch:  noarch
 
 %python_subpackages
 
 %description
-A simple, cross-platform, pure Python module for JavaScript-like message boxes.
+A pure Python module for JavaScript-like message boxes.
 
 %prep
 %setup -q -n PyMsgBox-%{version}





commit pangomm for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package pangomm for openSUSE:Factory checked 
in at 2018-05-08 13:37:11

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


Package is "pangomm"

Tue May  8 13:37:11 2018 rev:39 rq:603957 version:2.41.5

Changes:

--- /work/SRC/openSUSE:Factory/pangomm/pangomm.changes  2018-04-05 
15:33:58.607090428 +0200
+++ /work/SRC/openSUSE:Factory/.pangomm.new/pangomm.changes 2018-05-08 
13:37:12.885824264 +0200
@@ -1,0 +2,6 @@
+Tue Apr 17 10:47:34 UTC 2018 - dims...@opensuse.org
+
+- Export CXXFLAGS="-std=c++17" until upstream catches up: required,
+  as libsigc++-3.0 moved to C++17.
+
+---



Other differences:
--
++ pangomm.spec ++
--- /var/tmp/diff_new_pack.bRjQaD/_old  2018-05-08 13:37:13.717794236 +0200
+++ /var/tmp/diff_new_pack.bRjQaD/_new  2018-05-08 13:37:13.717794236 +0200
@@ -74,6 +74,7 @@
 
 %build
 NOCONFIGURE=1 ./autogen.sh
+export CXXFLAGS="-std=c++17 %{optflags}"
 %configure --disable-static
 make %{?_smp_mflags}
 




commit cairomm for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package cairomm for openSUSE:Factory checked 
in at 2018-05-08 13:37:06

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


Package is "cairomm"

Tue May  8 13:37:06 2018 rev:43 rq:603955 version:1.15.5

Changes:

--- /work/SRC/openSUSE:Factory/cairomm/cairomm.changes  2018-03-14 
19:36:47.685982507 +0100
+++ /work/SRC/openSUSE:Factory/.cairomm.new/cairomm.changes 2018-05-08 
13:37:07.694011645 +0200
@@ -1,0 +2,6 @@
+Tue Apr 17 10:29:26 UTC 2018 - dims...@opensuse.org
+
+- Export CXXFLAGS="-std=c++17" until upstream fixes this. Requires,
+  as libsigc++-3.0 moved to C++17.
+
+---



Other differences:
--
++ cairomm.spec ++
--- /var/tmp/diff_new_pack.8kh4MY/_old  2018-05-08 13:37:08.281990424 +0200
+++ /var/tmp/diff_new_pack.8kh4MY/_new  2018-05-08 13:37:08.285990280 +0200
@@ -64,7 +64,8 @@
 %setup -q
 
 %build
-%configure --disable-static --with-pic
+export CXXFLAGS="-std=c++17 %{optflags}"
+%configure --disable-static
 make %{?_smp_mflags}
 
 %install




commit python-tldextract for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-tldextract for 
openSUSE:Factory checked in at 2018-05-08 13:36:42

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


Package is "python-tldextract"

Tue May  8 13:36:42 2018 rev:2 rq:603098 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-tldextract/python-tldextract.changes  
2018-04-19 15:29:14.647655747 +0200
+++ /work/SRC/openSUSE:Factory/.python-tldextract.new/python-tldextract.changes 
2018-05-08 13:36:43.450886608 +0200
@@ -1,0 +2,5 @@
+Mon Apr 16 15:38:22 UTC 2018 - jeng...@inai.de
+
+- Update summary.
+
+---



Other differences:
--
++ python-tldextract.spec ++
--- /var/tmp/diff_new_pack.muNQ19/_old  2018-05-08 13:36:44.038865387 +0200
+++ /var/tmp/diff_new_pack.muNQ19/_new  2018-05-08 13:36:44.042865242 +0200
@@ -20,7 +20,7 @@
 Name:   python-tldextract
 Version:2.2.0
 Release:0
-Summary:Accurately separate the TLD of a URL
+Summary:Python module to separate the TLD of a URL
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/john-kurkowski/tldextract




commit atkmm for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package atkmm for openSUSE:Factory checked 
in at 2018-05-08 13:37:08

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


Package is "atkmm"

Tue May  8 13:37:08 2018 rev:27 rq:603956 version:2.27.1

Changes:

--- /work/SRC/openSUSE:Factory/atkmm/atkmm.changes  2018-04-04 
11:06:43.897184416 +0200
+++ /work/SRC/openSUSE:Factory/.atkmm.new/atkmm.changes 2018-05-08 
13:37:10.101924740 +0200
@@ -1,0 +2,6 @@
+Tue Apr 17 10:44:59 UTC 2018 - dims...@opensuse.org
+
+- Export CXXFLAGS="-std=c++17" until upstream catches up. Required,
+  as libsigc++-3.0 moved to C++17.
+
+---



Other differences:
--
++ atkmm.spec ++
--- /var/tmp/diff_new_pack.sx5e8E/_old  2018-05-08 13:37:10.909895578 +0200
+++ /var/tmp/diff_new_pack.sx5e8E/_new  2018-05-08 13:37:10.909895578 +0200
@@ -87,6 +87,7 @@
 
 %build
 NOCONFIGURE=1 ./autogen.sh
+export CXXFLAGS="-std=c++17 %{optflags}"
 %configure --disable-static
 make %{?_smp_mflags}
 




commit python-PyScreeze for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-PyScreeze for 
openSUSE:Factory checked in at 2018-05-08 13:36:33

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


Package is "python-PyScreeze"

Tue May  8 13:36:33 2018 rev:2 rq:603085 version:0.1.14

Changes:

--- /work/SRC/openSUSE:Factory/python-PyScreeze/python-PyScreeze.changes
2018-03-07 10:36:16.855008608 +0100
+++ /work/SRC/openSUSE:Factory/.python-PyScreeze.new/python-PyScreeze.changes   
2018-05-08 13:36:35.591170269 +0200
@@ -1,0 +2,5 @@
+Mon Mar  5 22:30:54 UTC 2018 - jeng...@inai.de
+
+- Ensure neutrality of description.
+
+---



Other differences:
--
++ python-PyScreeze.spec ++
--- /var/tmp/diff_new_pack.WrySox/_old  2018-05-08 13:36:36.167149482 +0200
+++ /var/tmp/diff_new_pack.WrySox/_new  2018-05-08 13:36:36.171149338 +0200
@@ -13,33 +13,34 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-PyScreeze
 Version:0.1.14
 Release:0
+Summary:A screenshot Python module
 License:BSD-3-Clause
-Summary:A simple screenshot python module
-Url:https://github.com/asweigart/pyscreeze
 Group:  Development/Languages/Python
+Url:https://github.com/asweigart/pyscreeze
 Source: 
https://files.pythonhosted.org/packages/source/P/PyScreeze/PyScreeze-%{version}.tar.gz
 Source99:   
https://raw.githubusercontent.com/asweigart/pyscreeze/master/LICENSE.txt
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  python-rpm-macros
 # SECTION test requirements
 BuildRequires:  %{python_module Pillow}
 # /SECTION
-BuildRequires:  fdupes
 BuildRequires:  dos2unix
+BuildRequires:  fdupes
 Requires:   python-Pillow
 BuildArch:  noarch
 
 %python_subpackages
 
 %description
-PyScreeze is a simple, cross-platform screenshot module for Python 2 and 3
+PyScreeze is a screenshot module for Python 2 and 3.
 
 
 %prep




commit rubygem-json-jwt for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package rubygem-json-jwt for 
openSUSE:Factory checked in at 2018-05-08 13:37:02

Comparing /work/SRC/openSUSE:Factory/rubygem-json-jwt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-json-jwt.new (New)


Package is "rubygem-json-jwt"

Tue May  8 13:37:02 2018 rev:3 rq:603057 version:1.9.4

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-json-jwt/rubygem-json-jwt.changes
2018-02-26 23:25:45.289033241 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-json-jwt.new/rubygem-json-jwt.changes   
2018-05-08 13:37:02.862186033 +0200
@@ -1,0 +2,18 @@
+Tue May  1 04:07:52 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 1.9.4
+  no changelog found
+
+---
+Fri Apr 27 10:07:24 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 1.9.3
+  no changelog found
+
+---
+Wed Feb 28 05:30:12 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 1.9.2
+  no changelog found
+
+---

Old:

  json-jwt-1.9.1.gem

New:

  json-jwt-1.9.4.gem



Other differences:
--
++ rubygem-json-jwt.spec ++
--- /var/tmp/diff_new_pack.9KWr1q/_old  2018-05-08 13:37:03.650157594 +0200
+++ /var/tmp/diff_new_pack.9KWr1q/_new  2018-05-08 13:37:03.682156439 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-json-jwt
-Version:1.9.1
+Version:1.9.4
 Release:0
 %define mod_name json-jwt
 %define mod_full_name %{mod_name}-%{version}

++ json-jwt-1.9.1.gem -> json-jwt-1.9.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2018-02-23 14:35:33.0 +0100
+++ new/VERSION 2018-05-01 05:21:53.0 +0200
@@ -1 +1 @@
-1.9.1
\ No newline at end of file
+1.9.4
\ No newline at end of file
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/json-jwt.gemspec new/json-jwt.gemspec
--- old/json-jwt.gemspec2018-02-23 14:35:33.0 +0100
+++ new/json-jwt.gemspec2018-05-01 05:21:53.0 +0200
@@ -11,10 +11,9 @@
   gem.test_files= `git ls-files -- {test,spec,features}/*`.split("\n")
   gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| 
File.basename(f) }
   gem.require_paths = ['lib']
-  gem.add_runtime_dependency 'url_safe_base64'
   gem.add_runtime_dependency 'activesupport'
   gem.add_runtime_dependency 'bindata'
-  gem.add_runtime_dependency 'securecompare'
+  gem.add_runtime_dependency 'aes_key_wrap'
   gem.add_development_dependency 'rake'
   gem.add_development_dependency 'simplecov'
   gem.add_development_dependency 'rspec'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/json/jose.rb new/lib/json/jose.rb
--- old/lib/json/jose.rb2018-02-23 14:35:33.0 +0100
+++ new/lib/json/jose.rb2018-05-01 05:21:53.0 +0200
@@ -1,4 +1,4 @@
-require 'securecompare'
+require 'active_support/security_utils'
 
 module JSON
   module JOSE
@@ -6,7 +6,6 @@
 
 included do
   extend ClassMethods
-  include SecureCompare
   register_header_keys :alg, :jku, :jwk, :x5u, :x5t, :x5c, :kid, :typ, 
:cty, :crit
   alias_method :algorithm, :alg
 
@@ -33,6 +32,18 @@
   end
 end
 
+def secure_compare(a, b)
+  if ActiveSupport::SecurityUtils.respond_to?(:fixed_length_secure_compare)
+begin
+  ActiveSupport::SecurityUtils.fixed_length_secure_compare(a, b)
+rescue ArgumentError
+  false
+end
+  else
+ActiveSupport::SecurityUtils.secure_compare(a, b)
+  end
+end
+
 module ClassMethods
   def register_header_keys(*keys)
 keys.each do |header_key|
@@ -51,9 +62,9 @@
 else
   decode_compact_serialized input, key_or_secret, algorithms, 
encryption_methods
 end
-  rescue JSON::ParserError
+  rescue JSON::ParserError, ArgumentError
 raise JWT::InvalidFormat.new("Invalid JSON Format")
   end
 end
   end
-end
\ No newline at end of file
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/json/jwe.rb new/lib/json/jwe.rb
--- old/lib/json/jwe.rb 2018-02-23 14:35:33.0 +0100
+++ new/lib/json/jwe.rb 2018-05-01 05:21:53.0 +0200
@@ -1,5 +1,6 @@
 require 'securerandom'
 require 'bindata'
+require 'aes_key_wrap'
 
 module JSON
   class JWE
@@ -31,7 +32,7 @@
   self.mac_key, self.encryption_key = derive_encryption_and_mac_ke

commit python-geoip2 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-geoip2 for openSUSE:Factory 
checked in at 2018-05-08 13:36:36

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


Package is "python-geoip2"

Tue May  8 13:36:36 2018 rev:4 rq:603090 version:2.8.0

Changes:

--- /work/SRC/openSUSE:Factory/python-geoip2/python-geoip2.changes  
2018-03-04 12:52:50.559069104 +0100
+++ /work/SRC/openSUSE:Factory/.python-geoip2.new/python-geoip2.changes 
2018-05-08 13:36:38.055081346 +0200
@@ -1,0 +2,17 @@
+Wed May  2 12:02:32 UTC 2018 - tchva...@suse.com
+
+- Use license macro for license
+
+---
+Thu Apr 12 19:32:15 UTC 2018 - sebix+novell@sebix.at
+
+- update to version 2.8.0:
+ * Renamed user ID to account ID in the code and added support for the new
+   ``ACCOUNT_ID_REQUIRED`` AND ``ACCOUNT_ID_UNKNOWN`` error codes.
+- update to version 2.7.0:
+ * The ``is_in_european_union`` attribute was added to
+   ``geoip2.record.Country`` and ``geoip2.record.RepresentedCountry``. This
+   attribute is ``True`` if the country is a member state of the European
+   Union.
+
+---

Old:

  geoip2-2.6.0.tar.gz

New:

  geoip2-2.8.0.tar.gz



Other differences:
--
++ python-geoip2.spec ++
--- /var/tmp/diff_new_pack.HSRLEu/_old  2018-05-08 13:36:38.847052763 +0200
+++ /var/tmp/diff_new_pack.HSRLEu/_new  2018-05-08 13:36:38.851052619 +0200
@@ -19,12 +19,12 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without test
 Name:   python-geoip2
-Version:2.6.0
+Version:2.8.0
 Release:0
 Summary:MaxMind GeoIP2 Python API
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://www.maxmind.com/
+URL:http://www.maxmind.com/
 Source: 
https://files.pythonhosted.org/packages/source/g/geoip2/geoip2-%{version}.tar.gz
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
@@ -67,7 +67,8 @@
 %endif
 
 %files %{python_files}
-%doc LICENSE README.rst
+%license LICENSE
+%doc README.rst
 %{python_sitelib}/*
 
 %changelog

++ geoip2-2.6.0.tar.gz -> geoip2-2.8.0.tar.gz ++
 12291 lines of diff (skipped)




commit python-tld for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-tld for openSUSE:Factory 
checked in at 2018-05-08 13:36:38

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


Package is "python-tld"

Tue May  8 13:36:38 2018 rev:2 rq:603093 version:0.7.10

Changes:

--- /work/SRC/openSUSE:Factory/python-tld/python-tld.changes2017-12-14 
11:00:05.988036042 +0100
+++ /work/SRC/openSUSE:Factory/.python-tld.new/python-tld.changes   
2018-05-08 13:36:39.763019705 +0200
@@ -1,0 +2,8 @@
+Sat Apr  7 19:13:40 UTC 2018 - sebix+novell@sebix.at
+
+- update to version 0.7.10:
+ * more documentation files included
+ * included license file
+ * update tld data
+
+---

Old:

  tld-0.7.9.tar.gz

New:

  tld-0.7.10.tar.gz



Other differences:
--
++ python-tld.spec ++
--- /var/tmp/diff_new_pack.0zFTHx/_old  2018-05-08 13:36:40.494993288 +0200
+++ /var/tmp/diff_new_pack.0zFTHx/_new  2018-05-08 13:36:40.494993288 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-tld
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,20 +13,21 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-tld
-Version:0.7.9
+Version:0.7.10
 Release:0
-License:MPL-1.1 or GPL-2.0 or LGPL-2.1
 Summary:Extract the top level domain (TLD) from the URL given
-Url:https://github.com/barseghyanartur/tld
+License:MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-only
 Group:  Development/Languages/Python
+Url:https://github.com/barseghyanartur/tld
 Source: 
https://files.pythonhosted.org/packages/source/t/tld/tld-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  python-rpm-macros
 # SECTION test requirements
 BuildRequires:  %{python_module six >= 1.9}
 # /SECTION
@@ -56,7 +57,8 @@
 %python_exec setup.py test
 
 %files %{python_files}
-%doc README.rst
+%doc README.rst CHANGELOG.rst
+%license LICENSE_GPL2.0.txt LICENSE_LGPL_2.1.txt
 %python3_only %{_bindir}/update-tld-names
 %{python_sitelib}/*
 

++ tld-0.7.9.tar.gz -> tld-0.7.10.tar.gz ++
 14788 lines of diff (skipped)




commit conntrack-tools for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package conntrack-tools for openSUSE:Factory 
checked in at 2018-05-08 13:36:54

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


Package is "conntrack-tools"

Tue May  8 13:36:54 2018 rev:31 rq:602813 version:1.4.5

Changes:

--- /work/SRC/openSUSE:Factory/conntrack-tools/conntrack-tools.changes  
2018-03-18 21:45:08.189082898 +0100
+++ /work/SRC/openSUSE:Factory/.conntrack-tools.new/conntrack-tools.changes 
2018-05-08 13:36:55.698444581 +0200
@@ -1,0 +2,14 @@
+Tue May  1 12:39:52 UTC 2018 - jeng...@inai.de
+
+- Update to new upstream release 1.4.5
+  * new synproxy support
+  * improved logging support (both stdout/stderr and log files)
+  * new mDNS ct helper
+  * deprecate unix backlog configuration
+  * drop old/obsolete/deprecated conntrackd.conf config options
+  * improved support for UPnP in the SSDP ct helper
+  * add stronger TCP flags support
+  * conntrack CLI tool: new support for IPv6 NAT
+  * nfct CLI tool: some improvements to the build (-z lazy)
+
+---

Old:

  conntrack-tools-1.4.4.tar.bz2
  conntrack-tools-1.4.4.tar.bz2.sig

New:

  conntrack-tools-1.4.5.tar.bz2
  conntrack-tools-1.4.5.tar.bz2.sig



Other differences:
--
++ conntrack-tools.spec ++
--- /var/tmp/diff_new_pack.Zf5GR0/_old  2018-05-08 13:36:56.542414122 +0200
+++ /var/tmp/diff_new_pack.Zf5GR0/_new  2018-05-08 13:36:56.542414122 +0200
@@ -22,7 +22,7 @@
 %endif
 
 Name:   conntrack-tools
-Version:1.4.4
+Version:1.4.5
 Release:0
 Url:http://conntrack-tools.netfilter.org/
 Summary:Userspace tools for interacting with the Connection Tracking 
System
@@ -48,7 +48,7 @@
 BuildRequires:  systemd-rpm-macros
 BuildRequires:  xz
 BuildRequires:  pkgconfig(libmnl) >= 1.0.3
-BuildRequires:  pkgconfig(libnetfilter_conntrack) >= 1.0.6
+BuildRequires:  pkgconfig(libnetfilter_conntrack) >= 1.0.7
 BuildRequires:  pkgconfig(libnetfilter_cthelper) >= 1.0.0
 BuildRequires:  pkgconfig(libnetfilter_cttimeout) >= 1.0.0
 BuildRequires:  pkgconfig(libnetfilter_queue) >= 1.0.2

++ conntrack-tools-1.4.4.tar.bz2 -> conntrack-tools-1.4.5.tar.bz2 ++
 135505 lines of diff (skipped)




commit python-jira for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-jira for openSUSE:Factory 
checked in at 2018-05-08 13:36:52

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


Package is "python-jira"

Tue May  8 13:36:52 2018 rev:2 rq:600976 version:1.0.15

Changes:

--- /work/SRC/openSUSE:Factory/python-jira/python-jira.changes  2018-02-14 
10:52:07.428600207 +0100
+++ /work/SRC/openSUSE:Factory/.python-jira.new/python-jira.changes 
2018-05-08 13:36:54.090502614 +0200
@@ -1,0 +2,55 @@
+Wed Apr 25 10:16:31 UTC 2018 - tbecht...@suse.com
+
+- update to 1.0.15:
+  * Added applicationKeys parameter to add\_user (#549)
+  * travis: assure prereleases are build only on master
+  * Install tox-travis before using tox in the build
+  * Corrected coverage execution
+  * Add async support to fetch pages (#540)
+  * Add support for custom session cookies to JIRA (#460)
+  * Avoids AttributeError on Jira Error handling
+  * travis: use service account for pypi
+  * merge fixes develop branch
+  * travis: pypi upload fixes
+  * Implement cookie based authentication
+  * gitignore: correct amps pattern fix
+  * docs: replace issues shield badge
+  * docs: build fixes
+  * Fix README.rst images
+  * Fix setup.cfg: UnicodeDecodeError
+  * Add pbr >= 3.0.0 as a module dependency
+  * Fix build scripts
+  * jirashell: Import InteractiveShellEmbed depending on IPython version
+  * Make OPTIONAL default and allowed value of mutual\_authentication
+  * Add testing section to contributions
+  * Update Contribution Guidlines to be more explicit
+  * Place imports on separate lines
+  * Touch ChangeLog To Fix PR Checks
+  * Fix Continuous Integration Testing
+  * Make Kerberos option mutual\_authentication configurable
+  * Accept custom authentication URL
+  * fixed linting errors
+  * Update client.py
+  * Allow through TRAVIS Environment Variables
+  * Add worklog to transition\_issue()
+  * Fixing move\_to\_backlog()
+  * Fix bug
+  * [client] Support JIRA.close()
+  * add add\_user to role resource
+  * added .idea/codeStyleSettings.xml to repo
+  * contributing.rst: Update JIRA community link
+  * contributing.rst: Remove reference to BitBucket
+  * Include changelog in description
+  * Move requirements extras to setup.cfg
+  *  #361 Made ipython a direct dependency
+  * build logic and code cleanup
+  * Fixed github deploy credentials
+  * linting fixes
+  * Forcing a rebuild
+  * Pass integer ids when creating customer requests
+  * Skip Service Desk tests on instances that don't support it
+  * Pass ids when creating a customer request
+  * Create Service Desk project during testing if it is missing
+  * Add a test for create\_customer\_request
+
+---

Old:

  jira-1.0.11.tar.gz

New:

  jira-1.0.15.tar.gz



Other differences:
--
++ python-jira.spec ++
--- /var/tmp/diff_new_pack.4bRQ0h/_old  2018-05-08 13:36:54.834475763 +0200
+++ /var/tmp/diff_new_pack.4bRQ0h/_new  2018-05-08 13:36:54.838475618 +0200
@@ -18,13 +18,14 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jira
-Version:1.0.11
+Version:1.0.15
 Release:0
 Summary:Python library for interacting with JIRA via REST APIs
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/pycontribs/jira
 Source: 
https://files.pythonhosted.org/packages/source/j/jira/jira-%{version}.tar.gz
+BuildRequires:  %{python_module Sphinx}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module pbr >= 3.0.0}
 BuildRequires:  %{python_module pytest-runner}
@@ -57,7 +58,8 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %files %{python_files}
-%doc AUTHORS AUTHORS.rst ChangeLog LICENSE README.rst
+%doc AUTHORS ChangeLog README.rst
+%license LICENSE
 %python3_only %{_bindir}/jirashell
 %{python_sitelib}/*
 

++ jira-1.0.11.tar.gz -> jira-1.0.15.tar.gz ++
 4528 lines of diff (skipped)




commit xonsh for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package xonsh for openSUSE:Factory checked 
in at 2018-05-08 13:36:40

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


Package is "xonsh"

Tue May  8 13:36:40 2018 rev:3 rq:603097 version:0.6.2

Changes:

--- /work/SRC/openSUSE:Factory/xonsh/xonsh.changes  2018-01-13 
21:44:26.975019144 +0100
+++ /work/SRC/openSUSE:Factory/.xonsh.new/xonsh.changes 2018-05-08 
13:36:40.874979574 +0200
@@ -1,0 +2,55 @@
+Sun Apr 29 18:44:37 UTC 2018 - sebix+novell@sebix.at
+
+- update to version 0.6.2:
+ * Added:
+  * Release tarballs now include licenses and minimal documentation for xonsh 
and ply
+  * Wizard now has a FileInserter node that allows blocks to be inserted and 
replaced inside of a file. This adheres to conversion rules fordumping as 
provided on this node.
+  * New xonsh.wizard.StateVisitor.flatten() method for flattening the current 
state.
+ * Changed:
+  * The xonsh startup wizard will only be triggered if no xonshrc files exist 
and the file ~/.local/config/xonsh/no-wizard is not present.
+  * The xonfig wizard command will now run write out to the xonshrc file.
+  * Wizard nodes Save and Load had their names changed to SaveJSON and 
LoadJSON.
+ * Removed:
+  * Static configuration is dead (config.json), long live run control 
(xonshrc)!
+  * The following evironment variables have been removed as they are no longer 
needed: $LOADED_CONFIG and $XONSHCONFIG.
+  * Many support functions for static configuration have also been removed.
+ * Fixed:
+  * Files starting with # are auto-escaped by TAB completion
+
+---
+Sat Apr 14 13:29:29 UTC 2018 - sebix+novell@sebix.at
+
+- update to version 0.6.1:
+ * Added:
+  * Support for MSYS2.
+  * New ``xonsh.main.setup()`` function for starting up xonsh in 3rd party
+packages.
+ * Changed:
+  * Updated CircleCI to use circle version 2.0
+  * Replaced StopIteration with return in CommandPipeline.iterraw.
+  * Xonsh run control now also looks for the XDG-compliant file
+``~/.config/xonsh/rc.xsh`` at startup.
+ * Fixed:
+  * Clean out ``$LINES`` and ``$COLUMNS`` if set, preventing some programs 
from drawing weirdly
+  * cat from xoreutils now outputs in configured encoding
+  * Fixed hanging issue with pipelines whose middle processes exit before the
+first or last process.
+  * Fixed issue where xonsh would deduplicate spaces from bash autocompletions.
+  * Fixed failing redirections from stderr to stdout when the command
+being executed was a callable alias.
+  * Ensure that the ``free_cwd`` contrib can only be active on pure Windows.
+  * Made an exceptional case in ``iglobpath()`` more robust when Python 
globbing
+fails for due to strange scrandir issue.
+  * Unexpected process suspension on Cygwin and MSYS2.
+  * ``$XONSH_APPEND_NEWLINE`` will now default to True when in interactive 
mode.
+  * Fixed issue with uncalled lambdas being run in subproc mode.
+  * Lambda nodes not have proper line and column numbers in AST.
+  * Properly throw ``SyntaxError`` when no kwargs are defined
+in a kwarg-only function. This used to throw a
+``TypeError: 'NoneType' object is not iterable``.
+  * Addressed issue where encoding and errors were None when teeing output.
+  * Commands like ``git c`` would complete to ``git 'checkout '`` because git 
adds an extra space
+to the end of the completion, which was being captured in the completion. 
Xonsh now fixes the git issue
+while retaining all whitespace when there is other internal whitespace.
+
+---

Old:

  0.6.0.tar.gz

New:

  0.6.2.tar.gz



Other differences:
--
++ xonsh.spec ++
--- /var/tmp/diff_new_pack.RXIAE6/_old  2018-05-08 13:36:41.442959075 +0200
+++ /var/tmp/diff_new_pack.RXIAE6/_new  2018-05-08 13:36:41.446958931 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xonsh
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   xonsh
-Version:0.6.0
+Version:0.6.2
 Release:0
 Summary:A general purpose, Python-ish shell
 License:BSD-3-Clause AND BSD-2-Clause
@@ -28,6 +28,7 @@
 BuildRequires:  python3-Sphinx
 BuildRequires:  python3-numpydoc
 # /SECTIOn
+BuildRequires:  fdupes
 BuildRequires:  python3-devel >= 3.4
 BuildRequires:  python3-setuptools
 Recommends: python3-Pygments
@@ -64,6 +65,7 @@
 

commit python-nss for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-nss for openSUSE:Factory 
checked in at 2018-05-08 13:36:44

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


Package is "python-nss"

Tue May  8 13:36:44 2018 rev:2 rq:603103 version:1.0.1

Changes:

--- /work/SRC/openSUSE:Factory/python-nss/python-nss.changes2015-06-15 
17:47:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-nss.new/python-nss.changes   
2018-05-08 13:36:45.562810387 +0200
@@ -1,0 +2,16 @@
+Wed May  2 12:05:56 UTC 2018 - tchva...@suse.com
+
+- Fix SOURCE link to be fetchable
+
+---
+Thu Feb  1 18:39:28 UTC 2018 - mrueck...@suse.de
+
+- update to 1.0.1
+  see installed /usr/share/doc/packages/python*-nss/ChangeLog
+
+---
+Thu Feb  1 18:35:14 UTC 2018 - mrueck...@suse.de
+
+- convert so single spec
+
+---

Old:

  python-nss-0.16.0.tar.bz2

New:

  python-nss-1.0.1.tar.bz2



Other differences:
--
++ python-nss.spec ++
--- /var/tmp/diff_new_pack.owak1R/_old  2018-05-08 13:36:46.122790176 +0200
+++ /var/tmp/diff_new_pack.owak1R/_new  2018-05-08 13:36:46.126790032 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-nss
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,25 +13,23 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:   python-nss
-Version:0.16.0
+Version:1.0.1
 Release:0
-License:MPL-1.1+ or GPL-2.0+ or LGPL-2.0+
 Summary:Python bindings for mozilla-nss and mozilla-nspr
-Url:http://www.mozilla.org/projects/security/pki/python-nss
+License:MPL-1.1+ OR GPL-2.0-or-later OR LGPL-2.0-or-later
 Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/p/python-nss/python-nss-%{version}.tar.bz2
-BuildRequires:  python-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
-%endif
+URL:http://www.mozilla.org/projects/security/pki/python-nss
+Source: 
https://files.pythonhosted.org/packages/source/p/python-nss/python-nss-%{version}.tar.bz2
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module docutils}
+BuildRequires:  %{python_module setuptools}
 BuildRequires:  mozilla-nspr-devel
 BuildRequires:  mozilla-nss-devel
-BuildRequires:  python-docutils
-BuildRequires:  python-setuptools
+%python_subpackages
 
 %description
 python-nss is a Python binding for NSS (Network Security Services) and
@@ -44,14 +42,14 @@
 %setup -q -n python-nss-%{version}
 
 %build
-CFLAGS="%{optflags}" python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
 
-%files
-%defattr(-,root,root,-)
-%doc LICENSE.mpl LICENSE.lgpl LICENSE.gpl README
+%files %{python_files}
+%license LICENSE.mpl LICENSE.lgpl LICENSE.gpl
+%doc README doc/ChangeLog
 %{python_sitearch}/*
 
 %changelog

++ python-nss-0.16.0.tar.bz2 -> python-nss-1.0.1.tar.bz2 ++
 13758 lines of diff (skipped)




commit R-praise for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package R-praise for openSUSE:Factory 
checked in at 2018-05-08 13:36:46

Comparing /work/SRC/openSUSE:Factory/R-praise (Old)
 and  /work/SRC/openSUSE:Factory/.R-praise.new (New)


Package is "R-praise"

Tue May  8 13:36:46 2018 rev:1 rq:586417 version:1.0.0

Changes:

New Changes file:

--- /dev/null   2018-04-25 19:14:53.472341877 +0200
+++ /work/SRC/openSUSE:Factory/.R-praise.new/R-praise.changes   2018-05-08 
13:36:46.770766790 +0200
@@ -0,0 +1,4 @@
+---
+Tue Oct 17 09:30:21 UTC 2017 - lbeltr...@kde.org
+
+- Initial package 

New:

  R-praise.changes
  R-praise.spec
  praise_1.0.0.tar.gz



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

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


%global packname  praise
%global rlibdir  %{_libdir}/R/library
Name:   R-%{packname}
Version:1.0.0
Release:0
Summary:Build friendly R packages
License:MIT
Group:  Development/Libraries/Other
URL:http://cran.r-project.org/web/packages/%{packname}/index.html
Source0:
http://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
BuildRequires:  R-devel
BuildRequires:  texlive-latex
Requires:   R-base
Recommends: R-testthat

%description
Build friendly R packages that praise their users if they have done
something good, or they just need it to feel better.

%prep
%setup -q -c -n %{packname}

%build

%install
mkdir -p %{buildroot}%{rlibdir}
%{_bindir}/R CMD INSTALL -l %{buildroot}%{rlibdir} %{packname}
test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so)
rm -f %{buildroot}%{rlibdir}/R.css

%files
%dir %{rlibdir}/%{packname}
%doc %{rlibdir}/%{packname}/html
%doc %{rlibdir}/%{packname}/LICENSE
%doc %{rlibdir}/%{packname}/NEWS.md
%doc %{rlibdir}/%{packname}/README.*
%{rlibdir}/%{packname}/DESCRIPTION
%{rlibdir}/%{packname}/INDEX
%{rlibdir}/%{packname}/NAMESPACE
%{rlibdir}/%{packname}/Meta
%{rlibdir}/%{packname}/R
%{rlibdir}/%{packname}/help

%changelog



commit os-autoinst for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package os-autoinst for openSUSE:Factory 
checked in at 2018-05-08 13:37:19

Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old)
 and  /work/SRC/openSUSE:Factory/.os-autoinst.new (New)


Package is "os-autoinst"

Tue May  8 13:37:19 2018 rev:21 rq:604659 version:4.5.1525413876.6c59528a

Changes:

--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes  2018-04-27 
16:08:44.695561417 +0200
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new/os-autoinst.changes 
2018-05-08 13:37:21.353518649 +0200
@@ -1,0 +2,8 @@
+Fri May 04 06:05:05 UTC 2018 - ok...@suse.com
+
+- Update to version 4.5.1525413876.6c59528a:
+  * Allow environment variable to point to OPENQA_LIBPATH (#959)
+  * isotovideo: Add support to forward command line parameters as test 
settings (#950)
+  * testapi: Output all arguments in log_call (#957)
+
+---

Old:

  os-autoinst-4.5.1524736170.cc9d9ff2.tar.xz

New:

  os-autoinst-4.5.1525413876.6c59528a.tar.xz



Other differences:
--
++ os-autoinst.spec ++
--- /var/tmp/diff_new_pack.q5TRGp/_old  2018-05-08 13:37:22.225487177 +0200
+++ /var/tmp/diff_new_pack.q5TRGp/_new  2018-05-08 13:37:22.225487177 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   os-autoinst
-Version:4.5.1524736170.cc9d9ff2
+Version:4.5.1525413876.6c59528a
 Release:0
 Summary:OS-level test automation
 License:GPL-2.0+

++ os-autoinst-4.5.1524736170.cc9d9ff2.tar.xz -> 
os-autoinst-4.5.1525413876.6c59528a.tar.xz ++
/work/SRC/openSUSE:Factory/os-autoinst/os-autoinst-4.5.1524736170.cc9d9ff2.tar.xz
 
/work/SRC/openSUSE:Factory/.os-autoinst.new/os-autoinst-4.5.1525413876.6c59528a.tar.xz
 differ: char 27, line 1




commit python-pyftpdlib for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-pyftpdlib for 
openSUSE:Factory checked in at 2018-05-08 13:36:24

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


Package is "python-pyftpdlib"

Tue May  8 13:36:24 2018 rev:4 rq:603032 version:1.5.3

Changes:

--- /work/SRC/openSUSE:Factory/python-pyftpdlib/python-pyftpdlib.changes
2017-07-11 08:25:19.691824363 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyftpdlib.new/python-pyftpdlib.changes   
2018-05-08 13:36:25.707526973 +0200
@@ -1,0 +2,10 @@
+Wed May  2 10:27:38 UTC 2018 - tchva...@suse.com
+
+- Version update to 1.5.3:
+  * implemented SITE MFMT command which changes file modification time. (patch 
by Tahir Ijaz)
+  * add username and password command line options
+  * documentation moved to readthedocs: http://pyftpdlib.readthedocs.io
+  * fix duplicated output log. (path by PonyPC)
+  * Respond successfully to STOR only after closing file handle.
+
+---

Old:

  pyftpdlib-1.5.2.tar.gz

New:

  pyftpdlib-1.5.3.tar.gz



Other differences:
--
++ python-pyftpdlib.spec ++
--- /var/tmp/diff_new_pack.plOzGm/_old  2018-05-08 13:36:26.355503587 +0200
+++ /var/tmp/diff_new_pack.plOzGm/_new  2018-05-08 13:36:26.363503299 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pyftpdlib
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2016 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,21 +19,21 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-pyftpdlib
-Version:1.5.2
+Version:1.5.3
 Release:0
 Summary:Asynchronous FTP server library for Python
 License:MIT
 Group:  Development/Languages/Python
-Url:https://github.com/giampaolo/pyftpdlib/
+URL:https://github.com/giampaolo/pyftpdlib/
 Source: 
https://files.pythonhosted.org/packages/source/p/pyftpdlib/pyftpdlib-%{version}.tar.gz
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pyOpenSSL}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-pyOpenSSL
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %python_subpackages
 
@@ -49,15 +49,15 @@
 
 %install
 %python_install
+%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
 
 %check
-#%%python_exec -m nose #pyftpdlib/test
 export PYTHONPATH=$PWD
 %python_exec pyftpdlib/test/runner.py
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc README.rst LICENSE
+%license LICENSE
+%doc README.rst
 %python3_only %{_bindir}/ftpbench
 %{python_sitelib}/*
 

++ pyftpdlib-1.5.2.tar.gz -> pyftpdlib-1.5.3.tar.gz ++
 4883 lines of diff (skipped)




commit python-libvirt-python for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-libvirt-python for 
openSUSE:Factory checked in at 2018-05-08 13:37:04

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


Package is "python-libvirt-python"

Tue May  8 13:37:04 2018 rev:11 rq:603337 version:4.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-libvirt-python/python-libvirt-python.changes  
2018-03-09 10:43:43.792872090 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-libvirt-python.new/python-libvirt-python.changes
 2018-05-08 13:37:05.670084691 +0200
@@ -1,0 +2,12 @@
+Wed May  2 22:45:01 UTC 2018 - jfeh...@suse.com
+
+- Update to 4.3.0
+  - Add all new APIs and constants in libvirt 4.3.0
+
+---
+Thu Apr  5 15:32:09 UTC 2018 - jfeh...@suse.com
+
+- Update to 4.2.0
+  - Add all new APIs and constants in libvirt 4.2.0
+
+---

Old:

  libvirt-python-4.1.0.tar.gz
  libvirt-python-4.1.0.tar.gz.asc

New:

  libvirt-python-4.3.0.tar.gz
  libvirt-python-4.3.0.tar.gz.asc



Other differences:
--
++ python-libvirt-python.spec ++
--- /var/tmp/diff_new_pack.RIwKM1/_old  2018-05-08 13:37:06.318061305 +0200
+++ /var/tmp/diff_new_pack.RIwKM1/_new  2018-05-08 13:37:06.322061160 +0200
@@ -20,10 +20,10 @@
 %define srcname libvirt-python
 Name:   python-libvirt-python
 Url:https://libvirt.org/
-Version:4.1.0
+Version:4.3.0
 Release:0
 Summary:Library providing a virtualization API
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Languages/Python
 Source0:%{srcname}-%{version}.tar.gz
 Source1:%{srcname}-%{version}.tar.gz.asc

++ libvirt-python-4.1.0.tar.gz -> libvirt-python-4.3.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvirt-python-4.1.0/ChangeLog 
new/libvirt-python-4.3.0/ChangeLog
--- old/libvirt-python-4.1.0/ChangeLog  2018-03-05 11:52:35.0 +0100
+++ new/libvirt-python-4.3.0/ChangeLog  2018-05-02 14:28:58.0 +0200
@@ -1,3 +1,71 @@
+2018-04-24 Daniel P. Berrangé  
+
+git: add config file telling git-publish how to send patches
+The "git-publish" tool is a useful git extension for sending patch
+series for code review. It automatically creates versioned tags
+each time code on a branch is sent, so that there is a record of
+each version. It also remembers the cover letter so it does not
+need re-entering each time the series is reposted.
+
+With this config file present it is now sufficient[1] to run
+
+$ git publish
+
+to send all patches in a branch to the list for review, with the
+correct subject prefix added for this non-core libvirt module.
+
+[1] Assuming your $HOME/.gitconfig has an SMTP server listed
+at least e.g.
+
+[sendemail]
+smtpserver = smtp.example.com
+
+
+
+2018-04-19 Daniel P. Berrangé  
+
+Fix build with older libvirt versions
+The libvirt python module is supposed to build with historical versions
+of the API back to 0.9.1, which means all constants / methods must be
+wrapped in conditionals. This was accidentally forgotten in:
+
+commit 314b2346df2d8e2d7d705b003c693b4fa0189bdf
+Author: Edgar Kaziakhmedov 
+Date:   Wed Feb 7 17:49:30 2018 +0300
+
+Set hints for virPyDictToTypedParams
+
+Predefine hints for all parameters possible to avoid wrong type
+convert.
+
+This broke the build against any libvirt < 2.0.0
+
+Reviewed-by: Ján Tomko 
+
+
+2018-04-03 Daniel P. Berrangé  
+
+Post-release version bump to 4.3.0
+
+
+2018-03-23 Daniel P. Berrangé  
+
+Disable Python 2 on future RHEL and Fedora > 29
+The end of Python 2 is nearing, so declare when it will be removed
+from libvirt Python binding RPMs.
+
+NB, this doesn't imply we'll be removing py2 support from upstream
+libvirt-python on the same timeframe - we'll consider what todo
+wrt that when upstream Python 2 finally goes EOL.
+
+Reviewed-by: Jiri Denemark 
+
+
+2018-03-05 Daniel P. Berrangé  
+
+Post-release version bump to 4.2.0
+
+
 2018-03-05 Daniel Veillard  
 
 Release of libvirt-python 4.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvirt-python-4.1.0/PKG-INFO 
new/libvirt-python-4.3.0/PKG-INFO
--- old/libvirt-python-4.1.0/PKG-INFO   2018-03-05 11:52:36.0 +0100
+++ new/libvirt-python

commit scribus for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package scribus for openSUSE:Factory checked 
in at 2018-05-08 13:36:56

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


Package is "scribus"

Tue May  8 13:36:56 2018 rev:62 rq:602863 version:1.4.7

Changes:

--- /work/SRC/openSUSE:Factory/scribus/scribus.changes  2018-03-28 
10:34:09.227062987 +0200
+++ /work/SRC/openSUSE:Factory/.scribus.new/scribus.changes 2018-05-08 
13:37:00.606267452 +0200
@@ -1,0 +2,21 @@
+Tue May  1 21:29:52 UTC 2018 - wba...@tmo.at
+
+- Add back hunspell-1.6.patch, it's still needed as the current
+  version still only supports hunspell up to 1.4 but Tumbleweed and
+  Leap 15.0 have 1.6
+
+---
+Sun Apr 29 03:29:26 UTC 2018 - plinn...@opensuse.org
+
+- drop hunspell-1.6.patch fixed uptream
+- lots of spec file cleanups
+---
+Sat Apr 28 00:50:34 UTC 2018 - plinn...@opensuse.org
+
+- Update to 1.4.7 - likely last release from 1.4.x stable branch
+- Stability and bugfix release
+- Updated UI translations
+- See: https://bugs.scribus.net/changelog_page.php?version_id=96
+  for complete list.
+
+---

Old:

  scribus-1.4.6.tar.xz

New:

  scribus-1.4.7.tar.xz



Other differences:
--
++ scribus.spec ++
--- /var/tmp/diff_new_pack.syErfm/_old  2018-05-08 13:37:02.622194695 +0200
+++ /var/tmp/diff_new_pack.syErfm/_new  2018-05-08 13:37:02.626194550 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package scribus
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) Peter Linnell and 2010 SUSE LINUX Products GmbH, Nuernberg, 
Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   scribus
-Version:1.4.6
+Version:1.4.7
 Release:0
 Summary:Open Source Page Layout and Desktop Publishing (DTP)
 License:GPL-2.0+
@@ -33,6 +33,7 @@
 Source6:%{name}.appdata.xml
 # PATCH-FIX-OPENSUSE
 Patch:  hunspell-1.6.patch
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} > 1325
 BuildRequires:  libboost_headers-devel
@@ -56,7 +57,7 @@
 BuildRequires:  python-devel
 BuildRequires:  shared-mime-info
 BuildRequires:  update-desktop-files
-##BuildRequires:  libMagick++-devel
+
 
 %if 0%{?suse_version} 
 Requires:   ghostscript-library
@@ -66,8 +67,6 @@
 Suggests:   Uniconvertor
 %endif
 
-Provides:   scribus-templates > 1.2
-Obsoletes:  scribus-templates =< 1.2
 
 %description
 Scribus is a open source page layout program which
@@ -91,7 +90,6 @@
 
 %description devel
 
-
 This package provides the development headers for scribus. It is most useful 
 for developing scribus plugins.
 
@@ -142,17 +140,10 @@
 
 %if 0%{?suse_version}
 %suse_update_desktop_file -r -i %{name} Qt Office Publishing WordProcessor
-# hi-res icons are already installed in hicolor-icon-theme directory
-# mkdir %{buildroot}%{_datadir}/pixmaps
-# install -m 644 %{buildroot}%{_datadir}/%{name}/icons/%{name}.png 
%{buildroot}%{_datadir}/pixmaps/
+
 %endif
 
 %fdupes -s %{buildroot}%{_includedir}/%{name}/
-%fdupes -s %{buildroot}%{_datadir}
-
-%if 0%{?suse_version}
-%suse_update_desktop_file -i 
%{buildroot}%{_datadir}/mimelnk/application/vnd.scribus.desktop Office 
WordProcessor
-%endif
 
 # INSTALL APPSTREAM METAINFO (SOURCE6)
 install -Dm0644 %{S:6} %{buildroot}%{_datadir}/appdata/%{name}.appdata.xml
@@ -179,13 +170,9 @@
 %{_datadir}/scribus
 %{_datadir}/doc/scribus
 %{_datadir}/applications/%{name}.desktop
-#%%{_datadir}/pixmaps/%%{name}.png
 # This should be owned by filesystem or man, but there are only scribus files:
 %lang(pl) %dir %{_mandir}/pl
 %lang(pl) %{_mandir}/pl/man1 
-%dir %{_datadir}/mimelnk
-%dir %{_datadir}/mimelnk/application
-%{_datadir}/mimelnk/application/vnd.scribus.desktop
 %{_datadir}/icons/hicolor/*/apps/%{name}.png
 %dir %{_datadir}/appdata
 %{_datadir}/appdata/%{name}.appdata.xml

++ hunspell-1.6.patch ++
--- /var/tmp/diff_new_pack.syErfm/_old  2018-05-08 13:37:02.654193540 +0200
+++ /var/tmp/diff_new_pack.syErfm/_new  2018-05-08 13:37:02.654193540 +0200
@@ -11,7 +11,7 @@
  #Based on examples at http://www.vtk.org/Wiki/CMake:How_To_Find_Libraries
  
  FIND_PATH(HUNSPELL_INCLUDE_DIR hunspell/hunspell.hxx )
--FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell-1.3 hunspell-1.2 PATHS 
/opt/local/lib /usr/local/lib /usr/lib )
+-FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell-1.4 hunspell-1.3 hunspell-1.2 
PATHS /opt/local

commit openQA for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package openQA for openSUSE:Factory checked 
in at 2018-05-08 13:37:22

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


Package is "openQA"

Tue May  8 13:37:22 2018 rev:19 rq:604660 version:4.5.1525548058.3f6bb61a

Changes:

--- /work/SRC/openSUSE:Factory/openQA/openQA.changes2018-04-27 
16:08:48.735413244 +0200
+++ /work/SRC/openSUSE:Factory/.openQA.new/openQA.changes   2018-05-08 
13:37:22.537475917 +0200
@@ -1,0 +2,40 @@
+Sat May 05 19:21:21 UTC 2018 - co...@suse.com
+
+- Update to version 4.5.1525548058.3f6bb61a:
+  * Avoid appending multiple runs with --nocleanup (#1644)
+  * Limit number of tasks for limit_assets and limit_results_and_logs GRU tasks
+  * Add test for GRU enqueue limit option
+  * Update apparmor profile for worker (#1645)
+  * GRU: Add support to limit enqueuing by task
+  * Update unit tests for TAP parser
+  * Mark test suite as failed if test steps have failed
+  * Add information about openQA internal results
+  * Update TAP format documentation
+  * Remove dots from filename
+  * Ensure that the details description is set
+  * Use a single result to contain all the test steps
+  * Update changes to TAP format
+  * Temporary version of the parser for TAP still failing
+  * Log a warning when step data is not found
+  * Allow LTP parser to load files that contain special characters
+  * Replace extra dots in the filenames (#1642)
+  * Increase the required coverage to 88.8
+  * Do not fail a pull request if there are unexpected changes
+  * Use same width for each colored dep status span
+  * Show parent and child deps on job page in nice tbl
+  * Enhance unit tests for GRU TTL
+  * Set 2 days of ttl for limit_assets and limit_results_and_logs when posting 
isos
+  * Add unit test for GRU task TTL
+  * GRU: Add TTL for Minion jobs
+  * Use a smaller font for the 'ago time' to fix rendering (#1635)
+  * Prefetch comment counts for /tests
+  * Update bootstrap to 4.1.1 and fontawesome to 5.0.10
+  * Do not load full application to generate assetpack data (#1628)
+  * Improve the duplication tests (#1627)
+  * Hide categories when filtering test details
+  * Ensure needles directory exists in 18-tests-details.t
+  * Require 'Selenium::Remote::WDKeys' in CPAN file
+  * Add test for filtering test details
+  * Allow filtering test details
+
+---

Old:

  openQA-4.5.1524586233.92db89bc.tar.xz

New:

  openQA-4.5.1525548058.3f6bb61a.tar.xz



Other differences:
--
++ openQA.spec ++
--- /var/tmp/diff_new_pack.L34UYI/_old  2018-05-08 13:37:23.309448055 +0200
+++ /var/tmp/diff_new_pack.L34UYI/_new  2018-05-08 13:37:23.309448055 +0200
@@ -36,7 +36,7 @@
 # runtime requirements that also the testsuite needs
 %define t_requires perl(DBD::Pg) perl(DBIx::Class) perl(Config::IniFiles) 
perl(SQL::Translator) perl(Date::Format) perl(File::Copy::Recursive) 
perl(DateTime::Format::Pg) perl(Net::OpenID::Consumer) 
perl(Mojolicious::Plugin::RenderFile) perl(Mojolicious::Plugin::AssetPack) 
perl(aliased) perl(Config::Tiny) perl(DBIx::Class::DynamicDefault) 
perl(DBIx::Class::Schema::Config) perl(DBIx::Class::Storage::Statistics) 
perl(IO::Socket::SSL) perl(Data::Dump) perl(DBIx::Class::OptimisticLocking) 
perl(Text::Markdown) perl(Net::DBus) perl(IPC::Run) perl(Archive::Extract) 
perl(CSS::Minifier::XS) perl(JavaScript::Minifier::XS) perl(Time::ParseDate) 
perl(Sort::Versions) perl(Mojo::RabbitMQ::Client) perl(BSD::Resource) 
perl(Cpanel::JSON::XS) perl(Pod::POM) perl(Mojo::IOLoop::ReadWriteProcess) 
perl(Minion) perl(Mojo::Pg)
 Name:   openQA
-Version:4.5.1524586233.92db89bc
+Version:4.5.1525548058.3f6bb61a
 Release:0
 Summary:The openQA web-frontend, scheduler and tools
 License:GPL-2.0+

++ cache.txz ++
Binary files /var/tmp/diff_new_pack.L34UYI/_old and 
/var/tmp/diff_new_pack.L34UYI/_new differ

++ openQA-4.5.1524586233.92db89bc.tar.xz -> 
openQA-4.5.1525548058.3f6bb61a.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openQA-4.5.1524586233.92db89bc/assets/assetpack.def 
new/openQA-4.5.1525548058.3f6bb61a/assets/assetpack.def
--- old/openQA-4.5.1524586233.92db89bc/assets/assetpack.def 2018-04-24 
18:10:33.0 +0200
+++ new/openQA-4.5.1525548058.3f6bb61a/assets/assetpack.def 2018-05-05 
21:20:58.0 +0200
@@ -1,102 +1,103 @@
 ! bootstrap.css
 # download the fonts
 < https://cdn.datatables.net/1.10.16/css/dataTables.bootstrap4.css
-< https://use.fontawesome.com/releases/v5.0.0/css/all.css
-<< https://use.fontawesome.com/releases/v5.0

commit podman for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package podman for openSUSE:Factory checked 
in at 2018-05-08 13:37:43

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


Package is "podman"

Tue May  8 13:37:43 2018 rev:10 rq:604803 version:0.5.1

Changes:

--- /work/SRC/openSUSE:Factory/podman/podman.changes2018-05-04 
11:30:56.936575916 +0200
+++ /work/SRC/openSUSE:Factory/.podman.new/podman.changes   2018-05-08 
13:37:56.412253285 +0200
@@ -1,0 +2,20 @@
+Mon May  7 05:42:24 UTC 2018 - vrothb...@suse.com
+
+- Remove runtime dependency on buildah, which isn't required anymore as
+  libpod vendors in buildah's code directly.
+
+- Changelog for v0.5.1 (2018-05-04):
+  * Fix pulling from secure registry
+  * Optionally init() during container restart
+  * bashcompletion enhancements
+  * Add directory for systemd socket and service if not present
+  * varlink containers
+  * Make podman commit to localhost rather then docker.io
+  * Do not print unnecessary Buildah details during commit
+  * Fix podman logout --all flag
+  * podman should assign a host port to -p when omitted
+  * libpod.conf: Podman's conmon path on openSUSE
+  * correct varlink command in service file
+  * Make ':' a restricted character for file names
+
+---

Old:

  podman-0.4.4.tar.xz

New:

  podman-0.5.1.tar.xz



Other differences:
--
++ podman.spec ++
--- /var/tmp/diff_new_pack.KoTUEs/_old  2018-05-08 13:37:57.104228310 +0200
+++ /var/tmp/diff_new_pack.KoTUEs/_new  2018-05-08 13:37:57.108228165 +0200
@@ -22,7 +22,7 @@
 %define with_libostree 1
 %endif
 Name:   podman
-Version:0.4.4
+Version:0.5.1
 Release:0
 Summary:Debugging tool for pods and images
 License:Apache-2.0
@@ -45,7 +45,6 @@
 BuildRequires:  libgpgme-devel
 BuildRequires:  libseccomp-devel
 BuildRequires:  golang(API) >= 1.9
-Requires:   buildah
 Requires:   cni
 Requires:   cni-plugins
 Requires:   cri-o

++ _service ++
--- /var/tmp/diff_new_pack.KoTUEs/_old  2018-05-08 13:37:57.136227155 +0200
+++ /var/tmp/diff_new_pack.KoTUEs/_new  2018-05-08 13:37:57.136227155 +0200
@@ -4,8 +4,8 @@
 https://github.com/projectatomic/libpod.git
 git
 podman
-0.4.4
-v0.4.4
+0.5.1
+v0.5.1
 
 
 

++ podman-0.4.4.tar.xz -> podman-0.5.1.tar.xz ++
 6315 lines of diff (skipped)




commit nvme-cli for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package nvme-cli for openSUSE:Factory 
checked in at 2018-05-08 13:37:36

Comparing /work/SRC/openSUSE:Factory/nvme-cli (Old)
 and  /work/SRC/openSUSE:Factory/.nvme-cli.new (New)


Package is "nvme-cli"

Tue May  8 13:37:36 2018 rev:26 rq:604707 version:1.5

Changes:

--- /work/SRC/openSUSE:Factory/nvme-cli/nvme-cli.changes2018-04-16 
12:48:43.293696151 +0200
+++ /work/SRC/openSUSE:Factory/.nvme-cli.new/nvme-cli.changes   2018-05-08 
13:37:42.712747742 +0200
@@ -1,0 +2,6 @@
+Wed May  2 07:49:52 UTC 2018 - jthumsh...@suse.com
+
+- Add keep-alive-tmo option to connect-all command (bsc#1090568)
+  + 0005-fabrics-add-option-to-supply-keep-alive-timeout-for.patch
+
+---

New:

  0005-fabrics-add-option-to-supply-keep-alive-timeout-for.patch



Other differences:
--
++ nvme-cli.spec ++
--- /var/tmp/diff_new_pack.VA6ZAQ/_old  2018-05-08 13:37:43.632714538 +0200
+++ /var/tmp/diff_new_pack.VA6ZAQ/_new  2018-05-08 13:37:43.632714538 +0200
@@ -33,6 +33,7 @@
 Patch2: 0002-nvme-cli-add-netapp-smdevices-man-page.patch
 Patch3: 0003-get-log-Make-log-identifier-a-required-parameter.patch
 Patch4: 0004-Documentation-add-manpage-entry-for-connect-s-ctrl-l.patch
+Patch5: 0005-fabrics-add-option-to-supply-keep-alive-timeout-for.patch
 
 %description
 NVM Express (NVMe) is a direct attached storage interface. The
@@ -45,6 +46,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %build
 echo %{version} > version

++ 0005-fabrics-add-option-to-supply-keep-alive-timeout-for.patch ++
From: Johannes Thumshirn 
Date: Wed, 25 Apr 2018 11:49:23 -0600
Subject: fabrics: add option to supply keep-alive-timeout for connect-all
References: bsc#1090568
Git-commit: 7099227b07a86f152fa62b9a96f77a2f3e22f59f
Patch-mainline: v1.6

Currently we can't supply a keep-alive-timeout when doing a nvme
connect-all, but we can supply it when doing nvme connect.

Bring connect-all in line with connect.

Signed-off-by: Johannes Thumshirn 
Signed-off-by: Keith Busch 
---
 Documentation/nvme-connect-all.txt | 5 +
 fabrics.c  | 1 +
 2 files changed, 6 insertions(+)

diff --git a/Documentation/nvme-connect-all.txt 
b/Documentation/nvme-connect-all.txt
index 03adac5..217268f 100644
--- a/Documentation/nvme-connect-all.txt
+++ b/Documentation/nvme-connect-all.txt
@@ -14,6 +14,7 @@ SYNOPSIS
[--trsvcid=  | -s ]
[--host-traddr=   | -w ]
[--hostnqn=  | -q ]
+   [--keep-alive-tmo=<#> | -k <#>]
[--raw= | -r ]
 
 DESCRIPTION
@@ -86,6 +87,10 @@ OPTIONS
Overrides the default number of elements in the I/O queues created
by the driver.
 
+-k <#>::
+--keep-alive-tmo=<#>::
+   Overrides the default keep alive timeout (in seconds).
+
 EXAMPLES
 
 * Connect to all records returned by the Discover Controller with IP4 address
diff --git a/fabrics.c b/fabrics.c
index 62bd3be..7e9d56c 100644
--- a/fabrics.c
+++ b/fabrics.c
@@ -821,6 +821,7 @@ int discover(const char *desc, int argc, char **argv, bool 
connect)
{"queue-size",  'Q', "LIST", CFG_STRING, &cfg.queue_size,  
required_argument, "number of io queue elements to use (default 128)" },
{"nr-io-queues",'i', "LIST", CFG_STRING, 
&cfg.nr_io_queues,required_argument, "number of io queues to use (default is 
core count)" },
{"raw", 'r', "LIST", CFG_STRING, &cfg.raw, 
required_argument, "raw output file" },
+   {"keep-alive-tmo",  'k', "LIST", CFG_STRING, 
&cfg.keep_alive_tmo,  required_argument, "keep alive timeout period in seconds" 
},
{NULL},
};
 



commit python-tables for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-tables for openSUSE:Factory 
checked in at 2018-05-08 13:37:31

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


Package is "python-tables"

Tue May  8 13:37:31 2018 rev:8 rq:604704 version:3.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-tables/python-tables.changes  
2018-02-27 16:59:54.871800172 +0100
+++ /work/SRC/openSUSE:Factory/.python-tables.new/python-tables.changes 
2018-05-08 13:37:38.984882290 +0200
@@ -1,0 +2,33 @@
+Thu May  3 17:06:41 UTC 2018 - toddrme2...@gmail.com
+
+- Add initRecArray_tuples.patch
+  Upstream bug report: https://github.com/PyTables/PyTables/issues/688
+  From: https://github.com/PyTables/PyTables/pull/689
+  Should be in next release
+
+---
+Wed May  2 10:31:55 UTC 2018 - tchva...@suse.com
+
+- Version update to 3.4.3:
+  * On interactive python sessions, group/attribute __dir__() method
+autocompletes children that are named as valid python identifiers.
+  * Implement Group.__getitem__() to have groups act as python-containers,
+so code like this works: hfile.root['some child'].
+  * Enable building with Intel compiler (icc/icpc).
+  * PEP 519 support, using new os.fspath method.
+  * Optional disable recording of ctime (metadata creation time) when
+creating datasets that makes possible to get bitwise identical output
+from repeated runs.
+  * Prevent from reading all rows for each coord in a VLArray when
+indexing using a list .
+  * Fixed division by zero when using _convert_time64() with an empty
+nparr array.
+  * Fixed deprecation warnings with numpy 1.14.
+  * Skip DLL check when running from a frozen app.
+  * Fixed behaviour with slices out of range.
+- Drop merged patch fix_numpy_recarray.patch
+- Add patch Never-use-the-msse2-flag-explicitly.patch to avoid using
+  msse2 and avx on buildbots that support it, as we can be on non
+  avx machines...
+
+---

Old:

  fix_numpy_recarray.patch
  tables-3.4.2.tar.gz

New:

  Never-use-the-msse2-flag-explicitly.patch
  initRecArray_tuples.patch
  tables-3.4.3.tar.gz



Other differences:
--
++ python-tables.spec ++
--- /var/tmp/diff_new_pack.ulU9wR/_old  2018-05-08 13:37:41.596788020 +0200
+++ /var/tmp/diff_new_pack.ulU9wR/_new  2018-05-08 13:37:41.600787876 +0200
@@ -16,43 +16,42 @@
 #
 
 
-%bcond_without tests
-
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-tables
-Version:3.4.2
+Version:3.4.3
 Release:0
 Summary:Hierarchical datasets for Python
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:https://github.com/PyTables/PyTables
+URL:https://github.com/PyTables/PyTables
 Source0:
https://files.pythonhosted.org/packages/source/t/tables/tables-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM fix_numpy_recarray.patch -- Fix recarray issues with 
numpy 1.14 -- https://github.com/PyTables/PyTables/pull/664
-Patch0: fix_numpy_recarray.patch
+Patch0: Never-use-the-msse2-flag-explicitly.patch
+# PATCH-FIX-UPSTREAM initRecArray_tuples.patch -- 
https://github.com/PyTables/PyTables/pull/689
+Patch1: initRecArray_tuples.patch
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module numexpr >= 2.5.2}
+BuildRequires:  %{python_module numpy-devel >= 1.8.1}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six >= 1.9.0}
+BuildRequires:  blosc-devel >= 1.4.1
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  blosc-devel >= 1.4.1
 BuildRequires:  hdf5-devel >= 1.8.4
 BuildRequires:  libbz2-devel
 BuildRequires:  lzo-devel
 BuildRequires:  python-rpm-macros
-BuildRequires:  %{python_module devel}
-BuildRequires:  %{python_module devel}
-BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module Cython >= 0.21}
-BuildRequires:  %{python_module numexpr >= 2.5.2}
-BuildRequires:  %{python_module numpy-devel >= 1.8.1}
-BuildRequires:  %{python_module six >= 1.9.0}
-%if %{with tests}
-# Python 3 version needs mock too for some reason
-BuildRequires:  %{python_module mock}
-%endif
+BuildRequires:  python2-unittest2
+BuildRequires:  python3-Sphinx >= 1.1
+BuildRequires:  python3-sphinx_rtd_theme
+BuildRequires:  python3-numpydoc
+BuildRequires:  python3-jupyter_ipython
 Requires:   python-numexpr >= 2.5.2
 Requires:   python-numpy >= 1.8.1
 Requires:   python-six >= 1.9.0
 Recommends: bzip2
 Recommends: lzo
-BuildRoot:  %{_tmppath}/%{nam

commit gtksourceview4 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package gtksourceview4 for openSUSE:Factory 
checked in at 2018-05-08 13:37:51

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


Package is "gtksourceview4"

Tue May  8 13:37:51 2018 rev:10 rq:605076 version:4.0.1

Changes:

--- /work/SRC/openSUSE:Factory/gtksourceview4/gtksourceview4.changes
2018-03-14 19:38:49.713648168 +0100
+++ /work/SRC/openSUSE:Factory/.gtksourceview4.new/gtksourceview4.changes   
2018-05-08 13:38:00.916090727 +0200
@@ -1,0 +2,8 @@
+Sat May  5 18:13:23 UTC 2018 - bjorn@gmail.com
+
+- Update to version 4.0.1:
+  + New syntax highlighting definition file for: TOML.
+  + Improvements to the syntax highlighting of: CSS and XML.
+  + Updated translations.
+
+---

Old:

  gtksourceview-4.0.0.tar.xz

New:

  gtksourceview-4.0.1.tar.xz



Other differences:
--
++ gtksourceview4.spec ++
--- /var/tmp/diff_new_pack.n9CxQn/_old  2018-05-08 13:38:01.472070659 +0200
+++ /var/tmp/diff_new_pack.n9CxQn/_new  2018-05-08 13:38:01.472070659 +0200
@@ -18,7 +18,7 @@
 
 %define _name   gtksourceview
 Name:   gtksourceview4
-Version:4.0.0
+Version:4.0.1
 Release:0
 Summary:GTK+ Source Editing Widget
 License:LGPL-2.1-or-later

++ gtksourceview-4.0.0.tar.xz -> gtksourceview-4.0.1.tar.xz ++
 4964 lines of diff (skipped)




commit gtksourceview18 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package gtksourceview18 for openSUSE:Factory 
checked in at 2018-05-08 13:37:48

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


Package is "gtksourceview18"

Tue May  8 13:37:48 2018 rev:21 rq:605075 version:1.8.5

Changes:

--- /work/SRC/openSUSE:Factory/gtksourceview18/gtksourceview18.changes  
2018-03-09 10:41:22.949944470 +0100
+++ /work/SRC/openSUSE:Factory/.gtksourceview18.new/gtksourceview18.changes 
2018-05-08 13:37:59.324148185 +0200
@@ -1,0 +2,8 @@
+Fri May  4 18:04:50 UTC 2018 - bjorn@gmail.com
+
+- Drop libgnomeprint-devel BuildRequires and Requires, minimize
+  dependencies.
+- Following the above, add mandatory pkgconfig(libxml-2.0)
+  BuildRequires, previously pulled in by libgnomeprint-devel.
+
+---



Other differences:
--
++ gtksourceview18.spec ++
--- /var/tmp/diff_new_pack.0UXM0v/_old  2018-05-08 13:37:59.952125520 +0200
+++ /var/tmp/diff_new_pack.0UXM0v/_new  2018-05-08 13:37:59.956125375 +0200
@@ -33,7 +33,7 @@
 BuildRequires:  gtk-doc
 BuildRequires:  gtk2-devel
 BuildRequires:  intltool
-BuildRequires:  libgnomeprint-devel
+BuildRequires:  pkgconfig(libxml-2.0) >= 2.5.0
 
 %description
 GtkSourceView is a text widget that extends the standard GTK+ 2.x text
@@ -47,7 +47,6 @@
 Group:  System/GUI/GNOME
 Requires:   %{name} = %{version}
 Requires:   gtk2-devel
-Requires:   libgnomeprint-devel
 Requires:   libxml2-devel
 
 %description devel




commit transfig for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package transfig for openSUSE:Factory 
checked in at 2018-05-08 13:37:55

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


Package is "transfig"

Tue May  8 13:37:55 2018 rev:38 rq:605087 version:3.2.7a

Changes:

--- /work/SRC/openSUSE:Factory/transfig/transfig.changes2018-03-04 
12:51:30.177998186 +0100
+++ /work/SRC/openSUSE:Factory/.transfig.new/transfig.changes   2018-05-08 
13:38:04.587958196 +0200
@@ -1,0 +2,56 @@
+Mon May  7 10:28:07 UTC 2018 - wer...@suse.de
+
+- Update to fig2dev version 3.2.7a (Patchlevel 7a (April 2018))
+  o  Language previous option current option
+
+ cgm  -b dummy-a
+ epic -A scale-d scale
+ eepic-A scale-d scale
+ eepicemu -A scale-d scale
+ gbx  -i on|off   -v
+ ibmgl-m mag,xoff,yoff-m mag -x xoff -y yoff
+ mp   -I file -d file
+ ps   -S dummy-o
+  o Print language-specific help text by using fig2dev -L lang -h.
+  o Add option -M, multipage, for MetaPost output language.
+  o Add option -P, pagemode, and -z to choose a pagesize for pdf output.
+  o Add option -W (scaling of figures not possible) for tikz.
+  o Add option -b, border width, for LaTeX output language.
+  o Add option -f for pstex_t and pdftex_t output language.
+  o Add uk_UA and ru_RU encodings for PostScript output. Ticket #12.
+  o Fix regression whereupon flipped ellipses were not read. Ticket #23.
+  o Distribute i18n files ru_RU.CP1251.ps and uk_UA.KOI8-U.ps.
+  o Make test "survive debian bug #890016" succeed on 32 bit systems.
+  o Distribute the X bitmaps files within fig2dev, no need to install
+these files. The files were needed for Tk and Perl/Tk output.
+  o Add option -w, wrap (create stand-alone perl file) for Perl/Tk output.
+  o Update help text: Output help for dxf and textyl output language,
+add description of -g option for Tk/Tcl and Perl/Tk output, allow -f
+option for pstex_t and pdftex_t output language.
+  o Sanitize input. Do not segfault on malformed input files. Fixes debian
+bugs 881143, 881144, 881396, 890015, 890016, 882021 and also 882022.
+  o Do not put an %%Orientation: comment into PostScript output. Some
+viewers would rotate the resulting file, others not.
+  o Fix build on NetBSD, which has a _setmode() function different from
+_setmode() on Windows. Ticket #17. Also, avoid alloca(). Ticket #16.
+  o tikz output: Omit the semicolon after \pgftext[..]{...};.
+  o Define PostScript patterns with larger tiles, may render better. #13
+  o Fix build in case libXpm is missing. Ticket #15.
+  o Use netpbm programs instead of ghostscript, to produce smaller files.
+  o Correctly embed eps files with binary preview (epsi, typically
+found on Microsoft systems). Also, allow to embed ps-files. Fixes
+debian bug 248807, ticket #8.
+  o For compilation, do not depend on PATH_MAX being defined.
+- Remove patches now upstream
+fig2dev-3.2.6-genps_oldpatterns.patch
+fig2dev-3.2.6a-input-sanitizing.patch
+fig2dev-3.2.6a-style-overflow.patch
+- Modify patches
+fig2dev-3.2.6-fig2mpdf-doc.patch
+fig2dev-3.2.6-fig2mpdf.patch
+fig2dev-3.2.6a-RGBFILE.patch
+transfig-3.2.6.dif
+transfig-fix-afl.patch
+transfig.3.2.5d-mediaboxrealnb.dif
+
+---

Old:

  fig2dev-3.2.6-genps_oldpatterns.patch
  fig2dev-3.2.6a-input-sanitizing.patch
  fig2dev-3.2.6a-style-overflow.patch
  fig2dev-3.2.6a.tar.xz

New:

  fig2dev-3.2.7a.tar.xz



Other differences:
--
++ transfig.spec ++
--- /var/tmp/diff_new_pack.9aS3AW/_old  2018-05-08 13:38:05.483925858 +0200
+++ /var/tmp/diff_new_pack.9aS3AW/_new  2018-05-08 13:38:05.487925713 +0200
@@ -45,7 +45,7 @@
 Requires:   ghostscript-library
 Requires:   netpbm
 Requires:   texlive-epstopdf
-Version:3.2.6a
+Version:3.2.7a
 Release:0
 Summary:Graphic Converter
 #Source:
http://sourceforge.net/projects/mcj/files/fig2dev-%{version}.tar.xz/download#/fig2dev-%{version}.tar.xz
@@ -56,13 +56,10 @@
 Patch2: transfig.3.2.5-binderman.dif
 Patch3: transfig.3.2.5d-mediaboxrealnb.dif
 Patch4: transfig-fix-afl.patch
-Patch42:fig2dev-3.2.6-genps_oldpatterns.patch
 Patch43:fig2dev-3.2.6-fig2mpdf.patch
 Patch44:fig2dev-3.2.6-fig2mpdf-doc.patch
 Patch45:fig2dev-3.2.6a-R

commit kubernetes-salt for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package kubernetes-salt for openSUSE:Factory 
checked in at 2018-05-08 13:37:46

Comparing /work/SRC/openSUSE:Factory/kubernetes-salt (Old)
 and  /work/SRC/openSUSE:Factory/.kubernetes-salt.new (New)


Package is "kubernetes-salt"

Tue May  8 13:37:46 2018 rev:17 rq:605055 version:3.0.0+git_r752_f9c2358

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes-salt/kubernetes-salt.changes  
2018-05-04 11:30:54.696658103 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes-salt.new/kubernetes-salt.changes 
2018-05-08 13:37:58.368182689 +0200
@@ -1,0 +2,11 @@
+Mon May  7 09:18:12 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 8388498 by Alvaro Saurin alvaro.sau...@gmail.com
+ Try to resist existent data in the mine
+ 
+ https://bugzilla.suse.com/show_bug.cgi?id=1091361
+ 
+ bsc#1091361
+
+
+---



Other differences:
--
++ kubernetes-salt.spec ++
--- /var/tmp/diff_new_pack.pfDTZO/_old  2018-05-08 13:37:59.084156847 +0200
+++ /var/tmp/diff_new_pack.pfDTZO/_new  2018-05-08 13:37:59.088156703 +0200
@@ -32,7 +32,7 @@
 
 Name:   kubernetes-salt
 %define gitrepo salt
-Version:3.0.0+git_r750_8f19e53
+Version:3.0.0+git_r752_f9c2358
 Release:0
 BuildArch:  noarch
 Summary:Production-Grade Container Scheduling and Management

++ master.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/salt-master/pillar/params.sls 
new/salt-master/pillar/params.sls
--- old/salt-master/pillar/params.sls   2018-05-03 12:03:26.0 +0200
+++ new/salt-master/pillar/params.sls   2018-05-07 11:18:58.0 +0200
@@ -28,6 +28,10 @@
 internal_infra_domain: 'infra.caasp.local'
 ldap_internal_infra_domain: 'dc=infra,dc=caasp,dc=local'
 
+hw:
+  # fallback value when we cannot detect the default interface
+  netiface: 'eth0'
+
 api:
   # the API service IP (must be inside the 'services_cidr')
   cluster_ip: '172.24.0.1'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/salt-master/salt/_modules/caasp_net.py 
new/salt-master/salt/_modules/caasp_net.py
--- old/salt-master/salt/_modules/caasp_net.py  2018-05-03 12:03:26.0 
+0200
+++ new/salt-master/salt/_modules/caasp_net.py  2018-05-07 11:18:58.0 
+0200
@@ -6,6 +6,13 @@
 from __future__ import absolute_import
 
 
+# note: do not import caasp modules other than caasp_log
+from caasp_log import error
+
+
+DEFAULT_INTERFACE = 'eth0'
+
+
 def __virtual__():
 return "caasp_net"
 
@@ -15,15 +22,19 @@
 given an 'iface' (and an optional 'host' and list of 'ifaces'),
 return the IP address associated with 'iface'
 '''
-if not ifaces:
-if not host or host == get_nodename():
-ifaces = __salt__['network.interfaces']()
-else:
-ifaces = __salt__['caasp_grains.get'](host, 'network.interfaces', 
type='glob')
-
-iface = ifaces.get(iface)
-ipv4addr = iface.get('inet', [{}])
-return ipv4addr[0].get('address')
+try:
+if not ifaces:
+if not host or host == get_nodename():
+ifaces = __salt__['network.interfaces']()
+else:
+ifaces = __salt__['caasp_grains.get'](host, 
'network.interfaces', type='glob')
+
+iface = ifaces.get(iface)
+ipv4addr = iface.get('inet', [{}])
+return ipv4addr[0].get('address')
+except Exception as e:
+error('could not get IP for interface %s: %s', iface, e)
+return ''
 
 
 def get_primary_iface(host=None):
@@ -31,12 +42,16 @@
 (given some optional 'host')
 return the name of the primary iface (the iface associated with the 
default route)
 '''
-if not host or host == get_nodename():
-default_route_lst = __salt__['network.default_route']()
-return default_route_lst[0]['interface']
-else:
-all_routes = __salt__['caasp_grains.get'](host, 
'network.default_route', type='glob')
-return all_routes[host][0]['interface']
+try:
+if not host or host == get_nodename():
+default_route_lst = __salt__['network.default_route']()
+return default_route_lst[0]['interface']
+else:
+all_routes = __salt__['caasp_grains.get'](host, 
'network.default_route', type='glob')
+return all_routes[host][0]['interface']
+except Exception as e:
+error('could not get the primary interface: %s', e)
+return __salt__['caasp_pillar.get']('hw:netiface', DEFAULT_INTERFACE)
 
 
 def get_primary_ip(host=None, ifaces=None):
@@ -52,9 +67,13 @@
 given a compound expression 'compound',

commit seccheck for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package seccheck for openSUSE:Factory 
checked in at 2018-05-08 13:37:33

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


Package is "seccheck"

Tue May  8 13:37:33 2018 rev:35 rq:604706 version:3.0

Changes:

--- /work/SRC/openSUSE:Factory/seccheck/seccheck.changes2017-11-27 
22:15:55.616044858 +0100
+++ /work/SRC/openSUSE:Factory/.seccheck.new/seccheck.changes   2018-05-08 
13:37:41.816780080 +0200
@@ -1,0 +2,7 @@
+Mon May  7 06:38:36 UTC 2018 - vpere...@microfocus.com
+
+- fixes proposed by the bsc#1084449:
+  + introduction of SECCHK_FROM
+  + deletion of empty file 
+
+---



Other differences:
--
++ seccheck.spec ++
--- /var/tmp/diff_new_pack.0NgHQy/_old  2018-05-08 13:37:42.480756115 +0200
+++ /var/tmp/diff_new_pack.0NgHQy/_new  2018-05-08 13:37:42.484755971 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package seccheck
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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

++ master.zip ++
Binary files /var/tmp/diff_new_pack.0NgHQy/_old and 
/var/tmp/diff_new_pack.0NgHQy/_new differ




commit php-composer for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package php-composer for openSUSE:Factory 
checked in at 2018-05-08 13:37:28

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


Package is "php-composer"

Tue May  8 13:37:28 2018 rev:11 rq:604701 version:1.6.5

Changes:

--- /work/SRC/openSUSE:Factory/php-composer/php-composer.changes
2018-03-28 10:33:07.857270258 +0200
+++ /work/SRC/openSUSE:Factory/.php-composer.new/php-composer.changes   
2018-05-08 13:37:37.512935417 +0200
@@ -1,0 +2,36 @@
+Sun May  6 12:43:00 UTC 2018 - guoyunhebr...@gmail.com
+
+- Remove _service:download_url:composer.phar
+
+---
+Sat May  5 17:05:31 UTC 2018 - guoyunhebr...@gmail.com
+
+- Version 1.6.5
+  * Fixed regression in 1.6.4 causing strange update behaviors with dev 
packages
+  * Fixed regression in 1.6.4 color support detection for Windows
+  * Fixed issues dealing with broken symlinks when switching branches and using
+path repositories
+  * Fixed JSON schema for package repositories
+  * Fixed issues on computers set to Turkish locale
+  * Fixed classmap parsing of files using short-open-tags when they are 
disabled
+in php
+- Drop download_url service because it is not accepted by Factory
+
+---
+Sat Apr 14 07:59:34 UTC 2018 - guoyunhebr...@gmail.com
+
+- Use download_url service
+- Version 1.6.4
+  * Security fixes in some edge case scenarios, recommended update for all 
users
+  * Fixed regression in version guessing of path repositories
+  * Fixed removing aliased packages from the repository, which might resolve 
some odd update bugs
+  * Fixed updating of package URLs for GitLab
+  * Fixed run-script --list failing when script handlers were defined
+  * Fixed init command not respecting the current php version when selecting 
package versions
+  * Fixed handling of uppercase package names in why/why-not commands
+  * Fixed exclude-from-classmap symlink handling
+  * Fixed filesystem permissions of PEAR binaries
+  * Improved performance of subversion repos
+  * Other minor fixes
+
+---



Other differences:
--
++ php-composer.spec ++
--- /var/tmp/diff_new_pack.XtPens/_old  2018-05-08 13:37:38.344905390 +0200
+++ /var/tmp/diff_new_pack.XtPens/_new  2018-05-08 13:37:38.348905245 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   php-composer
-Version:1.6.3
+Version:1.6.5
 Release:0
 Summary:Dependency Management for PHP
 License:MIT

++ composer.phar ++
Binary files /var/tmp/diff_new_pack.XtPens/_old and 
/var/tmp/diff_new_pack.XtPens/_new differ




commit xfig for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package xfig for openSUSE:Factory checked in 
at 2018-05-08 13:37:58

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


Package is "xfig"

Tue May  8 13:37:58 2018 rev:47 rq:605088 version:3.2.7a

Changes:

--- /work/SRC/openSUSE:Factory/xfig/xfig.changes2018-03-02 
21:12:12.803850668 +0100
+++ /work/SRC/openSUSE:Factory/.xfig.new/xfig.changes   2018-05-08 
13:38:08.739808341 +0200
@@ -1,0 +2,31 @@
+Mon May  7 07:47:46 UTC 2018 - wer...@suse.de
+
+- Update to xfig 3.2.7 Patchlevel 7a (May 2017)
+  o Export to pdf now allows to choose between output to a full-page pdf,
+or cropping to the bounding box (the default behavior).
+  o Enable horizontal scrolling with mouse buttons 6 and 7 (sideway push
+of mouse wheel, or horizontal movement on touchpad).
+  o Rename the text flag "Special Flag" to "TeX Flag".
+  o Interpolated splines are now created with the recommended value of the
+shape factor of -0.5, not with -1.0. A description of the shape factor
+  o Really fix ticket #9, debian bug #270113. When entering the "Open.."
+dialog, moving to a new directory, pressing Cancel, a subsequent
+"Save" placed the figure file into the new directory.
+  o Center canvas around cursor when zooming by pressing CTRL and using a
+wheel-mouse.
+  o Apply xfig-3.2.6a-fallback-for-nonscalable-fonts.patch and
+xfig-3.2.6a-scalable-fonts.patch from Hans de Goede.
+  o Apply debian patches 08_every_time.patch, 10_RELEASE_DATE.patch,
+11_declare_swap_colors.patch, from Roland Rosenfeld.
+  o Apply debian patch 07_colorsliderarrows.patch. Debian bug #870365.
+  o Change map of India to disputed boundaries, from
+https://en.wikipedia.org/wiki/File:India_disputed_areas_map.svg,
+retrieved 2018-02-25. Debian bug #270799, 09_india_disputed.patch
+  o Prevent integer overflow in {floor,ceil}_coords_{x,y}(). Fixes debian
+bug #300436. Also prevent integer overflow in round_coords().
+  o Completely remove alloca.h and alloca() from the code.
+  o When entering the "Save as..." dialog, moving to a new directory and
+pressing "Cancel", a subsequent "Save" wrote to the new directory.
+This happened analogously for the "Export" dialog. Fixed, ticket #9.
+
+---

Old:

  xfig-3.2.6a.tar.xz

New:

  xfig-3.2.7a.tar.xz



Other differences:
--
++ xfig.spec ++
--- /var/tmp/diff_new_pack.S8jWyE/_old  2018-05-08 13:38:09.559778745 +0200
+++ /var/tmp/diff_new_pack.S8jWyE/_new  2018-05-08 13:38:09.559778745 +0200
@@ -42,7 +42,7 @@
 Requires:   transfig
 Requires:   xorg-x11-fonts
 Requires:   xorg-x11-fonts-core
-Version:3.2.6a
+Version:3.2.7a
 Release:0
 Summary:Facility for Interactive Generation of Figures under the X 
Window System
 #  www.xfig.org is dead
@@ -51,10 +51,11 @@
 Url:http://mcj.sourceforge.net/
 #
 # Remove forbidden files: aircraft.fig
-#  xfig.3.2.5c.tar
-# tar -f xfig.3.2.5c.tar --delete xfig.3.2.5c/Libraries/Examples/aircraft.fig
-#  xfig.3.2.5c.tar
+#  xfig-3.2.5c.tar
+# tar -f xfig-3.2.5c.tar --delete xfig-3.2.5c/Libraries/Examples/aircraft.fig
+#  xfig-3.2.5c.tar
 #
+#Source:
http://sourceforge.net/projects/mcj/files/xfig-%{version}.tar.xz/download#/xfig-%{version}.tar.xz
 Source: xfig-%{version}.tar.xz
 Source1:font-test.fig
 Source3:xfig.sh

++ xfig-3.2.6a.tar.xz -> xfig-3.2.7a.tar.xz ++
 16836 lines of diff (skipped)

++ xfig.3.2.5-urw-fonts.dif ++
--- /var/tmp/diff_new_pack.S8jWyE/_old  2018-05-08 13:38:11.483709303 +0200
+++ /var/tmp/diff_new_pack.S8jWyE/_new  2018-05-08 13:38:11.483709303 +0200
@@ -5,7 +5,7 @@
  3 files changed, 59 insertions(+), 1 deletion(-)
 
 --- src/u_fonts.c
-+++ src/u_fonts.c  2017-02-02 13:38:18.519009382 +
 src/u_fonts.c  2018-05-07 07:26:22.753355835 +
 @@ -21,7 +21,9 @@
  
  /* X11 font names */
@@ -63,7 +63,7 @@
   * These come with the Open Group X distribution so they should be a common 
set.
   *
 --- src/u_fonts.h
-+++ src/u_fonts.h  2017-02-02 13:38:18.519009382 +
 src/u_fonts.h  2018-05-07 07:26:22.757355761 +
 @@ -60,6 +60,8 @@ extern int   psfontnum(char *font);
  extern intlatexfontnum(char *font);
  
@@ -74,8 +74,8 @@
  extern struct _fstructlatex_fontinfo[];
  
 --- src/w_drawprim.c
-+++ src/w_drawprim.c   2017-02-02 13:38:18.519009382 +
-@@ -118,6 +118,22 @@ void init_font(void)
 src/w_drawprim.c   2018-05-07 07:26:22.757355761 +
+@@ -120,6 +120,22 @@ void init_font(void)
appres.buttonFont, appres.no

commit supertuxkart for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package supertuxkart for openSUSE:Factory 
checked in at 2018-05-08 13:38:01

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


Package is "supertuxkart"

Tue May  8 13:38:01 2018 rev:16 rq:605094 version:0.9.3

Changes:

--- /work/SRC/openSUSE:Factory/supertuxkart/supertuxkart.changes
2017-11-21 15:37:07.838864002 +0100
+++ /work/SRC/openSUSE:Factory/.supertuxkart.new/supertuxkart.changes   
2018-05-08 13:38:11.611704683 +0200
@@ -1,0 +2,7 @@
+Mon May  7 11:28:46 UTC 2018 - dims...@opensuse.org
+
+- Disable post/postun scriptlets on suse_version >= 1500: the
+  functionality of desktop_database_post/postun and
+  icon_theme_cache has been migrated to file triggers.
+
+---



Other differences:
--
++ supertuxkart.spec ++
--- /var/tmp/diff_new_pack.KDpmdV/_old  2018-05-08 13:38:18.099470515 +0200
+++ /var/tmp/diff_new_pack.KDpmdV/_new  2018-05-08 13:38:18.103470370 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package supertuxkart
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,14 +20,13 @@
 Version:0.9.3
 Release:0
 Summary:A 3D kart racing game
-License:GPL-2.0+ and GPL-3.0+ and CC-BY-SA-3.0
+License:GPL-2.0-or-later AND GPL-3.0-or-later AND CC-BY-SA-3.0
 Group:  Amusements/Games/3D/Race
-Url:http://supertuxkart.sourceforge.net/
+URL:http://supertuxkart.sourceforge.net/
 Source: 
http://sourceforge.net/projects/supertuxkart/files/SuperTuxKart/0.9.3/%{name}-%{version}-src.tar.xz
 # Geeko kart add-on (CC-BY 3.0)
 Source1:http://stkaddons.net/dl/14e6ba25b17f0d.zip
 Source9:supertuxkart.6
-
 BuildRequires:  cmake >= 3
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -47,11 +46,9 @@
 BuildRequires:  pkgconfig(openal)
 BuildRequires:  pkgconfig(vorbis)
 BuildRequires:  pkgconfig(xrandr)
+Requires:   %{name}-data = %{version}
 Requires(post): hicolor-icon-theme
-Requires(post): update-desktop-files
 Requires(postun): hicolor-icon-theme
-Requires(postun): update-desktop-files
-Requires:   %{name}-data = %{version}
 ExclusiveArch:  %{ix86} x86_64
 
 %description
@@ -104,6 +101,7 @@
 mkdir -p %{buildroot}%{_mandir}/man6
 cp %{SOURCE9} %{buildroot}%{_mandir}/man6
 
+%if 0%{?suse_version} < 1500
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -111,10 +109,12 @@
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
+%endif
 
 %files
 %defattr(-,root,root)
-%doc COPYING README.md CHANGELOG.md
+%license COPYING
+%doc README.md CHANGELOG.md
 %{_bindir}/supertuxkart
 %{_mandir}/man?/%{name}.?.*
 %dir %{_datadir}/appdata





commit openafs for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package openafs for openSUSE:Factory checked 
in at 2018-05-08 13:37:24

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


Package is "openafs"

Tue May  8 13:37:24 2018 rev:4 rq:604661 version:1.8.0

Changes:

--- /work/SRC/openSUSE:Factory/openafs/openafs.changes  2018-04-22 
14:39:58.760230170 +0200
+++ /work/SRC/openSUSE:Factory/.openafs.new/openafs.changes 2018-05-08 
13:37:33.909065490 +0200
@@ -1,0 +2,10 @@
+Fri May  4 07:29:15 UTC 2018 - guillaume.gar...@opensuse.org
+
+- Update to 1.8.0
+- Fix AArch64 build by updating spec and backporting patches:
+  * add_support_fo_arm64_linux26.patch
+  * dont_require_AFS_SYSCALL.patch
+  * add_AFS_STRINGIZE_macro.patch
+  * avoid_double_param_in_arm64_kernel.patch
+
+---

Old:

  RELNOTES-1.8.0~pre5
  openafs-1.8.0~pre5-doc.tar.bz2
  openafs-1.8.0~pre5-doc.tar.bz2.md5
  openafs-1.8.0~pre5-doc.tar.bz2.sha256
  openafs-1.8.0~pre5-src.tar.bz2
  openafs-1.8.0~pre5-src.tar.bz2.md5
  openafs-1.8.0~pre5-src.tar.bz2.sha256

New:

  RELNOTES-1.8.0
  add_AFS_STRINGIZE_macro.patch
  add_support_fo_arm64_linux26.patch
  avoid_double_param_in_arm64_kernel.patch
  dont_require_AFS_SYSCALL.patch
  openafs-1.8.0-doc.tar.bz2
  openafs-1.8.0-doc.tar.bz2.md5
  openafs-1.8.0-doc.tar.bz2.sha256
  openafs-1.8.0-src.tar.bz2
  openafs-1.8.0-src.tar.bz2.md5
  openafs-1.8.0-src.tar.bz2.sha256



Other differences:
--
++ openafs.spec ++
--- /var/tmp/diff_new_pack.RwBoQ4/_old  2018-05-08 13:37:35.317014673 +0200
+++ /var/tmp/diff_new_pack.RwBoQ4/_new  2018-05-08 13:37:35.321014530 +0200
@@ -56,11 +56,11 @@
 
 # used for %setup only
 # leave upstream tar-balls untouched for integrity checks.
-%define upstream_version 1.8.0pre5
+%define upstream_version 1.8.0
 
 Name:   openafs
 
-Version:1.8.0~pre5
+Version:1.8.0
 Release:0
 Summary:OpenAFS Distributed File System
 License:IPL-1.0
@@ -92,7 +92,15 @@
 Source57:   openafs.ThisCell
 Source58:   openafs.cacheinfo
 Source99:   openafs.changes
-Patch3: openafs-1.8.x.ncurses6.patch
+# PATCH-FIX-UPSTREAM backport upstream patch
+Patch0: add_support_fo_arm64_linux26.patch
+# PATCH-FIX-UPSTREAM backport upstream patch
+Patch1: dont_require_AFS_SYSCALL.patch
+# PATCH-FIX-UPSTREAM backport upstream patch
+Patch2: add_AFS_STRINGIZE_macro.patch
+# PATCH-FIX-UPSTREAM backport upstream patch
+Patch3: avoid_double_param_in_arm64_kernel.patch
+Patch4: openafs-1.8.x.ncurses6.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 #
@@ -302,9 +310,13 @@
 done
 
 %setup -q -n openafs-%{upstream_version} -T -b 0 -b 1
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %if %{run_regen}
-%patch3 -p1
+%patch4 -p1
  ./regen.sh
 %endif
 
@@ -319,9 +331,12 @@
 sysbase=ppc64
 export LDFLAGS="$LDFLAGS -m64"
 %endif
-%ifarch armv7l
+%ifarch %{arm}
 sysbase=arm
 %endif
+%ifarch aarch64
+sysbase=arm64
+%endif
 %ifarch s390x
 sysbase=s390
 %endif

++ ChangeLog ++
 93810 lines (skipped)
 between /work/SRC/openSUSE:Factory/openafs/ChangeLog
 and /work/SRC/openSUSE:Factory/.openafs.new/ChangeLog

++ RELNOTES-1.8.0~pre5 -> RELNOTES-1.8.0 ++
--- /work/SRC/openSUSE:Factory/openafs/RELNOTES-1.8.0~pre5  2018-03-31 
15:36:52.857702807 +0200
+++ /work/SRC/openSUSE:Factory/.openafs.new/RELNOTES-1.8.0  2018-05-08 
13:37:33.241089599 +0200
@@ -1,466 +1,27 @@
-   User-Visible OpenAFS Changes
-
-OpenAFS 1.8.0pre5
-
-  All Platforms
-
-* Substantial code quality improvements, largely spotted by Coverity and
-  clang's static analysis.
-  - Add new library for platform independent functions (opr).
-  - Remove arbitrary path name length limits.
-  - Convert to Heimdal's roken library for reliability.
-  - Avoid garbage in allocated buffers (calloc).
-  - Modernize signal handling in pthreaded server processes (softsig).
-  - Improve code comments and additional Doxygen style comments.
-  - Reduce compiler warnings, dead code, unused variables, and
-undefined behavior.
-  - Fix bugs found by static code analyzer (clang-analyzer).
-  - Improved unit test coverage.
-  - Make VLDB flag definitions consistent.
-  - Improve use of run-time assertions and add static assertions.
-  - Add compiler attributes to assist static analyzers.
-  - Clean up include headers in the entire tree.
-  - Improve command-line handling library (libcmd).
-  - Replace hash functions with Jenkin's hash function for faster
-and more even

commit qxmledit for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package qxmledit for openSUSE:Factory 
checked in at 2018-05-08 13:37:39

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


Package is "qxmledit"

Tue May  8 13:37:39 2018 rev:14 rq:604727 version:0.9.10

Changes:

--- /work/SRC/openSUSE:Factory/qxmledit/qxmledit.changes2018-01-10 
23:38:02.367939909 +0100
+++ /work/SRC/openSUSE:Factory/.qxmledit.new/qxmledit.changes   2018-05-08 
13:37:54.780312187 +0200
@@ -1,0 +2,10 @@
+Sun May  6 21:10:12 UTC 2018 - lazy.k...@opensuse.org
+
+- Update to 0.9.10.
+  * New tool button to configure view settings in the editor.
+  * New menu item to disable a branch using XSL syntax.
+  * New options for simple access.
+  * New specialized XML Schema (XSD) validation dialog.
+  * Improved xsd diagram display performance.
+
+---

Old:

  qxmledit-0.9.9.2.tar.gz

New:

  qxmledit-0.9.10.tar.gz



Other differences:
--
++ qxmledit.spec ++
--- /var/tmp/diff_new_pack.IcbFTe/_old  2018-05-08 13:37:55.672279993 +0200
+++ /var/tmp/diff_new_pack.IcbFTe/_new  2018-05-08 13:37:55.676279849 +0200
@@ -17,20 +17,20 @@
 
 
 %define major   0
-%define _version 0.9.9.2
-
+%define _version 0.9.10
 Name:   qxmledit
-Version:0.9.9.2
+Version:0.9.10
 Release:0
 Summary:XML Editor and XSD Viewer
-License:LGPL-2.0+ AND LGPL-3.0+
+License:LGPL-2.0-or-later AND LGPL-3.0-or-later
 Group:  Productivity/Publishing/XML
-Url:http://qxmledit.org/
+URL:http://qxmledit.org/
 Source: 
https://github.com/lbellonda/qxmledit/archive/%{_version}.tar.gz#/%{name}-%{_version}.tar.gz
 Source99:   baselibs.conf
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(glu)
 %if 0%{?suse_version} > 1325
 BuildRequires:  pkgconfig(Qt5Concurrent)
 BuildRequires:  pkgconfig(Qt5Core)
@@ -52,7 +52,6 @@
 BuildRequires:  pkgconfig(QtXml)
 BuildRequires:  pkgconfig(QtXmlPatterns)
 %endif
-BuildRequires:  pkgconfig(glu)
 
 %description
 QXmlEdit is a XML editor written in Qt. Its main features are
@@ -153,6 +152,7 @@
 
 %suse_update_desktop_file QXmlEdit TextEditor Development Documentation Qt
 
+%if 0%{?suse_version} && 0%{?suse_version} < 1330
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -160,13 +160,14 @@
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
+%endif
 
 %post -n libqxmledit%{major} -p /sbin/ldconfig
 %postun -n libqxmledit%{major} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS COPYING GPLV3.txt LGPLV3.txt NEWS README ROADMAP TODO
+%license COPYING GPLV3.txt LGPLV3.txt
+%doc AUTHORS NEWS README ROADMAP TODO
 %doc doc/QXmlEdit_manual.pdf
 %{_bindir}/%{name}
 %{_datadir}/%{name}/
@@ -179,12 +180,11 @@
 %{_mandir}/man?/*
 
 %files -n libqxmledit%{major}
-%defattr(-,root,root,-)
 %{_libdir}/libQXmlEdit*.so.*
 
 %files devel
-%defattr(-,root,root,-)
-%doc AUTHORS COPYING GPLV3.txt LGPLV3.txt NEWS README ROADMAP TODO
+%license COPYING GPLV3.txt LGPLV3.txt
+%doc AUTHORS NEWS README ROADMAP TODO
 %{_includedir}/%{name}/
 %{_libdir}/libQXmlEdit*.so
 

++ qxmledit-0.9.9.2.tar.gz -> qxmledit-0.9.10.tar.gz ++
/work/SRC/openSUSE:Factory/qxmledit/qxmledit-0.9.9.2.tar.gz 
/work/SRC/openSUSE:Factory/.qxmledit.new/qxmledit-0.9.10.tar.gz differ: char 
12, line 1




commit gnome-characters for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package gnome-characters for 
openSUSE:Factory checked in at 2018-05-08 13:37:53

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


Package is "gnome-characters"

Tue May  8 13:37:53 2018 rev:17 rq:605078 version:3.28.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-characters/gnome-characters.changes
2018-03-14 19:39:34.228066990 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-characters.new/gnome-characters.changes   
2018-05-08 13:38:03.048013778 +0200
@@ -1,0 +2,9 @@
+Mon May  7 07:43:32 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.28.2:
+  + libgc: Fix crasher with some GCC configurations.
+  + Updated translations.
+- Switch to meson builds system: Add meson and new dependency
+  libunistring-devel BuildRequires.
+
+---

Old:

  gnome-characters-3.28.0.tar.xz

New:

  gnome-characters-3.28.2.tar.xz



Other differences:
--
++ gnome-characters.spec ++
--- /var/tmp/diff_new_pack.s51NmA/_old  2018-05-08 13:38:03.655991834 +0200
+++ /var/tmp/diff_new_pack.s51NmA/_new  2018-05-08 13:38:03.659991690 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-characters
-Version:3.28.0
+Version:3.28.2
 Release:0
 Summary:Character Map
 License:GPL-3.0-or-later
@@ -26,6 +26,8 @@
 Source: 
http://download.gnome.org/sources/gnome-characters/3.28/%{name}-%{version}.tar.xz
 BuildRequires:  gobject-introspection-devel >= 1.35.9
 BuildRequires:  intltool >= 0.50.1
+BuildRequires:  libunistring-devel
+BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gdk-3.0)
@@ -58,14 +60,16 @@
 %setup -q
 
 %build
-%configure
-make %{?_smp_mflags}
-%suse_update_desktop_file org.gnome.Characters -r Utilities Utility Settings
+%meson \
+   -Dpangoft2=true \
+   -Dinstalled_tests=false \
+   %{nil}
+%meson_build
 
 %install
-%make_install
-find %{buildroot} -type f -name "*.la" -delete -print
+%meson_install
 %find_lang org.gnome.Characters %{name}.lang
+%suse_update_desktop_file org.gnome.Characters -r Utilities Utility Settings
 
 %files
 %license COPYING

++ gnome-characters-3.28.0.tar.xz -> gnome-characters-3.28.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-characters-3.28.0/NEWS 
new/gnome-characters-3.28.2/NEWS
--- old/gnome-characters-3.28.0/NEWS2018-03-12 12:51:13.0 +0100
+++ new/gnome-characters-3.28.2/NEWS2018-05-07 08:52:24.0 +0200
@@ -1,3 +1,14 @@
+3.28.2
+===
+
+- libgc: Fix crasher with some GCC configurations
+
+New And Updated Translations
+
+Daniel Șerbănescu (ro)
+Dz Chen (zh_CN)
+Rafael Fontenelle (pt_BR)
+
 3.28.0
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-characters-3.28.0/configure 
new/gnome-characters-3.28.2/configure
--- old/gnome-characters-3.28.0/configure   2018-03-12 12:52:08.0 
+0100
+++ new/gnome-characters-3.28.2/configure   2018-05-07 08:54:55.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for org.gnome.Characters 3.28.0.
+# Generated by GNU Autoconf 2.69 for org.gnome.Characters 3.28.2.
 #
 # Report bugs to 
.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='org.gnome.Characters'
 PACKAGE_TARNAME='gnome-characters'
-PACKAGE_VERSION='3.28.0'
-PACKAGE_STRING='org.gnome.Characters 3.28.0'
+PACKAGE_VERSION='3.28.2'
+PACKAGE_STRING='org.gnome.Characters 3.28.2'
 
PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-characters'
 PACKAGE_URL=''
 
@@ -1786,7 +1786,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures org.gnome.Characters 3.28.0 to adapt to many kinds of 
systems.
+\`configure' configures org.gnome.Characters 3.28.2 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1857,7 +1857,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of org.gnome.Characters 3.28.0:";;
+ short | recursive ) echo "Configuration of org.gnome.Characters 3.28.2:";;
esac
   cat <<\_ACEOF
 
@@ -2004,7 +2004,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-org.gnome.Charact

commit haproxy for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package haproxy for openSUSE:Factory checked 
in at 2018-05-08 13:38:45

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


Package is "haproxy"

Tue May  8 13:38:45 2018 rev:60 rq:605117 version:1.8.8

Changes:

--- /work/SRC/openSUSE:Factory/haproxy/haproxy.changes  2018-03-28 
10:30:01.491972780 +0200
+++ /work/SRC/openSUSE:Factory/.haproxy.new/haproxy.changes 2018-05-08 
13:38:45.978464236 +0200
@@ -1,0 +2,44 @@
+Mon May 07 12:57:54 UTC 2018 - kgronl...@suse.com
+
+- Update to version 1.8.8:
+  * BUG/CRITICAL: h2: fix incorrect frame length check (VUL-0) (bsc#1089837)
+  * MINOR: cli: Ensure the CLI always outputs an error when it should
+  * BUG/MINOR: cli: Guard against NULL messages when using CLI_ST_PRINT_FREE
+  * BUG/MEDIUM: kqueue: When adding new events, provide an output to get 
errors.
+  * BUG/MINOR: http: Return an error in proxy mode when url2sa fails
+  * BUG/MEDIUM: connection: Make sure we have a mux before calling detach().
+  * BUG/MEDIUM: threads: Fix the max/min calculation because of name clashes
+
+---
+Sat Apr 07 00:15:13 UTC 2018 - mrueck...@suse.de
+
+- Update to version 1.8.7:
+  * [RELEASE] Released version 1.8.7
+  * MINOR: servers: Support alphanumeric characters for the server templates 
names
+  * BUG/MAJOR: cache: always initialize newly created objects
+  * [RELEASE] Released version 1.8.6
+  * BUG/MINOR: spoe: Don't release the context buffer in .check_timeouts 
callbaclk
+  * BUG/MINOR: spoe: Initialize variables used during conf parsing before any 
check
+  * BUG/MAJOR: cache: fix random crashes caused by incorrect delete() on 
non-first blocks
+  * BUG/MINOR: fd: Don't clear the update_mask in fd_insert.
+  * BUG/MINOR: cache: fix "show cache" output
+  * BUG/MINOR: email-alert: Set the mailer port during alert initialization
+  * BUG/MINOR: checks: check the conn_stream's readiness and not the connection
+  * BUG/MEDIUM: h2: always add a stream to the send or fctl list when blocked
+  * BUILD/MINOR: threads: always export thread_sync_io_handler()
+  * BUG/MEDIUM: h2: don't consider pending data on detach if connection is in 
error
+  * BUG/MEDIUM: h2/threads: never release the task outside of the task handler
+  * MINOR: h2: fuse h2s_detach() and h2s_free() into h2s_destroy()
+  * MINOR: h2: always call h2s_detach() in h2_detach()
+  * BUG/MAJOR: h2: remove orphaned streams from the send list before closing
+  * MINOR: h2: provide and use h2s_detach() and h2s_free()
+  * CLEANUP: h2: rename misleading h2c_stream_close() to h2s_close()
+  * BUG/MINOR: hpack: fix harmless use of uninitialized value in 
hpack_dht_insert
+  * BUILD/MINOR: cli: fix a build warning introduced by last commit
+  * MINOR: cli: make "show fd" report the mux and mux_ctx pointers when 
available
+  * MINOR: cli/threads: make "show fd" report thread_sync_io_handler instead 
of "unknown"
+  * BUILD/MINOR: fix build when USE_THREAD is not defined
+  * BUG/MINOR: lua funtion hlua_socket_settimeout don't check negative values
+  * BUG/MINOR: lua: the function returns anything
+
+---

Old:

  haproxy-1.8.5.tar.gz

New:

  haproxy-1.8.8.tar.gz



Other differences:
--
++ haproxy.spec ++
--- /var/tmp/diff_new_pack.PwITkv/_old  2018-05-08 13:38:46.746436516 +0200
+++ /var/tmp/diff_new_pack.PwITkv/_new  2018-05-08 13:38:46.750436372 +0200
@@ -40,7 +40,7 @@
 %bcond_without  apparmor
 
 Name:   haproxy
-Version:1.8.5
+Version:1.8.8
 Release:0
 #
 #

++ _service ++
--- /var/tmp/diff_new_pack.PwITkv/_old  2018-05-08 13:38:46.790434928 +0200
+++ /var/tmp/diff_new_pack.PwITkv/_new  2018-05-08 13:38:46.790434928 +0200
@@ -3,8 +3,8 @@
 http://git.haproxy.org/git/haproxy-1.8.git
 git
 haproxy
-1.8.5
-v1.8.5
+1.8.8
+v1.8.8
 enable
   
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.PwITkv/_old  2018-05-08 13:38:46.814434062 +0200
+++ /var/tmp/diff_new_pack.PwITkv/_new  2018-05-08 13:38:46.818433918 +0200
@@ -5,4 +5,4 @@
 http://git.haproxy.org/git/haproxy-1.7.git
   640d526f8cdad00f7f5043b51f6a34f3f6ebb49f
 http://git.haproxy.org/git/haproxy-1.8.git
-  9a083d1428b655c0079b4355d764cc08d66757f2
\ No newline at end of file
+  cd117685f0cff4f2f5577ef6a21eaae96ebd9f28
\ No newline at end of file

++ haproxy-1.8.5.tar.gz -> haproxy-1.8.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/haproxy-1.8.5/CHANGELOG new/haproxy-1.8.8/CH

commit python-SQLAlchemy-Utils for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-SQLAlchemy-Utils for 
openSUSE:Factory checked in at 2018-05-08 13:38:48

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


Package is "python-SQLAlchemy-Utils"

Tue May  8 13:38:48 2018 rev:10 rq:605121 version:0.33.3

Changes:

--- 
/work/SRC/openSUSE:Factory/python-SQLAlchemy-Utils/python-SQLAlchemy-Utils.changes
  2018-03-26 13:13:19.539208875 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-SQLAlchemy-Utils.new/python-SQLAlchemy-Utils.changes
 2018-05-08 13:38:49.854324337 +0200
@@ -1,0 +2,13 @@
+Sun May  6 05:44:06 UTC 2018 - a...@gmx.de
+
+- update to version 0.33.3:
+  * Added new AesGcmEngine (#322, pull request courtesy of
+manishahluwalia)
+
+- changes from version 0.33.2:
+  * Added support for universal wheels (#312, pull request courtesy of
+nsoranzo)
+  * Fixed usage of template0 and template1 with postgres database
+functions. (#286, pull request courtesy of funkybob)
+
+---

Old:

  SQLAlchemy-Utils-0.33.1.tar.gz

New:

  SQLAlchemy-Utils-0.33.3.tar.gz



Other differences:
--
++ python-SQLAlchemy-Utils.spec ++
--- /var/tmp/diff_new_pack.DydxIu/_old  2018-05-08 13:38:50.410304268 +0200
+++ /var/tmp/diff_new_pack.DydxIu/_new  2018-05-08 13:38:50.414304125 +0200
@@ -18,21 +18,19 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-SQLAlchemy-Utils
-Version:0.33.1
+Version:0.33.3
 Release:0
 Summary:Various utility functions for SQLAlchemy
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:https://github.com/kvesteri/sqlalchemy-utils
+URL:https://github.com/kvesteri/sqlalchemy-utils
 Source: 
https://files.pythonhosted.org/packages/source/S/SQLAlchemy-Utils/SQLAlchemy-Utils-%{version}.tar.gz
 BuildRequires:  %{python_module SQLAlchemy}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  python-rpm-macros
 Requires:   python-SQLAlchemy
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -48,8 +46,8 @@
 %python_install
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc LICENSE README.rst
+%license LICENSE
+%doc README.rst
 %{python_sitelib}/*
 
 %changelog

++ SQLAlchemy-Utils-0.33.1.tar.gz -> SQLAlchemy-Utils-0.33.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQLAlchemy-Utils-0.33.1/CHANGES.rst 
new/SQLAlchemy-Utils-0.33.3/CHANGES.rst
--- old/SQLAlchemy-Utils-0.33.1/CHANGES.rst 2018-03-19 15:50:26.0 
+0100
+++ new/SQLAlchemy-Utils-0.33.3/CHANGES.rst 2018-04-29 09:12:35.0 
+0200
@@ -4,6 +4,19 @@
 Here you can see the full list of changes between each SQLAlchemy-Utils 
release.
 
 
+0.33.3 (2018-04-29)
+^^^
+
+- Added new AesGcmEngine (#322, pull request courtesy of manishahluwalia)
+
+
+0.33.2 (2018-04-02)
+^^^
+
+- Added support for universal wheels (#312, pull request courtesy of nsoranzo)
+- Fixed usage of template0 and template1 with postgres database functions. 
(#286, pull request courtesy of funkybob)
+
+
 0.33.1 (2018-03-19)
 ^^^
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQLAlchemy-Utils-0.33.1/PKG-INFO 
new/SQLAlchemy-Utils-0.33.3/PKG-INFO
--- old/SQLAlchemy-Utils-0.33.1/PKG-INFO2018-03-19 15:54:38.0 
+0100
+++ new/SQLAlchemy-Utils-0.33.3/PKG-INFO2018-04-29 09:24:56.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: SQLAlchemy-Utils
-Version: 0.33.1
+Version: 0.33.3
 Summary: Various utility functions for SQLAlchemy.
 Home-page: https://github.com/kvesteri/sqlalchemy-utils
 Author: Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/SQLAlchemy-Utils-0.33.1/SQLAlchemy_Utils.egg-info/PKG-INFO 
new/SQLAlchemy-Utils-0.33.3/SQLAlchemy_Utils.egg-info/PKG-INFO
--- old/SQLAlchemy-Utils-0.33.1/SQLAlchemy_Utils.egg-info/PKG-INFO  
2018-03-19 15:54:38.0 +0100
+++ new/SQLAlchemy-Utils-0.33.3/SQLAlchemy_Utils.egg-info/PKG-INFO  
2018-04-29 09:24:56.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: SQLAlchemy-Utils
-Version: 0.33.1
+Version: 0.33.3
 Summary: Various utility functions for SQLAlchemy.
 Home-page: https://github.com/kvesteri/sqlalchemy-utils
 Author: Konsta Vesterinen, Ryan Leckey, Jan

commit mksusecd for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2018-05-08 13:38:43

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


Package is "mksusecd"

Tue May  8 13:38:43 2018 rev:45 rq:605108 version:1.57

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2018-03-07 
10:37:45.991793362 +0100
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2018-05-08 
13:38:44.782507404 +0200
@@ -0,0 +1,7 @@
+
+Mon May 7 12:38:39 UTC 2018 - wfe...@opensuse.org
+
+- merge gh#openSUSE/mksusecd#30
+- fix cpio archive parser (bsc#1092147)
+- 1.57
+

Old:

  mksusecd-1.56.tar.xz

New:

  mksusecd-1.57.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.fSJcWB/_old  2018-05-08 13:38:45.406484882 +0200
+++ /var/tmp/diff_new_pack.fSJcWB/_new  2018-05-08 13:38:45.422484304 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mksusecd
-Version:1.56
+Version:1.57
 Release:0
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+

++ mksusecd-1.56.tar.xz -> mksusecd-1.57.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.56/VERSION new/mksusecd-1.57/VERSION
--- old/mksusecd-1.56/VERSION   2018-01-19 10:26:47.0 +0100
+++ new/mksusecd-1.57/VERSION   2018-05-07 14:38:39.0 +0200
@@ -1 +1 @@
-1.56
+1.57
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.56/changelog new/mksusecd-1.57/changelog
--- old/mksusecd-1.56/changelog 2018-01-19 10:26:47.0 +0100
+++ new/mksusecd-1.57/changelog 2018-05-07 14:38:39.0 +0200
@@ -1,3 +1,6 @@
+2018-05-07:1.57
+   - fix cpio archive parser (bsc #1092147)
+
 2018-01-18:1.56
- fix handling of repo-md repositories with encrypted media
- allow building of encrypted installation media
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.56/mksusecd new/mksusecd-1.57/mksusecd
--- old/mksusecd-1.56/mksusecd  2018-01-19 10:26:47.0 +0100
+++ new/mksusecd-1.57/mksusecd  2018-05-07 14:38:39.0 +0200
@@ -3414,7 +3414,7 @@
 
   # Read # of bytes from input and write to output.
   #
-  # bytes = read_write(len)
+  # bytes = $read_write->(len)
   # -   len: number of bytes to transfer
   # - bytes: size of data actually transferred
   #
@@ -3424,7 +3424,7 @@
   # If the $sync variable is set search the input stream for a valid cpio
   # header (and reset $sync to 0).
   #
-  sub read_write
+  my $read_write = sub
   {
 my $len = $_[0];
 
@@ -3469,17 +3469,17 @@
 }
 
 return length $buf;
-  }
+  };
 
   # Write padding bytes (pad with 0 to full 512 byte blocks) and close
   # output pipe.
   #
-  # write_pad_and_close()
+  # $write_pad_and_close->()
   #
   # This also sets a sync flag indicating that we should search for the next
   # valid cpio header in the input stream.
   #
-  sub write_pad_and_close
+  my $write_pad_and_close = sub
   {
 if($p) {
   my $pad = (($write_ofs + 0x1ff) & ~0x1ff) - $write_ofs;
@@ -3490,7 +3490,7 @@
 
 # search for next cpio header in input stream
 $sync = 1;
-  }
+  };
 
   # open archive and get going...
   if(open $f, $file) {
@@ -3498,7 +3498,7 @@
 
 # We have to trace the cpio archive structure.
 # Keep going as long as there's a header.
-while(($len = read_write(110)) == 110) {
+while(($len = $read_write->(110)) == 110) {
   my $magic = substr($buf, 0, 6);
   my $head = substr($buf, 6);
 
@@ -3510,12 +3510,12 @@
   $fname_len += (2, 1, 0, 3)[$fname_len & 3];
   $data_len = (($data_len + 3) & ~3);
 
-  read_write $fname_len;
+  $read_write->($fname_len);
 
   my $fname = $buf;
   $fname =~ s/\x00*$//;
 
-  read_write $data_len;
+  $read_write->($data_len);
 
   # Look for cpio archive end marker.
   # If found, close cpio process. A new process will be started at the
@@ -3524,7 +3524,7 @@
 $fname eq 'TRAILER!!!' &&
 $head =~ /^0{39}10{55}b0{8}$/i
   ) {
-write_pad_and_close;
+$write_pad_and_close->();
 # exit if we're done
 if($cnt++ == $part) {
   close $f;
@@ -3537,7 +3537,7 @@
 close $f;
 
 # ...and output file.
-write_pad_and_close;
+$write_pad_and_close->();
 
 # If $len is != 0 this means we've seen something that's not a header of
 # a cpio archive entry.
@@ -3554,7 +3554,7 @@
 #
 # unpack_archive(type, file, dir, part)
 #
-# -

commit dunst for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package dunst for openSUSE:Factory checked 
in at 2018-05-08 13:38:46

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


Package is "dunst"

Tue May  8 13:38:46 2018 rev:5 rq:605118 version:1.3.2

Changes:

--- /work/SRC/openSUSE:Factory/dunst/dunst.changes  2018-02-21 
14:12:21.672266989 +0100
+++ /work/SRC/openSUSE:Factory/.dunst.new/dunst.changes 2018-05-08 
13:38:47.630404610 +0200
@@ -1,0 +2,8 @@
+Sun May  6 16:26:56 UTC 2018 - avin...@opensuse.org
+
+- update to version 1.3.2
+  * Fix crash when loading invalid or corrupt icon file
+- minor cleanup with spec-cleaner
+- use %make_install macro
+
+---

Old:

  dunst-1.3.1.tar.gz

New:

  dunst-1.3.2.tar.gz



Other differences:
--
++ dunst.spec ++
--- /var/tmp/diff_new_pack.DQKeZU/_old  2018-05-08 13:38:48.174384974 +0200
+++ /var/tmp/diff_new_pack.DQKeZU/_new  2018-05-08 13:38:48.174384974 +0200
@@ -18,12 +18,12 @@
 
 %{!?_userunitdir:%define _userunitdir %{_prefix}/lib/systemd/user}
 Name:   dunst
-Version:1.3.1
+Version:1.3.2
 Release:0
 Summary:A customizable notification daemon
 License:BSD-3-Clause
 Group:  System/GUI/Other
-Url:https://dunst-project.org
+URL:https://dunst-project.org
 Source: 
https://github.com/dunst-project/dunst/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Patch0: makefile.patch
 BuildRequires:  pkgconfig
@@ -54,7 +54,8 @@
 CFLAGS="%{optflags}" make %{?_smp_mflags}
 
 %install
-make PREFIX=%{buildroot}/%{_prefix} install
+%make_install PREFIX=%{_prefix}
+
 sed -i -e 's/Exec.*/Exec=\/usr\/bin\/dunst/' 
%{buildroot}/%{_datadir}/dbus-1/services/org.knopwob.dunst.service
 sed -i -e 's/ExecStart.*/ExecStart=\/usr\/bin\/dunst/' 
%{buildroot}/%{_userunitdir}/dunst.service
 
@@ -65,6 +66,6 @@
 %{_datadir}/dbus-1/services/org.knopwob.dunst.service
 %{_userunitdir}/dunst.service
 %{_datadir}/dunst
-%{_mandir}/man1/dunst.1%{ext_man}
+%{_mandir}/man1/dunst.1%{?ext_man}
 
 %changelog

++ dunst-1.3.1.tar.gz -> dunst-1.3.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dunst-1.3.1/CHANGELOG.md new/dunst-1.3.2/CHANGELOG.md
--- old/dunst-1.3.1/CHANGELOG.md2018-01-30 10:06:17.0 +0100
+++ new/dunst-1.3.2/CHANGELOG.md2018-05-06 12:30:01.0 +0200
@@ -1,5 +1,11 @@
 # Dunst changelog
 
+## 1.3.2 - 2018-05-06
+
+### Fixed
+
+- Crash when trying to load an invalid or corrupt icon (#512)
+
 ## 1.3.1 - 2018-01-30
 
 ### Fixed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dunst-1.3.1/Makefile new/dunst-1.3.2/Makefile
--- old/dunst-1.3.1/Makefile2018-01-30 10:06:17.0 +0100
+++ new/dunst-1.3.2/Makefile2018-05-06 12:30:01.0 +0200
@@ -3,7 +3,7 @@
 
 include config.mk
 
-VERSION := "1.3.1 (2018-01-30)"
+VERSION := "1.3.2 (2018-05-06)"
 ifneq ($(wildcard ./.git/.),)
 VERSION := $(shell git describe --tags)
 endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dunst-1.3.1/src/x11/x.c new/dunst-1.3.2/src/x11/x.c
--- old/dunst-1.3.1/src/x11/x.c 2018-01-30 10:06:17.0 +0100
+++ new/dunst-1.3.2/src/x11/x.c 2018-05-06 12:30:01.0 +0200
@@ -330,7 +330,7 @@
 GError *error = NULL;
 pixbuf = gdk_pixbuf_new_from_file(icon_path, &error);
 if (pixbuf == NULL)
-g_free(error);
+g_error_free(error);
 }
 return pixbuf;
 }




commit python-flake8-import-order for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2018-05-08 13:38:52

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


Package is "python-flake8-import-order"

Tue May  8 13:38:52 2018 rev:2 rq:605127 version:0.17.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2018-04-24 15:31:36.945508010 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new/python-flake8-import-order.changes
   2018-05-08 13:38:53.594189346 +0200
@@ -1,0 +2,7 @@
+Sun May  6 19:39:31 UTC 2018 - a...@gmx.de
+
+- update to version 0.17.1:
+  * Rebuild of 0.17 with the latest setuptools to fix an enum34
+dependency bug.
+
+---

Old:

  flake8-import-order-0.17.tar.gz

New:

  flake8-import-order-0.17.1.tar.gz



Other differences:
--
++ python-flake8-import-order.spec ++
--- /var/tmp/diff_new_pack.htr37M/_old  2018-05-08 13:38:55.098135061 +0200
+++ /var/tmp/diff_new_pack.htr37M/_new  2018-05-08 13:38:55.102134916 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-flake8-import-order
-Version:0.17
+Version:0.17.1
 Release:0
 Summary:Flake8 plugin that checks the ordering of import statements
 License:LGPL-3.0-only
@@ -33,11 +33,10 @@
 BuildRequires:  python2-enum34
 Requires:   python-flake8
 Requires:   python-pycodestyle
+BuildArch:  noarch
 %ifpython2
 Requires:   python2-enum34
 %endif
-BuildArch:  noarch
-
 %python_subpackages
 
 %description

++ flake8-import-order-0.17.tar.gz -> flake8-import-order-0.17.1.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17/CHANGELOG.rst 
new/flake8-import-order-0.17.1/CHANGELOG.rst
--- old/flake8-import-order-0.17/CHANGELOG.rst  2018-02-11 18:24:16.0 
+0100
+++ new/flake8-import-order-0.17.1/CHANGELOG.rst2018-03-05 
21:42:59.0 +0100
@@ -1,3 +1,9 @@
+0.17.1 2018-03-05
+-
+
+* Rebuild of 0.17 with the latest setuptools to fix an enum34
+  dependency bug.
+
 0.17 2018-02-11
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17/PKG-INFO 
new/flake8-import-order-0.17.1/PKG-INFO
--- old/flake8-import-order-0.17/PKG-INFO   2018-02-11 18:24:25.0 
+0100
+++ new/flake8-import-order-0.17.1/PKG-INFO 2018-03-05 21:43:53.0 
+0100
@@ -1,11 +1,12 @@
 Metadata-Version: 1.1
 Name: flake8-import-order
-Version: 0.17
+Version: 0.17.1
 Summary: Flake8 and pylama plugin that checks the ordering of import 
statements.
 Home-page: https://github.com/PyCQA/flake8-import-order
 Author: Phil Jones
 Author-email: philip.graham.jones+flake8-imp...@gmail.com
 License: LGPLv3
+Description-Content-Type: UNKNOWN
 Description: flake8-import-order
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17/flake8_import_order/__about__.py 
new/flake8-import-order-0.17.1/flake8_import_order/__about__.py
--- old/flake8-import-order-0.17/flake8_import_order/__about__.py   
2018-02-11 18:24:16.0 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/__about__.py 
2018-03-05 21:42:59.0 +0100
@@ -12,7 +12,7 @@
 )
 __uri__ = "https://github.com/PyCQA/flake8-import-order";
 
-__version__ = "0.17"
+__version__ = "0.17.1"
 
 __author__ = "Alex Stapleton"
 __email__ = "al...@prol.etari.at"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17/flake8_import_order/__init__.py 
new/flake8-import-order-0.17.1/flake8_import_order/__init__.py
--- old/flake8-import-order-0.17/flake8_import_order/__init__.py
2018-02-11 18:24:16.0 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/__init__.py  
2018-03-05 21:42:59.0 +0100
@@ -70,7 +70,7 @@
 self.application_import_names = frozenset(application_import_names)
 self.application_package_names = frozenset(application_package_names)
 
-def visit_Import(self, node):  # noqa
+def visit_Import(self, node):  # noqa: N802
 if node.col_offset == 0:
 modules = [alias.name for alias in node.names]
 types_ = {self._classify_type(module) for module in modules}
@@ -84,7 +84,7 @@
 )
 self.

commit python-distributed for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-distributed for 
openSUSE:Factory checked in at 2018-05-08 13:38:50

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


Package is "python-distributed"

Tue May  8 13:38:50 2018 rev:3 rq:605125 version:1.21.8

Changes:

--- /work/SRC/openSUSE:Factory/python-distributed/python-distributed.changes
2018-05-04 11:29:39.463418437 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-distributed.new/python-distributed.changes   
2018-05-08 13:38:51.642259801 +0200
@@ -1,0 +2,32 @@
+Sun May  6 05:30:39 UTC 2018 - a...@gmx.de
+
+- specfile:
+  * Replace msgpack-python by msgpack
+  * updated required versions according to requirement.txt
+
+- update to version 1.21.8:
+  * Remove errant print statement (GH#1957) Matthew Rocklin
+  * Only add reevaluate_occupancy callback once (GH#1953) Tony Lorenzo
+
+- changes from version 1.21.7:
+  * Newline needed for doctest rendering (GH#1917) Loïc Estève
+  * Support Client._repr_html_ when in async mode (GH#1909) Matthew
+Rocklin
+  * Add parameters to dask-ssh command (GH#1910) Irene Rodriguez
+  * Santize get_dataset trace (GH#1888) John Kirkham
+  * Fix bug where queues would not clean up cleanly (GH#1922) Matthew
+Rocklin
+  * Delete cached file safely in upload file (GH#1921) Matthew Rocklin
+  * Accept KeyError when closing tornado IOLoop in tests (GH#1937)
+Matthew Rocklin
+  * Quiet the client and scheduler when gather(…, errors=’skip’)
+(:pr:`1936) Matthew Rocklin
+  * Clarify couldn’t gather keys warning (GH#1942) Kenneth Koski
+  * Support submit keywords in joblib (GH#1947) Matthew Rocklin
+  * Avoid use of external resources in bokeh server (GH#1934) Matthew
+Rocklin
+  * Drop __contains__ from Datasets (GH#1889) John Kirkham
+  * Fix bug with queue timeouts (GH#1950) Matthew Rocklin
+  * Replace msgpack-python by msgpack (GH#1927) Loïc Estève
+
+---

Old:

  distributed-1.21.6.tar.gz

New:

  distributed-1.21.8.tar.gz



Other differences:
--
++ python-distributed.spec ++
--- /var/tmp/diff_new_pack.NgbfXK/_old  2018-05-08 13:38:52.266237279 +0200
+++ /var/tmp/diff_new_pack.NgbfXK/_new  2018-05-08 13:38:52.270237134 +0200
@@ -20,12 +20,12 @@
 # Test requires network connection
 %bcond_with test
 Name:   python-distributed
-Version:1.21.6
+Version:1.21.8
 Release:0
 Summary:Library for distributed computing with Python
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:https://distributed.readthedocs.io/en/latest/
+URL:https://distributed.readthedocs.io/en/latest/
 Source: 
https://files.pythonhosted.org/packages/source/d/distributed/distributed-%{version}.tar.gz
 Source99:   python-distributed-rpmlintrc
 BuildRequires:  %{python_module devel}
@@ -38,31 +38,31 @@
 Requires:   python-certifi
 Requires:   python-click >= 6.6
 Requires:   python-cloudpickle >= 0.2.2
-Requires:   python-dask >= 0.14.1
+Requires:   python-dask >= 0.17.0
 Requires:   python-joblib >= 0.10.2
-Requires:   python-msgpack-python
+Requires:   python-msgpack
 Requires:   python-psutil
 Requires:   python-scikit-learn >= 0.17.1
 Requires:   python-six
 Requires:   python-sortedcontainers
 Requires:   python-tblib
 Requires:   python-toolz >= 0.7.4
-Requires:   python-tornado >= 4.4
-Requires:   python-zict >= 0.1.2
+Requires:   python-tornado >= 4.5.1
+Requires:   python-zict >= 0.1.3
 BuildArch:  noarch
 %if %{with test}
 BuildRequires:  %{python_module certifi}
 BuildRequires:  %{python_module click >= 6.6}
 BuildRequires:  %{python_module cloudpickle >= 0.2.2}
-BuildRequires:  %{python_module dask >= 0.14.1}
-BuildRequires:  %{python_module msgpack-python}
+BuildRequires:  %{python_module dask >= 0.17.0}
+BuildRequires:  %{python_module msgpack}
 BuildRequires:  %{python_module psutil}
 BuildRequires:  %{python_module six}
 BuildRequires:  %{python_module sortedcontainers}
 BuildRequires:  %{python_module tblib}
 BuildRequires:  %{python_module toolz >= 0.7.4}
-BuildRequires:  %{python_module tornado >= 4.4}
-BuildRequires:  %{python_module zict >= 0.1.2}
+BuildRequires:  %{python_module tornado >= 4.5.1}
+BuildRequires:  %{python_module zict >= 0.1.3}
 %endif
 %ifpython2
 Requires:   python-futures

++ distributed-1.21.6.tar.gz -> distributed-1.21.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/distributed-1.21.6/MANIFEST.in 
new/distributed-1.21.8/MANIFEST

commit python-bugzilla for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-bugzilla for openSUSE:Factory 
checked in at 2018-05-08 13:39:05

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


Package is "python-bugzilla"

Tue May  8 13:39:05 2018 rev:25 rq:605151 version:2.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-bugzilla/python-bugzilla.changes  
2016-07-20 09:20:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-bugzilla.new/python-bugzilla.changes 
2018-05-08 13:39:15.561396427 +0200
@@ -1,0 +2,40 @@
+Mon May  7 15:13:13 UTC 2018 - dims...@opensuse.org
+
+- Fix conflict for python-bugzillatools: we have to take extra care
+  for the single-spec rewritter not to conflict with
+  python2-bugzillatools in the end (which does not exist).
+
+---
+Wed May  2 07:10:38 UTC 2018 - tbecht...@suse.com
+
+- Add Conflicts for python-bugzillatools
+
+---
+Mon Apr 30 15:00:32 UTC 2018 - jeng...@inai.de
+
+- Trim history lesson and rhetoric wording from %description.
+
+---
+Wed Apr 25 10:36:02 UTC 2018 - tbecht...@suse.com
+
+- convert to singlespec
+- use pypi as source
+- update url
+
+---
+Wed Apr 25 10:21:27 UTC 2018 - tbecht...@suse.com
+
+- update to 2.1.0:
+  - Support for bugzilla 5 API Keys (Dustin J. Mitchell)
+  - bugzillarc can be used to set default URL for the cli tool
+  - Revive update_flags wrapper
+  - Bug fixes and minor improvements
+  - Several fixes for use with bugzilla 5
+  - Bugzilla.bug_autorefresh now defaults to False
+  - Credentials are now cached in ~/.cache/python-bugzilla/
+  - bin/bugzilla was converted to argparse
+  - bugzilla query --boolean_chart option is removed
+  - Unify command line flags across sub commands
+- drop NovellBugzilla.patch (no longer needed)
+
+---

Old:

  NovellBugzilla.patch
  python-bugzilla-1.2.2.tar.bz2

New:

  python-bugzilla-2.1.0.tar.gz



Other differences:
--
++ python-bugzilla.spec ++
--- /var/tmp/diff_new_pack.mqasq6/_old  2018-05-08 13:39:16.373367118 +0200
+++ /var/tmp/diff_new_pack.mqasq6/_new  2018-05-08 13:39:16.377366973 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-bugzilla
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,54 +16,58 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define oldpython python
 Name:   python-bugzilla
-Version:1.2.2
+Version:2.1.0
 Release:0
-Summary:Python library for bugzilla
-License:GPL-2.0+
+Summary:Python library for Bugzilla
+License:GPL-2.0-or-later
 Group:  Development/Libraries/Python
-Url:https://fedorahosted.org/python-bugzilla/
-Source: %{name}-%{version}.tar.bz2
-Patch0: NovellBugzilla.patch
-# https://gitorious.org/opensuse/python-bugzilla
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
-%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
-Requires:   python-pycurl
+URL:https://github.com/python-bugzilla/python-bugzilla
+Source: 
https://files.pythonhosted.org/packages/source/p/python-bugzilla/python-bugzilla-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  python-rpm-macros
 Requires:   python-requests
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 Suggests:   osc
+Conflicts:  %{oldpython}-bugzillatools
+BuildArch:  noarch
+%python_subpackages
 
 %description
-This is a python module that provides a nice, python-ish interface to Bugzilla
-over XMLRPC.
-
-It was originally written specifically for Red Hat's Bugzilla instance, but now
-supports the Web Services provided by upstream Bugzilla 3.0 and 3.2 also.
+This is a Python module that provides a Python-ish interface to
+Bugzilla over XMLRPC. It supports the Web Services provided by
+upstream Bugzilla 3.0 and 3.2.
 
 It also includes a 'bugzilla' comma

commit cura-engine-lulzbot for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package cura-engine-lulzbot for 
openSUSE:Factory checked in at 2018-05-08 13:39:01

Comparing /work/SRC/openSUSE:Factory/cura-engine-lulzbot (Old)
 and  /work/SRC/openSUSE:Factory/.cura-engine-lulzbot.new (New)


Package is "cura-engine-lulzbot"

Tue May  8 13:39:01 2018 rev:2 rq:605136 version:3.2.19

Changes:

--- /work/SRC/openSUSE:Factory/cura-engine-lulzbot/cura-engine-lulzbot.changes  
2018-04-20 17:27:28.426882560 +0200
+++ 
/work/SRC/openSUSE:Factory/.cura-engine-lulzbot.new/cura-engine-lulzbot.changes 
2018-05-08 13:39:13.729462552 +0200
@@ -1,0 +2,18 @@
+Wed May  2 14:41:45 UTC 2018 - adr...@suse.de
+
+- update to version 3.2.19
+  * version update only
+
+---
+Thu Apr 19 07:58:36 UTC 2018 - adr...@suse.de
+
+- update to version 3.2.18
+  * version only
+
+---
+Fri Apr 13 14:37:04 UTC 2018 - stefan.bru...@rwth-aachen.de
+
+- Link private lib_CuraEngine statically to binary
+- Use CMAKE_POSITION_INDEPENDENT_CODE instead of mangling CFLAGS
+
+---

Old:

  CuraEngine-3.2.16.obscpio

New:

  CuraEngine-3.2.19.obscpio



Other differences:
--
++ cura-engine-lulzbot.spec ++
--- /var/tmp/diff_new_pack.r3xQjV/_old  2018-05-08 13:39:14.517434109 +0200
+++ /var/tmp/diff_new_pack.r3xQjV/_new  2018-05-08 13:39:14.517434109 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package CuraEngine
+# spec file for package cura-engine-lulzbot
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,10 +17,10 @@
 
 
 Name:   cura-engine-lulzbot
-Version:3.2.16
+Version:3.2.19
 Release:0
 Summary:3D printer control software
-License:AGPL-3.0
+License:AGPL-3.0-only
 Group:  Hardware/Printing
 Conflicts:  cura-engine
 Url:https://code.alephobjects.com/diffusion/CTE/cura-engine.git
@@ -52,8 +52,9 @@
 export CC=gcc-6
 export CXX=g++-6
 %endif
-%cmake -DCMAKE_C_FLAGS="%{optflags} -fPIC" \
-   -DCMAKE_CXX_FLAGS="%{optflags} -fPIC -fpermissive"
+# make sure internal lib_CuraEngine is statically build and linked
+%cmake -DCMAKE_POSITION_INDEPENDENT_CODE="true" -DBUILD_SHARED_LIBS="false"
+
 make %{?_smp_mflags}
 
 %install
@@ -62,13 +63,11 @@
 
 install -Dm0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/CuraEngine-lulzbot.1
 mv %buildroot%_bindir/CuraEngine{,-lulzbot}
-# hack... not ready for the distro
-install -Dm0755 lib_CuraEngine.so %{buildroot}%{_libdir}/lib_CuraEngine.so
 
 %files
 %defattr(-,root,root,-)
 %_bindir/CuraEngine-lulzbot
-%_libdir/*
+
 %_mandir/man1/CuraEngine-lulzbot.1*
 
 %changelog

++ CuraEngine-3.2.16.obscpio -> CuraEngine-3.2.19.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CuraEngine-3.2.16/src/slicer.cpp 
new/CuraEngine-3.2.19/src/slicer.cpp
--- old/CuraEngine-3.2.16/src/slicer.cpp2018-03-26 14:43:19.0 
+0200
+++ new/CuraEngine-3.2.19/src/slicer.cpp2018-03-29 13:57:15.0 
+0200
@@ -804,8 +804,7 @@
 
 TimeKeeper slice_timer;
 
-std::vector layer_z; //For each layer its Z coordinate.
-layer_z.resize(slice_layer_count);
+layers.resize(slice_layer_count);
 
 // compensate first layer thickness depending on slicing mode
 int initial = initial_layer_thickness - thickness;
@@ -819,15 +818,14 @@
 {
 if (use_variable_layer_heights)
 {
-layer_z[layer_nr] = adaptive_layers->at(layer_nr).z_position;
+layers[layer_nr].z = adaptive_layers->at(layer_nr).z_position;
 }
 else
 {
-layer_z[layer_nr] = initial + (thickness * layer_nr);
+layers[layer_nr].z = initial + (thickness * layer_nr);
 }
 }
 
-layers.reserve(slice_layer_count); //Reserve for the maximum number of 
layers (but fill with only the layers that are not empty).
 // loop over all mesh faces
 for (unsigned int mesh_idx = 0; mesh_idx < mesh->faces.size(); mesh_idx++)
 {
@@ -851,9 +849,9 @@
 if (p2.z > maxZ) maxZ = p2.z;
 
 // calculate all intersections between a layer plane and a triangle
-for (size_t layer_nr = 0; layer_nr < slice_layer_count; layer_nr++)
+for (unsigned int layer_nr = 0; layer_nr < layers.size(); layer_nr++)
 {
-coord_t z = layer_z[layer_nr];
+

commit python-bpython for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-bpython for openSUSE:Factory 
checked in at 2018-05-08 13:38:56

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


Package is "python-bpython"

Tue May  8 13:38:56 2018 rev:3 rq:605128 version:0.17.1

Changes:

--- /work/SRC/openSUSE:Factory/python-bpython/python-bpython.changes
2018-04-27 16:09:13.526503980 +0200
+++ /work/SRC/openSUSE:Factory/.python-bpython.new/python-bpython.changes   
2018-05-08 13:39:00.945923983 +0200
@@ -1,0 +2,8 @@
+Sun May  6 19:38:52 UTC 2018 - a...@gmx.de
+
+- update to version 0.17.1:
+  * Fixes:
++ Reverted #670 temporarily due to performance impact on large
+  strings being output.
+
+---

Old:

  bpython-0.17.tar.gz

New:

  bpython-0.17.1.tar.gz



Other differences:
--
++ python-bpython.spec ++
--- /var/tmp/diff_new_pack.mOl4ez/_old  2018-05-08 13:39:01.841891642 +0200
+++ /var/tmp/diff_new_pack.mOl4ez/_new  2018-05-08 13:39:01.845891497 +0200
@@ -19,12 +19,12 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_with test
 Name:   python-bpython
-Version:0.17
+Version:0.17.1
 Release:0
 Summary:Fancy Interface to the Python Interpreter
 License:MIT
 Group:  Development/Languages/Python
-Url:http://www.bpython-interpreter.org/
+URL:http://www.bpython-interpreter.org/
 Source: 
https://files.pythonhosted.org/packages/source/b/bpython/bpython-%{version}.tar.gz
 BuildRequires:  %{python_module Babel}
 BuildRequires:  %{python_module Sphinx}
@@ -34,36 +34,35 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  python-rpm-macros
 BuildRequires:  update-desktop-files
-%if %{with test}
-BuildRequires:  %{python_module curtsies >= 0.1.18}
-BuildRequires:  %{python_module greenlet}
-BuildRequires:  %{python_module pygments}
-BuildRequires:  %{python_module requests}
-BuildRequires:  %{python_module six >= 1.5}
-BuildRequires:  %{python_module wcwidth}
-BuildRequires:  python-mock
-%endif
 Requires:   %{name}-common = %{version}
 Requires:   python-curtsies >= 0.1.18
 Requires:   python-greenlet
 Requires:   python-pygments
 Requires:   python-requests
 Requires:   python-six >= 1.5
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
+Recommends: python-jedi
+Recommends: python-ndg-httpsclient
 Recommends: python-pyOpenSSL
 Recommends: python-pyasn1
-Recommends: python-ndg-httpsclient
-Recommends: python-jedi
 Recommends: python-urwid
 Recommends: python-watchdog
 Recommends: python-wcwidth
+BuildArch:  noarch
+%if %{with test}
+BuildRequires:  %{python_module curtsies >= 0.1.18}
+BuildRequires:  %{python_module greenlet}
+BuildRequires:  %{python_module pygments}
+BuildRequires:  %{python_module requests}
+BuildRequires:  %{python_module six >= 1.5}
+BuildRequires:  %{python_module wcwidth}
+BuildRequires:  python-mock
+%endif
 %ifpython2
 Provides:   bpython = %{version}
 Obsoletes:  bpython <= %{version}
 %endif
-BuildArch:  noarch
-Requires(post):   update-alternatives
-Requires(postun):  update-alternatives
-
 %python_subpackages
 
 %description
@@ -75,9 +74,9 @@
 ideas to enhance the standard interpreter without getting carried away.
 
 %package-n %{name}-common
-Provides:   %{python_module bpython-common = %{version}}
 Summary:Fancy Interface to the Python Interpreter - common files
 Group:  Development/Languages/Python
+Provides:   %{python_module bpython-common = %{version}}
 
 %description-n %{name}-common
 This package contains files shared between the various versions of
@@ -141,32 +140,30 @@
 %endif
 
 %post
-%{python_install_alternative bpython bpython-curses bpython-urwid bpdb 
bpython.1%ext_man bpython-config.5%ext_man}
+%{python_install_alternative bpython bpython-curses bpython-urwid bpdb 
bpython.1%{ext_man} bpython-config.5%{ext_man}}
 
 %postun
 %python_uninstall_alternative bpython
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc AUTHORS CHANGELOG LICENSE README.rst
+%license LICENSE
+%doc AUTHORS CHANGELOG README.rst
 %{python_sitelib}/*
 %python_alternative %{_bindir}/bpython
 %python_alternative %{_bindir}/bpython-curses
 %python_alternative %{_bindir}/bpython-urwid
 %python_alternative %{_bindir}/bpdb
-%python_alternative %{_mandir}/man1/bpython.1%ext_man
-%python_alternative %{_mandir}/man5/bpython-config.5%ext_man
+%python_alternative %{_mandir}/man1/bpython.1%{ext_man}
+%python_alternative %{_mandir}/man5/bpython-config.5%{

commit adapta-gtk-theme for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package adapta-gtk-theme for 
openSUSE:Factory checked in at 2018-05-08 13:39:08

Comparing /work/SRC/openSUSE:Factory/adapta-gtk-theme (Old)
 and  /work/SRC/openSUSE:Factory/.adapta-gtk-theme.new (New)


Package is "adapta-gtk-theme"

Tue May  8 13:39:08 2018 rev:21 rq:605182 version:3.93.1.4

Changes:

--- /work/SRC/openSUSE:Factory/adapta-gtk-theme/adapta-gtk-theme.changes
2018-04-17 11:19:09.345803666 +0200
+++ /work/SRC/openSUSE:Factory/.adapta-gtk-theme.new/adapta-gtk-theme.changes   
2018-05-08 13:39:18.425293051 +0200
@@ -1,0 +2,9 @@
+Tue May  1 19:20:24 UTC 2018 - matthias.elias...@gmail.com
+
+- Update to 3.93.1.4
+  * Removed outdated autoconf option '--enable-gtk-legacy' (Autogen.sh).
+  * Fixed missing popup-ed window decorations in Vala-Panel (Gtk+ 3.2x/4.0).
+  * Revived ink reactions for upcoming IconTasklistApplet of Budgie-Desktop 
(Gtk+ 3.2x/4.0).
+  * Drop Gtk+ 3.18.x support
+
+---

Old:

  adapta-gtk-theme-3.93.0.258.tar.gz

New:

  adapta-gtk-theme-3.93.1.4.tar.gz



Other differences:
--
++ adapta-gtk-theme.spec ++
--- /var/tmp/diff_new_pack.qeb8om/_old  2018-05-08 13:39:20.033235011 +0200
+++ /var/tmp/diff_new_pack.qeb8om/_new  2018-05-08 13:39:20.037234866 +0200
@@ -18,10 +18,10 @@
 
 %define _name   adapta
 %define _theme  Adapta
-%define gtk3_min_version3.18
-%define gtk2_min_version2.24
+%define gtk3_min_version3.20.0
+%define gtk2_min_version2.24.30
 Name:   adapta-gtk-theme
-Version:3.93.0.258
+Version:3.93.1.4
 Release:0
 Summary:An adaptive Gtk+ theme based on Material Design Guidelines
 License:GPL-2.0-only AND CC-BY-SA-4.0
@@ -31,7 +31,7 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  fdupes
-BuildRequires:  gnome-shell >= 3.18.3
+BuildRequires:  gnome-shell >= 3.20.0
 BuildRequires:  gnu_parallel
 BuildRequires:  inkscape >= 0.91
 BuildRequires:  pkgconfig

++ adapta-gtk-theme-3.93.0.258.tar.gz -> adapta-gtk-theme-3.93.1.4.tar.gz 
++
 16234 lines of diff (skipped)




commit shotwell for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package shotwell for openSUSE:Factory 
checked in at 2018-05-08 13:39:20

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


Package is "shotwell"

Tue May  8 13:39:20 2018 rev:81 rq:605248 version:0.28.3

Changes:

--- /work/SRC/openSUSE:Factory/shotwell/shotwell.changes2018-04-11 
14:03:11.628195580 +0200
+++ /work/SRC/openSUSE:Factory/.shotwell.new/shotwell.changes   2018-05-08 
13:39:49.208181894 +0200
@@ -1,0 +2,10 @@
+Tue May  8 04:45:29 UTC 2018 - bjorn@gmail.com
+
+- Update to version 0.28.3:
+  + Fix spacings in search toolbar.
+  + Fix "Out of memory" issues when scrolling through large
+collections.
+  + Bugs fixed: bgo#786702.
+  + Updated translations.
+
+---

Old:

  shotwell-0.28.2.tar.xz

New:

  shotwell-0.28.3.tar.xz



Other differences:
--
++ shotwell.spec ++
--- /var/tmp/diff_new_pack.f4C2AV/_old  2018-05-08 13:39:50.508134970 +0200
+++ /var/tmp/diff_new_pack.f4C2AV/_new  2018-05-08 13:39:50.508134970 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   shotwell
-Version:0.28.2
+Version:0.28.3
 Release:0
 Summary:Photo Manager for GNOME
 License:LGPL-2.1-or-later

++ shotwell-0.28.2.tar.xz -> shotwell-0.28.3.tar.xz ++
 877877 lines of diff (skipped)




commit gstreamer-plugins-vaapi for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package gstreamer-plugins-vaapi for 
openSUSE:Factory checked in at 2018-05-08 13:39:16

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


Package is "gstreamer-plugins-vaapi"

Tue May  8 13:39:16 2018 rev:28 rq:605247 version:1.12.5

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-vaapi/gstreamer-plugins-vaapi.changes
  2018-05-03 12:34:40.911365530 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-vaapi.new/gstreamer-plugins-vaapi.changes
 2018-05-08 13:39:37.724596415 +0200
@@ -1,0 +2,7 @@
+Mon May  7 13:14:54 UTC 2018 - bjorn@gmail.com
+
+- Add gst-vaapi-add-zero-as-valid-value.patch: libs: encoder: add
+  zero as valid value for periodic keyframe. Enabled zero as valid
+  value for keyframe-period property (bgo#793829).
+
+---

New:

  gst-vaapi-add-zero-as-valid-value.patch



Other differences:
--
++ gstreamer-plugins-vaapi.spec ++
--- /var/tmp/diff_new_pack.118mnR/_old  2018-05-08 13:39:39.160544583 +0200
+++ /var/tmp/diff_new_pack.118mnR/_new  2018-05-08 13:39:39.160544583 +0200
@@ -30,6 +30,8 @@
 Patch0: gst-vaapi-wayland-dont-poll-no-pending-frames.patch
 # PATCH-FIX-UPSTREAM gst-vaapi-egl-mark-context-wrapped.patch bgo#795391 -- 
libs: egl: utils: mark context as wrapped when it is
 Patch1: gst-vaapi-egl-mark-context-wrapped.patch
+# PATCH-FIX-UPSTREAM gst-vaapi-add-zero-as-valid-value.patch bgo#793829 -- 
libs: encoder: add zero as valid value for periodic keyframe.
+Patch2: gst-vaapi-add-zero-as-valid-value.patch
 
 BuildRequires:  Mesa-devel
 BuildRequires:  Mesa-libGLESv3-devel

++ gst-vaapi-add-zero-as-valid-value.patch ++
>From 08e95320b1308a06601c01c2c122ba4cb1ae1d1a Mon Sep 17 00:00:00 2001
From: Matteo Valdina 
Date: Sun, 25 Feb 2018 20:46:56 -0600
Subject: libs: encoder: add zero as valid value for periodic keyframe.

Enabled zero as valid value for keyframe-period property.

https://bugzilla.gnome.org/show_bug.cgi?id=793829
---
 gst-libs/gst/vaapi/gstvaapiencoder.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gst-libs/gst/vaapi/gstvaapiencoder.c 
b/gst-libs/gst/vaapi/gstvaapiencoder.c
index 9e3b403..a084f49 100644
--- a/gst-libs/gst/vaapi/gstvaapiencoder.c
+++ b/gst-libs/gst/vaapi/gstvaapiencoder.c
@@ -153,7 +153,7 @@ gst_vaapi_encoder_properties_get_default (const 
GstVaapiEncoderClass * klass)
   GST_VAAPI_ENCODER_PROP_KEYFRAME_PERIOD,
   g_param_spec_uint ("keyframe-period",
   "Keyframe Period",
-  "Maximal distance between two keyframes (0: auto-calculate)", 1, 300,
+  "Maximal distance between two keyframes (0: auto-calculate)", 0, 300,
   30, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
 
   /**
-- 
cgit v1.1




commit platformsh-cli for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package platformsh-cli for openSUSE:Factory 
checked in at 2018-05-08 13:39:13

Comparing /work/SRC/openSUSE:Factory/platformsh-cli (Old)
 and  /work/SRC/openSUSE:Factory/.platformsh-cli.new (New)


Package is "platformsh-cli"

Tue May  8 13:39:13 2018 rev:46 rq:605189 version:3.32.4

Changes:

--- /work/SRC/openSUSE:Factory/platformsh-cli/platformsh-cli.changes
2018-04-20 17:33:21.546077064 +0200
+++ /work/SRC/openSUSE:Factory/.platformsh-cli.new/platformsh-cli.changes   
2018-05-08 13:39:26.912986678 +0200
@@ -1,0 +2,10 @@
+Mon May 07 23:25:40 UTC 2018 - ji...@boombatower.com
+
+- Update to version 3.32.4:
+  * Release v3.32.4
+  * Statically cache project users (speeds up commands like 'user:get')
+  * Fix descriptions for activity messages that contain /
+  * Raise default updates check interval to 7 days
+  * [project:set-remote] ignore the "current" project if it does not exist
+
+---

Old:

  platformsh-cli-3.32.3.tar.xz

New:

  platformsh-cli-3.32.4.tar.xz



Other differences:
--
++ platformsh-cli.spec ++
--- /var/tmp/diff_new_pack.gNQmwM/_old  2018-05-08 13:39:29.740884601 +0200
+++ /var/tmp/diff_new_pack.gNQmwM/_new  2018-05-08 13:39:29.744884456 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   platformsh-cli
-Version:3.32.3
+Version:3.32.4
 Release:0
 Summary:Tool for managing Platform.sh services from the command line
 # See licenses.txt for dependency licenses.

++ _service ++
--- /var/tmp/diff_new_pack.gNQmwM/_old  2018-05-08 13:39:29.72868 +0200
+++ /var/tmp/diff_new_pack.gNQmwM/_new  2018-05-08 13:39:29.792882724 +0200
@@ -2,7 +2,7 @@
   
 @PARENT_TAG@
 v(.*)
-refs/tags/v3.32.3
+refs/tags/v3.32.4
 git://github.com/platformsh/platformsh-cli.git
 git
 enable

++ _servicedata ++
--- /var/tmp/diff_new_pack.gNQmwM/_old  2018-05-08 13:39:29.828881425 +0200
+++ /var/tmp/diff_new_pack.gNQmwM/_new  2018-05-08 13:39:29.828881425 +0200
@@ -1,6 +1,6 @@
 
   
 git://github.com/platformsh/platformsh-cli.git
-6c3f2940691fd215d0edc36e6a0d2f75b4452a45
+41bb3fe19375eee40a340d150077b5253b71f1f8
   
 

++ platformsh-cli-3.32.3.tar.xz -> platformsh-cli-3.32.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/platformsh-cli-3.32.3/README.md 
new/platformsh-cli-3.32.4/README.md
--- old/platformsh-cli-3.32.3/README.md 2018-04-19 14:02:04.0 +0200
+++ new/platformsh-cli-3.32.4/README.md 2018-05-07 09:59:27.0 +0200
@@ -236,8 +236,8 @@
   # Whether to check for automatic updates.
   check: true
 
-  # The interval between checking for updates (seconds).
-  check_interval: 86400
+  # The interval between checking for updates (in seconds). 604800 = 7 days.
+  check_interval: 604800
 ```
 
 Other customization is available via environment variables:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/platformsh-cli-3.32.3/config.yaml 
new/platformsh-cli-3.32.4/config.yaml
--- old/platformsh-cli-3.32.3/config.yaml   2018-04-19 14:02:04.0 
+0200
+++ new/platformsh-cli-3.32.4/config.yaml   2018-05-07 09:59:27.0 
+0200
@@ -1,7 +1,7 @@
 # Metadata about the CLI application itself.
 application:
   name: 'Platform.sh CLI'
-  version: '3.32.3'
+  version: '3.32.4'
   executable: 'platform'
   package_name: 'platformsh/cli'
   installer_url: 'https://platform.sh/cli/installer'
@@ -101,7 +101,8 @@
 # Automatic updates.
 # This can be overridden in the user config file.
 updates:
-  check_interval: 86400
+  # The interval between automatic update checks (in seconds). 604800 = 7 days.
+  check_interval: 604800
 
   # Overridden by {application.env_prefix}UPDATES_CHECK env var.
   check: true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/platformsh-cli-3.32.3/dist/manifest.json 
new/platformsh-cli-3.32.4/dist/manifest.json
--- old/platformsh-cli-3.32.3/dist/manifest.json2018-04-19 
14:02:04.0 +0200
+++ new/platformsh-cli-3.32.4/dist/manifest.json2018-05-07 
09:59:27.0 +0200
@@ -1,10 +1,10 @@
 [
 {
 "name": "platform.phar",
-"sha1": "36cf03f0834e3e24e4133401bbe8a8725cb76e69",
-"sha256": 
"6c6cd56ccd77aaea2a8a2104e90348f2495485e1b7b23c822911a49b52ec10b5",
-"url": 
"https://github.com/platformsh/platformsh-cli/releases/download/v3.32.3/platform.phar";,
-"version": "3.32.3",
+"sha1": "2457b38ec2456bd4eadbefb571c8ddd4f3843be6",
+"sha256": 
"62ca0646bd7fc6b31bb459991378399b93c0436d493e73f75cf04

commit FreeCAD for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package FreeCAD for openSUSE:Factory checked 
in at 2018-05-08 13:39:22

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


Package is "FreeCAD"

Tue May  8 13:39:22 2018 rev:6 rq:605255 version:0.17

Changes:

--- /work/SRC/openSUSE:Factory/FreeCAD/FreeCAD.changes  2018-01-06 
18:49:37.538008244 +0100
+++ /work/SRC/openSUSE:Factory/.FreeCAD.new/FreeCAD.changes 2018-05-08 
13:40:41.498294327 +0200
@@ -1,0 +2,35 @@
+Tue May  8 06:33:56 UTC 2018 - adr...@suse.de
+
+- temporary disable FEM module
+  * it works fine, but requires hdf5 version 1.8 via med-tools,
+which currently conflicts in openSUSE distro.
+- Fix draft module crash
+  (got merged upstream for 0.18 fix-draft-module-with-python3.patch)
+
+---
+Fri Apr 27 12:55:30 UTC 2018 - adr...@suse.de
+
+- apply current 0.17 branch (branch_update.patch)
+  In first place for occt 7.2 fixes
+
+---
+Tue Apr 17 06:46:23 UTC 2018 - adr...@suse.de
+
+- fix crash in Draft module with python 3
+
+---
+Mon Apr 16 06:51:06 UTC 2018 - adr...@suse.de
+
+- cleanup python qt deps (pyside2 only now)
+
+---
+Tue Apr 10 11:33:35 UTC 2018 - adr...@suse.de
+
+- update to version 0.17
+  2 years of work: https://www.freecadweb.org/wiki/Release_notes_0.17
+- switching to Qt5
+  (fix-build.diff 0001-find-openmpi2-include-files.patch)
+  (the old 0.16 fork had obsolete temporary patches remove-qtwebkit.patch and
+   remove-webgui.patch)
+
+---

Old:

  FreeCAD-0.16.6712.obscpio
  remove-qtwebkit.patch
  remove-webgui.patch

New:

  0001-find-openmpi2-include-files.patch
  FreeCAD-0.17.obscpio
  FreeCAD.sh
  FreeCADCmd.sh
  branch_update.patch
  fix-build.diff
  fix-draft-module-with-python3.patch



Other differences:
--
++ FreeCAD.spec ++
--- /var/tmp/diff_new_pack.22TrFy/_old  2018-05-08 13:40:50.669963239 +0200
+++ /var/tmp/diff_new_pack.22TrFy/_new  2018-05-08 13:40:50.681962806 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package FreeCAD
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,20 +19,33 @@
 %define x_prefix %{_libdir}/%{name}
 
 Name:   FreeCAD
-Version:0.16.6712
+Version:0.17
 Release:0
 Summary:General Purpose 3D CAD Modeler
-License:LGPL-2.0+ and GPL-2.0+
+License:LGPL-2.0-or-later AND GPL-2.0-or-later
 Group:  Productivity/Graphics/CAD
 Url:http://www.freecadweb.org/
-Source0:%{name}-%{version}.tar.xz
-Source2:FreeCAD_shared_mimeinfo
-# PATCH-FIX-OPENSUSE remove-qtwebkit.patch -- fix build without QtWebKit
-Patch0: remove-qtwebkit.patch
-# PATCH-FIX-OPENSUSE remove-webgui.patch -- remove browser view that would 
need QtWebKit
-Patch1: remove-webgui.patch
+Source0:%{name}-%version.tar.xz
+Source1:FreeCAD.sh
+Source2:FreeCADCmd.sh
+Source3:FreeCAD_shared_mimeinfo
+Patch0: branch_update.patch
+# python3 and generic compile fixes
+Patch1: fix-build.diff
+# support for openmpi2 suse package
+Patch2: 0001-find-openmpi2-include-files.patch
+# runtime fix, submitted upstream
+Patch3: fix-draft-module-with-python3.patch
 BuildRequires:  Coin-devel
-BuildRequires:  SoQt-devel
+#BuildRequires:  SoQt-devel
+#BuildRequires:  libmed-devel # needed for FEM module, but requires older hdf5 
lib
+# we use upstream OpenCASCADE instead of oce atm
+BuildRequires:  occt-devel
+BuildRequires:  vtk-devel
+BuildRequires:  vtk-java
+BuildRequires:  vtk-tcl
+#BuildRequires:  smesh-devel
+
 %if 0%{?suse_version} >= 1330
 BuildRequires:  libboost_filesystem-devel >= 1.55
 BuildRequires:  libboost_graph-devel >= 1.55
@@ -45,6 +58,7 @@
 %else
 BuildRequires:  boost-devel >= 1.55
 %endif
+
 BuildRequires:  cmake
 BuildRequires:  dos2unix
 BuildRequires:  doxygen
@@ -53,46 +67,74 @@
 BuildRequires:  freeglut-devel
 BuildRequires:  gcc-fortran
 BuildRequires:  git
-BuildRequires:  hdf5-devel
 BuildRequires:  libXerces-c-devel
-BuildRequires:  libeigen3-devel
-BuildRequires:  libqt4-devel
+BuildRequires:  pkg-config
+
+# reported to break FreeCAD here
+# https://forum.freecadweb.org/viewtopic.php?t=24610
+Conflicts: 

commit python-dockerpty for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-dockerpty for 
openSUSE:Factory checked in at 2018-05-08 13:40:07

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


Package is "python-dockerpty"

Tue May  8 13:40:07 2018 rev:4 rq:605268 version:0.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-dockerpty/python-dockerpty.changes
2017-10-17 01:53:19.420170322 +0200
+++ /work/SRC/openSUSE:Factory/.python-dockerpty.new/python-dockerpty.changes   
2018-05-08 13:40:57.785706366 +0200
@@ -1,0 +2,7 @@
+Mon May  7 18:25:06 UTC 2018 - tchva...@suse.com
+
+- Switch tarball to github to be able to run tests
+- Needed for docker-compose
+- Switch to singlespec packaging guidelines
+
+---

Old:

  dockerpty-0.4.1.tar.gz

New:

  v0.4.1.tar.gz



Other differences:
--
++ python-dockerpty.spec ++
--- /var/tmp/diff_new_pack.uOyNu1/_old  2018-05-08 13:40:58.565678210 +0200
+++ /var/tmp/diff_new_pack.uOyNu1/_new  2018-05-08 13:40:58.573677921 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-dockerpty
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,44 +16,47 @@
 #
 
 
-%define upstream_name dockerpty
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define modname dockerpty
 Name:   python-dockerpty
 Version:0.4.1
 Release:0
 Summary:Docker API Client
 License:Apache-2.0
 Group:  System/Management
-Url:https://pypi.python.org/pypi/dockerpty
-Source0:
https://pypi.python.org/packages/source/d/dockerpty/%{upstream_name}-%{version}.tar.gz
+URL:https://pypi.python.org/pypi/dockerpty
+Source0:https://github.com/d11wtq/dockerpty/archive/v%{version}.tar.gz
+BuildRequires:  %{python_module expects}
+BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires:   python-docker
 Requires:   python-six >= 1.3.0
-BuildRequires:  fdupes
-BuildRequires:  python-setuptools
-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
 Provides the functionality needed to operate the pseudo-tty (PTY) allocated to
 a docker container, using the Python client.
 
 %prep
-%setup -q -n %{upstream_name}-%{version}
+%setup -q -n %{modname}-%{version}
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-%fdupes %{buildroot}
+%python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
+
+%check
+%python_expand py.test-%{$python_bin_suffix} -v tests/
 
-%files
-%defattr(-,root,root,-)
-%doc LICENSE.txt README.md
+%files %{python_files}
+%license LICENSE.txt
+%doc README.md
 %{python_sitelib}/*
 
 %changelog




commit netcdf for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package netcdf for openSUSE:Factory checked 
in at 2018-05-08 13:39:49

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


Package is "netcdf"

Tue May  8 13:39:49 2018 rev:42 rq:605256 version:4.6.1

Changes:

--- /work/SRC/openSUSE:Factory/netcdf/netcdf.changes2018-02-21 
14:10:55.623365776 +0100
+++ /work/SRC/openSUSE:Factory/.netcdf.new/netcdf.changes   2018-05-08 
13:40:53.289868663 +0200
@@ -1,0 +2,64 @@
+Tue May  8 07:54:53 UTC 2018 - adr...@suse.de
+
+- go back to hdf5 1.10
+
+---
+Mon Apr 30 19:56:15 UTC 2018 - e...@suse.com
+
+- Fix devel-data package conflicts by a Provides/Conflicts that
+  doesn't collide with a package name.
+
+---
+Mon Apr 30 14:05:54 UTC 2018 - e...@suse.com
+
+- Remove the 'ring magic' as this seems to create issues during
+  verification.
+
+---
+Mon Apr 30 10:04:19 UTC 2018 - e...@suse.com
+
+- (Temporarily) disable fpr S390* as a check test fails currently
+  on BE.
+
+---
+Mon Apr 30 09:52:13 UTC 2018 - e...@suse.com
+
+- Fix dependency issues with non-HPC devel packages and
+  devel-data.
+
+---
+Mon Apr 30 09:11:01 UTC 2018 - e...@suse.com
+
+- Add a dependency to the HPC master package of the correct
+  flavor of libhdf5_hl (bsc#1091243).
+
+---
+Tue Apr 24 19:32:21 UTC 2018 - jbe...@suse.com
+
+- Avoid file conflict between devel-data packages over rpm macros.
+
+---
+Wed Apr 11 08:02:12 UTC 2018 - e...@suse.com
+
+- Disable non-HPC builds on non-openSUSE systems: 
+  a. currently only SUSE products/projects are supported/
+  b. non-HPC builds are not and have never been supported on SLE,
+ on openSUSE they are provided for compatibility reasons.
+
+---
+Wed Apr  4 07:34:49 UTC 2018 - adr...@suse.de
+
+- update to version 4.6.1 (FATE#325561)
+  * changes since 4.4.4.1 are documented here: 
+https://www.unidata.ucar.edu/blogs/news/entry/netcdf-4-6-1
+https://www.unidata.ucar.edu/blogs/news/entry/netcdf-4-6-0
+https://www.unidata.ucar.edu/blogs/news/entry/netcdf-4-5-0
+- Obsoletes all patches:
+   netcdf-disable-szip-linking.patch
+   netcdf-h5-test-fix-type-mismatch.patch
+   netcdf-no_date_time.patch
+- drop hdf4 support
+- use version 1.8 of hdf5 in non-hpc mode to avoid incompatible
+  on-disk data
+
+---

Old:

  netcdf-4.4.1.1.tar.gz
  netcdf-disable-szip-linking.patch
  netcdf-h5-test-fix-type-mismatch.patch
  netcdf-no_date_time.patch

New:

  netcdf-4.6.1.tar.gz



Other differences:
--
++ netcdf.spec ++
--- /var/tmp/diff_new_pack.yacfvx/_old  2018-05-08 13:40:54.525824046 +0200
+++ /var/tmp/diff_new_pack.yacfvx/_new  2018-05-08 13:40:54.525824046 +0200
@@ -20,12 +20,10 @@
 
 %define _do_check 1
 
-%define ver 4.4.1.1
-%define _ver 4_4_1_1
+%define ver 4.6.1
+%define _ver 4_6_1
 %define pname netcdf
 
-%bcond_with ringdisabled
-
 %if 0%{?is_opensuse} || 0%{?is_backports}
 %undefine DisOMPI3
 %else
@@ -37,13 +35,7 @@
 ExclusiveArch:  do_not_build
 %endif
 
-# Magic for OBS Staging. Only build the flavors required by
-# other packages in the ring.
-%if %{with ringdisabled}
- %if "%flavor" != "serial"
-ExclusiveArch:  do_not_build
- %endif
-%endif
+ExcludeArch:s390 s390x
 
 %if "%{flavor}" == "serial"
 %bcond_with hpc
@@ -146,6 +138,10 @@
 %bcond_with hpc
 %endif
 
+%if !0%{?is_opensuse} && !0%{?with_hpc:1}
+ExclusiveArch:  do_not_build
+%endif
+
 %{?mpi_flavor:%{bcond_without mpi}}%{!?mpi_flavor:%{bcond_with mpi}}
 %{?with_hpc:%{!?compiler_family:%global compiler_family gnu}}
 %{?with_mpi:%{!?mpi_flavor:%global mpi_flavor openmpi}}
@@ -186,15 +182,11 @@
 Group:  Productivity/Scientific/Other
 Version:%ver
 Release:0
-%define sonum   11
+%define sonum   13
 Url:http://www.unidata.ucar.edu/software/netcdf/
 Source: 
ftp://ftp.unidata.ucar.edu/pub/%{pname}/%{pname}-%{version}.tar.gz
 Source1:nc-config.1.gz
 Source100:  netcdf-rpmlintrc
-Patch0: %{pname}-no_date_time.patch
-# PATCH-FIX-UPSTREAM netcdf-disable-szip-linking.patch badshah...@gmail.com -- 
Disable building with szip support for now, since test nc_test4/tst_interops5.c 
fails otherwise; th

commit 000product for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2018-05-08 13:40:17

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


Package is "000product"

Tue May  8 13:40:17 2018 rev:172 rq: version:unknown
Tue May  8 13:40:16 2018 rev:171 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same 
change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
++ 
_service:product_converter:openSUSE-Tumbleweed-Kubic-dvd5-dvd-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.FNFyqc/_old  2018-05-08 13:41:02.925520822 +0200
+++ /var/tmp/diff_new_pack.FNFyqc/_new  2018-05-08 13:41:02.933520533 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,9 +35,9 @@
   true
   -x -2
   openSUSE
-  20180507
+  20180508
   11
-  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180507,openSUSE 
Tumbleweed Kubic
+  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180508,openSUSE 
Tumbleweed Kubic
   en_US 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

++ _service:product_converter:openSUSE-Tumbleweed-Kubic-release.spec ++
--- /var/tmp/diff_new_pack.FNFyqc/_old  2018-05-08 13:41:02.981518801 +0200
+++ /var/tmp/diff_new_pack.FNFyqc/_new  2018-05-08 13:41:02.985518656 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   openSUSE-Tumbleweed-Kubic-release
-Version:20180507
+Version:    20180508
 Release:0
 Summary:openSUSE Tumbleweed Kubic 
 License:GPL-2.0-or-later
@@ -38,9 +38,9 @@
 ExclusiveArch:  %ix86 x86_64 ppc64le s390x aarch64
 Provides:   %name-%version
 Provides:   product() = openSUSE-Tumbleweed-Kubic
-Provides:   product(openSUSE-Tumbleweed-Kubic) = 20180507-0
+Provides:   product(openSUSE-Tumbleweed-Kubic) = 20180508-0
 Provides:   product-label() = openSUSE%20Tumbleweed%20Kubic
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dtumbleweed%2Dkubic%3A20180507
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dtumbleweed%2Dkubic%3A20180508
 Provides:   product-url(releasenotes) = 
http%3A%2F%2Fdoc.opensuse.org%2Frelease%2Dnotes%2Fx86_64%2FopenSUSE%2FTumbleweed%2Frelease%2Dnotes%2DopenSUSE.rpm
 Provides:   product-endoflife()
 Requires:   product_flavor(openSUSE-Tumbleweed-Kubic)
@@ -61,7 +61,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(dvd)
-Provides:   product_flavor(openSUSE-Tumbleweed-Kubic) = 20180507-0
+Provides:   product_flavor(openSUSE-Tumbleweed-Kubic) = 20180508-0
 Summary:openSUSE Tumbleweed Kubic
 
 %description dvd
@@ -123,11 +123,11 @@
 
   openSUSE
   openSUSE-Tumbleweed-Kubic
-  20180507
+  20180508
   0
   
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180507
+  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180508
   openSUSE-Tumbleweed-Kubic
   
 

++ _service:product_converter:openSUSE-cd-mini-i586.kiwi ++
--- /var/tmp/diff_new_pack.FNFyqc/_old  2018-05-08 13:41:03.017517501 +0200
+++ /var/tmp/diff_new_pack.FNFyqc/_new  2018-05-08 13:41:03.017517501 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,9 +32,9 @@
   true
   -x -2
   openSUSE
-  20180507
+  20180508
   11
-  cpe:/o:opensuse:opensuse:20180507,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20180508,openSUSE 
Tumbleweed
   cs da de en en_GB en_US es fi fr hu it ja nb 
nl pl pt pt_BR ru sv zh zh_CN zh_TW 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

_service:product_converter:openSUSE-cd-mini-x86_64.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-i586.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-x86_64.kiwi: same change
++ _service:product_converter:openSUSE-ftp-ftp-i586_x86_64.kiwi ++
--- /var/tmp/diff_new_pack.FNFyqc/_old  2018-05-08 13:41:03.189511292 +0200
+++ /var/tmp/diff_new_pack.FNFyqc/_new  2018-05-08 13:41:03.193511148 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -24,7 +24,7 @@
   openSUSE
   ftp
   true
-  openSUSE-20180507-i586-x86_64
+  openSUSE-20180508-i586-x86_64
   true
   /
   $DISTNAME-$FLAVOR
@@ -36,9 +36,9 @@
   true
   -x -2
   openSUSE
-  20180507
+  20180508
   11
-  cpe:/o:opensuse:opensuse:20180507,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20180508,openSUSE 
Tumbleweed
   cs da de en en_GB en_US es fi fr hu it ja

commit docker-compose for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package docker-compose for openSUSE:Factory 
checked in at 2018-05-08 13:40:12

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


Package is "docker-compose"

Tue May  8 13:40:12 2018 rev:13 rq:605287 version:1.21.2

Changes:

--- /work/SRC/openSUSE:Factory/docker-compose/docker-compose.changes
2017-12-23 12:21:30.605662833 +0100
+++ /work/SRC/openSUSE:Factory/.docker-compose.new/docker-compose.changes   
2018-05-08 13:40:58.981663193 +0200
@@ -1,0 +2,31 @@
+Tue May  8 10:25:48 UTC 2018 - tchva...@suse.com
+
+- Fix typos in py2 requirements
+
+---
+Tue May  8 09:11:37 UTC 2018 - tchva...@suse.com
+
+- Execute the pytest testsuite, fixes bsc#1091133
+
+---
+Tue May  8 09:02:46 UTC 2018 - tchva...@suse.com
+
+- Add back patch fix-requirements.patch as it really was needed in
+  the end
+
+---
+Mon May  7 17:51:24 UTC 2018 - tchva...@suse.com
+
+- Update to version 1.21.2:
+  * Many many changes from 1.17.0 read CHANGES.md file
+- Drop README.SUSE pointing to same stuff like official readme
+- Drop patch fix-requirements.patch as it is not really needed
+- Switch to singlespec approach building both py2 and py3
+  * pick just py3 binary, no real reason to keep py2 variant
+
+---
+Mon May  7 17:51:10 UTC 2018 - tchva...@suse.com
+
+- Drop service, it is not really needed as we fetch from pypi
+
+---

Old:

  README.SUSE
  _service
  _servicedata
  compose-1.17.0.tar.xz

New:

  1.21.2.tar.gz



Other differences:
--
++ docker-compose.spec ++
--- /var/tmp/diff_new_pack.zLJ1k3/_old  2018-05-08 13:41:00.249617421 +0200
+++ /var/tmp/diff_new_pack.zLJ1k3/_new  2018-05-08 13:41:00.253617276 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package docker-compose
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,54 +16,56 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define mod_name compose
-
 Name:   docker-compose
-Version:1.17.0
+Version:1.21.2
 Release:0
 Summary:Define and run complex applications using Docker
 License:Apache-2.0
 Group:  System/Management
-Url:https://pypi.python.org/pypi/docker-compose
-Source0:%{mod_name}-%{version}.tar.xz
-Source1:README.SUSE
+URL:https://pypi.python.org/pypi/docker-compose
+Source0:https://github.com/docker/compose/archive/%{version}.tar.gz
 Patch0: fix-requirements.patch
+BuildRequires:  %{python_module PyYAML >= 3.10}
+BuildRequires:  %{python_module cached-property >= 1.2.0}
+BuildRequires:  %{python_module dockerpty >= 0.4.1}
+BuildRequires:  %{python_module docopt >= 0.6.1}
+BuildRequires:  %{python_module jsonschema >= 2.5.1}
+BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module texttable >= 0.9.0}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+BuildRequires:  python2-backports.ssl_match_hostname >= 3.5
+BuildRequires:  python2-enum34 >= 1.0.4
+BuildRequires:  python2-ipaddress >= 1.0.16
+BuildRequires:  python2-mock >= 1.0.1
 Requires:   docker
-Requires:   python-PySocks  >= 1.5.6
-Conflicts:  python-PySocks  >= 2
-Requires:   python-PyYAML   >= 3.11
-Conflicts:  python-PyYAML   >= 4
+Requires:   python-PySocks >= 1.6.7
+Requires:   python-PyYAML >= 3.10
+Requires:   python-cached-property >= 1.2.0
+Requires:   python-chardet >= 3.0.4
 Requires:   python-docker   >= 2.5.1
-Conflicts:  python-docker   >= 3
+Requires:   python-docker-pycreds >= 0.2.3
 Requires:   python-dockerpty>= 0.4.1
-Conflicts:  python-dockerpty>= 0.5
 Requires:   python-docopt   >= 0.6.1
-Conflicts:  python-docopt   >= 0.7
-Requires:   python-enum34   >= 1.0
-Conflicts:  python-enum34   >= 2
+Requires:   python-idna >= 2.5
 Requires:   python-jsonschema   >= 2.5.1
-Conflicts:  python-jsonschema   >= 3
-Requires:   python-requests >= 2.7.0
-# Conflicts:  pyth

  1   2   >