commit rubygem-msgpack for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-msgpack for openSUSE:Factory 
checked in at 2018-02-10 18:00:05

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


Package is "rubygem-msgpack"

Sat Feb 10 18:00:05 2018 rev:4 rq:574935 version:1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-msgpack/rubygem-msgpack.changes  
2017-12-19 10:58:36.041022481 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-msgpack.new/rubygem-msgpack.changes 
2018-02-10 18:00:08.191854787 +0100
@@ -1,0 +2,15 @@
+Thu Feb  8 06:13:39 UTC 2018 - co...@suse.com
+
+- updated to version 1.2.2
+ see installed ChangeLog
+
+  2018-01-11 version 1.2.2:
+  
+  * Fix bug to occur SEGV occasionally (depends on GC timing) when exttype is 
used
+  * Fix bug to encode an ext type with wrong type id if superclass is also 
registered as ext type 
+  
+  2017-12-08 version 1.2.1:
+  
+  * Hotfix release only for JRuby: 1.2.0-java was built in incorrect way
+
+---

Old:

  msgpack-1.2.0.gem

New:

  msgpack-1.2.2.gem



Other differences:
--
++ rubygem-msgpack.spec ++
--- /var/tmp/diff_new_pack.ppiAJB/_old  2018-02-10 18:00:09.747798461 +0100
+++ /var/tmp/diff_new_pack.ppiAJB/_new  2018-02-10 18:00:09.751798316 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-msgpack
 #
-# 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-msgpack
-Version:1.2.0
+Version:1.2.2
 Release:0
 %define mod_name msgpack
 %define mod_full_name %{mod_name}-%{version}

++ msgpack-1.2.0.gem -> msgpack-1.2.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2017-12-07 04:21:29.0 +0100
+++ new/.travis.yml 2018-01-11 07:11:14.0 +0100
@@ -1,20 +1,5 @@
 language: ruby
 
-rvm:
-  - 2.0.0
-  - 2.1.6
-  - 2.2.2
-  - 2.3.0
-  - 2.4.0
-  - ruby-head
-  - jruby-19mode
-  - jruby-9.1.5.0
-  - jruby-head
-
-os:
-  - linux
-  - osx
-
 sudo: false
 
 branches:
@@ -24,18 +9,30 @@
 gemfile:
   - Gemfile
 
+# http://rubies.travis-ci.org/
 matrix:
-  exclude:
-- rvm: 2.0.0
-  os: osx
-- rvm: jruby-19mode
+  include:
+- rvm: 2.1.10
+  os: linux
+- rvm: 2.2.8
+  os: linux
+- rvm: 2.3.5
+  os: linux
+- rvm: 2.3.5
   os: osx
-- rvm: jruby-9.1.5.0
+- rvm: 2.4.2
+  os: linux
+- rvm: 2.4.2
   os: osx
+- rvm: ruby-head
+  os: linux
+- rvm: jruby-9.1.9.0
+  os: linux
 - rvm: jruby-head
-  os: osx
+  os: linux
+- rvm: jruby-19mode
+  os: linux
   allow_failures:
 - rvm: ruby-head
 - rvm: jruby-head
 - rvm: jruby-19mode
-  os: osx
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ChangeLog new/ChangeLog
--- old/ChangeLog   2017-12-07 04:21:29.0 +0100
+++ new/ChangeLog   2018-01-11 07:11:14.0 +0100
@@ -1,3 +1,12 @@
+2018-01-11 version 1.2.2:
+
+* Fix bug to occur SEGV occasionally (depends on GC timing) when exttype is 
used
+* Fix bug to encode an ext type with wrong type id if superclass is also 
registered as ext type 
+
+2017-12-08 version 1.2.1:
+
+* Hotfix release only for JRuby: 1.2.0-java was built in incorrect way
+
 2017-12-07 version 1.2.0:
 
 * Add MessagePack::Factory#dump and MessagePack::Factory#load as convenient 
methods
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/java/org/msgpack/jruby/Encoder.java 
new/ext/java/org/msgpack/jruby/Encoder.java
--- old/ext/java/org/msgpack/jruby/Encoder.java 2017-12-07 04:21:29.0 
+0100
+++ new/ext/java/org/msgpack/jruby/Encoder.java 2018-01-11 07:11:14.0 
+0100
@@ -384,7 +384,7 @@
 lookupClass = object.getSingletonClass();
   }
 
-  IRubyObject[] pair = registry.lookupPackerByModule(lookupClass);
+  IRubyObject[] pair = registry.lookupPackerForObject(object);
   if (pair != null) {
 RubyString bytes = pair[0].callMethod(runtime.getCurrentContext(), 
"call", object).asString();
 int type = (int) ((RubyFixnum) pair[1]).getLongValue();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit mpv for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mpv for openSUSE:Factory checked in 
at 2018-02-10 18:00:20

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


Package is "mpv"

Sat Feb 10 18:00:20 2018 rev:43 rq:575224 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/mpv/mpv.changes  2017-12-19 10:51:49.516647131 
+0100
+++ /work/SRC/openSUSE:Factory/.mpv.new/mpv.changes 2018-02-10 
18:00:21.687366242 +0100
@@ -1,0 +2,9 @@
+Sat Feb 10 14:11:42 UTC 2018 - aloi...@gmx.com
+
+- Update to version 0.27.1
+  * This release fixes CVE-2018-6360 (boo#1077894)
+  Fixes and minor enhancements
+  * ytdl_hook: whitelist protocols from urls retrieved from
+youtube-dl (#5456)
+
+---

Old:

  mpv-0.27.0.tar.gz

New:

  mpv-0.27.1.tar.gz



Other differences:
--
++ mpv.spec ++
--- /var/tmp/diff_new_pack.hndi2L/_old  2018-02-10 18:00:23.055316722 +0100
+++ /var/tmp/diff_new_pack.hndi2L/_new  2018-02-10 18:00:23.063316432 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mpv
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2015 Packman Team 
 # Copyright (c) 2012 Jiri Slaby 
 # Copyright (c) 2011-2012 Pascal Bleser 
@@ -21,7 +21,7 @@
 
 %define _waf_ver 1.9.13
 %define _mbc_ver 3.3.16
-%define _mpv_ver 0.27.0
+%define _mpv_ver 0.27.1
 %define lname   libmpv1
 Name:   mpv
 Version:%{_mpv_ver}

++ mpv-0.27.0.tar.gz -> mpv-0.27.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mpv-0.27.0/RELEASE_NOTES new/mpv-0.27.1/RELEASE_NOTES
--- old/mpv-0.27.0/RELEASE_NOTES2017-09-13 03:40:14.0 +0200
+++ new/mpv-0.27.1/RELEASE_NOTES2018-02-10 13:45:10.0 +0100
@@ -1,3 +1,12 @@
+Release 0.27.1
+==
+
+This releaes fixes CVE-2018-6360.
+
+Fixes and Minor Enhancements
+
+- ytdl_hook:  whitelist protocols from urls retrieved from youtube-dl (#5456)
+
 Release 0.27.0
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mpv-0.27.0/VERSION new/mpv-0.27.1/VERSION
--- old/mpv-0.27.0/VERSION  2017-09-13 03:40:14.0 +0200
+++ new/mpv-0.27.1/VERSION  2018-02-10 13:45:10.0 +0100
@@ -1 +1 @@
-0.27.0
+0.27.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mpv-0.27.0/player/lua/ytdl_hook.lua 
new/mpv-0.27.1/player/lua/ytdl_hook.lua
--- old/mpv-0.27.0/player/lua/ytdl_hook.lua 2017-09-13 03:40:14.0 
+0200
+++ new/mpv-0.27.1/player/lua/ytdl_hook.lua 2018-02-10 13:45:10.0 
+0100
@@ -15,6 +15,18 @@
 
 local chapter_list = {}
 
+function Set (t)
+local set = {}
+for _, v in pairs(t) do set[v] = true end
+return set
+end
+
+local safe_protos = Set {
+"http", "https", "ftp", "ftps",
+"rtmp", "rtmps", "rtmpe", "rtmpt", "rtmpts", "rtmpte",
+"data"
+}
+
 local function exec(args)
 local ret = utils.subprocess({args = args})
 return ret.status, ret.stdout, ret
@@ -71,6 +83,15 @@
 return "%" .. string.len(url) .. "%" .. url
 end
 
+local function url_is_safe(url)
+local proto = type(url) == "string" and url:match("^(.+)://") or nil
+local safe = proto and safe_protos[proto]
+if not safe then
+msg.error(("Ignoring potentially unsafe url: '%s'"):format(url))
+end
+return safe
+end
+
 local function time_to_secs(time_string)
 local ret
 
@@ -182,6 +203,9 @@
 
 for i = offset, #fragments do
 local fragment = fragments[i]
+if not url_is_safe(join_url(base, fragment)) then
+return nil
+end
 table.insert(parts, edl_escape(join_url(base, fragment)))
 if fragment.duration then
 parts[#parts] =
@@ -201,6 +225,9 @@
 edl_track = edl_track_joined(track.fragments,
 track.protocol, json.is_live,
 track.fragment_base_url)
+if not edl_track and not url_is_safe(track.url) then
+return
+end
 if track.acodec and track.acodec ~= "none" then
 -- audio track
 mp.commandv("audio-add",
@@ -217,6 +244,9 @@
 edl_track = edl_track_joined(json.fragments, json.protocol,
 json.is_live, json.fragment_base_url)
 
+if not edl_track and not url_is_safe(json.url) then
+return
+end
 -- normal video or single track
 streamurl = edl_track 

commit Photini for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package Photini for openSUSE:Factory checked 
in at 2018-02-10 18:00:16

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


Package is "Photini"

Sat Feb 10 18:00:16 2018 rev:7 rq:575204 version:2018.2.0

Changes:

--- /work/SRC/openSUSE:Factory/Photini/Photini.changes  2017-12-01 
15:54:47.505546274 +0100
+++ /work/SRC/openSUSE:Factory/.Photini.new/Photini.changes 2018-02-10 
18:00:16.847541447 +0100
@@ -1,0 +2,6 @@
+Sat Feb 10 12:18:41 UTC 2018 - aloi...@gmx.com
+
+- Update to 2018.2.0
+  * All maps are faster and less buggy.
+
+---

Old:

  Photini-2017.12.0.tar.gz

New:

  Photini-2018.2.0.tar.gz



Other differences:
--
++ Photini.spec ++
--- /var/tmp/diff_new_pack.808bVK/_old  2018-02-10 18:00:18.527480632 +0100
+++ /var/tmp/diff_new_pack.808bVK/_new  2018-02-10 18:00:18.531480487 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package Photini
 #
-# 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,12 +17,12 @@
 
 
 Name:   Photini
-Version:2017.12.0
+Version:2018.2.0
 Release:0
 Summary:Digital photograph metadata (EXIF, IPTC, XMP) editing 
application
 License:GPL-3.0+
 Group:  Productivity/Graphics/Other
-URL:https://github.com/jim-easterbrook/Photini
+Url:https://github.com/jim-easterbrook/Photini
 Source0:
https://github.com/jim-easterbrook/Photini/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  ImageMagick
 BuildRequires:  fdupes

++ Photini-2017.12.0.tar.gz -> Photini-2018.2.0.tar.gz ++
 4504 lines of diff (skipped)




commit live-fat-stick for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package live-fat-stick for openSUSE:Factory 
checked in at 2018-02-10 18:00:08

Comparing /work/SRC/openSUSE:Factory/live-fat-stick (Old)
 and  /work/SRC/openSUSE:Factory/.live-fat-stick.new (New)


Package is "live-fat-stick"

Sat Feb 10 18:00:08 2018 rev:10 rq:574938 version:0.4.2

Changes:

--- /work/SRC/openSUSE:Factory/live-fat-stick/live-fat-stick.changes
2017-06-26 15:53:47.786689630 +0200
+++ /work/SRC/openSUSE:Factory/.live-fat-stick.new/live-fat-stick.changes   
2018-02-10 18:00:10.139784271 +0100
@@ -1,0 +2,7 @@
+Sat Feb  3 07:17:38 UTC 2018 - cyber...@cyberorg.info
+
+- Remove fuseios requirement
+- Support for ix86 arch on openSUSE
+- Support new kiwi-live for newer openSUSE images
+
+---



Other differences:
--
++ live-fat-stick.spec ++
--- /var/tmp/diff_new_pack.R4Z8fY/_old  2018-02-10 18:00:11.791724470 +0100
+++ /var/tmp/diff_new_pack.R4Z8fY/_new  2018-02-10 18:00:11.799724180 +0100
@@ -28,7 +28,6 @@
 Source2:live-usb-gui.desktop
 Source3:live-grub-stick
 Requires:   dd_rescue
-Requires:   fuseiso
 Requires:   parted
 Requires:   syslinux
 Requires:   util-linux
@@ -77,7 +76,6 @@
 
 %package -n live-grub-stick
 Requires:   dd_rescue
-Requires:   fuseiso
 Requires:   grub2
 Requires:   parted
 Requires:   util-linux

++ live-fat-stick ++
--- /var/tmp/diff_new_pack.R4Z8fY/_old  2018-02-10 18:00:11.827723167 +0100
+++ /var/tmp/diff_new_pack.R4Z8fY/_new  2018-02-10 18:00:11.827723167 +0100
@@ -75,7 +75,7 @@
 Note2: Install 32bit/x86 iso on the stick first if creating multiboot 
with both
 x86 and x86_64 arch images.
 
-Note3: Requires: syslinux, fuseiso and dd_rescue/ddrescue installed on 
the system running this.
+Note3: Requires: syslinux and dd_rescue/ddrescue installed on the 
system running this.
 
 Run this command as root (su -, not sudo)
 live-fat-stick isopath stickpartition
@@ -99,7 +99,7 @@
 The stick partition has to be vfat/fat32 format if the image is not 
isohybrid.
 
 Persistent option requires minimum 500M free space on the USB device 
apart from the spare needed by iso image.
-To allocate more space for cow file use cowfile variable like this 
example: "export cowfile=1000M" before running the script
+To allocate more space for cow file use cowsize variable like this 
example: "export cowsize=1000M" before running the script
 
 Please note that using isohybrid option will remove all existing data 
on the USB device
 and create new partitions.
@@ -176,10 +176,6 @@
echo "syslinux not found, please install syslinux package"
exit 1
 fi
-if [[ ! -e /usr/bin/fuseiso ]]; then
-echo "fuseiso not found, please install fuseiso package"
-exit 1
-fi
 if [[ ! -e $(which qemu-img) ]]; then
echo "qemu-img not found, please install qemu-tools package"
exit 1
@@ -255,7 +251,7 @@
fi
 }
 copy_kernel_initrd () {
-   fuseiso $isopath $isomount &>/dev/null
+   mount -o loop $isopath $isomount &>/dev/null
echo "copying kernel and initrd from iso image to $stickdevpart"
if [[ $distroname == suse ]]; then
if [[ $PERSISTENT_IMAGE == true ]]; then
@@ -275,20 +271,30 @@
fi
cp $isomount/boot/*/loader/linux 
$syslinuxpath/linux-$isonameshort
cp $isomount/boot/*/loader/initrd 
$syslinuxpath/initrd-$isonameshort
-   appendsection="append initrd=initrd-$isonameshort 
isofrom=/dev/disk/by-uuid/$stickuuid:/$isoname 
isofrom_device=/dev/disk/by-uuid/$stickuuid isofrom_system=/$isoname 
loader=syslinux splash=silent  $persistopts quiet showopts"
+if [[ -e $isomount/boot/x86_64/loader/linux ]]; then
+isoarch=x86_64
+else
+isoarch=ix86
+fi
+if [[ -e $isomount/LiveOS/squashfs.img ]]; then
+   appendsection="append initrd=initrd-$isonameshort 
iso-scan/filename=/$isoname root=live:CDLABEL=$isolabel loader=syslinux 
splash=silent  $persistopts quiet showopts"
+   else
+   appendsection="append initrd=initrd-$isonameshort 
isofrom=/dev/disk/by-uuid/$stickuuid:/$isoname 
isofrom_device=/dev/disk/by-uuid/$stickuuid isofrom_system=/$isoname 
loader=syslinux splash=silent  $persistopts quiet showopts"
+   fi
isolinux_msg="display isolinux.msg"
ui="ui gfxboot bootlogo isolinux.msg"
fi
if [[ 

commit rubygem-minitest for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-minitest for 
openSUSE:Factory checked in at 2018-02-10 18:00:02

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


Package is "rubygem-minitest"

Sat Feb 10 18:00:02 2018 rev:2 rq:574934 version:5.11.3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-minitest/rubygem-minitest.changes
2018-01-29 14:57:30.090398961 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-minitest.new/rubygem-minitest.changes   
2018-02-10 18:00:05.691945285 +0100
@@ -1,0 +2,23 @@
+Thu Feb  8 06:12:51 UTC 2018 - co...@suse.com
+
+- updated to version 5.11.3
+ see installed History.rdoc
+
+  === 5.11.3 / 2018-01-26
+  
+  * 1 bug fix:
+  
+* Pushed #error? up to Reportable module. (composerinteralia)
+  
+  === 5.11.2 / 2018-01-25
+  
+  * 1 minor enhancement:
+  
+* Reversed Test < Result. Back to < Runnable and using Reportable for 
shared code.
+  
+  * 2 bug fixes:
+  
+* Fixed Result#location for instances of Test. (alexisbernard)
+* Fixed deprecation message for Runnable#marshal_dump. (y-yagi)
+
+---

Old:

  minitest-5.11.1.gem

New:

  minitest-5.11.3.gem



Other differences:
--
++ rubygem-minitest.spec ++
--- /var/tmp/diff_new_pack.6l382o/_old  2018-02-10 18:00:07.147892579 +0100
+++ /var/tmp/diff_new_pack.6l382o/_new  2018-02-10 18:00:07.151892434 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-minitest
-Version:5.11.1
+Version:5.11.3
 Release:0
 %define mod_name minitest
 %define mod_full_name %{mod_name}-%{version}

++ minitest-5.11.1.gem -> minitest-5.11.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc2018-01-03 00:16:53.0 +0100
+++ new/History.rdoc2018-01-27 00:58:25.0 +0100
@@ -1,3 +1,20 @@
+=== 5.11.3 / 2018-01-26
+
+* 1 bug fix:
+
+  * Pushed #error? up to Reportable module. (composerinteralia)
+
+=== 5.11.2 / 2018-01-25
+
+* 1 minor enhancement:
+
+  * Reversed Test < Result. Back to < Runnable and using Reportable for shared 
code.
+
+* 2 bug fixes:
+
+  * Fixed Result#location for instances of Test. (alexisbernard)
+  * Fixed deprecation message for Runnable#marshal_dump. (y-yagi)
+
 === 5.11.1 / 2018-01-02
 
 * 1 bug fix:
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Binary files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Binary files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/minitest/parallel.rb new/lib/minitest/parallel.rb
--- old/lib/minitest/parallel.rb2018-01-03 00:16:53.0 +0100
+++ new/lib/minitest/parallel.rb2018-01-27 00:58:25.0 +0100
@@ -53,7 +53,7 @@
   end
 end
 
-module Test
+module Test # :nodoc:
   def _synchronize; Minitest::Test.io_lock.synchronize { yield }; end # 
:nodoc:
 
   module ClassMethods # :nodoc:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/minitest/test.rb new/lib/minitest/test.rb
--- old/lib/minitest/test.rb2018-01-03 00:16:53.0 +0100
+++ new/lib/minitest/test.rb2018-01-27 00:58:25.0 +0100
@@ -7,9 +7,14 @@
   #
   # See Minitest::Assertions
 
-  class Test < Result
+  class Test < Runnable
 require "minitest/assertions"
 include Minitest::Assertions
+include Minitest::Reportable
+
+def class_name # :nodoc:
+  self.class.name # for Minitest::Reportable
+end
 
 PASSTHROUGH_EXCEPTIONS = [NoMemoryError, SignalException, SystemExit] # 
:nodoc:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/minitest.rb new/lib/minitest.rb
--- old/lib/minitest.rb 2018-01-03 00:16:53.0 +0100
+++ new/lib/minitest.rb 2018-01-27 00:58:25.0 +0100
@@ -8,7 +8,7 @@
 # :include: README.rdoc
 
 module Minitest
-  VERSION = "5.11.1" # :nodoc:
+  VERSION = "5.11.3" # :nodoc:
   ENCS = "".respond_to? :encoding # :nodoc:
 
   @@installed_at_exit ||= false
@@ -381,7 +381,7 @@
 
 def marshal_dump # :nodoc:
   unless @@marshal_dump_warned then
-warn ["Minitest::Test#marshal_dump is deprecated.",
+warn ["Minitest::Runnable#marshal_dump is deprecated.",
   "You might be violating internals. From", caller.first].join " "
 @@marshal_dump_warned = true
   end
@@ -437,6 +437,56 @@
   end
 
   ##
+  # Shared code for anything that can get passed to a Reporter. See
+  

commit rubygem-hashicorp-checkpoint for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-hashicorp-checkpoint for 
openSUSE:Factory checked in at 2018-02-10 18:00:01

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


Package is "rubygem-hashicorp-checkpoint"

Sat Feb 10 18:00:01 2018 rev:2 rq:574932 version:0.1.5

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-hashicorp-checkpoint/rubygem-hashicorp-checkpoint.changes
2014-11-13 09:17:21.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-hashicorp-checkpoint.new/rubygem-hashicorp-checkpoint.changes
   2018-02-10 18:00:02.764051276 +0100
@@ -1,0 +2,6 @@
+Thu Feb  8 06:06:53 UTC 2018 - co...@suse.com
+
+- updated to version 0.1.5
+  no changelog found
+
+---

Old:

  hashicorp-checkpoint-0.1.4.gem

New:

  hashicorp-checkpoint-0.1.5.gem



Other differences:
--
++ rubygem-hashicorp-checkpoint.spec ++
--- /var/tmp/diff_new_pack.DT5dxm/_old  2018-02-10 18:00:04.295995819 +0100
+++ /var/tmp/diff_new_pack.DT5dxm/_new  2018-02-10 18:00:04.295995819 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-hashicorp-checkpoint
 #
-# Copyright (c) 2014 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
@@ -14,6 +14,8 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
 #
 # This file was generated with a gem2rpm.yml and not just plain gem2rpm.
 # All sections marked as MANUAL, license headers, summaries and descriptions
@@ -22,16 +24,16 @@
 #
 
 Name:   rubygem-hashicorp-checkpoint
-Version:0.1.4
+Version:0.1.5
 Release:0
 %define mod_name hashicorp-checkpoint
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:http://www.hashicorp.com
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:   gem2rpm.yml
 Summary:Internal HashiCorp service to check version information
 License:MPL-2.0

++ hashicorp-checkpoint-0.1.4.gem -> hashicorp-checkpoint-0.1.5.gem ++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/checkpoint/version.rb 
new/lib/checkpoint/version.rb
--- old/lib/checkpoint/version.rb   1970-01-01 01:00:00.0 +0100
+++ new/lib/checkpoint/version.rb   2018-01-19 23:22:26.0 +0100
@@ -1,3 +1,3 @@
 module Checkpoint
-  VERSION = "0.1.4"
+  VERSION = "0.1.5"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/checkpoint.rb new/lib/checkpoint.rb
--- old/lib/checkpoint.rb   1970-01-01 01:00:00.0 +0100
+++ new/lib/checkpoint.rb   2018-01-19 23:22:26.0 +0100
@@ -9,7 +9,7 @@
 require "checkpoint/version"
 
 module Checkpoint
-  @@disabled = false
+  @@disabled = !!ENV["CHECKPOINT_DISABLE"]
 
   # Checks for the latest version information as well as alerts.
   #
@@ -35,7 +35,7 @@
   mtime = File.mtime(opts[:cache_file]).to_i
   limit = Time.now.to_i - (60 * 60 * 24 * 2)
   if mtime > limit
-return build_check(File.read(opts[:cache_file]))
+return build_check(File.read(opts[:cache_file]), "cached" => true)
   end
 
   # Delete the file
@@ -101,7 +101,7 @@
 end
 
 build_check(resp.body)
-  rescue Exception
+  rescue StandardError
 # If we want errors, raise it
 raise if opts[:raise_error]
 
@@ -116,9 +116,10 @@
 
   protected
 
-  def self.build_check(response)
+  def self.build_check(response, extra_info={})
 JSON.parse(response).tap do |result|
   result["outdated"] = !!result["outdated"]
+  result.merge!(extra_info)
 end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata1970-01-01 01:00:00.0 +0100
+++ new/metadata2018-01-19 23:22:26.0 +0100
@@ -1,69 +1,69 @@
 --- !ruby/object:Gem::Specification
 name: hashicorp-checkpoint
 version: !ruby/object:Gem::Version
-  version: 0.1.4
+  version: 0.1.5
 platform: ruby
 authors:
 - Mitchell Hashimoto
 autorequire: 
 bindir: bin
 

commit rubygem-docile for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-docile for openSUSE:Factory 
checked in at 2018-02-10 17:59:57

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


Package is "rubygem-docile"

Sat Feb 10 17:59:57 2018 rev:7 rq:574929 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-docile/rubygem-docile.changes
2014-10-18 09:09:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-docile.new/rubygem-docile.changes   
2018-02-10 17:59:59.720161466 +0100
@@ -1,0 +2,24 @@
+Thu Feb  8 05:59:41 UTC 2018 - co...@suse.com
+
+- updated to version 1.3.0
+ see installed HISTORY.md
+
+  ## [Unreleased 
changes](http://github.com/ms-ati/docile/compare/v1.3.0...master)
+  
+- ...
+  
+  ## [v1.3.0 (Feb 7, 
2018)](http://github.com/ms-ati/docile/compare/v1.2.0...v1.3.0)
+  
+- Allow helper methods in block's context to call DSL methods
+- Add SemVer release policy explicitly
+- Standardize on double-quoted string literals
+- Workaround some more Travis CI shenanigans
+  
+  ## [v1.2.0 (Jan 11, 
2018)](http://github.com/ms-ati/docile/compare/v1.1.5...v1.2.0)
+  
+- Special thanks to Christina Koller (@cmkoller)
+  - add DSL evaluation returning *return value of the block* (see 
`.dsl_eval_with_block_return`)
+- add an example to README
+- keep travis builds passing on old ruby versions
+
+---

Old:

  docile-1.1.5.gem

New:

  docile-1.3.0.gem



Other differences:
--
++ rubygem-docile.spec ++
--- /var/tmp/diff_new_pack.MsuNjV/_old  2018-02-10 18:00:00.340139023 +0100
+++ /var/tmp/diff_new_pack.MsuNjV/_new  2018-02-10 18:00:00.344138878 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-docile
 #
-# Copyright (c) 2014 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-docile
-Version:1.1.5
+Version:1.3.0
 Release:0
 %define mod_name docile
 %define mod_full_name %{mod_name}-%{version}
@@ -33,15 +33,18 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
 Url:https://ms-ati.github.io/docile/
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Docile keeps your Ruby DSLs tame and well-behaved
 License:MIT
 Group:  Development/Languages/Ruby
 
 %description
-Docile turns any Ruby object into a DSL. Especially useful with the Builder
-pattern.
+Docile treats the methods of a given ruby object as a DSL (domain specific
+language) within a given block. 
+Killer feature: you can also reference methods, instance variables, and local
+variables from the original (non-DSL) context within the block. 
+Docile releases follow Semantic Versioning as defined at semver.org.
 
 %prep
 

++ docile-1.1.5.gem -> docile-1.3.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore  2014-06-15 21:51:29.0 +0200
+++ new/.gitignore  2018-02-07 23:25:18.0 +0100
@@ -6,4 +6,6 @@
 doc
 .yardoc
 coverage
-vendor
\ No newline at end of file
+vendor
+.ruby-gemset
+.ruby-version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.ruby-gemset new/.ruby-gemset
--- old/.ruby-gemset2014-06-15 21:51:29.0 +0200
+++ new/.ruby-gemset1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-docile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.ruby-version new/.ruby-version
--- old/.ruby-version   2014-06-15 21:51:29.0 +0200
+++ new/.ruby-version   1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-ruby-2.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2014-06-15 21:51:29.0 +0200
+++ new/.travis.yml 2018-02-07 23:25:18.0 +0100
@@ -1,21 +1,34 @@
 language: ruby
-cache: bundler
+
+# Apparently sudo is required to test on Rubinius and JRuby-head
+sudo: required
+
+# See https://docs.travis-ci.com/user/languages/ruby/#Rubinius
+dist: trusty
+
 rvm:
+  # MRI
   - ruby-head
-  - 2.1.2
-  - 2.1.1
-  - 2.1.0
-  - 2.0.0
+  - 2.5
+  - 2.4
+  - 2.3
+  - 2.2
+  - 2.1
   - 1.9.3
-  - 1.9.2
   - 1.8.7
   - ree
+  # 

commit rubygem-faraday for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-faraday for openSUSE:Factory 
checked in at 2018-02-10 17:59:59

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


Package is "rubygem-faraday"

Sat Feb 10 17:59:59 2018 rev:20 rq:574930 version:0.14.0

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-faraday/rubygem-faraday.changes  
2017-09-26 21:14:42.407997951 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-faraday.new/rubygem-faraday.changes 
2018-02-10 18:00:00.652127729 +0100
@@ -1,0 +2,6 @@
+Thu Feb  8 06:01:18 UTC 2018 - co...@suse.com
+
+- updated to version 0.14.0
+  no changelog found
+
+---

Old:

  faraday-0.13.1.gem

New:

  faraday-0.14.0.gem



Other differences:
--
++ rubygem-faraday.spec ++
--- /var/tmp/diff_new_pack.FRXdxF/_old  2018-02-10 18:00:02.364065756 +0100
+++ /var/tmp/diff_new_pack.FRXdxF/_new  2018-02-10 18:00:02.368065611 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-faraday
 #
-# 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-faraday
-Version:0.13.1
+Version:0.14.0
 Release:0
 %define mod_name faraday
 %define mod_full_name %{mod_name}-%{version}
@@ -33,7 +33,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
 Url:https://github.com/lostisland/faraday
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:HTTP/REST API client library
 License:MIT

++ faraday-0.13.1.gem -> faraday-0.14.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2017-08-18 19:10:29.0 +0200
+++ new/README.md   2018-01-19 20:19:34.0 +0100
@@ -11,7 +11,7 @@
 adapters (such as Net::HTTP) and embraces the concept of Rack middleware when
 processing the request/response cycle.
 
-Faraday supports these adapters:
+Faraday supports these adapters out of the box:
 
 * [Net::HTTP][net_http] _(default)_
 * [Net::HTTP::Persistent][persistent]
@@ -20,6 +20,10 @@
 * [EventMachine][]
 * [HTTPClient][]
 
+Adapters are slowly being moved into their own gems, or bundled with HTTP 
clients:
+
+* [Typhoeus][]
+
 It also includes a Rack adapter for hitting loaded Rack applications through
 Rack::Test, and a Test adapter for stubbing requests by hand.
 
@@ -40,8 +44,8 @@
 A more flexible way to use Faraday is to start with a Connection object. If 
you want to keep the same defaults, you can use this syntax:
 
 ```ruby
-conn = Faraday.new(:url => 'http://www.example.com') 
-response = conn.get '/users' # GET 
http://www.example.com/users' 
+conn = Faraday.new(:url => 'http://www.example.com')
+response = conn.get '/users' # GET 
http://www.example.com/users'
 ```
 
 Connections can also take an options hash as a parameter or be configured by 
using a block. Checkout the section called [Advanced middleware 
usage](#advanced-middleware-usage) for more details about how to use this block 
for configurations.
@@ -145,7 +149,7 @@
 get serialized. The default encoder is Faraday::NestedParamsEncoder.
 
 ## Authentication
-  
+
 Basic and Token authentication are handled by 
Faraday::Request::BasicAuthentication and Faraday::Request::TokenAuthentication 
respectively. These can be added as middleware manually or through the helper 
methods.
 
 ```ruby
@@ -154,10 +158,26 @@
 end
 
 Faraday.new(...) do |conn|
-  conn.token_auth('authentication-token') 
+  conn.token_auth('authentication-token')
 end
 ```
 
+## Proxy
+
+Faraday will try to automatically infer the proxy settings from your system 
using `URI#find_proxy`.
+This will retrieve them from environment variables such as http_proxy, 
ftp_proxy, no_proxy, etc.
+If for any reason you want to disable this behaviour, you can do so by setting 
the global varibale `ignore_env_proxy`:
+
+```ruby
+Faraday.ignore_env_proxy = true
+```
+
+You can also specify a custom proxy when initializing the connection
+
+```ruby
+Faraday.new('http://www.example.com', :proxy => 'http://proxy.com')
+```
+
 ## Advanced middleware usage
 
 The order in which middleware is stacked is important. Like with Rack, the
@@ -235,7 +255,7 @@
 
 ## Ad-hoc adapters customization
 
-Faraday is 

commit rubygem-devise-i18n for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-devise-i18n for 
openSUSE:Factory checked in at 2018-02-10 17:59:52

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


Package is "rubygem-devise-i18n"

Sat Feb 10 17:59:52 2018 rev:30 rq:574928 version:1.5.1

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-devise-i18n/rubygem-devise-i18n.changes  
2018-01-13 21:45:19.292580496 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-devise-i18n.new/rubygem-devise-i18n.changes 
2018-02-10 17:59:55.772304381 +0100
@@ -1,0 +2,6 @@
+Thu Feb  8 05:59:27 UTC 2018 - co...@suse.com
+
+- updated to version 1.5.1
+  no changelog found
+
+---

Old:

  devise-i18n-1.5.0.gem

New:

  devise-i18n-1.5.1.gem



Other differences:
--
++ rubygem-devise-i18n.spec ++
--- /var/tmp/diff_new_pack.oYACE3/_old  2018-02-10 17:59:56.440280200 +0100
+++ /var/tmp/diff_new_pack.oYACE3/_new  2018-02-10 17:59:56.444280055 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-devise-i18n
 #
-# 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-devise-i18n
-Version:1.5.0
+Version:1.5.1
 Release:0
 %define mod_name devise-i18n
 %define mod_full_name %{mod_name}-%{version}

++ devise-i18n-1.5.0.gem -> devise-i18n-1.5.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2017-12-08 23:55:40.0 +0100
+++ new/README.md   2018-02-01 03:27:29.0 +0100
@@ -26,6 +26,14 @@
 ```
 You should only do this if you really need to, though, because doing this will 
make it so that you won't get the updated views should they change in a future 
version of devise-i18n. To "uncustomize" the views, just delete them, and your 
app will go back to grabbing devise-i18n's default views.
 
+## Scoped views
+
+If you need to use scoped views (for example, if you have different ones for 
users and admins), you can include the scope in this command.
+``` sh
+rails g devise:i18n:views user
+```
+
+You will additionally need to generate the the translations into your app per 
the following section and then add keys in each file for the scope you are 
using.
 
 ## Customizing translations
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2017-12-08 23:55:40.0 +0100
+++ new/VERSION 2018-02-01 03:27:29.0 +0100
@@ -1 +1 @@
-1.5.0
+1.5.1
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2017-12-08 23:55:40.0 +0100
+++ new/metadata2018-02-01 03:27:29.0 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: devise-i18n
 version: !ruby/object:Gem::Version
-  version: 1.5.0
+  version: 1.5.1
 platform: ruby
 authors:
 - Christopher Dell
@@ -10,7 +10,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-12-08 00:00:00.0 Z
+date: 2018-02-01 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: devise
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rails/locales/de.yml new/rails/locales/de.yml
--- old/rails/locales/de.yml2017-12-08 23:55:40.0 +0100
+++ new/rails/locales/de.yml2018-02-01 03:27:29.0 +0100
@@ -37,10 +37,10 @@
 failure:
   already_authenticated: Sie sind bereits angemeldet.
   inactive: Ihr Account ist nicht aktiv.
-  invalid: 
+  invalid: "%{authentication_keys} oder Passwort ungültig."
   last_attempt: Sie haben noch einen Versuch, bis Ihr Account gesperrt 
wird.
   locked: Ihr Account ist gesperrt.
-  not_found_in_database: 
+  not_found_in_database: "%{authentication_keys} oder Passwort ungültig."
   timeout: Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an.
   unauthenticated: Sie müssen sich anmelden oder registrieren, bevor Sie 
fortfahren können.
   unconfirmed: Sie müssen Ihren Account bestätigen, bevor Sie fortfahren 
können.
@@ -92,7 +92,7 @@
 currently_waiting_confirmation_for_email: Warte auf Bestätigung von 
%{email}.
 leave_blank_if_you_don_t_want_to_change_it: 

commit rubygem-commander for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-commander for 
openSUSE:Factory checked in at 2018-02-10 17:59:49

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


Package is "rubygem-commander"

Sat Feb 10 17:59:49 2018 rev:22 rq:574927 version:4.4.4

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-commander/rubygem-commander.changes  
2017-01-15 11:18:55.567197173 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-commander.new/rubygem-commander.changes 
2018-02-10 17:59:49.408534752 +0100
@@ -1,0 +2,10 @@
+Thu Feb  8 05:57:41 UTC 2018 - co...@suse.com
+
+- updated to version 4.4.4
+ see installed History.rdoc
+
+  === 4.4.4 / 2018-01-18
+  
+  * Fix deprecated constant warnings on Ruby 2.5. (@mattbrictson)
+
+---

Old:

  commander-4.4.3.gem

New:

  commander-4.4.4.gem



Other differences:
--
++ rubygem-commander.spec ++
--- /var/tmp/diff_new_pack.OAELWK/_old  2018-02-10 17:59:50.272503476 +0100
+++ /var/tmp/diff_new_pack.OAELWK/_new  2018-02-10 17:59:50.276503331 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-commander
 #
-# 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-commander
-Version:4.4.3
+Version:4.4.4
 Release:0
 %define mod_name commander
 %define mod_full_name %{mod_name}-%{version}
@@ -34,7 +34,7 @@
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:https://github.com/commander-rb/commander
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:The complete solution for Ruby command-line executables
 License:MIT

++ commander-4.4.3.gem -> commander-4.4.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.rubocop.yml new/.rubocop.yml
--- old/.rubocop.yml2016-12-28 22:04:30.0 +0100
+++ new/.rubocop.yml2018-01-19 00:03:31.0 +0100
@@ -1,5 +1,12 @@
 inherit_from: .rubocop_todo.yml
 
+AllCops:
+  TargetRubyVersion: 1.9
+
+# not Ruby 1.9.3 compatible
+Style/PercentLiteralDelimiters:
+  Enabled: false
+
 # Offense count: 5
 Encoding:
   Enabled: false
@@ -23,10 +30,10 @@
 Style/MethodMissing:
   Enabled: false
 
-Style/SpaceInsideStringInterpolation:
+Layout/SpaceInsideStringInterpolation:
   Enabled: false
 
-Style/MultilineOperationIndentation:
+Layout/MultilineOperationIndentation:
   Enabled: false
 
 Style/EmptyMethod:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.rubocop_todo.yml new/.rubocop_todo.yml
--- old/.rubocop_todo.yml   2016-12-28 22:04:30.0 +0100
+++ new/.rubocop_todo.yml   2018-01-19 00:03:31.0 +0100
@@ -6,7 +6,7 @@
 # versions of RuboCop, may require this file to be generated again.
 
 # Offense count: 2
-Lint/Eval:
+Security/Eval:
   Enabled: false
 
 # Offense count: 2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2016-12-28 22:04:30.0 +0100
+++ new/.travis.yml 2018-01-19 00:03:31.0 +0100
@@ -1,4 +1,5 @@
 language: ruby
+cache: bundler
 before_install:
   - gem update --system
   - gem update bundler
@@ -6,7 +7,8 @@
   - 1.9.3
   - 2.0.0
   - 2.1.10
-  - 2.2.6
-  - 2.3.3
-  - 2.4.0
+  - 2.2.9
+  - 2.3.6
+  - 2.4.3
+  - 2.5.0
   - jruby-19mode
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc2016-12-28 22:04:30.0 +0100
+++ new/History.rdoc2018-01-19 00:03:31.0 +0100
@@ -1,3 +1,7 @@
+=== 4.4.4 / 2018-01-18
+
+* Fix deprecated constant warnings on Ruby 2.5. (@mattbrictson)
+
 === 4.4.3 / 2016-12-28
 
 * Fix deprecated constant warnings on Ruby 2.4.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-12-28 22:04:30.0 +0100
+++ new/README.md   2018-01-19 00:03:31.0 +0100
@@ -1,5 +1,5 @@
-[https://secure.travis-ci.org/commander-rb/commander.png?branch=master; 
alt="Build Status" />](http://travis-ci.org/commander-rb/commander)
-[![Inline 

commit rubygem-binding_of_caller for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-binding_of_caller for 
openSUSE:Factory checked in at 2018-02-10 17:59:46

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


Package is "rubygem-binding_of_caller"

Sat Feb 10 17:59:46 2018 rev:3 rq:574925 version:0.8.0

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-binding_of_caller/rubygem-binding_of_caller.changes
  2017-11-01 11:09:42.585616674 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-binding_of_caller.new/rubygem-binding_of_caller.changes
 2018-02-10 17:59:48.372572254 +0100
@@ -1,0 +2,6 @@
+Thu Feb  8 05:54:20 UTC 2018 - co...@suse.com
+
+- updated to version 0.8.0
+ see installed HISTORY
+
+---

Old:

  binding_of_caller-0.7.3.gem

New:

  binding_of_caller-0.8.0.gem



Other differences:
--
++ rubygem-binding_of_caller.spec ++
--- /var/tmp/diff_new_pack.y4IwQG/_old  2018-02-10 17:59:49.160543729 +0100
+++ /var/tmp/diff_new_pack.y4IwQG/_new  2018-02-10 17:59:49.160543729 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-binding_of_caller
 #
-# 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-binding_of_caller
-Version:0.7.3
+Version:0.8.0
 Release:0
 %define mod_name binding_of_caller
 %define mod_full_name %{mod_name}-%{version}

++ binding_of_caller-0.7.3.gem -> binding_of_caller-0.8.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2017-10-22 02:45:01.0 +0200
+++ new/.travis.yml 2018-01-10 12:36:06.0 +0100
@@ -6,6 +6,7 @@
   - 2.2.6
   - 2.3.0
   - 2.4.0
+  - 2.5.0
 
 notifications:
   irc: "irc.freenode.org#pry"
@@ -26,8 +27,8 @@
 
 #script: rake test --trace
 #
-#before_install:
-#  - gem update --system
+before_install:
+  - gem update --system
 #  - gem --version
 #  - gem install rake bacon
 #  - rake gem
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/binding_of_caller.gemspec 
new/binding_of_caller.gemspec
--- old/binding_of_caller.gemspec   2017-10-22 02:45:01.0 +0200
+++ new/binding_of_caller.gemspec   2018-01-10 12:36:06.0 +0100
@@ -1,21 +1,21 @@
 # -*- encoding: utf-8 -*-
-# stub: binding_of_caller 0.7.3 ruby lib
+# stub: binding_of_caller 0.8.0 ruby lib
 # stub: ext/binding_of_caller/extconf.rb
 
 Gem::Specification.new do |s|
   s.name = "binding_of_caller".freeze
-  s.version = "0.7.3"
+  s.version = "0.8.0"
 
   s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if 
s.respond_to? :required_rubygems_version=
   s.require_paths = ["lib".freeze]
   s.authors = ["John Mair (banisterfiend)".freeze]
-  s.date = "2017-10-22"
+  s.date = "2018-01-10"
   s.description = "Retrieve the binding of a method's caller. Can also 
retrieve bindings even further up the stack.".freeze
   s.email = "jrm...@gmail.com".freeze
   s.extensions = ["ext/binding_of_caller/extconf.rb".freeze]
   s.files = [".gemtest".freeze, ".gitignore".freeze, ".travis.yml".freeze, 
".yardopts".freeze, "Gemfile".freeze, "HISTORY".freeze, "LICENSE".freeze, 
"README.md".freeze, "Rakefile".freeze, "binding_of_caller.gemspec".freeze, 
"examples/benchmark.rb".freeze, "examples/example.rb".freeze, 
"ext/binding_of_caller/binding_of_caller.c".freeze, 
"ext/binding_of_caller/extconf.rb".freeze, 
"ext/binding_of_caller/ruby_headers/192/debug.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/dln.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/eval_intern.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/id.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/iseq.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/method.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/node.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/regenc.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/regint.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/regparse.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/rubys_gc.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/thread_pthread.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/thread_win32.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/timev.h".freeze, 
"ext/binding_of_caller/ruby_headers/192/transcode_data.h".freeze, 

commit rubygem-bindata for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package rubygem-bindata for openSUSE:Factory 
checked in at 2018-02-10 17:59:43

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


Package is "rubygem-bindata"

Sat Feb 10 17:59:43 2018 rev:2 rq:574924 version:2.4.2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bindata/rubygem-bindata.changes  
2018-01-10 23:30:42.192594613 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-bindata.new/rubygem-bindata.changes 
2018-02-10 17:59:46.292647549 +0100
@@ -1,0 +2,10 @@
+Thu Feb  8 05:54:05 UTC 2018 - co...@suse.com
+
+- updated to version 2.4.2
+ see installed ChangeLog.rdoc
+
+  == Version 2.4.2 (2018-01-31)
+  
+  * Allow boolean values as parameters.  Requested by Patrik Wenger.
+
+---

Old:

  bindata-2.4.1.gem

New:

  bindata-2.4.2.gem



Other differences:
--
++ rubygem-bindata.spec ++
--- /var/tmp/diff_new_pack.MjgeHw/_old  2018-02-10 17:59:47.056619893 +0100
+++ /var/tmp/diff_new_pack.MjgeHw/_new  2018-02-10 17:59:47.060619748 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bindata
 #
-# 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-bindata
-Version:2.4.1
+Version:2.4.2
 Release:0
 %define mod_name bindata
 %define mod_full_name %{mod_name}-%{version}
@@ -34,7 +34,7 @@
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 Url:http://github.com/dmendel/bindata
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:A declarative way to read and write binary file formats
 License:Ruby

++ bindata-2.4.1.gem -> bindata-2.4.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ChangeLog.rdoc new/ChangeLog.rdoc
--- old/ChangeLog.rdoc  2017-08-30 05:28:00.0 +0200
+++ new/ChangeLog.rdoc  2018-01-31 07:48:42.0 +0100
@@ -1,5 +1,9 @@
 = BinData Changelog
 
+== Version 2.4.2 (2018-01-31)
+
+* Allow boolean values as parameters.  Requested by Patrik Wenger.
+
 == Version 2.4.1 (2017-08-30)
 
 * Fix crash with String :length invoking :rel_offset.  Reported by Claudius
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/bindata/sanitize.rb new/lib/bindata/sanitize.rb
--- old/lib/bindata/sanitize.rb 2017-08-30 05:28:00.0 +0200
+++ new/lib/bindata/sanitize.rb 2018-01-31 07:48:42.0 +0100
@@ -306,9 +306,7 @@
 end
 
 def needs_sanitizing?(key)
-  parameter = self[key]
-
-  parameter && !parameter.is_a?(SanitizedParameter)
+  has_key?(key) && ! self[key].is_a?(SanitizedParameter)
 end
 
 def ensure_no_nil_values
@@ -322,7 +320,7 @@
 
 def merge_default_parameters!
   @the_class.default_parameters.each do |key, value|
-self[key] ||= value
+self[key] = value unless has_key?(key)
   end
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/bindata/struct.rb new/lib/bindata/struct.rb
--- old/lib/bindata/struct.rb   2017-08-30 05:28:00.0 +0200
+++ new/lib/bindata/struct.rb   2018-01-31 07:48:42.0 +0100
@@ -278,7 +278,7 @@
   end
 
   def method_missing(symbol, *args)
-self[symbol] || super
+key?(symbol) ? self[symbol] : super
   end
 end
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/bindata/version.rb new/lib/bindata/version.rb
--- old/lib/bindata/version.rb  2017-08-30 05:28:00.0 +0200
+++ new/lib/bindata/version.rb  2018-01-31 07:48:42.0 +0100
@@ -1,3 +1,3 @@
 module BinData
-  VERSION = "2.4.1"
+  VERSION = "2.4.2"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2017-08-30 05:28:00.0 +0200
+++ new/metadata2018-01-31 07:48:42.0 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: bindata
 version: !ruby/object:Gem::Version
-  version: 2.4.1
+  version: 2.4.2
 platform: ruby
 authors:
 - Dion Mendel
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-08-30 00:00:00.0 Z

commit anthy for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package anthy for openSUSE:Factory checked 
in at 2018-02-10 17:59:26

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


Package is "anthy"

Sat Feb 10 17:59:26 2018 rev:31 rq:574876 version:9100h

Changes:

--- /work/SRC/openSUSE:Factory/anthy/anthy.changes  2015-09-30 
05:51:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.anthy.new/anthy.changes 2018-02-10 
17:59:29.561253233 +0100
@@ -1,0 +2,5 @@
+Thu Feb  8 17:26:49 UTC 2018 - msucha...@suse.com
+
+- Drop build-time requirement on X11. It does not seem to be used for anything.
+
+---



Other differences:
--
++ anthy.spec ++
--- /var/tmp/diff_new_pack.TP53R0/_old  2018-02-10 17:59:30.281227169 +0100
+++ /var/tmp/diff_new_pack.TP53R0/_new  2018-02-10 17:59:30.285227025 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package anthy
 #
-# Copyright (c) 2015 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,7 +21,6 @@
 BuildRequires:  fdupes
 BuildRequires:  libtool
 BuildRequires:  xemacs
-BuildRequires:  xorg-x11-devel
 Version:9100h
 Release:0
 Url:https://osdn.jp/projects/anthy/
@@ -34,8 +33,6 @@
 Patch4: anthy-use-last-command-event.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Kana-Kanji Conversion Engine
-License:GPL-2.0+ and LGPL-2.1+
-Group:  System/I18n/Japanese
 # Summary(ja): 仮名漢字変換エンジン
 # Anthy(旧称Ancy)
 # 
@@ -47,6 +44,8 @@
 # 著者:
 # --
 # 田畑 悠介 
+License:GPL-2.0+ and LGPL-2.1+
+Group:  System/I18n/Japanese
 
 %description
 Anthy (previously called 'Ancy'):




commit mpiP for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mpiP for openSUSE:Factory checked in 
at 2018-02-10 17:59:07

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


Package is "mpiP"

Sat Feb 10 17:59:07 2018 rev:7 rq:574837 version:3.4.1

Changes:

--- /work/SRC/openSUSE:Factory/mpiP/mpiP.changes2018-01-13 
21:49:27.708999567 +0100
+++ /work/SRC/openSUSE:Factory/.mpiP.new/mpiP.changes   2018-02-10 
17:59:07.730043531 +0100
@@ -1,0 +2,10 @@
+Fri Feb  9 19:25:11 UTC 2018 - e...@suse.com
+
+- Add support for openmpi2 for HPC (FATE#325089).
+
+---
+Fri Feb  9 15:33:26 UTC 2018 - e...@suse.com
+
+- Fix summary in module files (bnc#1080259).
+
+---



Other differences:
--
++ mpiP.spec ++
--- /var/tmp/diff_new_pack.Y0kGBs/_old  2018-02-10 17:59:08.234025286 +0100
+++ /var/tmp/diff_new_pack.Y0kGBs/_new  2018-02-10 17:59:08.234025286 +0100
@@ -40,6 +40,14 @@
 %define mpi_ver 1
 %endif
 
+%if "%{flavor}" == "gnu-openmpi2-hpc"
+%{?DisOMPI2}
+%global compiler_family gnu
+%undefine c_f_ver
+%define mpi_family openmpi
+%define mpi_ver 2
+%endif
+
 %if "%{flavor}" == "gnu-openmpi3-hpc"
 %{?DisOMPI3}
 %global compiler_family gnu
@@ -178,7 +186,7 @@
 module-whatis "Name: %{pname} built with %{compiler_family} compiler and 
%{mpi_family} MPI"
 module-whatis "Version: %{version}"
 module-whatis "Category: Profiling library"
-module-whatis "Description: %{summary}"
+module-whatis "Description: %{SUMMARY:0}"
 module-whatis "URL %{url}"
 
 set version %{version}

++ _multibuild ++
--- /var/tmp/diff_new_pack.Y0kGBs/_old  2018-02-10 17:59:08.266024128 +0100
+++ /var/tmp/diff_new_pack.Y0kGBs/_new  2018-02-10 17:59:08.274023839 +0100
@@ -1,5 +1,6 @@
 
   gnu-openmpi-hpc
+  gnu-openmpi2-hpc
   gnu-openmpi3-hpc
   gnu-mvapich2-hpc
   gnu-mpich-hpc




commit mvapich2 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mvapich2 for openSUSE:Factory 
checked in at 2018-02-10 17:58:36

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


Package is "mvapich2"

Sat Feb 10 17:58:36 2018 rev:7 rq:574675 version:2.2

Changes:

--- /work/SRC/openSUSE:Factory/mvapich2/mvapich2.changes2018-01-31 
19:54:47.993362618 +0100
+++ /work/SRC/openSUSE:Factory/.mvapich2.new/mvapich2.changes   2018-02-10 
17:58:39.667059421 +0100
@@ -1,0 +2,5 @@
+Fri Feb  9 11:29:26 UTC 2018 - cg...@suse.com
+
+- Fix summary in module files (bnc#1080259)
+
+---



Other differences:
--
++ mvapich2.spec ++
--- /var/tmp/diff_new_pack.c1yIVR/_old  2018-02-10 17:58:40.783019022 +0100
+++ /var/tmp/diff_new_pack.c1yIVR/_new  2018-02-10 17:58:40.787018878 +0100
@@ -391,7 +391,7 @@
 module-whatis "Name: %{pname} built with %{compiler_family} toolchain"
 module-whatis "Version: %{version}"
 module-whatis "Category: runtime library"
-module-whatis "Description: %{summary}"
+module-whatis "Description: %{SUMMARY:0}"
 module-whatis "URL: %{url}"
 
 set version %{version}




commit wcslib for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package wcslib for openSUSE:Factory checked 
in at 2018-02-10 17:59:24

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


Package is "wcslib"

Sat Feb 10 17:59:24 2018 rev:3 rq:574869 version:5.18

Changes:

--- /work/SRC/openSUSE:Factory/wcslib/wcslib.changes2017-07-07 
10:17:15.764071655 +0200
+++ /work/SRC/openSUSE:Factory/.wcslib.new/wcslib.changes   2018-02-10 
17:59:26.769354301 +0100
@@ -1,0 +2,50 @@
+Fri Feb  9 22:36:05 UTC 2018 - asterios.dra...@gmail.com
+
+- Update to version 5.18:
+  * C library
+- New routines introduced to preclude altering the global
+  variables NPVMAX, NPSMAX, and NDPMAX, which determine how
+  much memory to allocate for storing PVi_ma, PSi_ma, DPja, and
+  DQia keyvalues: wcsinit(), lininit(), lindist(), and
+  disinit().  These are now used by various WCSLIB routines,
+  such as the header parsers, which previously temporarily
+  altered the global variables, thus posing a thread hazard.
+- The Flex scanners, fitshdr(), wcsbth(), wcspih(), wcsulexe(),
+  and wcsutrne(), have been rewritten as thin wrappers (with
+  the same API) over scanners that were modified (with changed
+  API) as required to use Flex's "reentrant" option.
+  Consequently, they are now reentrant and should be
+  thread-safe.  That also passes through to the deprecated
+  wrappers, wcsulex() and wcsutrn().
+- Fixed memory leaks in lindist() and lincpy() uncovered by
+  valgrind.
+- Test programs tfitshdr, tpih1, tpih2, and ttab3 are now
+  careful to free all allocated memory before exit to defeat
+  spurious reports of memory leaks by valgrind.
+  * Fortran wrappers
+- New wrappers for wcsinit(), lininit(), lindist(), and
+  disinit().
+  * User manual
+- Updates and amendments in line with the above changes.
+- Documentation generation moved to doxygen 1.8.14
+  (was 1.8.13).
+  From version 5.17:
+  * C library
+- Fixed a memory leak in wcspih().
+- Fixed compiler warnings about comparison between signed and
+  unsigned integers in tab.c. Also fixed warnings in other
+  functions about unused parameters.
+  * Fortran wrappers
+- Fixed compiler warnings about comparison between signed and
+  unsigned integers in several routines.
+  * PGSBOX
+- Fixed a compiler warning about comparison between signed and
+  unsigned ints.
+  * Installation
+- Removed setgid permission on installation directories.
+  * User manual
+- Minor updates and amendments.
+- Documentation generation moved to doxygen 1.8.13 (was
+  1.8.10).
+
+---

Old:

  wcslib-5.16.tar.bz2

New:

  wcslib-5.18.tar.bz2



Other differences:
--
++ wcslib.spec ++
--- /var/tmp/diff_new_pack.uZRBsw/_old  2018-02-10 17:59:27.35160 +0100
+++ /var/tmp/diff_new_pack.uZRBsw/_new  2018-02-10 17:59:27.357333016 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package wcslib
 #
-# 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
@@ -18,19 +18,18 @@
 
 %define libver  5
 Name:   wcslib
-Version:5.16
+Version:5.18
 Release:0
 Summary:An implementation of the FITS WCS standard
 License:LGPL-3.0+
 Group:  Development/Libraries/C and C++
-Url:http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/
+URL:http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/
 Source0:
ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2
 BuildRequires:  cfitsio-devel
 BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  gcc-fortran
-BuildRequires:  pkg-config
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig
 
 %description
 WCSLIB is a C library, supplied with a full set of Fortran wrappers, that
@@ -109,30 +108,25 @@
 
 %install
 %make_install
-# installed with some bad permissions
-chmod go-ws %{buildroot}%{_prefix}/*
-chmod g-ws %{buildroot}%{_docdir}/%{name}
-chmod g-ws %{buildroot}%{_docdir}/%{name}/html
-chmod go-ws %{buildroot}%{_includedir}/%{name}-%{version}
+
 cp -a THANKS %{buildroot}%{_docdir}/%{name}/html/
+
 # Remove static libraries
 rm -rf %{buildroot}%{_libdir}/*.a
+
 %fdupes -s %{buildroot}%{_docdir}/%{name}/html
 
 %check
 make check
 
 %post -n libwcs%{libver} -p /sbin/ldconfig
-
 %postun -n libwcs%{libver} -p /sbin/ldconfig
 
 

commit mame for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mame for openSUSE:Factory checked in 
at 2018-02-10 17:59:30

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


Package is "mame"

Sat Feb 10 17:59:30 2018 rev:8 rq:574884 version:0.193

Changes:

--- /work/SRC/openSUSE:Factory/mame/mame.changes2018-02-05 
10:53:58.873584525 +0100
+++ /work/SRC/openSUSE:Factory/.mame.new/mame.changes   2018-02-10 
17:59:33.693103658 +0100
@@ -1,0 +2,8 @@
+Fri Feb  9 18:50:00 UTC 2018 - stefan.bru...@rwth-aachen.de
+
+- Add fix_mkdir_order.patch
+  Fix race condition in directory creation. Due to a missing
+  dependency in the makefiles objects where created concurrently
+  with the target directories, leading to sporadic build failures.
+
+---

New:

  fix_mkdir_order.patch



Other differences:
--
++ mame.spec ++
--- /var/tmp/diff_new_pack.HTAdHB/_old  2018-02-10 17:59:37.104980147 +0100
+++ /var/tmp/diff_new_pack.HTAdHB/_new  2018-02-10 17:59:37.108980002 +0100
@@ -54,6 +54,7 @@
 Source102:  mame.appdata.xml
 Source104:  mame-mess.appdata.xml
 Patch0: treat_gcc73_and_later_like_gcc72.patch
+Patch1: fix_mkdir_order.patch
 BuildRequires:  binutils-gold
 BuildRequires:  fdupes
 BuildRequires:  pkgconfig
@@ -150,6 +151,7 @@
 %prep
 %setup -q -n mame-mame0%fver
 %patch0 -p1
+%patch1 -p0
 
 cp %{SOURCE1} whatsnew-%{version}.txt
 # Fix rpmlint warning "wrong-file-end-of-line-encoding"
@@ -205,6 +207,11 @@
 USE_SYSTEM_LIB_UTF8PROC=1 \
 %endif
 "
+# Bootstrap genie, scripts file has been patched
+make %{?_smp_mflags} OPT_FLAGS="%{myoptflags}" $COMMON_FLAGS genie
+(cd 3rdparty/genie/; bin/linux/genie embed)
+make %{?_smp_mflags} OPT_FLAGS="%{myoptflags}" $COMMON_FLAGS genie
+
 make %{?_smp_mflags} OPT_FLAGS="%{myoptflags}" $COMMON_FLAGS SUBTARGET=arcade 
TOOLS=1
 # Remove static libraries after linking, to save some disk space
 find build/ -ipath '*mame_arcade/lib*a' -delete

++ fix_mkdir_order.patch ++
--- 3rdparty/genie/src/actions/make/make_cpp.lua_orig   2018-02-09 
19:47:41.045121556 +0100
+++ 3rdparty/genie/src/actions/make/make_cpp.lua2018-02-09 
19:48:38.620847430 +0100
@@ -525,12 +525,12 @@
for _, file in ipairs(prj.allfiles or {}) do
if path.issourcefile(file) then
if (path.isobjcfile(file)) then
-   _p('$(OBJDIR)/%s.o: %s $(GCH_OBJC) 
$(MAKEFILE)'
+   _p('$(OBJDIR)/%s.o: %s $(GCH_OBJC) 
$(MAKEFILE) | $(OBJDIRS)'
, 
_MAKE.esc(path.trimdots(path.removeext(file)))
, _MAKE.esc(file)
)
else
-   _p('$(OBJDIR)/%s.o: %s $(GCH) 
$(MAKEFILE)'
+   _p('$(OBJDIR)/%s.o: %s $(GCH) 
$(MAKEFILE) | $(OBJDIRS)'
, 
_MAKE.esc(path.trimdots(path.removeext(file)))
, _MAKE.esc(file)
)





commit gammaray for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package gammaray for openSUSE:Factory 
checked in at 2018-02-10 17:59:08

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


Package is "gammaray"

Sat Feb 10 17:59:08 2018 rev:6 rq:574838 version:2.9.0

Changes:

--- /work/SRC/openSUSE:Factory/gammaray/gammaray.changes2017-11-09 
14:01:41.306609909 +0100
+++ /work/SRC/openSUSE:Factory/.gammaray.new/gammaray.changes   2018-02-10 
17:59:10.329949413 +0100
@@ -1,0 +2,71 @@
+Fri Feb  9 12:04:59 UTC 2018 - alarr...@suse.com
+
+- Update to 2.9.0:
+  * Improve Qt Quick Controls 2 tracer coloring.
+  * Fix issues with QSG diagnostic render modes in combination with 
QQuickWidget.
+  * Improve input validation in the connect dialog.
+  * Fix Qt Quick remote view on targets without GL_BGRA support.
+  * Add texture and texture atlas inspection for QSGMaterial using objects.
+  * Only read and send the actually visible screen content in the Qt Quick 
remote view.
+  * Support dynamic shaders in the QSGMaterial shader view.
+  * Show vertex and fragment uniforms for shader effects in the QSGMaterial 
tab.
+  * Fix crashes during changing/restoring QSG diagnostic render modes.
+  * Batch row/column count requests for better remote model performance.
+  * Drop support for CMake 2.8, at least 3.0 is required now.
+  * Improved performance in the Qt Quick inspector.
+  * Add support for QSGRenderNode.
+  * Consider compiler version as part of the probe ABI on Windows.
+  * Fix multithreading issues in the timer inspector.
+  * Add search line to timer inspector.
+  * Add screenshot support in Qt Quick inspector.
+  * Improve item picking support in Qt Quick inspector.
+  * Add texture waste indicator to texture inspection tab.
+  * Add color picker for remote views.
+  * Add object navigation and source navigation to the timer inspector.
+  * Add support for cross-architecture injection on Windows.
+  * Add support for editing enum/flag properties not registered with the Qt 
meta object system.
+  * Add network configuration view.
+  * Improved indication that a target process is being inspected by GammaRay.
+  * Add widget tab focus chain visualization.
+  * Fix re-attaching to a target application on Windows.
+  * Add QML binding inspector (requires Qt 5.10 or newer).
+  * Add support for QtWebEngine to the web inspector tool.
+  * Improved argument inspection in the QPainter analyzer.
+  * Support paint analysis with the Qt Quick software renderer (requires Qt 
5.9.3 or newer).
+  * Improved Qt Quick anchor property display.
+  * Fix property editing of gadget value types.
+  * Fix interaction issues in string type property editor.
+  * Add action to slow down Qt Quick animation timers.
+  * Add support for visualizing clip areas in the Qt Quick software renderer.
+  * Clear Qt Quick target overlay on GammaRay client disconnect.
+  * Add automatic down-cast support to GammaRay metatype system.
+  * Add QObject creation stack trace view.
+  * Add source code navigation to the message browser stack trace view.
+  * Add stack trace view for painter operations in the paint analyzer view.
+  * Fix rpath support in probe ABI detection on macOS.
+  * Fix user manual access on macOS.
+  * Add profiling support to the paint analyzer.
+  * Use relative RPATHs on Linux, to make installations fully relocatable.
+  * Add mouse wheel zoom in the Qt 3D geometry inspector.
+  * Improve performance of the Qt Quick scene graph model.
+  * Improve editing of boolean properties.
+  * Add diagnostic shading modes to the Qt 3D geometry inspector.
+  * Support vertex picking in the Qt 3D geometry inspector.
+  * Support Qt 3D painted textures in the paint analyzer.
+  * Fix Qt 3D buffer decoding for tightly packed attributes.
+  * Fix server-side decoration state going out-of-sync in the Qt Quick 
inspector.
+  * Fix crash when validating dynamic meta objects.
+  * Fix support of namespaced and semi-qualified enums/flags.
+
+- Update to 2.8.2:
+  * Fix high-dpi icon installation.
+  * Fix documentation build with spaces in the path.
+  * Fix build of the QtIvi inspector with Qt 5.10.
+  * Fix detection of libdl.
+  * Fix incomplete installation of multi-probe builds on second make install 
run.
+  * Fix build issues in some Windows and cross-compilation setups.
+  * Fix widget export action plugin loading on Windows.
+
+- Rebase Fix_icons_installation.patch
+
+---

Old:

  gammaray-2.8.1.tar.gz

New:

  gammaray-2.9.0.tar.gz



Other differences:
--
++ gammaray.spec ++
--- /var/tmp/diff_new_pack.JtQpJX/_old  2018-02-10 17:59:11.601903368 +0100
+++ 

commit suse-hpc for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package suse-hpc for openSUSE:Factory 
checked in at 2018-02-10 17:59:01

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


Package is "suse-hpc"

Sat Feb 10 17:59:01 2018 rev:8 rq:574736 version:0.1

Changes:

--- /work/SRC/openSUSE:Factory/suse-hpc/suse-hpc.changes2018-01-31 
19:52:29.551800764 +0100
+++ /work/SRC/openSUSE:Factory/.suse-hpc.new/suse-hpc.changes   2018-02-10 
17:59:03.234206281 +0100
@@ -1,0 +2,5 @@
+Fri Feb  9 15:04:35 UTC 2018 - e...@suse.com
+
+- Fix summary in module files (bnc#1080259).
+
+---



Other differences:
--
++ macros.hpc ++
--- /var/tmp/diff_new_pack.WUGmFf/_old  2018-02-10 17:59:03.990178916 +0100
+++ /var/tmp/diff_new_pack.WUGmFf/_new  2018-02-10 17:59:03.990178916 +0100
@@ -53,7 +53,7 @@
 sysconfdir=%{hpc_sysconfdir} \
 \
 Name: %pname \
-Description: %summary \
+Description: %{summary:0} \
 Version: %version \
 Libs: -L${libdir} %{?-l:-l%{-l*}} \
 Cflags: -I${includedir} \
@@ -404,7 +404,7 @@
   ln -sf %{hpc_module_dep_base}.version.%{version} 
%{hpc_module_dep_base}.version} \
 %files -n %{_lname} \
 %defattr(-,root,root)\
- %define _msg  '%summary: Provide the dependency to get the latest version of 
%_pname' \
+ %define _msg  '%{summary:0}: Provide the dependency to get the latest version 
of %_pname' \
  %define _readme README.%{_mylib}%{_name}%{_p_ext} \
  %define _tmpexec %(tmp=$(mktemp /tmp/scr-XX); \
readme=%{_readme} \




commit cfitsio for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package cfitsio for openSUSE:Factory checked 
in at 2018-02-10 17:59:20

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


Package is "cfitsio"

Sat Feb 10 17:59:20 2018 rev:15 rq:574853 version:3.420

Changes:

--- /work/SRC/openSUSE:Factory/cfitsio/cfitsio.changes  2017-03-03 
17:45:06.268301292 +0100
+++ /work/SRC/openSUSE:Factory/.cfitsio.new/cfitsio.changes 2018-02-10 
17:59:20.417584237 +0100
@@ -1,0 +2,37 @@
+Thu Feb  8 19:38:09 UTC 2018 - asterios.dra...@gmail.com
+
+- Update to version 3.420:
+  * added https support to the collection of drivers handled in
+cfileio.c and drvrnet.c.  This also handles the case where http
+transfers are rerouted to https.  Note that this enhancement
+introduces a dependency on the libcurl development package.  If
+this package is absent, CFITSIO will still build but will not
+have https capability.
+  * made fix to imcomp_init_table function in imcompress.c.  It now
+writes ZSIMPLE keyword only to a compressed image that will be
+placed in the primary header.
+  * fix made to fits_get_col_display_width for case of a vector
+column of strings.
+  * in ftp_open_network and in ftp_file_exist, added code to
+repeatedly attempt to make a ftp connection if the ftp server
+does not respond to the first request. (some ftp servers don't
+appear to be 100% reliable).
+  * in drvrnet.c added many calls to 'fclose' to close unneeded
+files, to avoid exceeding the maximum allowed number of files
+that can be open at once.
+  * made substantial changes to the ftp_checkfile and
+http_checkfile routines to streamline the process of checking
+for the existence of a .gz or .Z compressed version of the file
+before opening the uncompressed file (when using http or ftp to
+open the file).
+  * modified the code in ftp_open_network to send "\r\n" as
+end-of-line characters instead of just "\n".  Some ftp servers
+(in particular, at heasarc.gsfc.nasa.gov) now require both
+characters, otherwise the network connection simply hangs.
+  * modified the http_open_network routine to handle HTTP 301 or
+302 redirects to a FTP url.  This is needed to support the new
+configuration on the heasarc HTTP server which sometimes
+redirects http URLS to a ftp URL.
+- Added new build requirement libcurl-devel.
+
+---

Old:

  cfitsio3410.tar.gz

New:

  cfitsio3420.tar.gz



Other differences:
--
++ cfitsio.spec ++
--- /var/tmp/diff_new_pack.yW26yH/_old  2018-02-10 17:59:21.881531242 +0100
+++ /var/tmp/diff_new_pack.yW26yH/_new  2018-02-10 17:59:21.885531097 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package cfitsio
 #
-# 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,23 +16,22 @@
 #
 
 
-%define tar_ver 3410
+%define tar_ver 3420
 %define so_ver 5
-
 Name:   cfitsio
-Version:3.410
+Version:3.420
 Release:0
 Summary:Library for manipulating FITS data files
 License:ISC
 Group:  Productivity/Scientific/Other
-Url:http://heasarc.nasa.gov/fitsio/
+URL:http://heasarc.nasa.gov/fitsio/
 Source0:
ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/%{name}%{tar_ver}.tar.gz
 # PATCH-FIX-OPENSUSE cfitsio-zlib.patch asterios.dra...@gmail.com -- Use 
system zlib, link programs to shared libcfitsio (based on patches from Fedora 
and Debian)
 Patch0: cfitsio-zlib.patch
 BuildRequires:  gcc-fortran
-BuildRequires:  pkg-config
+BuildRequires:  libcurl-devel
+BuildRequires:  pkgconfig
 BuildRequires:  zlib-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 CFITSIO is a library of C and Fortran subroutines for reading and writing data
@@ -48,7 +47,7 @@
 Summary:Headers required when building programs against cfitsio library
 Group:  Development/Libraries/Other
 Requires:   libcfitsio%{so_ver} = %{version}
-Requires:   pkg-config
+Requires:   pkgconfig
 Suggests:   cfitsio-devel-doc = %{version}
 # libcfitsio-devel was last used in openSUSE 13.1 (version 3.350)
 Provides:   libcfitsio-devel = %{version}
@@ -120,27 +119,22 @@
 rm -f %{buildroot}%{_libdir}/libcfitsio.a
 
 %post -n libcfitsio%{so_ver} -p /sbin/ldconfig
-
 %postun -n libcfitsio%{so_ver} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root,-)
 %doc License.txt README 

commit calibre for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2018-02-10 17:59:03

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


Package is "calibre"

Sat Feb 10 17:59:03 2018 rev:184 rq:574835 version:3.17.0

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2018-01-28 
20:33:41.250149363 +0100
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2018-02-10 
17:59:05.530123169 +0100
@@ -1,0 +2,22 @@
+Fri Feb  9 18:50:04 UTC 2018 - ec...@opensuse.org
+
+- update to 3.17.0
+  New Features
+  - Allow splitting the book list, by right clicking on the column
+headers and choosing 'Split the book list'
+  - Store temporary files used by the editor and viewer in the 
+cache directory to try to prevent errors caused by 
+'file cleaner' programs deleting temporary files still in use
+  Bug Fixes
+  - EPUB3 Input: Fix HTML covers and titlepages that are marked 
+using the deprecated element not being recognized.
+  - Bulk metadata edit: Fix regression in 3.13 that made it 
+impossible to use the Force numbering checkbox for custom 
+series
+  - Conversion: Fix the valign attribute on tags not being honored
+  - E-book viewer: Fix the 'Copy' keyboard shortcut/context menu 
+action not working on some Windows systems
+  - E-book viewer: Make the semi-transparent background for viewing 
+metadata a little more opaque.
+
+---

Old:

  calibre-3.16.0.tar.xz

New:

  calibre-3.17.0.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.B46XZ7/_old  2018-02-10 17:59:07.550050047 +0100
+++ /var/tmp/diff_new_pack.B46XZ7/_new  2018-02-10 17:59:07.554049902 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   calibre
-Version:3.16.0
+Version:3.17.0
 Release:0
 Summary:EBook Management Application
 License:GPL-3.0

++ calibre-3.16.0.tar.xz -> calibre-3.17.0.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-3.16.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-3.17.0.tar.xz differ: char 25, 
line 1




commit openSUSE-release-tools for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2018-02-10 17:59:11

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


Package is "openSUSE-release-tools"

Sat Feb 10 17:59:11 2018 rev:53 rq:574851 version:20180209.ad077ab

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2018-02-09 15:46:47.217026716 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new/openSUSE-release-tools.changes
   2018-02-10 17:59:13.857821703 +0100
@@ -1,0 +2,6 @@
+Fri Feb 09 21:47:52 UTC 2018 - opensuse-releaset...@opensuse.org
+
+- Update to version 20180209.ad077ab:
+  * leaper: switch off maintainer review for updates from Factory
+
+---

Old:

  openSUSE-release-tools-20180207.878b87b.obscpio

New:

  openSUSE-release-tools-20180209.ad077ab.obscpio



Other differences:
--
++ openSUSE-release-tools.spec ++
--- /var/tmp/diff_new_pack.qeLh8D/_old  2018-02-10 17:59:16.517725414 +0100
+++ /var/tmp/diff_new_pack.qeLh8D/_new  2018-02-10 17:59:16.521725269 +0100
@@ -20,7 +20,7 @@
 %define source_dir osc-plugin-factory
 %define announcer_filename factory-package-news
 Name:   openSUSE-release-tools
-Version:20180207.878b87b
+Version:20180209.ad077ab
 Release:0
 Summary:Tools to aid in staging and release work for openSUSE/SUSE
 License:GPL-2.0+ AND MIT

++ _servicedata ++
--- /var/tmp/diff_new_pack.qeLh8D/_old  2018-02-10 17:59:16.577723242 +0100
+++ /var/tmp/diff_new_pack.qeLh8D/_new  2018-02-10 17:59:16.581723097 +0100
@@ -1,6 +1,6 @@
 
   
 https://github.com/openSUSE/osc-plugin-factory.git
-b2c2fee6f5b0a0e812eccff9dd1e446a489025e9
+d4a4cf83963299d727b0e6d9c246ff3b2a9745f3
   
 

++ openSUSE-release-tools-20180207.878b87b.obscpio -> 
openSUSE-release-tools-20180209.ad077ab.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSE-release-tools-20180207.878b87b/leaper.py 
new/openSUSE-release-tools-20180209.ad077ab/leaper.py
--- old/openSUSE-release-tools-20180207.878b87b/leaper.py   2018-02-07 
23:20:07.0 +0100
+++ new/openSUSE-release-tools-20180209.ad077ab/leaper.py   2018-02-09 
22:41:00.0 +0100
@@ -234,6 +234,11 @@
 self.needs_release_manager = True
 if origin == src_project:
 self.source_in_factory = True
+# no need to approve submissions from Factory if
+# the lookup file points to Factory. Just causes
+# spam for many maintainers
+# 
https://github.com/openSUSE/osc-plugin-factory/issues/1393
+self.do_check_maintainer_review = False
 is_fine_if_factory = True
 # fall through to check history and requests
 elif origin == 'FORK':

++ openSUSE-release-tools.obsinfo ++
--- /var/tmp/diff_new_pack.qeLh8D/_old  2018-02-10 17:59:17.229699639 +0100
+++ /var/tmp/diff_new_pack.qeLh8D/_new  2018-02-10 17:59:17.229699639 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20180207.878b87b
-mtime: 1518042007
-commit: 878b87b2a96b4a8546437979af947df0a75d5531
+version: 20180209.ad077ab
+mtime: 1518212460
+commit: ad077ab5e969293757ab28def7699dd4e55221e2
 




commit conntrack-tools for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package conntrack-tools for openSUSE:Factory 
checked in at 2018-02-10 17:57:55

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


Package is "conntrack-tools"

Sat Feb 10 17:57:55 2018 rev:29 rq:573850 version:1.4.4

Changes:

--- /work/SRC/openSUSE:Factory/conntrack-tools/conntrack-tools.changes  
2016-08-28 12:17:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.conntrack-tools.new/conntrack-tools.changes 
2018-02-10 17:58:00.392481170 +0100
@@ -1,0 +2,9 @@
+Tue Jan 16 13:47:25 UTC 2018 - jeng...@inai.de
+
+- submission from l...@linux-schulserver.de, partially applied
+- split out new subpackage "conntrackd" for the eponymous
+  daemon (has systemd dependencies)
+- add systemd service, logrotate config, sample sysconfig,
+  and sample config file.
+
+---

New:

  conntrackd.README.SUSE
  conntrackd.conf
  conntrackd.logrotate
  conntrackd.service
  conntrackd.sysconfig



Other differences:
--
++ conntrack-tools.spec ++
--- /var/tmp/diff_new_pack.itU2e5/_old  2018-02-10 17:58:02.280412827 +0100
+++ /var/tmp/diff_new_pack.itU2e5/_new  2018-02-10 17:58:02.284412682 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package conntrack-tools
 #
-# 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,6 +16,11 @@
 #
 
 
+%if !%{defined _fillupdir}
+# Leap/TW 15+
+%define _fillupdir /var/adm/fillup-templates
+%endif
+
 Name:   conntrack-tools
 Version:1.4.4
 Release:0
@@ -28,6 +33,11 @@
 Source: 
ftp://ftp.netfilter.org/pub/conntrack-tools/%name-%version.tar.bz2
 Source2:
ftp://ftp.netfilter.org/pub/conntrack-tools/%name-%version.tar.bz2.sig
 Source3:%name.keyring
+Source5:conntrackd.service
+Source6:conntrackd.README.SUSE
+Source7:conntrackd.logrotate
+Source8:conntrackd.sysconfig
+Source9:conntrackd.conf
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  automake
@@ -35,6 +45,7 @@
 BuildRequires:  flex >= 2.5.33
 BuildRequires:  libtool
 BuildRequires:  pkg-config >= 0.21
+BuildRequires:  systemd-rpm-macros
 BuildRequires:  xz
 BuildRequires:  pkgconfig(libmnl) >= 1.0.3
 BuildRequires:  pkgconfig(libnetfilter_conntrack) >= 1.0.6
@@ -42,49 +53,86 @@
 BuildRequires:  pkgconfig(libnetfilter_cttimeout) >= 1.0.0
 BuildRequires:  pkgconfig(libnetfilter_queue) >= 1.0.2
 BuildRequires:  pkgconfig(libnfnetlink) >= 1.0.1
-%if 0%{?suse_version} >= 1330
 BuildRequires:  pkgconfig(libsystemd) >= 227
-%endif
 
 %description
-The conntrack-tools are a set of tools targeted at system
-administrators. They are conntrack, the userspace command line
-interface, and conntrackd, the userspace daemon. The tool conntrack
-provides a full featured interface that has replaced the old procfs
-interface. Using conntrack, you can view and manage the in-kernel
-connection tracking state table from userspace. On the other hand,
-conntrackd covers the specific aspects of stateful firewalls to
-enable highly available scenarios, and can be used as statistics
-collector as well.
+The conntrack/nfct utilities provide the userspace interface to the
+Netfilter connection tracking, replacing
+/proc/net/ip_conntrack. The tools can be used to search, list,
+inspect and maintain the connection tracking subsystem of the Linux
+kernel.
+
+%package -n conntrackd
+Summary:Connection tracking daemon
+Group:  Productivity/Networking/Security
+Provides:   conntrack-tools:/usr/sbin/conntrackd
+Requires:   conntrack-tools = %version-%release
+Requires(post): fillup
+Recommends: logrotate
+%{?systemd_requires}
+
+%description -n conntrackd
+conntrackd is the user-space daemon for the Netfilter connection tracking
+system. This daemon synchronizes connection tracking states between several
+replica firewalls.
 
 %prep
 %setup -q
-find doc -type f -name '*.orig' -delete
+find doc -type f -name "*.orig" -delete
+find doc -type f -exec chmod -x "{}" "+"
 
 %build
-%configure \
-%if 0%{?suse_version} >= 1330
-   --enable-systemd \
-%endif
-   --disable-static
+%configure --disable-static --enable-systemd
 # CC   read_config_lex.o
 #read_config_lex.l:24:28: fatal error: read_config_yy.h: No such file or
 #directory
-make %{?_smp_mflags} -j1
+make %{?_smp_mflags} -j1 V=1
 
 %install
+%make_install
 b="%buildroot"
-make install DESTDIR="$b"
+ln -s service 

commit deepin-music-player for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package deepin-music-player for 
openSUSE:Factory checked in at 2018-02-10 17:58:45

Comparing /work/SRC/openSUSE:Factory/deepin-music-player (Old)
 and  /work/SRC/openSUSE:Factory/.deepin-music-player.new (New)


Package is "deepin-music-player"

Sat Feb 10 17:58:45 2018 rev:15 rq:574689 version:3.1.7.2

Changes:

--- /work/SRC/openSUSE:Factory/deepin-music-player/deepin-music-player.changes  
2018-01-01 22:17:28.203774815 +0100
+++ 
/work/SRC/openSUSE:Factory/.deepin-music-player.new/deepin-music-player.changes 
2018-02-10 17:58:49.274711620 +0100
@@ -1,0 +2,6 @@
+Fri Feb  9 07:16:54 UTC 2018 - hillw...@opensuse.org
+
+- Fix build for Leap 15.0
+  * Set BuildRequires tag for python.
+
+---



Other differences:
--
++ deepin-music-player.spec ++
--- /var/tmp/diff_new_pack.k40WYr/_old  2018-02-10 17:58:50.034684109 +0100
+++ /var/tmp/diff_new_pack.k40WYr/_new  2018-02-10 17:58:50.034684109 +0100
@@ -1,8 +1,8 @@
 #
 # spec file for package deepin-music-player
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2013-2017 Hillwood Yang 
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2013-2018 Hillwood Yang 
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -35,6 +35,7 @@
 BuildRequires:  libqt5-qtmultimedia-devel
 BuildRequires:  libqt5-qtsvg-devel
 BuildRequires:  libqt5-qtx11extras-devel
+BuildRequires:  python
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(dtkcore)
 BuildRequires:  pkgconfig(dtksettings)




commit mpich for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mpich for openSUSE:Factory checked 
in at 2018-02-10 17:58:40

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


Package is "mpich"

Sat Feb 10 17:58:40 2018 rev:8 rq:574685 version:3.2.1

Changes:

--- /work/SRC/openSUSE:Factory/mpich/mpich.changes  2018-01-31 
19:54:44.289534868 +0100
+++ /work/SRC/openSUSE:Factory/.mpich.new/mpich.changes 2018-02-10 
17:58:42.682950244 +0100
@@ -1,0 +2,5 @@
+Fri Feb  9 14:16:30 UTC 2018 - cg...@suse.com
+
+- Fix summary in module files (bnc#1080259)
+
+---



Other differences:
--
++ mpich.spec ++
--- /var/tmp/diff_new_pack.AfD3IJ/_old  2018-02-10 17:58:44.118898262 +0100
+++ /var/tmp/diff_new_pack.AfD3IJ/_new  2018-02-10 17:58:44.122898118 +0100
@@ -400,7 +400,7 @@
 module-whatis "Name: %{pname} built with %{compiler_family} toolchain"
 module-whatis "Version: %{version}"
 module-whatis "Category: runtime library"
-module-whatis "Description: %{summary}"
+module-whatis "Description: %{SUMMARY:0}"
 module-whatis "URL: %{url}"
 
 set version %{version}




commit dmenu for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package dmenu for openSUSE:Factory checked 
in at 2018-02-10 17:58:50

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


Package is "dmenu"

Sat Feb 10 17:58:50 2018 rev:9 rq:574712 version:4.7

Changes:

--- /work/SRC/openSUSE:Factory/dmenu/dmenu.changes  2017-07-28 
09:48:08.284077611 +0200
+++ /work/SRC/openSUSE:Factory/.dmenu.new/dmenu.changes 2018-02-10 
17:58:50.170679186 +0100
@@ -1,0 +2,6 @@
+Fri Feb  9 13:52:15 UTC 2018 - crrodrig...@opensuse.org
+
+- dmenu-optflags.patch: Fix optflags handling
+- Fix BuildRequires not to use xorg-x11-devel  
+
+---

New:

  dmenu-optflags.patch



Other differences:
--
++ dmenu.spec ++
--- /var/tmp/diff_new_pack.tLUdS7/_old  2018-02-10 17:58:50.754658046 +0100
+++ /var/tmp/diff_new_pack.tLUdS7/_new  2018-02-10 17:58:50.758657901 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dmenu
 #
-# 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
@@ -24,21 +24,23 @@
 Group:  System/GUI/Other
 Url:http://tools.suckless.org/dmenu/
 Source: http://dl.suckless.org/tools/%{name}-%{version}.tar.gz
-BuildRequires:  freetype2-devel
-BuildRequires:  xorg-x11-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch0: dmenu-optflags.patch
+BuildRequires:  pkgconfig(fontconfig)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xft)
+BuildRequires:  pkgconfig(xinerama)
 
 %description
 dmenu is a dynamic menu for X, originally designed for dwm. It manages large 
numbers of user-defined menu items efficiently.
 
 %prep
 %setup -q
-# comment that BSD part
-sed -i '/FREETYPEINC = ${X11INC}\/freetype2/s@^@#@' config.mk
+%patch0 -p1
 
 %build
-make OPTFLAGS="%{optflags}" \
-X11LIB="%{_prefix}/X11R6/%{_lib}"
+export CFLAGS="%optflags"
+make X11LIB="%{_prefix}/X11R6/%{_lib}"
 
 %install
 make DESTDIR=%{buildroot} install %{?_smp_mflags} \

++ dmenu-optflags.patch ++
Index: dmenu-4.7/Makefile
===
--- dmenu-4.7.orig/Makefile
+++ dmenu-4.7/Makefile
@@ -16,7 +16,7 @@ options:
 
 .c.o:
@echo CC $<
-   @${CC} -c ${CFLAGS} $<
+   ${CC} -c ${CFLAGS} $<
 
 config.h:
@echo creating $@ from config.def.h
@@ -26,11 +26,11 @@ ${OBJ}: arg.h config.h config.mk drw.h
 
 dmenu: dmenu.o drw.o util.o
@echo CC -o $@
-   @${CC} -o $@ dmenu.o drw.o util.o ${LDFLAGS}
+   ${CC} $(CFLAGS) -o $@ dmenu.o drw.o util.o ${LDFLAGS}
 
 stest: stest.o
@echo CC -o $@
-   @${CC} -o $@ stest.o ${LDFLAGS}
+   ${CC} $(CFLAGS) -o $@ stest.o ${LDFLAGS}
 
 clean:
@echo cleaning
Index: dmenu-4.7/config.mk
===
--- dmenu-4.7.orig/config.mk
+++ dmenu-4.7/config.mk
@@ -23,9 +23,9 @@ INCS = -I${X11INC} -I${FREETYPEINC}
 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
 
 # flags
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 
-D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
-CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
-LDFLAGS  = -s ${LIBS}
+CPPFLAGS += -D_GNU_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
+CFLAGS := $(CFLAGS) -Wall ${INCS} ${CPPFLAGS}
+LDFLAGS  += ${LIBS}
 
 # compiler and linker
 CC = cc



commit kopano-webapp for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package kopano-webapp for openSUSE:Factory 
checked in at 2018-02-10 17:58:16

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


Package is "kopano-webapp"

Sat Feb 10 17:58:16 2018 rev:7 rq:574618 version:3.4.5

Changes:

--- /work/SRC/openSUSE:Factory/kopano-webapp/kopano-webapp.changes  
2018-01-30 15:42:46.131184213 +0100
+++ /work/SRC/openSUSE:Factory/.kopano-webapp.new/kopano-webapp.changes 
2018-02-10 17:58:18.307832630 +0100
@@ -1,0 +2,18 @@
+Fri Feb  9 10:28:33 UTC 2018 - bo...@opensuse.org
+
+- Update to 3.4.5 final, improvements:
+  * KW-420 Improve “sorting not possible” text in search
+  * KW-612 Import e-mail (eml) from attachment
+  * KW-1535 Set a flag on a task item
+  * KW-2100 Detect closing or adding newly opened calendar in a mr
+- Bugfixes:
+  * KW-1604 Error thrown when opening previously favorited shared
+search folder of re-opened shared store
+  * KW-1948 [ie11] [edge] saving attachment with umlauts results in
+a scrambled file name
+  * KW-2028 Attachment not send when address book is open while
+auto-saving
+- Full changelog: 
+  https://documentation.kopano.io/kopano_changelog/webapp.html
+
+---

Old:

  kopano-webapp-3.4.4.tar.xz

New:

  kopano-webapp-3.4.5.tar.xz



Other differences:
--
++ kopano-webapp.spec ++
--- /var/tmp/diff_new_pack.bzEWQ9/_old  2018-02-10 17:58:19.271797734 +0100
+++ /var/tmp/diff_new_pack.bzEWQ9/_new  2018-02-10 17:58:19.271797734 +0100
@@ -20,7 +20,7 @@
 %define langdir %{_datadir}/%{name}/server/language
 %define plugindir %{_datadir}/%{name}/plugins
 Name:   kopano-webapp
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Improved WebApp for Kopano
 License:AGPL-3.0
@@ -62,7 +62,7 @@
 Provides translations to the package %{name}.
 
 %package contactfax
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Contact fax plugin for kopano-webapp
 Group:  Productivity/Networking/Email/Clients
@@ -72,7 +72,7 @@
 field of the email.
 
 %package folderwidgets
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Folder widgets plugin for kopano-webapp
 Group:  Productivity/Networking/Email/Clients
@@ -82,7 +82,7 @@
 default folders for a user.
 
 %package gmaps
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Google Maps plugin for kopano-webapp
 Group:  Productivity/Networking/Email/Clients
@@ -91,7 +91,7 @@
 Shows contact address on Google Maps.
 
 %package pimfolder
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Plugin for kopano-webapp to quickly move mail into another 
folder
 Group:  Productivity/Networking/Email/Clients
@@ -100,7 +100,7 @@
 Kopano PIM plugin, allows you to set-up a folder quickly moving your mail to 
another folder; like "Archive" in GTD
 
 %package quickitems
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Quick Items plugin for kopano-webapp
 Group:  Productivity/Networking/Email/Clients
@@ -110,7 +110,7 @@
 Tasks and Notes.
 
 %package titlecounter
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Title counter plugin for kopano-webapp
 Group:  Productivity/Networking/Email/Clients
@@ -119,7 +119,7 @@
 Plugin to show number of unread messages in the window title.
 
 %package webappmanual
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Manual plugin for kopano-webapp
 Group:  Productivity/Networking/Email/Clients
@@ -128,7 +128,7 @@
 Plugin with manual for Kopano WebApp
 
 %package zdeveloper
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:Developer plugin for kopano-webapp
 Group:  Development/Tools/Debuggers

++ _service ++
--- /var/tmp/diff_new_pack.bzEWQ9/_old  2018-02-10 17:58:19.303796576 +0100
+++ /var/tmp/diff_new_pack.bzEWQ9/_new  2018-02-10 17:58:19.303796576 +0100
@@ -2,10 +2,10 @@

git
https://stash.kopano.io/scm/kw/kopano-webapp.git
-   v3.4.4
+   v3.4.5
kopano-webapp
-   v3.4.4
-   3.4.4
+   v3.4.5
+   3.4.5


*.tar

++ kopano-webapp-3.4.4.tar.xz -> kopano-webapp-3.4.5.tar.xz ++
/work/SRC/openSUSE:Factory/kopano-webapp/kopano-webapp-3.4.4.tar.xz 
/work/SRC/openSUSE:Factory/.kopano-webapp.new/kopano-webapp-3.4.5.tar.xz 
differ: 

commit amazon-ssm-agent for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package amazon-ssm-agent for 
openSUSE:Factory checked in at 2018-02-10 17:58:08

Comparing /work/SRC/openSUSE:Factory/amazon-ssm-agent (Old)
 and  /work/SRC/openSUSE:Factory/.amazon-ssm-agent.new (New)


Package is "amazon-ssm-agent"

Sat Feb 10 17:58:08 2018 rev:7 rq:574518 version:2.2.45.0

Changes:

--- /work/SRC/openSUSE:Factory/amazon-ssm-agent/amazon-ssm-agent.changes
2017-11-29 10:53:55.313903217 +0100
+++ /work/SRC/openSUSE:Factory/.amazon-ssm-agent.new/amazon-ssm-agent.changes   
2018-02-10 17:58:12.260051561 +0100
@@ -1,0 +2,5 @@
+Thu Feb  1 16:40:35 CET 2018 - r...@suse.de
+
+- do not build on s390, only on s390x (no go on s390) 
+
+---



Other differences:
--
++ amazon-ssm-agent.spec ++
--- /var/tmp/diff_new_pack.HS6vRt/_old  2018-02-10 17:58:13.096021299 +0100
+++ /var/tmp/diff_new_pack.HS6vRt/_new  2018-02-10 17:58:13.100021155 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package amazon-ssm-agent
 #
-# 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
@@ -31,6 +31,7 @@
 BuildRequires:  systemd
 Requires:   systemd
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+ExcludeArch:s390
 
 %description
 This package provides the Amazon SSM Agent for managing EC2 Instances using




commit kubernetes-dns for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package kubernetes-dns for openSUSE:Factory 
checked in at 2018-02-10 17:58:57

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


Package is "kubernetes-dns"

Sat Feb 10 17:58:57 2018 rev:2 rq:574732 version:1.14.1

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes-dns/kubernetes-dns.changes
2018-02-02 22:21:34.147872968 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes-dns.new/kubernetes-dns.changes   
2018-02-10 17:58:57.410417105 +0100
@@ -1,0 +2,6 @@
+Fri Feb  9 10:16:28 UTC 2018 - rbr...@suse.com
+
+- Add/own /etc/k8s/dns/dnsmasq-nanny to be used by related
+  dnsmasq-nanny container
+
+---



Other differences:
--
++ kubernetes-dns.spec ++
--- /var/tmp/diff_new_pack.nz1A0L/_old  2018-02-10 17:58:58.022394952 +0100
+++ /var/tmp/diff_new_pack.nz1A0L/_new  2018-02-10 17:58:58.022394952 +0100
@@ -1,6 +1,7 @@
+#
 # spec file for package kubernetes-dns
 #
-# 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
@@ -14,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define git_commit %{version}
 
 Name:   kubernetes-dns
@@ -24,9 +26,9 @@
 Group:  Development/Languages/Other
 Url:https://github.com/kubernetes/dns
 Source: %{name}-%{version}.tar.xz
-BuildRequires:  golang(API) = 1.8
-BuildRequires:  xz
 BuildRequires:  golang-packaging
+BuildRequires:  xz
+BuildRequires:  golang(API) = 1.8
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{go_nostrip}
 %{go_provides}
@@ -45,6 +47,7 @@
 
 %install
 mkdir -p %{buildroot}%{_bindir}
+mkdir -p %{buildroot}%{_sysconfdir}/k8s/dns/dnsmasq-nanny
 install -m755 bin/sidecar %{buildroot}/%{_bindir}/sidecar
 install -m755 bin/kube-dns %{buildroot}/%{_bindir}/kube-dns
 install -m755 bin/dnsmasq-nanny %{buildroot}/%{_bindir}/dnsmasq-nanny
@@ -52,6 +55,9 @@
 %files
 %defattr(-,root,root,-)
 %doc README.md LICENSE
+%dir %{_sysconfdir}/k8s
+%dir %{_sysconfdir}/k8s/dns
+%dir %{_sysconfdir}/k8s/dns/dnsmasq-nanny
 %{_bindir}/sidecar
 %{_bindir}/kube-dns
 %{_bindir}/dnsmasq-nanny




commit openmpi3 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package openmpi3 for openSUSE:Factory 
checked in at 2018-02-10 17:58:24

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


Package is "openmpi3"

Sat Feb 10 17:58:24 2018 rev:6 rq:574673 version:3.0.0

Changes:

--- /work/SRC/openSUSE:Factory/openmpi3/openmpi3.changes2018-01-31 
19:54:46.957410796 +0100
+++ /work/SRC/openSUSE:Factory/.openmpi3.new/openmpi3.changes   2018-02-10 
17:58:32.795308180 +0100
@@ -1,0 +2,5 @@
+Fri Feb  9 12:05:35 UTC 2018 - cg...@suse.com
+
+- Fix summary in module files (bnc#1080259)
+
+---



Other differences:
--
++ openmpi3.spec ++
--- /var/tmp/diff_new_pack.4T2OPu/_old  2018-02-10 17:58:34.271254750 +0100
+++ /var/tmp/diff_new_pack.4T2OPu/_new  2018-02-10 17:58:34.283254316 +0100
@@ -514,7 +514,7 @@
 module-whatis "Name: %{pname} built with %{compiler_family} toolchain"
 module-whatis "Version: %{version}"
 module-whatis "Category: runtime library"
-module-whatis "Description: %{summary}"
+module-whatis "Description: %{SUMMARY:0}"
 module-whatis "URL: %{url}"
 
 set version %{version}




commit you-get for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package you-get for openSUSE:Factory checked 
in at 2018-02-10 17:58:54

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


Package is "you-get"

Sat Feb 10 17:58:54 2018 rev:3 rq:574729 version:0.4.1025

Changes:

--- /work/SRC/openSUSE:Factory/you-get/you-get.changes  2018-01-16 
09:42:29.237361299 +0100
+++ /work/SRC/openSUSE:Factory/.you-get.new/you-get.changes 2018-02-10 
17:58:56.466451277 +0100
@@ -1,0 +2,5 @@
+Fri Feb  9 15:23:47 UTC 2018 - aloi...@gmx.com
+
+- Update to version 0.4.1025 (no changelog supplied)
+
+---

Old:

  you-get-0.4.1011.tar.gz

New:

  you-get-0.4.1025.tar.gz



Other differences:
--
++ you-get.spec ++
--- /var/tmp/diff_new_pack.SZYwkl/_old  2018-02-10 17:58:57.230423620 +0100
+++ /var/tmp/diff_new_pack.SZYwkl/_new  2018-02-10 17:58:57.234423476 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package you-get
 #
-# 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:   you-get
-Version:0.4.1011
+Version:0.4.1025
 Release:0
 Summary:Dumb downloader that scrapes the web
 License:MIT

++ you-get-0.4.1011.tar.gz -> you-get-0.4.1025.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/you-get-0.4.1011/src/you_get/common.py 
new/you-get-0.4.1025/src/you_get/common.py
--- old/you-get-0.4.1011/src/you_get/common.py  2017-12-23 18:27:08.0 
+0100
+++ new/you-get-0.4.1025/src/you_get/common.py  2018-02-09 15:50:09.0 
+0100
@@ -845,6 +845,10 @@
 merged_ext = 'ts'
 return '%s.%s' % (title, merged_ext)
 
+def print_user_agent(faker=False):
+urllib_default_user_agent = 'Python-urllib/%d.%d' % sys.version_info[:2]
+user_agent = fake_headers['User-Agent'] if faker else 
urllib_default_user_agent
+print('User Agent: %s' % user_agent)
 
 def download_urls(
 urls, title, ext, total_size, output_dir='.', refer=None, merge=True,
@@ -858,6 +862,7 @@
 )
 return
 if dry_run:
+print_user_agent(faker=faker)
 print('Real URLs:\n%s' % '\n'.join(urls))
 return
 
@@ -986,6 +991,7 @@
 ):
 assert url
 if dry_run:
+print_user_agent(faker=faker)
 print('Real URL:\n%s\n' % [url])
 if params.get('-y', False):  # None or unset -> False
 print('Real Playpath:\n%s\n' % [params.get('-y')])
@@ -1009,6 +1015,7 @@
 ):
 assert url
 if dry_run:
+print_user_agent(faker=faker)
 print('Real URL:\n%s\n' % [url])
 if params.get('-y', False):  # None or unset ->False
 print('Real Playpath:\n%s\n' % [params.get('-y')])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/you-get-0.4.1011/src/you_get/extractors/bilibili.py 
new/you-get-0.4.1025/src/you_get/extractors/bilibili.py
--- old/you-get-0.4.1011/src/you_get/extractors/bilibili.py 2017-12-23 
18:27:08.0 +0100
+++ new/you-get-0.4.1025/src/you_get/extractors/bilibili.py 2018-02-09 
15:50:09.0 +0100
@@ -68,7 +68,7 @@
 chksum = hashlib.md5(bytes(params_str+self.SEC2, 
'utf8')).hexdigest()
 api_url = self.bangumi_api_url + params_str + '=' + chksum
 
-xml_str = get_content(api_url)
+xml_str = get_content(api_url, headers={'referer': self.url, 
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) 
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'})
 return xml_str
 
 def parse_bili_xml(self, xml_str):
@@ -125,11 +125,11 @@
 self.referer = self.url
 self.page = get_content(self.url)
 
-m = re.search(r'(.*?)', self.page)
+m = re.search(r'(.*?)', self.page) or re.search(r'', self.page)
 if m is not None:
 self.title = m.group(1)
 if self.title is None:
-m = re.search(r'', 
self.page)
+m = re.search(r'property="og:title" content="([^"]+)"', self.page)
 if m is not None:
 self.title = m.group(1)
 if 'subtitle' in kwargs:
@@ -165,12 +165,16 @@
 qq_download_by_vid(tc_flashvars, self.title, 
output_dir=kwargs['output_dir'], merge=kwargs['merge'], 
info_only=kwargs['info_only'])
 return
 
+has_plist = re.search(r'

commit libTMCG for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package libTMCG for openSUSE:Factory checked 
in at 2018-02-10 17:58:13

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


Package is "libTMCG"

Sat Feb 10 17:58:13 2018 rev:3 rq:574539 version:1.3.11

Changes:

--- /work/SRC/openSUSE:Factory/libTMCG/libTMCG.changes  2018-01-29 
15:00:17.154593599 +0100
+++ /work/SRC/openSUSE:Factory/.libTMCG.new/libTMCG.changes 2018-02-10 
17:58:14.435972793 +0100
@@ -1,0 +2,9 @@
+Thu Feb  8 21:12:35 UTC 2018 - kbabi...@suse.com
+
+- Update to 1.3.11:
+  * Improved libTMCG initialization (init_libTMCG())
+  * Better handling of RFC4880 functionality
+
+- Switched sources to https instead of http
+
+---

Old:

  libTMCG-1.3.10.tar.gz
  libTMCG-1.3.10.tar.gz.sig

New:

  libTMCG-1.3.11.tar.gz
  libTMCG-1.3.11.tar.gz.sig



Other differences:
--
++ libTMCG.spec ++
--- /var/tmp/diff_new_pack.ZmUgiY/_old  2018-02-10 17:58:15.611930223 +0100
+++ /var/tmp/diff_new_pack.ZmUgiY/_new  2018-02-10 17:58:15.615930078 +0100
@@ -18,17 +18,17 @@
 #
 
 
-%define sover 9
+%define sover 11
 Name:   libTMCG
-Version:1.3.10
+Version:1.3.11
 Release:0
 Summary:C++ library for creating secure and fair online card games
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
-Url:http://www.nongnu.org/libtmcg/
-Source: 
http://download.savannah.gnu.org/releases/libtmcg/%{name}-%{version}.tar.gz
-Source2:
http://download.savannah.gnu.org/releases/libtmcg/%{name}-%{version}.tar.gz.sig
-Source3:
http://savannah.nongnu.org/project/memberlist-gpgkeys.php?group=libtmcg=1#/%{name}.keyring
+Url:https://www.nongnu.org/libtmcg/
+Source: 
https://download.savannah.gnu.org/releases/libtmcg/%{name}-%{version}.tar.gz
+Source2:
https://download.savannah.gnu.org/releases/libtmcg/%{name}-%{version}.tar.gz.sig
+Source3:
https://savannah.nongnu.org/project/memberlist-gpgkeys.php?group=libtmcg=1#/%{name}.keyring
 BuildRequires:  gcc-c++
 BuildRequires:  gmp-devel >= 4.2
 BuildRequires:  libgcrypt-devel >= 1.6.0

++ libTMCG-1.3.10.tar.gz -> libTMCG-1.3.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libTMCG-1.3.10/ChangeLog new/libTMCG-1.3.11/ChangeLog
--- old/libTMCG-1.3.10/ChangeLog2018-01-14 09:38:23.0 +0100
+++ new/libTMCG-1.3.11/ChangeLog2018-02-08 19:24:56.0 +0100
@@ -7,6 +7,14 @@
 in the sources of this package and additionally can be obtained from Internet
 .
 
+* [2018-02-08] release 1.3.11 of LibTMCG
+* [2018-01-26] init_libTMCG(): added libgcrypt self-test
+* [2018-01-26] init_libTMCG(): check for already initialized libgcrypt
+* [2018-01-23] RFC4880: introduced new enumeration type tmcg_armor_t
+* [2018-01-22] RFC4880: added hash truncation for AsymmetricSignDSA()
+* [2018-01-21] RFC4880: added KeyRevocationHashV3()
+* [2018-01-16] RFC4880: increased buffer length for very large key sizes
+* [2018-01-16] RFC4880: added OctetsCompareConstantTime()
 * [2018-01-14] release 1.3.10 of LibTMCG
 * [2018-01-12] RFC4880: added PacketSigPrepareCertificationSignature()
 * [2018-01-10] RFC4880: added RSA encoding for PacketPubEncode()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libTMCG-1.3.10/NEWS new/libTMCG-1.3.11/NEWS
--- old/libTMCG-1.3.10/NEWS 2018-01-14 09:37:50.0 +0100
+++ new/libTMCG-1.3.11/NEWS 2018-02-08 19:31:13.0 +0100
@@ -1,4 +1,4 @@
-Copyright (C)  2006, 2007, 2009, 2015-2017 Heiko Stamer 
+Copyright (C)  2006, 2007, 2009, 2015-2018 Heiko Stamer 
 
 Permission is granted to copy, distribute and/or modify this document under
 the terms of the GNU Free Documentation License, Version 1.3 or any later
@@ -7,6 +7,9 @@
 included in the sources of this package and additionally can be obtained from
 Internet .
 
+1.3.11 Some small enhancements for the OpenPGP interfaces and the library
+   initialization have been implemented. Unfortunately, the changes
+   may require also an update of the application code to be effective.
 1.3.10 With this release the RSA signature generation/verification for OpenPGP
is introduced. Moreover, a function for preparing certification
signatures has been added.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libTMCG-1.3.10/README new/libTMCG-1.3.11/README
--- old/libTMCG-1.3.10/README 

commit python-openqa_review for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package python-openqa_review for 
openSUSE:Factory checked in at 2018-02-10 17:58:21

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


Package is "python-openqa_review"

Sat Feb 10 17:58:21 2018 rev:20 rq:574664 version:1.10.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-openqa_review/python-openqa_review.changes
2018-01-20 11:27:47.177359463 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-openqa_review.new/python-openqa_review.changes
   2018-02-10 17:58:21.863703907 +0100
@@ -1,0 +2,26 @@
+Fri Feb 09 13:31:37 UTC 2018 - ok...@suse.com
+
+- Update to version 1.10.0:
+  * Add helper script for SLE15 functional+autoyast concise report
+  * Reference new review wrapper script in setup.py
+
+---
+Thu Feb  8 09:26:55 UTC 2018 - ok...@suse.com
+
+- Adapt license file location according to new suggestion around %license
+
+---
+Wed Feb 07 16:21:34 UTC 2018 - ok...@suse.com
+
+- Update to version 1.9.0:
+  * openqa-review-daily-email: Fix passing of additional options with 
whitespace
+  * Add two options to further abbreviate condensed reports
+  * Include difference in numbers on verbosity level above 3
+  * Correct optional code for updating reference reports
+  * Encode severity together with priority for ticket references
+  * Mark closed tickets as red
+  * setup.py: Fix flake8 reported style issues with explicit except
+  * setup.py: Catch errors as reported on no version.py from OBS build
+  * setup.py: python2 backward cruft/craft
+
+---

Old:

  python-openqa_review-1.8.3.tar.gz

New:

  python-openqa_review-1.10.0.tar.gz



Other differences:
--
++ python-openqa_review.spec ++
--- /var/tmp/diff_new_pack.BGprGo/_old  2018-02-10 17:58:22.527679871 +0100
+++ /var/tmp/diff_new_pack.BGprGo/_new  2018-02-10 17:58:22.531679726 +0100
@@ -19,17 +19,19 @@
 # Define just "test" as a package in _multibuild file to distinguish test
 # instructions here
 %if "@BUILD_FLAVOR@" == ""
-%bcond_with test
+%define _test 0
+%define name_ext %nil
 %else
-%bcond_without test
+%define _test 1
+%define name_ext -test
 %endif
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define short_name openqa_review
-%define binaries openqa-review openqa-review-daily-email 
openqa-review-sles-ha tumblesle-release
+%define binaries openqa-review openqa-review-daily-email 
openqa-review-sles-ha tumblesle-release 
openqa-review-functional_autoyast_concise
 %define oldpython python
 Name:   python-%{short_name}%{?name_ext}
-Version:1.8.3
+Version:1.10.0
 Release:0
 Summary:A review helper script for openQA
 License:MIT
@@ -37,7 +39,7 @@
 Source: 
https://github.com/okurz/%{short_name}/archive/%{version}.tar.gz#/python-%{short_name}-%{version}.tar.gz
 Url:https://github.com/okurz/%{short_name}
 BuildRequires:  python-rpm-macros
-%if %{with test}
+%if 0%{?_test}
 BuildRequires:  %{oldpython}-%{short_name}
 %else
 BuildRequires:  %{python_module setuptools}
@@ -73,7 +75,7 @@
 A review helper script for openQA. For more details look into the README file.
 
 %prep
-%if %{with test}
+%if 0%{?_test}
 # workaround to prevent post/install failing assuming this file for whatever
 # reason
 touch %{_sourcedir}/%{short_name}
@@ -84,14 +86,16 @@
 %endif
 
 %build
-%if %{with test}
+%if 0%{?_test}
 openqa-review --help
 tumblesle-release --help
 %else
 %python_build
 %endif
 
-%if %{with test}
+%if 0%{?_test}
+# disable debug packages in package test to prevent error about missing files
+%define debug_package %{nil}
 %else
 %install
 %python_install
@@ -110,16 +114,15 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc LICENSE README.md
+%license LICENSE
+%doc README.md
 %{python_sitelib}
 %python_alternative %{_bindir}/openqa-review
 %python_alternative %{_bindir}/openqa-review-sles-ha
 %python_alternative %{_bindir}/openqa-review-daily-email
+%python_alternative %{_bindir}/openqa-review-functional_autoyast_concise
 %python_alternative %{_bindir}/tumblesle-release
 
-%else
-# disable debug packages in package test to prevent error about missing files
-%define debug_package %{nil}
 %endif
 
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.BGprGo/_old  2018-02-10 17:58:22.567678423 +0100
+++ /var/tmp/diff_new_pack.BGprGo/_new  2018-02-10 17:58:22.571678278 +0100
@@ -1,7 +1,7 @@
 
   
 python-openqa_review
-

commit libisoburn for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package libisoburn for openSUSE:Factory 
checked in at 2018-02-10 17:58:05

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


Package is "libisoburn"

Sat Feb 10 17:58:05 2018 rev:5 rq:574399 version:1.4.8

Changes:

--- /work/SRC/openSUSE:Factory/libisoburn/libisoburn.changes2017-03-02 
19:37:25.338899483 +0100
+++ /work/SRC/openSUSE:Factory/.libisoburn.new/libisoburn.changes   
2018-02-10 17:58:06.880246312 +0100
@@ -1,0 +2,24 @@
+Thu Feb  8 20:33:18 UTC 2018 - asterios.dra...@gmail.com
+
+- Update to 1.4.8:
+  * Bug fix: -as mkisofs -no-emul-boot without -boot-load-size
+defaulted to size 4, instead of full boot image size
+  * Bug fix: -read_fs "norock" did not prevent reading of root Rock
+Ridge info
+  * Bug fix: Mix of absolute and relative disk paths could cause
+SIGSEGV with pattern expansion
+  * Bug fix: --mbr-force-bootable did not get into effect with
+-append_partition
+  * Bug fix: Exit value of failed -mount command was reported as 0
+  * Bug fix: -boot_image actions "keep" and "patch" did not work
+any more. Regression by libisofs 1.4.4.
+  * New -find tests -maxdepth and -mindepth
+  * New commands -update_lxi and -update_li
+  * New API calls isoburn_igopt_set_iso_mbr_part_type(),
+isoburn_igopt_get_iso_mbr_part_type()
+  * New -boot_image bootspec iso_mbr_part_type=
+  * New -as mkisofs option -iso_mbr_part_type
+  * New -as mkisofs option -eltorito-platform
+  * Properly refusing on Pseudo Overwritable formatted BD-R
+
+---

Old:

  libisoburn-1.4.6.tar.gz

New:

  libisoburn-1.4.8.tar.gz



Other differences:
--
++ libisoburn.spec ++
--- /var/tmp/diff_new_pack.LLtesY/_old  2018-02-10 17:58:07.556221841 +0100
+++ /var/tmp/diff_new_pack.LLtesY/_new  2018-02-10 17:58:07.556221841 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libisoburn
 #
-# 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
@@ -18,7 +18,7 @@
 
 %define so_ver 1
 Name:   libisoburn
-Version:1.4.6
+Version:1.4.8
 Release:0
 Summary:Frontend for libburn and libisofs
 License:GPL-2.0+
@@ -30,13 +30,12 @@
 BuildRequires:  libacl-devel
 BuildRequires:  libburn-devel
 BuildRequires:  libisofs-devel
+BuildRequires:  pkgconfig
+BuildRequires:  readline-devel
+BuildRequires:  zlib-devel
 %if 0%{?suse_version} > 1320 || (0%{?is_opensuse} && 0%{?sle_version} >= 
120300)
 BuildRequires:  libjte-devel
 %endif
-BuildRequires:  pkg-config
-BuildRequires:  readline-devel
-BuildRequires:  zlib-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Libisoburn is a frontend for libraries libburn and libisofs which enables
@@ -112,18 +111,14 @@
 # Remove libtool config files
 find %{buildroot} -type f -name "*.la" -delete -print
 
-# Install devel docs (do it manually to fix also rpmlint warning 
"files-duplicate" with %%fdupes)
+# Install devel docs
 mkdir -p %{buildroot}%{_docdir}/%{name}-devel
-install -pm 0644 AUTHORS COPYING COPYRIGHT ChangeLog README TODO 
%{buildroot}%{_docdir}/%{name}-devel/
-install -pm 0644 doc/partition_offset.wiki 
%{buildroot}%{_docdir}/%{name}-devel/
 cp -a doc/html/ %{buildroot}%{_docdir}/%{name}-devel/
 
 %fdupes -s %{buildroot}%{_docdir}/%{name}-devel/
 
 %post -n libisoburn%{so_ver} -p /sbin/ldconfig
-
 %postun -n libisoburn%{so_ver} -p /sbin/ldconfig
-
 %post -n xorriso
 %install_info --info-dir="%{_infodir}" "%{_infodir}/xorriso.info%{ext_info}"
 %install_info --info-dir="%{_infodir}" "%{_infodir}/xorrisofs.info%{ext_info}"
@@ -135,18 +130,17 @@
 %install_info_delete --info-dir="%{_infodir}" 
"%{_infodir}/xorrecord.info%{ext_info}"
 
 %files devel
-%defattr(-,root,root,-)
-%doc %{_docdir}/%{name}-devel/
+%doc AUTHORS COPYING COPYRIGHT ChangeLog README TODO
+%doc doc/partition_offset.wiki
+%doc %{_docdir}/%{name}-devel/html/
 %{_includedir}/libisoburn/
 %{_libdir}/pkgconfig/libisoburn-1.pc
 %{_libdir}/libisoburn.so
 
 %files -n libisoburn%{so_ver}
-%defattr(-,root,root,-)
 %{_libdir}/libisoburn.so.%{so_ver}*
 
 %files -n xorriso
-%defattr(-,root,root,-)
 %doc COPYING COPYRIGHT
 %doc doc/{qemu_xorriso.wiki,startup_file.txt}
 %doc frontend/README-tcltk
@@ -156,11 +150,11 @@
 %{_bindir}/xorriso-tcltk
 %{_bindir}/xorriso
 %{_bindir}/xorrisofs
-%doc %{_mandir}/man1/xorriso.1%{ext_man}
-%doc %{_mandir}/man1/xorrisofs.1%{ext_man}
-%doc 

commit mktorrent for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mktorrent for openSUSE:Factory 
checked in at 2018-02-10 17:57:40

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


Package is "mktorrent"

Sat Feb 10 17:57:40 2018 rev:1 rq:573297 version:1.1

Changes:

New Changes file:

--- /dev/null   2018-02-08 01:06:41.103727112 +0100
+++ /work/SRC/openSUSE:Factory/.mktorrent.new/mktorrent.changes 2018-02-10 
17:57:47.208958416 +0100
@@ -0,0 +1,4 @@
+---
+Thu Feb  1 20:07:50 UTC 2018 - 9+suse@cirno.systems
+
+- init, 1.1

New:

  mktorrent-1.1.tar.gz
  mktorrent.changes
  mktorrent.spec



Other differences:
--
++ mktorrent.spec ++
#
# spec file for package mktorrent
#
# 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
# 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/
#


Name:   mktorrent
Version:1.1
Release:0
Summary:Command line utility to create BitTorrent metainfo files
License:SUSE-GPL-2.0+-with-openssl-exception
Group:  Productivity/Networking/File-Sharing
URL:https://github.com/Rudde/mktorrent
Source: 
https://github.com/Rudde/mktorrent/archive/v1.1.tar.gz#/mktorrent-%{version}.tar.gz
BuildRequires:  openssl-devel

%description
Mktorrent can be used to create BitTorrent metainfo (.torrent) files from the
command line.

%prep
%setup -q

%build
make %{?_smp_mflags} \
CFLAGS="%{optflags}" \
PREFIX=%{_prefix} \
USE_PTHREADS=1 \
USE_LONG_OPTIONS=1 \
%ifnarch x86_64
USE_LARGE_FILES=1 \
%endif
USE_OPENSSL=1

%install
%make_install \
CFLAGS="%{optflags}" \
PREFIX=%{_prefix} \
USE_PTHREADS=1 \
USE_LONG_OPTIONS=1 \
%ifnarch x86_64
USE_LARGE_FILES=1 \
%endif
USE_OPENSSL=1

%files
%license COPYING
%{_bindir}/mktorrent

%changelog



commit geekodoc for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package geekodoc for openSUSE:Factory 
checked in at 2018-02-10 17:58:18

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


Package is "geekodoc"

Sat Feb 10 17:58:18 2018 rev:6 rq:574639 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/geekodoc/geekodoc.changes2018-01-30 
15:44:42.045772769 +0100
+++ /work/SRC/openSUSE:Factory/.geekodoc.new/geekodoc.changes   2018-02-10 
17:58:21.043733590 +0100
@@ -1,0 +2,33 @@
+Fri Feb  9 12:27:58 UTC 2018 - thomas.schrai...@suse.com
+
+- Bugfix release 1.0.2.1
+https://github.com/openSUSE/geekodoc/releases/tag/v1.0.2.1
+
+* Correct version in GeekoDoc schema
+* Add missing 'fig' value (#43)
+* Improve test suite
+
+
+---
+Wed Feb  7 12:15:55 UTC 2018 - thomas.schrai...@suse.com
+
+- Add bcond_with tests to activate test suite 
+
+---
+Tue Feb  6 14:49:06 UTC 2018 - thomas.schrai...@suse.com
+
+- Release 1.0.2
+https://github.com/openSUSE/geekodoc/releases/tag/v1.0.2
+
+Only a package release without any changes in the schemas.
+Fixes issue #41 to reduce number of files in packages
+ 
+
+---
+Tue Feb  6 14:31:32 UTC 2018 - thomas.schrai...@suse.com
+
+- Remove number of files in package; fixes openSUSE/geekodoc#41
+  some files are only useful for development
+
+
+---

Old:

  geekodoc-1.0.1.tar.gz

New:

  geekodoc-1.0.2.1.tar.gz



Other differences:
--
++ geekodoc.spec ++
--- /var/tmp/diff_new_pack.UU4ltD/_old  2018-02-10 17:58:21.515716504 +0100
+++ /var/tmp/diff_new_pack.UU4ltD/_new  2018-02-10 17:58:21.519716359 +0100
@@ -16,8 +16,11 @@
 #
 
 
+%bcond_without  tests
+
+#
 Name:   geekodoc
-Version:1.0.1
+Version:1.0.2.1
 Release:0
 Summary:DocBook based RNG Schema for SUSE Documentation
 License:GPL-3.0
@@ -25,6 +28,8 @@
 Url:
https://github.com/openSUSE/geekodoc/archive/%{name}-%{version}.tar.gz
 Source: %{name}-%{version}.tar.gz
 BuildRequires:  docbook_5 >= 5.1
+BuildRequires:  jing
+BuildRequires:  libxml2-tools
 BuildRequires:  make
 BuildRequires:  python3-rnginline
 BuildRequires:  python3-setuptools
@@ -50,24 +55,32 @@
 
 %prep
 %setup -q
-[[ -d geekodoc/tests ]] && rm -rf geekodoc/tests
 
 %build
 touch geekodoc/rng/geekodoc5.rnc
 # GeekoDoc
 make %{?_smp_mflags} VERBOSE=1 -C geekodoc/rng
-make %{?_smp_mflags} VERBOSE=1 -C geekodoc/rng geekodoc5-flat.rng geekodoc5.rng
+make %{?_smp_mflags} VERBOSE=1 -C geekodoc/rng geekodoc5-flat.rng
 
 # Novdoc
 make %{?_smp_mflags} VERBOSE=1 -C novdoc/rng
 
 %install
-install -d %{buildroot}%{_datadir}/xml %{buildroot}%{_sysconfdir}/xml/catalog.d
-cp -R geekodoc novdoc %{buildroot}%{_datadir}/xml/
+install -d %{buildroot}%{_datadir}/xml/{geekodoc/rng,novdoc/rng} \
+   %{buildroot}%{_sysconfdir}/xml/catalog.d
+
+# Install GeekoDoc:
+cp geekodoc/rng/geekodoc5-flat.rn? %{buildroot}%{_datadir}/xml/geekodoc/rng
+
+# Install Novdoc:
+cp -a novdoc/dtd %{buildroot}%{_datadir}/xml/novdoc
+cp novdoc/rng/novdocxi-flat.rn? novdoc/rng/novell.ent 
%{buildroot}%{_datadir}/xml/novdoc/rng
+
+# Install catalogs:
 cp catalog.d/* %{buildroot}%{_sysconfdir}/xml/catalog.d/
 
 # Fixup catalog paths
-sed -i'' 's#"\.\./#"%{_datadir}/xml/#' 
%{buildroot}%{_sysconfdir}/xml/catalog.d/*
+sed -i 's#"\.\./#"%{_datadir}/xml/#' %{buildroot}%{_sysconfdir}/xml/catalog.d/*
 
 %post
 update-xml-catalog
@@ -90,12 +103,18 @@
 %postun -n novdoc
 update-xml-catalog
 
+%if 0%{with tests}
+%check
+cd geekodoc/tests
+./run-tests.sh -V xmllint
+./run-tests.sh -V jing
+%endif
+
 %files
-%license LICENSE
+%license LICENSE ChangeLog
 %config %{_sysconfdir}/xml/catalog.d/geekodoc.xml
 %{_datadir}/xml/geekodoc
 %{_datadir}/xml/geekodoc/*
-%exclude %{_datadir}/xml/geekodoc/tests/*
 
 %files -n novdoc
 %license LICENSE

++ geekodoc-1.0.1.tar.gz -> geekodoc-1.0.2.1.tar.gz ++
 60055 lines of diff (skipped)




commit postgresql10 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package postgresql10 for openSUSE:Factory 
checked in at 2018-02-10 17:56:55

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


Package is "postgresql10"

Sat Feb 10 17:56:55 2018 rev:4 rq:574653 version:10.2

Changes:

--- /work/SRC/openSUSE:Factory/postgresql10/postgresql10.changes
2017-12-21 11:27:05.190152574 +0100
+++ /work/SRC/openSUSE:Factory/.postgresql10.new/postgresql10.changes   
2018-02-10 17:57:07.510395509 +0100
@@ -1,0 +2,19 @@
+Fri Feb  9 09:16:05 UTC 2018 - m...@suse.com
+
+- Upate to PostgreSQL 10.2
+  * https://www.postgresql.org/docs/10/static/release-10-2.html
+  * CVE-2018-1052, bsc#1080253: Fix processing of partition keys
+containing multiple expressions.
+  * CVE-2018-1053, bsc#1077983: Ensure that all temporary files
+made by pg_upgrade are non-world-readable.
+  * bsc#1079757: Rename pg_rewind's copy_file_range function to
+avoid conflict with new Linux system call of that name.
+
+---
+Fri Jan 19 13:07:24 UTC 2018 - m...@suse.com
+
+- Use Python 3 for building PL/Python (boo#1067699).
+- Don't %config the symlinks to /etc/alternatives to avoid rpmlint
+  warnings.
+
+---

Old:

  postgresql-10.1.tar.bz2

New:

  postgresql-10.2.tar.bz2



Other differences:
--
++ postgresql10.spec ++
--- /var/tmp/diff_new_pack.In0rTw/_old  2018-02-10 17:57:08.442361772 +0100
+++ /var/tmp/diff_new_pack.In0rTw/_new  2018-02-10 17:57:08.446361627 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql10
 #
-# 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
@@ -62,7 +62,7 @@
 BuildRequires:  libuuid-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  pam-devel
-BuildRequires:  python-devel
+BuildRequires:  python3-devel
 BuildRequires:  readline-devel
 BuildRequires:  tcl-devel
 BuildRequires:  timezone
@@ -96,7 +96,7 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:10.1
+Version:10.2
 Release:0
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
 Source1:baselibs.conf
@@ -352,6 +352,7 @@
 find -name .gitignore -delete
 
 %build
+export PYTHON=python3
 PACKAGE_TARNAME=%name %configure \
 --bindir=%pgbindir \
 --libdir=%pglibdir \
@@ -531,7 +532,7 @@
 ln -s $ALTBIN %buildroot$BIN
 
 echo "$PGBIN" >> $PKG.files
-echo "%config(missingok) $BIN" >> $PKG.files
+echo "$BIN" >> $PKG.files
 echo "%ghost $ALTBIN" >> $PKG.files
 test -e %buildroot$MAN &&
 echo "%doc $MAN" >> $PKG.files

++ postgresql-10.1.tar.bz2 -> postgresql-10.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/postgresql10/postgresql-10.1.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql10.new/postgresql-10.2.tar.bz2 differ: 
char 11, line 1

++ postgresql-conf.patch ++
--- /var/tmp/diff_new_pack.In0rTw/_old  2018-02-10 17:57:08.538358297 +0100
+++ /var/tmp/diff_new_pack.In0rTw/_new  2018-02-10 17:57:08.542358153 +0100
@@ -1,8 +1,6 @@
-Index: src/backend/utils/misc/postgresql.conf.sample
-===
 --- src/backend/utils/misc/postgresql.conf.sample.orig
 +++ src/backend/utils/misc/postgresql.conf.sample
-@@ -338,13 +338,13 @@
+@@ -341,13 +341,13 @@
  
  # - Where to Log -
  
@@ -18,7 +16,7 @@
# into log files. Required to be on for
# csvlogs.
# (change requires restart)
-@@ -439,6 +439,7 @@
+@@ -443,6 +443,7 @@
  #log_error_verbosity = default# terse, default, or verbose 
messages
  #log_hostname = off
  #log_line_prefix = '%m [%p] ' # special values:

++ postgresql-plperl-keep-rpath.patch ++
--- /var/tmp/diff_new_pack.In0rTw/_old  2018-02-10 17:57:08.550357862 +0100
+++ /var/tmp/diff_new_pack.In0rTw/_new  2018-02-10 17:57:08.554357718 +0100
@@ -2,33 +2,29 @@
 Perl's linker options, because otherwise the PL/Perl module can't find
 libperl.so (bsc#578053).
 
-Index: config/perl.m4
-===
 --- config/perl.m4.orig
 +++ config/perl.m4
-@@ -62,9 +62,7 @@ if test "$PORTNAME" = "win32" ; then

commit python-pykerberos for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package python-pykerberos for 
openSUSE:Factory checked in at 2018-02-10 17:57:20

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


Package is "python-pykerberos"

Sat Feb 10 17:57:20 2018 rev:4 rq:558763 version:1.1.14

Changes:

--- /work/SRC/openSUSE:Factory/python-pykerberos/python-pykerberos.changes  
2017-08-22 11:11:16.082524563 +0200
+++ /work/SRC/openSUSE:Factory/.python-pykerberos.new/python-pykerberos.changes 
2018-02-10 17:57:24.833768401 +0100
@@ -1,0 +2,6 @@
+Wed Dec 20 09:56:22 UTC 2017 - dmuel...@suse.com
+
+- remove explicit krb5 requires, this is in conflict with
+  krb5-mini, which causes depending packages to build-fail
+
+---



Other differences:
--
++ python-pykerberos.spec ++
--- /var/tmp/diff_new_pack.P1jix4/_old  2018-02-10 17:57:25.461745668 +0100
+++ /var/tmp/diff_new_pack.P1jix4/_new  2018-02-10 17:57:25.461745668 +0100
@@ -31,7 +31,6 @@
 BuildRequires:  pkgconfig(krb5)
 # https://github.com/02strich/pykerberos/issues/17
 Conflicts:  python-kerberos
-Requires:   krb5
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %python_subpackages




commit postgresql96 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package postgresql96 for openSUSE:Factory 
checked in at 2018-02-10 17:56:46

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


Package is "postgresql96"

Sat Feb 10 17:56:46 2018 rev:8 rq:574652 version:9.6.7

Changes:

--- /work/SRC/openSUSE:Factory/postgresql96/postgresql96.changes
2017-12-12 21:18:32.303262304 +0100
+++ /work/SRC/openSUSE:Factory/.postgresql96.new/postgresql96.changes   
2018-02-10 17:57:00.978631960 +0100
@@ -1,0 +2,12 @@
+Fri Feb  9 10:00:53 UTC 2018 - m...@suse.com
+
+- Upate to PostgreSQL 9.6.7
+  * https://www.postgresql.org/docs/9.6/static/release-9-6-7.html
+  * CVE-2018-1053, bsc#1077983: Ensure that all temporary files
+made by pg_upgrade are non-world-readable.
+  * bsc#1079757: Rename pg_rewind's copy_file_range function to
+avoid conflict with new Linux system call of that name.
+- Don't %config the symlinks to /etc/alternatives to avoid rpmlint
+  warnings.
+
+---

Old:

  postgresql-9.6.6.tar.bz2

New:

  postgresql-9.6.7.tar.bz2



Other differences:
--
++ postgresql96.spec ++
--- /var/tmp/diff_new_pack.0MGv7N/_old  2018-02-10 17:57:02.202587652 +0100
+++ /var/tmp/diff_new_pack.0MGv7N/_new  2018-02-10 17:57:02.202587652 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql96
 #
-# 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
@@ -80,7 +80,7 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:9.6.6
+Version:9.6.7
 Release:0
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
 Source1:baselibs.conf
@@ -326,9 +326,9 @@
 %patch1
 %patch2
 %patch4
-%patch6 -p1
+%patch6
 %patch8 -p1
-%patch9 -p1
+%patch9
 touch -r tmp configure
 rm tmp
 find src/test/ -name '*.orig' -delete
@@ -505,7 +505,7 @@
 ln -s $ALTBIN %buildroot$BIN
 
 echo "$PGBIN" >> $PKG.files
-echo "%config(missingok) $BIN" >> $PKG.files
+echo "$BIN" >> $PKG.files
 echo "%ghost $ALTBIN" >> $PKG.files
 test -e %buildroot$MAN &&
 echo "%doc $MAN" >> $PKG.files

++ postgresql-9.6.6.tar.bz2 -> postgresql-9.6.7.tar.bz2 ++
/work/SRC/openSUSE:Factory/postgresql96/postgresql-9.6.6.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql96.new/postgresql-9.6.7.tar.bz2 differ: 
char 11, line 1

++ postgresql-plperl-keep-rpath.patch ++
--- /var/tmp/diff_new_pack.0MGv7N/_old  2018-02-10 17:57:02.286584612 +0100
+++ /var/tmp/diff_new_pack.0MGv7N/_new  2018-02-10 17:57:02.286584612 +0100
@@ -2,33 +2,29 @@
 Perl's linker options, because otherwise the PL/Perl module can't find
 libperl.so (bsc#578053).
 
-Index: config/perl.m4
-===
 --- config/perl.m4.orig
 +++ config/perl.m4
-@@ -62,9 +62,7 @@ if test "$PORTNAME" = "win32" ; then
- perl_lib=`basename $perl_archlibexp/CORE/perl[[5-9]]*.lib .lib`
- test -e "$perl_archlibexp/CORE/$perl_lib.lib" && 
perl_embed_ldflags="-L$perl_archlibexp/CORE -l$perl_lib"
+@@ -100,9 +100,7 @@ if test "$PORTNAME" = "win32" ; then
+   fi
+   fi
  else
--pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
--pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
--perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" 
-e ["s/ -arch [-a-zA-Z0-9_]*//g"]`
-+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
+-  pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
+-  pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
+-  perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e 
"s%$pgac_tmp2%%" -e ["s/ -arch [-a-zA-Z0-9_]*//g"]`
++  perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
  fi
  AC_SUBST(perl_embed_ldflags)dnl
  if test -z "$perl_embed_ldflags" ; then
-Index: configure
-===
 --- configure.orig
 +++ configure
-@@ -7517,9 +7517,7 @@ if test "$PORTNAME" = "win32" ; then
- perl_lib=`basename $perl_archlibexp/CORE/perl[5-9]*.lib .lib`
- test -e "$perl_archlibexp/CORE/$perl_lib.lib" && 
perl_embed_ldflags="-L$perl_archlibexp/CORE -l$perl_lib"
+@@ -7537,9 +7537,7 @@ if test "$PORTNAME" = "win32" ; then
+   fi
+   fi
  else
--pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
--pgac_tmp2=`$PERL 

commit postgresql93 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package postgresql93 for openSUSE:Factory 
checked in at 2018-02-10 17:56:23

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


Package is "postgresql93"

Sat Feb 10 17:56:23 2018 rev:17 rq:574648 version:9.3.21

Changes:

--- /work/SRC/openSUSE:Factory/postgresql93/postgresql93.changes
2017-11-26 10:33:52.153244604 +0100
+++ /work/SRC/openSUSE:Factory/.postgresql93.new/postgresql93.changes   
2018-02-10 17:56:30.475736166 +0100
@@ -1,0 +2,15 @@
+Fri Feb  9 12:10:20 UTC 2018 - m...@suse.com
+
+- Upate to PostgreSQL 9.3.21:
+  * https://www.postgresql.org/docs/9.3/static/release-9-3-21.html 
+  * CVE-2018-1053, bsc#1077983: Ensure that all temporary files 
+made by pg_upgrade are non-world-readable. 
+  * bsc#1079757: Rename pg_rewind's copy_file_range function to 
+avoid conflict with new Linux system call of that name.
+- Security fixes from 9.3.20:
+  * CVE-2017-15098, bsc#1067844: Memory disclosure in JSON
+functions.
+- Don't %config the symlinks to /etc/alternatives to avoid rpmlint 
+  warnings. 
+
+---

Old:

  postgresql-9.3.19.tar.bz2

New:

  postgresql-9.3.21.tar.bz2



Other differences:
--
++ postgresql93.spec ++
--- /var/tmp/diff_new_pack.mvgPTU/_old  2018-02-10 17:56:32.743654067 +0100
+++ /var/tmp/diff_new_pack.mvgPTU/_new  2018-02-10 17:56:32.743654067 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql93
 #
-# 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
@@ -71,7 +71,7 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:9.3.19
+Version:9.3.21
 Release:0
 %define pg_minor_version %(echo %version | sed -r 
's/^([0-9]+\\.[0-9]+).*/\\1/')
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
@@ -495,7 +495,7 @@
 ln -s $ALTBIN %buildroot$BIN
 
 echo "$PGBIN" >> $PKG.files
-echo "%config(missingok) $BIN" >> $PKG.files
+echo "$BIN" >> $PKG.files
 echo "%ghost $ALTBIN" >> $PKG.files
 test -e %buildroot$MAN &&
 echo "%doc $MAN" >> $PKG.files

++ postgresql-9.3.19.tar.bz2 -> postgresql-9.3.21.tar.bz2 ++
/work/SRC/openSUSE:Factory/postgresql93/postgresql-9.3.19.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql93.new/postgresql-9.3.21.tar.bz2 differ: 
char 11, line 1




commit postgresql95 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package postgresql95 for openSUSE:Factory 
checked in at 2018-02-10 17:56:41

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


Package is "postgresql95"

Sat Feb 10 17:56:41 2018 rev:8 rq:574651 version:9.5.11

Changes:

--- /work/SRC/openSUSE:Factory/postgresql95/postgresql95.changes
2017-11-26 10:33:42.701589257 +0100
+++ /work/SRC/openSUSE:Factory/.postgresql95.new/postgresql95.changes   
2018-02-10 17:56:46.919140914 +0100
@@ -1,0 +2,17 @@
+Fri Feb  9 10:14:10 UTC 2018 - m...@suse.com
+
+- Upate to PostgreSQL 9.5.11:
+  * https://www.postgresql.org/docs/9.5/static/release-9-5-11.html 
+  * CVE-2018-1053, bsc#1077983: Ensure that all temporary files 
+made by pg_upgrade are non-world-readable. 
+  * bsc#1079757: Rename pg_rewind's copy_file_range function to 
+avoid conflict with new Linux system call of that name.
+- Security fixes from 9.5.10:
+  * CVE-2017-15098, bsc#1067844: Memory disclosure in JSON
+functions.
+  * CVE-2017-15099, bsc#1067841: INSERT ... ON CONFLICT DO UPDATE 
+fails to enforce SELECT privileges.
+- Don't %config the symlinks to /etc/alternatives to avoid rpmlint 
+  warnings. 
+
+---

Old:

  postgresql-9.5.9.tar.bz2

New:

  postgresql-9.5.11.tar.bz2



Other differences:
--
++ postgresql95.spec ++
--- /var/tmp/diff_new_pack.dPHcP5/_old  2018-02-10 17:56:48.539082272 +0100
+++ /var/tmp/diff_new_pack.dPHcP5/_new  2018-02-10 17:56:48.543082128 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql95
 #
-# 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
@@ -71,7 +71,7 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:9.5.9
+Version:9.5.11
 Release:0
 %define pg_minor_version %(echo %version | sed -r 
's/^([0-9]+\\.[0-9]+).*/\\1/')
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
@@ -496,7 +496,7 @@
 ln -s $ALTBIN %buildroot$BIN
 
 echo "$PGBIN" >> $PKG.files
-echo "%config(missingok) $BIN" >> $PKG.files
+echo "$BIN" >> $PKG.files
 echo "%ghost $ALTBIN" >> $PKG.files
 test -e %buildroot$MAN &&
 echo "%doc $MAN" >> $PKG.files

++ postgresql-9.5.9.tar.bz2 -> postgresql-9.5.11.tar.bz2 ++
/work/SRC/openSUSE:Factory/postgresql95/postgresql-9.5.9.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql95.new/postgresql-9.5.11.tar.bz2 differ: 
char 11, line 1

++ postgresql-plperl-keep-rpath.patch ++
--- /var/tmp/diff_new_pack.dPHcP5/_old  2018-02-10 17:56:48.611079666 +0100
+++ /var/tmp/diff_new_pack.dPHcP5/_new  2018-02-10 17:56:48.611079666 +0100
@@ -2,33 +2,29 @@
 Perl's linker options, because otherwise the PL/Perl module can't find
 libperl.so (bsc#578053).
 
-Index: config/perl.m4
-===
 --- config/perl.m4.orig
 +++ config/perl.m4
-@@ -62,9 +62,7 @@ if test "$PORTNAME" = "win32" ; then
- perl_lib=`basename $perl_archlibexp/CORE/perl[[5-9]]*.lib .lib`
- test -e "$perl_archlibexp/CORE/$perl_lib.lib" && 
perl_embed_ldflags="-L$perl_archlibexp/CORE -l$perl_lib"
+@@ -100,9 +100,7 @@ if test "$PORTNAME" = "win32" ; then
+   fi
+   fi
  else
--pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
--pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
--perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" 
-e ["s/ -arch [-a-zA-Z0-9_]*//g"]`
-+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
+-  pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
+-  pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
+-  perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e 
"s%$pgac_tmp2%%" -e ["s/ -arch [-a-zA-Z0-9_]*//g"]`
++  perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
  fi
  AC_SUBST(perl_embed_ldflags)dnl
  if test -z "$perl_embed_ldflags" ; then
-Index: configure
-===
 --- configure.orig
 +++ configure
-@@ -7431,9 +7431,7 @@ if test "$PORTNAME" = "win32" ; then
- perl_lib=`basename $perl_archlibexp/CORE/perl[5-9]*.lib .lib`
- test -e "$perl_archlibexp/CORE/$perl_lib.lib" && 
perl_embed_ldflags="-L$perl_archlibexp/CORE -l$perl_lib"
+@@ -7451,9 +7451,7 @@ if test "$PORTNAME" = "win32" ; then
+ 

commit postgresql94 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package postgresql94 for openSUSE:Factory 
checked in at 2018-02-10 17:56:34

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


Package is "postgresql94"

Sat Feb 10 17:56:34 2018 rev:11 rq:574649 version:9.4.16

Changes:

--- /work/SRC/openSUSE:Factory/postgresql94/postgresql94.changes
2017-11-26 10:33:27.450145398 +0100
+++ /work/SRC/openSUSE:Factory/.postgresql94.new/postgresql94.changes   
2018-02-10 17:56:36.619513761 +0100
@@ -1,0 +2,15 @@
+Fri Feb  9 11:15:27 UTC 2018 - m...@suse.com
+
+- Upate to PostgreSQL 9.4.16:
+  * https://www.postgresql.org/docs/9.4/static/release-9-4-16.html 
+  * CVE-2018-1053, bsc#1077983: Ensure that all temporary files 
+made by pg_upgrade are non-world-readable. 
+  * bsc#1079757: Rename pg_rewind's copy_file_range function to 
+avoid conflict with new Linux system call of that name.
+- Security fixes from 9.4.15:
+  * CVE-2017-15098, bsc#1067844: Memory disclosure in JSON
+functions.
+- Don't %config the symlinks to /etc/alternatives to avoid rpmlint 
+  warnings. 
+
+---

Old:

  postgresql-9.4.14.tar.bz2

New:

  postgresql-9.4.16.tar.bz2



Other differences:
--
++ postgresql94.spec ++
--- /var/tmp/diff_new_pack.Pq9gUW/_old  2018-02-10 17:56:37.527480893 +0100
+++ /var/tmp/diff_new_pack.Pq9gUW/_new  2018-02-10 17:56:37.527480893 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql94
 #
-# 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
@@ -71,7 +71,7 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:9.4.14
+Version:9.4.16
 Release:0
 %define pg_minor_version %(echo %version | sed -r 
's/^([0-9]+\\.[0-9]+).*/\\1/')
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
@@ -498,7 +498,7 @@
 ln -s $ALTBIN %buildroot$BIN
 
 echo "$PGBIN" >> $PKG.files
-echo "%config(missingok) $BIN" >> $PKG.files
+echo "$BIN" >> $PKG.files
 echo "%ghost $ALTBIN" >> $PKG.files
 test -e %buildroot$MAN &&
 echo "%doc $MAN" >> $PKG.files
@@ -623,7 +623,7 @@
 %docdir %pgdocdir
 %dir %pgdocdir
 %pgdocdir/extension
-%dir %pgdatadir
+%dir %pgdatadir/
 /usr/lib/postgresql
 
 %files server -f server.files

++ postgresql-9.4.14.tar.bz2 -> postgresql-9.4.16.tar.bz2 ++
/work/SRC/openSUSE:Factory/postgresql94/postgresql-9.4.14.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql94.new/postgresql-9.4.16.tar.bz2 differ: 
char 11, line 1

++ postgresql-plperl-keep-rpath.patch ++
--- /var/tmp/diff_new_pack.Pq9gUW/_old  2018-02-10 17:56:37.595478431 +0100
+++ /var/tmp/diff_new_pack.Pq9gUW/_new  2018-02-10 17:56:37.595478431 +0100
@@ -4,27 +4,27 @@
 
 --- config/perl.m4.orig
 +++ config/perl.m4
-@@ -62,9 +62,7 @@
- perl_lib=`basename $perl_archlibexp/CORE/perl[[5-9]]*.lib .lib`
- test -e "$perl_archlibexp/CORE/$perl_lib.lib" && 
perl_embed_ldflags="-L$perl_archlibexp/CORE -l$perl_lib"
+@@ -100,9 +100,7 @@ if test "$PORTNAME" = "win32" ; then
+   fi
+   fi
  else
--pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
--pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
--perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" 
-e ["s/ -arch [-a-zA-Z0-9_]*//g"]`
-+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
+-  pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
+-  pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
+-  perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e 
"s%$pgac_tmp2%%" -e ["s/ -arch [-a-zA-Z0-9_]*//g"]`
++  perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
  fi
  AC_SUBST(perl_embed_ldflags)dnl
  if test -z "$perl_embed_ldflags" ; then
 --- configure.orig
 +++ configure
-@@ -7396,9 +7396,7 @@
- perl_lib=`basename $perl_archlibexp/CORE/perl[5-9]*.lib .lib`
- test -e "$perl_archlibexp/CORE/$perl_lib.lib" && 
perl_embed_ldflags="-L$perl_archlibexp/CORE -l$perl_lib"
+@@ -7416,9 +7416,7 @@ if test "$PORTNAME" = "win32" ; then
+   fi
+   fi
  else
--pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
--pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
--perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" 
-e "s/ -arch [-a-zA-Z0-9_]*//g"`
-+perl_embed_ldflags=`$PERL 

commit freetype2 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package freetype2 for openSUSE:Factory 
checked in at 2018-02-10 17:56:05

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


Package is "freetype2"

Sat Feb 10 17:56:05 2018 rev:79 rq:574633 version:2.9

Changes:

--- /work/SRC/openSUSE:Factory/freetype2/freetype2.changes  2017-01-19 
10:32:58.529114971 +0100
+++ /work/SRC/openSUSE:Factory/.freetype2.new/freetype2.changes 2018-02-10 
17:56:08.424534419 +0100
@@ -1,0 +2,115 @@
+Fri Feb  9 11:11:36 UTC 2018 - fst...@suse.com
+
+- Added patch:
+  * enable-long-family-names-by-default.patch
++ Define PCF_CONFIG_OPTION_LONG_FAMILY_NAMES to obtain 2.7.1
+  behaviour
+
+---
+Wed Feb  7 09:17:10 UTC 2018 - fst...@suse.com
+
+- Added patches:
+  * 0001-src-truetype-ttinterp.c-Ins_GETVARIATION-Avoid-NULL-.patch
++ Upstream fix for bsc#1079603: Avoid NULL reference in
+  src/truetype/ttinterp.c
+  * 0001-truetype-Better-protection-against-invalid-VF-data.patch
++ Upstream fix for bsc#1079601: Protection against invalid VF
+  data
+
+---
+Wed Jan 10 10:32:25 UTC 2018 - idon...@suse.com
+
+- Add psaux-flex.patch to fix a regression in Type1 rendering 
+
+---
+Tue Jan  9 11:34:51 UTC 2018 - idon...@suse.com
+
+- Update to version 2.9
+  * Advance width values of variation fonts were often wrong.
+  * More fixes for variation font support; you should update to
+this version if you want to support them.
+  * As a GSoC project, Ewald Hew extended the new (Adobe) CFF
+engine to handle Type 1 fonts also, thus greatly improving
+the rendering of this format. This is the new default.
+  * A new function, `FT_Set_Named_Instance', can be used to set
+or change the current named instance.
+  * Starting with this FreeType version, resetting variation
+coordinates will return to the currently selected named
+instance. Previously, FreeType returned to the base font 
+(i.e., no instance set).
+  * Some fuzzer fixes to better reject malformed fonts.
+
+---
+Mon Sep 18 09:15:41 UTC 2017 - idon...@suse.com
+
+- Update to version 2.8.1
+  * B/W  hinting   of  TrueType   fonts  didn't  work   properly  if
+interpreter version 38 or 40 was selected.
+  * Some severe  problems within the handling  of TrueType Variation
+Fonts were found and fixed.
+  * Function `FT_Set_Var_Design_Coordinates' didn't correctly handle
+the case with less input coordinates than axes.
+  * By default,  FreeType  now offers  high  quality  LCD-optimized
+output  without resorting to ClearType techniques of resolution
+tripling and filtering.  In this method,  called Harmony,  each
+color channel is generated separately  after shifting the glyph
+outline,  capitalizing on the fact  that the color grids on LCD
+panels  are  shifted  by  a third  of  a pixel.  This output is
+indistinguishable from ClearType with a light 3-tap filter.
+  * Using the  new function `FT_Get_Var_Axis_Flags',  an application
+can access the `flags' field  of a variation axis (introduced in
+OpenType version 1.8.2)
+  * FreeType  now synthesizes  a  missing Unicode  cmap for  (older)
+TrueType fonts also if glyph names are available.
+  * The warping option  has moved  from `light'  to `normal' hinting
+where  it replaces  the original hinting algorithm.  The `light'
+mode is now always void of any hinting in x-direction.
+
+---
+Mon May 15 10:36:18 UTC 2017 - idoen...@suse.de
+
+- Update to version 2.8
+  * Support for OpenType Variation Fonts is now complete. The last
+missing part was handling the `VVAR' and `MVAR' tables, which is
+available with this release.
+
+  * A new  function `FT_Face_Properties' allows the  control of some
+module  and   library  properties  per  font.Currently,  the
+following properties can be  handled: stem darkening, LCD filter
+weights, and the random seed for the `random' CFF operator.
+  
+  * The PCF change to show more `colourful' family names (introduced
+in version 2.7.1) was too radical; it can now be configured with
+PCF_CONFIG_OPTION_LONG_FAMILY_NAMES   at   compile   time.If
+activated, it can  be switched off at run time  with the new pcf
+property  `no-long-family-names'.  If  the `FREETYPE_PROPERTIES'
+environment variable is available, you can say
+
+FREETYPE_PROPERTIES=pcf:no-long-family-names=1
+  * Support  for  the  following  scripts  has  been  

commit kernel-source for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2018-02-10 17:55:43

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


Package is "kernel-source"

Sat Feb 10 17:55:43 2018 rev:406 rq:574110 version:4.15.2

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes
2018-02-06 16:45:51.893303159 +0100
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/dtb-aarch64.changes   
2018-02-10 17:55:44.565398118 +0100
@@ -1,0 +2,160 @@
+Thu Feb  8 07:52:04 CET 2018 - jsl...@suse.cz
+
+- Linux 4.15.2 (bnc#1012628).
+- KVM: x86: Make indirect calls in emulator speculation safe
+  (bnc#1012628).
+- KVM: VMX: Make indirect call speculation safe (bnc#1012628).
+- x86/alternative: Print unadorned pointers (bnc#1012628).
+- auxdisplay: img-ascii-lcd: add missing
+  MODULE_DESCRIPTION/AUTHOR/LICENSE (bnc#1012628).
+- iio: adc/accel: Fix up module licenses (bnc#1012628).
+- pinctrl: pxa: pxa2xx: add missing
+  MODULE_DESCRIPTION/AUTHOR/LICENSE (bnc#1012628).
+- ASoC: pcm512x: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE
+  (bnc#1012628).
+- KVM: nVMX: Eliminate vmcs02 pool (bnc#1012628).
+- KVM: VMX: introduce alloc_loaded_vmcs (bnc#1012628).
+- objtool: Improve retpoline alternative handling (bnc#1012628).
+- objtool: Add support for alternatives at the end of a section
+  (bnc#1012628).
+- objtool: Warn on stripped section symbol (bnc#1012628).
+- x86/mm: Fix overlap of i386 CPU_ENTRY_AREA with FIX_BTMAP
+  (bnc#1012628).
+- x86/entry/64: Remove the SYSCALL64 fast path (bnc#1012628).
+- x86/entry/64: Push extra regs right away (bnc#1012628).
+- x86/asm: Move 'status' from thread_struct to thread_info
+  (bnc#1012628).
+- x86/spectre: Fix spelling mistake: "vunerable"-> "vulnerable"
+  (bnc#1012628).
+- x86/paravirt: Remove 'noreplace-paravirt' cmdline option
+  (bnc#1012628).
+- KVM: VMX: make MSR bitmaps per-VCPU (bnc#1012628).
+- x86/kvm: Update spectre-v1 mitigation (bnc#1012628).
+- x86/retpoline: Avoid retpolines for built-in __init functions
+  (bnc#1012628).
+- x86/speculation: Fix typo IBRS_ATT, which should be IBRS_ALL
+  (bnc#1012628).
+- KVM/x86: Update the reverse_cpuid list to include CPUID_7_EDX
+  (bnc#1012628).
+- KVM/x86: Add IBPB support (bnc#1012628).
+- KVM/VMX: Emulate MSR_IA32_ARCH_CAPABILITIES (bnc#1012628).
+- KVM/VMX: Allow direct access to MSR_IA32_SPEC_CTRL
+  (bnc#1012628).
+- KVM/SVM: Allow direct access to MSR_IA32_SPEC_CTRL
+  (bnc#1012628).
+- serial: core: mark port as initialized after successful IRQ
+  change (bnc#1012628).
+- fpga: region: release of_parse_phandle nodes after use
+  (bnc#1012628).
+- commit 54903ae
+
+---
+Mon Feb  5 15:52:19 CET 2018 - jsl...@suse.cz
+
+- x86/pti: Mark constant arrays as __initconst (bsc#1068032
+  CVE-2017-5753).
+- x86/cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on
+  Intel (bsc#1068032 CVE-2017-5753).
+- commit 7d4f257
+
+---
+Mon Feb  5 14:15:56 CET 2018 - jsl...@suse.cz
+
+- x86/speculation: Add basic IBRS support infrastructure
+  (bsc#1068032 CVE-2017-5753).
+- x86/pti: Do not enable PTI on CPUs which are not vulnerable
+  to Meltdown (bsc#1068032 CVE-2017-5753).
+- x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre
+  v2 microcodes (bsc#1068032 CVE-2017-5753).
+- x86/nospec: Fix header guards names (bsc#1068032 CVE-2017-5753).
+- x86/bugs: Drop one "mitigation" from dmesg (bsc#1068032
+  CVE-2017-5753).
+- x86/cpu/bugs: Make retpoline module warning conditional
+  (bsc#1068032 CVE-2017-5753).
+- x86/cpufeatures: Clean up Spectre v2 related CPUID flags
+  (bsc#1068032 CVE-2017-5753).
+- x86/retpoline: Simplify vmexit_fill_RSB() (bsc#1068032
+  CVE-2017-5753).
+- x86/speculation: Simplify indirect_branch_prediction_barrier()
+  (bsc#1068032 CVE-2017-5753).
+- module/retpoline: Warn about missing retpoline in module
+  (bsc#1068032 CVE-2017-5753).
+- x86/spectre: Check CONFIG_RETPOLINE in command line parser
+  (bsc#1068032 CVE-2017-5753).
+- x86/speculation: Use Indirect Branch Prediction Barrier in
+  context switch (bsc#1068032 CVE-2017-5753).
+- Refresh
+  patches.suse/0001-x86-cpufeatures-Add-CPUID_7_EDX-CPUID-leaf.patch.
+- Refresh
+  patches.suse/0002-x86-cpufeatures-Add-Intel-feature-bits-for-Speculati.patch.
+- Refresh
+  patches.suse/0003-x86-cpufeatures-Add-AMD-feature-bits-for-Speculation.patch.
+- Refresh
+  patches.suse/0004-x86-msr-Add-definitions-for-new-speculation-control-.patch.
+- Refresh
+  patches.suse/0007-x86-speculation-Add-basic-IBPB-Indirect-Branch-Predi.patch.
+- Refresh patches.suse/supported-flag.
+- Delete
+  

commit glslang for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package glslang for openSUSE:Factory checked 
in at 2018-02-10 17:55:02

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


Package is "glslang"

Sat Feb 10 17:55:02 2018 rev:8 rq:573924 version:3.0.g1817

Changes:

--- /work/SRC/openSUSE:Factory/glslang/glslang.changes  2017-08-08 
11:59:46.891444105 +0200
+++ /work/SRC/openSUSE:Factory/.glslang.new/glslang.changes 2018-02-10 
17:55:03.714876899 +0100
@@ -1,0 +2,15 @@
+Wed Feb  7 22:51:46 UTC 2018 - jeng...@inai.de
+
+- Update to new snapshot 3.0.g1817
+  * HLSL: Include built-in processing for vertex input and fragment output 
flattening.
+  * HLSL: Flatten structs for all non-arrayed I/O interfaces.
+  * SPV: Implement extension SPV_EXT_shader_stencil_export
+  * HLSL: handle clip and cull distance input builtin type conversion
+  * SPV: 1st pass implementation of SPV_EXT_shader_viewport_index_layer.
+  * HLSL: add geometry stage support for clip/cull distance
+  * Add support for GL_OES_EGL_image_external_essl3
+  * Implement the extension GL_AMD_shader_fragment_mask
+  * Add implementation of SPV_EXT_fragment_fully_covered
+  * GLSL: Implement GL_EXT_control_flow_attributes.
+
+---

Old:

  glslang-3.0.g1516.tar.xz

New:

  glslang-3.0.g1817.tar.xz



Other differences:
--
++ glslang.spec ++
--- /var/tmp/diff_new_pack.aKdSN5/_old  2018-02-10 17:55:04.498848520 +0100
+++ /var/tmp/diff_new_pack.aKdSN5/_new  2018-02-10 17:55:04.502848375 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package glslang
 #
-# 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,10 +16,10 @@
 #
 
 
-%define version_unconverted 3.0.g1516
+%define version_unconverted 3.0.g1817
 
 Name:   glslang
-Version:3.0.g1516
+Version:3.0.g1817
 Release:0
 Summary:OpenGL and OpenGL ES shader front end and validator
 License:BSD-3-Clause

++ glslang-3.0.g1516.tar.xz -> glslang-3.0.g1817.tar.xz ++
 94122 lines of diff (skipped)




commit iptables for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package iptables for openSUSE:Factory 
checked in at 2018-02-10 17:55:06

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


Package is "iptables"

Sat Feb 10 17:55:06 2018 rev:60 rq:573925 version:1.6.2

Changes:

--- /work/SRC/openSUSE:Factory/iptables/iptables.changes2017-02-08 
11:01:09.822048279 +0100
+++ /work/SRC/openSUSE:Factory/.iptables.new/iptables.changes   2018-02-10 
17:55:10.934615547 +0100
@@ -1,0 +2,16 @@
+Sat Feb  3 14:02:59 UTC 2018 - jeng...@inai.de
+
+- Update to new upstream release 1.6.2
+  * add support for the "srh" match
+  * add randomize-full for the "MASQUERADE" target
+  * add rate match mode to the "hashlimit" match
+
+---
+Thu Jun 22 15:34:40 UTC 2017 - matthias.gerst...@suse.com
+
+- Add iptables-batch-lock.patch: Fix a locking issue of
+  iptables-batch which can cause it to spuriously fail when other
+  programs modify the iptables rules in parallel (bnc#1045130).
+  This can especially affect SuSEfirewall2 during startup.
+
+---

Old:

  iptables-1.6.1.tar.bz2
  iptables-1.6.1.tar.bz2.sig

New:

  iptables-1.6.2.tar.bz2
  iptables-1.6.2.tar.bz2.sig
  iptables-batch-lock.patch



Other differences:
--
++ iptables.spec ++
--- /var/tmp/diff_new_pack.bNL7Fe/_old  2018-02-10 17:55:11.750586008 +0100
+++ /var/tmp/diff_new_pack.bNL7Fe/_new  2018-02-10 17:55:11.754585864 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package iptables
 #
-# 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,17 +17,19 @@
 
 
 Name:   iptables
-Version:1.6.1
+Version:1.6.2
 Release:0
-Summary:IP Packet Filter Administration utilities
+Summary:IP packet filter administration utilities
 License:GPL-2.0 and Artistic-2.0
 Group:  Productivity/Networking/Security
 Url:http://netfilter.org/projects/iptables/
+#Git-Clone: git://git.netfilter.org/iptables
 Source: 
http://netfilter.org/projects/iptables/files/%name-%version.tar.bz2
 Source2:
http://netfilter.org/projects/iptables/files/%name-%version.tar.bz2.sig
 Source3:%name.keyring
 Patch3: iptables-batch.patch
 Patch4: iptables-apply-mktemp-fix.patch
+Patch5: iptables-batch-lock.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?fedora_version} || 0%{?centos_version}
@@ -54,19 +56,19 @@
 kernel.
 
 %package nft
-Summary:NFT Packet Filter Administration utilties in the style of 
Xtables
+Summary:nft packet filter administration utilties in the style of 
Xtables
 Group:  Productivity/Networking/Security
 Requires:   xtables-plugins = %version-%release
 Conflicts:  ebtables
 
 %description nft
 The programs shipped in this subpackage behave like iptables on the
-command line, but instead edit the rules of the NFT packet filter in
+command line, but instead edits the rules of the nft packet filter in
 the Linux kernel. Linux kernel 4.2 or newer is recommended to exploit
-all features.
+the features.
 
 %package -n xtables-plugins
-Summary:Match and Target Extension plugins for iptables
+Summary:Match and target extension plugins for iptables
 Group:  Productivity/Networking/Security
 Conflicts:  iptables < 1.4.18
 
@@ -127,7 +129,7 @@
 iproute2's m_xt.
 
 %package -n libxtables-devel
-Summary:Libraries, Headers and Development Man Pages for iptables
+Summary:Headers and manpages for iptables
 Group:  Development/Libraries/C and C++
 Requires:   libxtables12 = %version
 
@@ -141,12 +143,12 @@
 
 %prep
 %setup -q
-%patch -P 3 -P 4 -p1
+%patch -P 3 -P 4 -P 5 -p1
 
 %build
 # We have the iptables-batch patch, so always regenerate.
 if true || [ ! -e configure ]; then
-   ./autogen.sh;
+   ./autogen.sh
 fi
 # bnc#561793 - do not include unclean module in iptables manpage
 rm -f extensions/libipt_unclean.man
@@ -160,7 +162,7 @@
 # iptables-apply is not installed by upstream Makefile
 install -m0755 iptables/iptables-apply %buildroot%_sbindir/
 install -m0644 iptables/iptables-apply.8 %buildroot%_mandir/man8/
-rm -f "%buildroot/%_libdir"/*.la;
+rm -f "%buildroot/%_libdir"/*.la
 %if 0%{?suse_version}
 %fdupes %buildroot/%_prefix
 %endif
@@ -199,6 +201,7 @@
 %defattr(-,root,root)
 %_libdir/xtables/
 

commit vulkan for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package vulkan for openSUSE:Factory checked 
in at 2018-02-10 17:55:13

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


Package is "vulkan"

Sat Feb 10 17:55:13 2018 rev:9 rq:573926 version:1.0.68.0

Changes:

--- /work/SRC/openSUSE:Factory/vulkan/vulkan.changes2018-01-13 
21:34:57.557560932 +0100
+++ /work/SRC/openSUSE:Factory/.vulkan.new/vulkan.changes   2018-02-10 
17:55:14.606482626 +0100
@@ -1,0 +2,11 @@
+Wed Feb  7 23:19:20 UTC 2018 - jeng...@inai.de
+
+- Update to new snapshot 1.0.68
+  * layers: add image layout validation to vkCmdBlitImage()
+  * layers: Add VK_EXT_validation_cache implementation for shaders
+  * layers: Add layer metadata for EXT_validation_cache extension
+  * layers: Add descriptor limit checks to vkCreatePipelineLayout()
+  * layers: Create instance & device extension lists
+- Add no-git.diff
+
+---

Old:

  Vulkan-LoaderAndValidationLayers-1.0.65.0.tar.xz

New:

  Vulkan-LoaderAndValidationLayers-1.0.68.0.tar.xz
  no-git.diff



Other differences:
--
++ vulkan.spec ++
--- /var/tmp/diff_new_pack.MqxJVF/_old  2018-02-10 17:55:15.910435423 +0100
+++ /var/tmp/diff_new_pack.MqxJVF/_new  2018-02-10 17:55:15.914435278 +0100
@@ -16,11 +16,11 @@
 #
 
 
-%define version_unconverted 1.0.65.0
+%define version_unconverted 1.0.68.0
 
 Name:   vulkan
 %define lname  libvulkan1
-Version:1.0.65.0
+Version:1.0.68.0
 Release:0
 Summary:Vulkan loader and validation layers
 License:MIT
@@ -29,6 +29,7 @@
 
 Source: Vulkan-LoaderAndValidationLayers-%version.tar.xz
 Source9:baselibs.conf
+Patch1: no-git.diff
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.11
 BuildRequires:  gcc-c++ >= 4.8
@@ -81,6 +82,7 @@
 
 %prep
 %setup -qn Vulkan-LoaderAndValidationLayers-%version
+%patch -P 1 -p1
 
 %build
 chmod a-x *.md *.txt
@@ -119,8 +121,6 @@
 %_bindir/*
 %dir %_sysconfdir/vulkan/
 %config %_sysconfdir/vulkan/explicit_layer.d/
-%dir %_sysconfdir/vulkan/icd.d/
-%_sysconfdir/vulkan/icd.d/*
 %_datadir/vulkan/
 
 %files -n libvulkan1

++ Vulkan-LoaderAndValidationLayers-1.0.65.0.tar.xz -> 
Vulkan-LoaderAndValidationLayers-1.0.68.0.tar.xz ++
 47134 lines of diff (skipped)

++ _service ++
--- /var/tmp/diff_new_pack.MqxJVF/_old  2018-02-10 17:55:16.902399514 +0100
+++ /var/tmp/diff_new_pack.MqxJVF/_new  2018-02-10 17:55:16.906399369 +0100
@@ -2,10 +2,10 @@

git
https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers
-   sdk-1.0.65
+   sdk-1.0.68
master
-   4867820f5
-   1.0.65.0
+   7cc9e754d
+   1.0.68.0
windowsRuntimeInstaller



++ no-git.diff ++
From: Jan Engelhardt 
Date: 2018-02-07 23:47:38.565174864 +0100

throw out idiotic reliance on git and/or bundled spirv-tools.

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 26808788c..d00609303 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -326,7 +326,7 @@ macro(run_external_revision_generate source_dir symbol_name 
output)
 # parsing from a Git repository), you probably also want to add the 
revision file to the list of DEPENDS on the
 # subsequent line (to ensure that the script is re-run when the revision 
file is modified).
 COMMAND ${PYTHON_CMD} ${SCRIPTS_DIR}/external_revision_generator.py 
--git_dir ${source_dir} -s ${symbol_name} -o ${output}
-DEPENDS ${SCRIPTS_DIR}/external_revision_generator.py 
${source_dir}/.git/HEAD ${source_dir}/.git/index
+DEPENDS ${SCRIPTS_DIR}/external_revision_generator.py
 )
 endmacro()
 
diff --git a/scripts/external_revision_generator.py 
b/scripts/external_revision_generator.py
index 9ba9156b0..159d44ebc 100644
--- a/scripts/external_revision_generator.py
+++ b/scripts/external_revision_generator.py
@@ -90,20 +90,7 @@ def main():
 rev_method_group.add_argument("--git_dir", metavar="SOURCE_DIR", help="git 
working copy directory")
 rev_method_group.add_argument("--rev_file", metavar="REVISION_FILE", 
help="source revision file path (must contain a SHA1 hash")
 args = parser.parse_args()
-
-# We can either parse the latest Git commit ID out of the specified 
repository (preferred where possible),
-# or computing the SHA1 hash of the contents of a file passed on the 
command line and (where necessary --
-# e.g. when building the layers outside of a Git environment).
-if args.git_dir is not None:
-# Extract commit ID from the specified source 

commit spirv-tools for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package spirv-tools for openSUSE:Factory 
checked in at 2018-02-10 17:54:50

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


Package is "spirv-tools"

Sat Feb 10 17:54:50 2018 rev:7 rq:573919 version:2018.0

Changes:

--- /work/SRC/openSUSE:Factory/spirv-tools/spirv-tools.changes  2018-01-19 
11:46:47.673793822 +0100
+++ /work/SRC/openSUSE:Factory/.spirv-tools.new/spirv-tools.changes 
2018-02-10 17:54:50.879341543 +0100
@@ -1,0 +2,10 @@
+Wed Feb  7 22:22:02 UTC 2018 - jeng...@inai.de
+
+- Update to new upstream release 2018.0
+  * Added OpenCL ExtInst validation rules
+  * Add adjacency validation pass
+  * Add memory semantics checks to validate atomics
+  * Allow relaxing validation of pointers in logical
+addressing mode
+
+---

Old:

  spirv-tools-2017.0.g103.tar.xz

New:

  spirv-tools-2018.0.tar.xz



Other differences:
--
++ spirv-tools.spec ++
--- /var/tmp/diff_new_pack.WzBA6K/_old  2018-02-10 17:54:51.859306069 +0100
+++ /var/tmp/diff_new_pack.WzBA6K/_new  2018-02-10 17:54:51.859306069 +0100
@@ -16,11 +16,11 @@
 #
 
 
-%define version_unconverted 2017.0.g103
-%define lname libSPIRV-Tools-suse4
+%define version_unconverted 2018.0
+%define lname libSPIRV-Tools-suse5
 
 Name:   spirv-tools
-Version:2017.0.g103
+Version:2018.0
 Release:0
 Summary:API and commands for processing SPIR-V modules
 License:Apache-2.0
@@ -37,7 +37,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  python3-base
 BuildRequires:  python3-xml
-BuildRequires:  spirv-headers >= 1.2
+BuildRequires:  spirv-headers >= 1.2.g22
 
 %description
 The package includes an assembler, binary module parser,
@@ -93,6 +93,7 @@
 %_libdir/libSPIRV-Tools-comp.so
 %_libdir/libSPIRV-Tools-link.so
 %_libdir/libSPIRV-Tools-opt.so
+%_libdir/pkgconfig/SPIRV-Tools.pc
 %_includedir/spirv-tools/
 
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.WzBA6K/_old  2018-02-10 17:54:51.903304476 +0100
+++ /var/tmp/diff_new_pack.WzBA6K/_new  2018-02-10 17:54:51.903304476 +0100
@@ -3,8 +3,9 @@
git
https://github.com/KhronosGroup/SPIRV-Tools
spirv-tools
-   d16403a
-   2017.0.g@TAG_OFFSET@
+   v2018.0
+   v2018.0
+   2018.0


*.tar

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.WzBA6K/_old  2018-02-10 17:54:51.919303897 +0100
+++ /var/tmp/diff_new_pack.WzBA6K/_new  2018-02-10 17:54:51.923303752 +0100
@@ -1 +1 @@
-libSPIRV-Tools-suse4
+libSPIRV-Tools-suse5

++ spirv-tools-2017.0.g103.tar.xz -> spirv-tools-2018.0.tar.xz ++
 81466 lines of diff (skipped)

++ ver.diff ++
--- /var/tmp/diff_new_pack.WzBA6K/_old  2018-02-10 17:54:52.299290141 +0100
+++ /var/tmp/diff_new_pack.WzBA6K/_new  2018-02-10 17:54:52.299290141 +0100
@@ -10,51 +10,51 @@
  source/opt/CMakeLists.txt  |1 +
  4 files changed, 4 insertions(+)
 
-Index: spirv-tools-2017.0.g103/source/CMakeLists.txt
+Index: spirv-tools-2018.0.g0/source/CMakeLists.txt
 ===
 spirv-tools-2017.0.g103.orig/source/CMakeLists.txt
-+++ spirv-tools-2017.0.g103/source/CMakeLists.txt
-@@ -288,6 +288,7 @@ set_source_files_properties(
+--- spirv-tools-2018.0.g0.orig/source/CMakeLists.txt
 spirv-tools-2018.0.g0/source/CMakeLists.txt
+@@ -324,6 +324,7 @@ set_source_files_properties(
PROPERTIES OBJECT_DEPENDS "${SPIRV_TOOLS_BUILD_VERSION_INC}")
  
  add_library(${SPIRV_TOOLS} ${SPIRV_SOURCES})
-+set_target_properties(${SPIRV_TOOLS} PROPERTIES SOVERSION suse3)
++set_target_properties(${SPIRV_TOOLS} PROPERTIES SOVERSION suse5)
  spvtools_default_compile_options(${SPIRV_TOOLS})
  target_include_directories(${SPIRV_TOOLS}
PUBLIC ${spirv-tools_SOURCE_DIR}/include
-Index: spirv-tools-2017.0.g103/source/comp/CMakeLists.txt
+Index: spirv-tools-2018.0.g0/source/comp/CMakeLists.txt
 ===
 spirv-tools-2017.0.g103.orig/source/comp/CMakeLists.txt
-+++ spirv-tools-2017.0.g103/source/comp/CMakeLists.txt
+--- spirv-tools-2018.0.g0.orig/source/comp/CMakeLists.txt
 spirv-tools-2018.0.g0/source/comp/CMakeLists.txt
 @@ -14,6 +14,7 @@
  
  if(SPIRV_BUILD_COMPRESSION)
add_library(SPIRV-Tools-comp markv_codec.cpp)
-+  set_target_properties(SPIRV-Tools-comp PROPERTIES SOVERSION suse4)
++  set_target_properties(SPIRV-Tools-comp PROPERTIES SOVERSION suse5)
  
spvtools_default_compile_options(SPIRV-Tools-comp)

commit libshout for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package libshout for openSUSE:Factory 
checked in at 2018-02-10 17:54:38

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


Package is "libshout"

Sat Feb 10 17:54:38 2018 rev:23 rq:573913 version:2.4.1

Changes:

--- /work/SRC/openSUSE:Factory/libshout/libshout.changes2016-02-18 
12:35:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.libshout.new/libshout.changes   2018-02-10 
17:54:41.779670949 +0100
@@ -1,0 +2,6 @@
+Wed Feb  7 21:54:52 UTC 2018 - jeng...@inai.de
+
+- Fix typographic tidbits in description. Compact filelist.
+- Drop old Obsoletes.
+
+---



Other differences:
--
++ libshout.spec ++
--- /var/tmp/diff_new_pack.P1xmFw/_old  2018-02-10 17:54:42.459646334 +0100
+++ /var/tmp/diff_new_pack.P1xmFw/_new  2018-02-10 17:54:42.463646189 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libshout
 #
-# 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
@@ -19,7 +19,7 @@
 Name:   libshout
 Version:2.4.1
 Release:0
-Summary:Library for Communication with icecast Server
+Summary:Library for communcating with Icecast servers
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Utilities
 Url:http://icecast.org/
@@ -33,31 +33,28 @@
 BuildRequires:  speex-devel
 
 %description
-Libshout is a library for communicating with and sending data to an
-icecast server.  It handles the socket connection, the timing of the
-data, and prevents bad data from getting to the icecast server.
+libshout is a library for communicating with and sending data to an
+Icecast server. It handles the socket connection, the timing of the
+data, and prevents bad data from getting to the Icecast server.
 
 %package -n libshout3
-Summary:Library for Communication with icecast Server
+Summary:Library for communicating with Icecast servers
 Group:  System/Libraries
-Provides:   %{name} = %{version}
-#Opensuse 10.3
-Obsoletes:  %{name} < %{version}
 
 %description -n libshout3
-Libshout is a library for communicating with and sending data to an
-icecast server.  It handles the socket connection, the timing of the
-data, and prevents bad data from getting to the icecast server.
+libshout is a library for communicating with and sending data to an
+Icecast server. It handles the socket connection, the timing of the
+data, and prevents bad data from getting to the Icecast server.
 
 %package devel
-Summary:Include Files and Libraries mandatory for Development
+Summary:Development files for libshout, an Icecast communication 
library
 Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
-Requires:   libshout3 = %{version}
+Requires:   libshout3 = %version
 
 %description devel
-This package contains all necessary include files and libraries needed
-to develop applications that require these.
+This package contains the include files needed to develop
+applications that want to use libshout.
 
 %prep
 %setup -q
@@ -76,22 +73,18 @@
 rm -Rf "%buildroot/%_libdir/ckport"
 
 %post -n libshout3 -p /sbin/ldconfig
-
 %postun -n libshout3 -p /sbin/ldconfig
 
 %files -n libshout3 
 %defattr(-,root,root)
-%{_libdir}/*.so.3*
+%_libdir/*.so.3*
 
 %files devel
 %defattr(-,root,root)
-%doc README COPYING
-%doc doc/*.xml
-%doc doc/*.xsl
-%doc examples/*.c
-%{_libdir}/*.so
-%{_includedir}/shout
-%{_datadir}/aclocal/*.m4
-%{_libdir}/pkgconfig/*.pc
+%doc README COPYING doc/*.xml doc/*.xsl examples/*.c
+%_libdir/*.so
+%_includedir/shout
+%_datadir/aclocal/*.m4
+%_libdir/pkgconfig/*.pc
 
 %changelog




commit iproute2 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package iproute2 for openSUSE:Factory 
checked in at 2018-02-10 17:54:57

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


Package is "iproute2"

Sat Feb 10 17:54:57 2018 rev:94 rq:573923 version:4.15.0

Changes:

--- /work/SRC/openSUSE:Factory/iproute2/iproute2.changes2017-12-13 
11:55:55.219769251 +0100
+++ /work/SRC/openSUSE:Factory/.iproute2.new/iproute2.changes   2018-02-10 
17:54:58.699058471 +0100
@@ -1,0 +2,32 @@
+Wed Feb  7 02:17:21 UTC 2018 - avin...@opensuse.org
+
+- Update to new upstream release 4.15.0
+  * Add "show" subcommand to "ip fou"
+  * Show 'external' link mode in output
+  * bridge: vlan: support for per vlan tunnel info
+  * gre6/tunnel: Output flowlabel after tclass
+  * ila: support for configuring identifier and hook types
+  * ila: support to configure checksum neutral-map-auto
+  * ip6_gre: add support for ERSPAN tunnel
+  * ip6tnl/tunnel: Output hoplimit before encapsulation limit
+  * ip: add fastopen_no_cookie option to ip route
+  * ip: bridge_slave: add neigh_suppress to the type help and
+  * ip: bridge_slave: add support for per-port group_fwd_mask
+  * ip: validate vlan value for vlan info
+  * iplink: new option to set neigh suppression on a bridge port
+  * link_iptnl: Print tunnel mode
+  * qdisc: print offload indication
+  * ss: Implement automatic column width calculation
+  * ss: Introduce columns lightweight abstraction
+  * ss: add AF_VSOCK support
+  * ss: add missing path MTU parameter
+  * ss: print tcpi_rcv_ssthresh
+  * tc: Add support for the CBS qdisc
+  * tc: bandwith limits can now be specified in %.
+  * {f, m}_bpf: don't allow specifying multiple bpf programs
+- drop man-fix-documentation-references-in-manual-pages.patch
+  * debian specific paths were removed altogether
+- partial cleanup with spec-cleaner
+- use https in urls
+
+---

Old:

  iproute2-4.14.1.tar.sign
  iproute2-4.14.1.tar.xz
  man-fix-documentation-references-in-manual-pages.patch

New:

  iproute2-4.15.0.tar.sign
  iproute2-4.15.0.tar.xz



Other differences:
--
++ iproute2.spec ++
--- /var/tmp/diff_new_pack.ScnuuB/_old  2018-02-10 17:54:59.467030670 +0100
+++ /var/tmp/diff_new_pack.ScnuuB/_new  2018-02-10 17:54:59.467030670 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package iproute2
 #
-# 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,29 +17,27 @@
 
 
 Name:   iproute2
-Version:4.14.1
+Version:4.15.0
 Release:0
-%define rversion 4.14.1
+%define rversion 4.15.0
 Summary:Linux network configuration utilities
 License:GPL-2.0
 Group:  Productivity/Networking/Routing
-Url:
http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
+Url:
https://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
 # Using GPL-2.0 instead of GPL-2.0+ because of tc_skbedit.h and tc/q_multiq.c
 
-#DL-URL:   http://kernel.org/pub/linux/utils/net/iproute2/
+#DL-URL:   https://kernel.org/pub/linux/utils/net/iproute2/
 #Git-Clone:
git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2
-Source: 
http://kernel.org/pub/linux/utils/net/iproute2/%name-%rversion.tar.xz
-Source2:
http://kernel.org/pub/linux/utils/net/iproute2/%name-%rversion.tar.sign
+Source: 
https://kernel.org/pub/linux/utils/net/iproute2/%name-%rversion.tar.xz
+Source2:
https://kernel.org/pub/linux/utils/net/iproute2/%name-%rversion.tar.sign
 Source9:%name.keyring
 Patch1: adjust-installation-directories-for-openSUSE-SLE.patch
 Patch2: use-sysconf-_SC_CLK_TCK-if-HZ-undefined.patch
 Patch3: add-explicit-typecast-to-avoid-gcc-warning.patch
 Patch4: xfrm-support-displaying-transformations-used-for-Mob.patch
-Patch5: man-fix-documentation-references-in-manual-pages.patch
 Patch6: split-link-and-compile-steps-for-binaries.patch
 Patch7: examples-fix-bashisms-in-example-script.patch
 Patch102:   Revert-emp-fix-warning-on-deprecated-bison-directive.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison
 BuildRequires:  db-devel
 BuildRequires:  fdupes
@@ -84,7 +82,7 @@
 
 %prep
 %setup -qn %name-%rversion
-%patch -P 1 -P 2 -P 3 -P 4 -P 5 -P 6 -P 7 -p1
+%patch -P 1 -P 2 -P 3 -P 4 -P 6 -P 7 -p1
 %if 0%{?sles_version} == 11
 %patch -P 102 

commit lz4 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package lz4 for openSUSE:Factory checked in 
at 2018-02-10 17:54:24

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


Package is "lz4"

Sat Feb 10 17:54:24 2018 rev:11 rq:573842 version:1.8.1.2

Changes:

--- /work/SRC/openSUSE:Factory/lz4/lz4.changes  2017-08-29 11:40:47.992074714 
+0200
+++ /work/SRC/openSUSE:Factory/.lz4.new/lz4.changes 2018-02-10 
17:54:24.768286756 +0100
@@ -1,0 +2,49 @@
+Wed Feb  7 04:32:52 UTC 2018 - avin...@opensuse.org
+
+- Update to new upstream release 1.8.1.2
+  * Most visible new feature is support for dictionary compression
+  * Support is now more formally added on the API side within
+lib/lz4frame_static.h. It's early days, and this new API is
+tagged "experimental" for the time being.
+  * Support is also added in the command line utility lz4, using
+the new command -D. The behavior of this command is identical
+to zstd, should you be already familiar.
+  * lz4 doesn't specify how to build a dictionary. All it says is
+that it can be any file up to 64 KB.
+  * This approach is compatible with zstd dictionary builder, which
+can be instructed to create a 64 KB dictionary.
+  * Improved performance at ultra settings (levels 10+).
+  * These levels receive a new code, called optimal parser,
+available in lib/lz4_opt.h.
+  * New parser uses less memory (from 384KB to 256KB), performs
+faster, compresses a little bit better (not much, as it was
+already close to theoretical limit), and resists pathological
+patterns which could destroy performance.
+  * New parser is directly compatible with lower compression levels,
+which brings additional benefits:
++ Compatibility with LZ4_*_destSize() variant, which reverses
+  the logic by trying to fit as much data as possible into a
+  predefined limited size buffer.
++ Compatibility with Dictionary compression, as it uses the
+  same tables as regular HC mode
+  * In the future, this compatibility will also allow dynamic change
+of compression level.
+  * Small set of bug fixes and improvements:
++ perf : faster and stronger ultra modes (levels 10+)
++ perf : slightly faster compression and decompression speed
++ perf : fix bad degenerative case
++ fix : decompression failed when using a combination of
+  extDict + low memory address
++ cli : support for dictionary compression (-D)
++ cli : fix : lz4 -d --rm preserves timestamp
++ cli : fix : do not modify /dev/null permission as root
++ api : _destSize() variant supported for all compression
+  levels
+- partial cleanup with spec-cleaner
+- drop lz4-use-shlib.diff, breaks build
+- misc spec cleanups
+  - remove Makefile fix
+  - build and install separately
+  - New URL
+
+---

Old:

  lz4-use-shlib.diff
  v1.8.0.tar.gz

New:

  lz4-1.8.1.2.tar.gz



Other differences:
--
++ lz4.spec ++
--- /var/tmp/diff_new_pack.Mmarmx/_old  2018-02-10 17:54:25.460261707 +0100
+++ /var/tmp/diff_new_pack.Mmarmx/_new  2018-02-10 17:54:25.464261562 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lz4
 #
-# 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,22 +16,20 @@
 #
 
 
-Name:   lz4
 %define lname  liblz4-1
-Version:1.8.0
+Name:   lz4
+Version:1.8.1.2
 Release:0
 Summary:Hash-based Predictive Lempel–Ziv compressor
 License:GPL-2.0+ and BSD-2-Clause
 Group:  Productivity/Archiving/Compression
-Url:http://lz4.org/
+Url:https://lz4.github.io/lz4/
 
 #Git-Clone:https://github.com/lz4/lz4
-Source: https://github.com/lz4/lz4/archive/v%version.tar.gz
+Source: 
https://github.com/lz4/lz4/archive/v%version.tar.gz#/%{name}-%{version}.tar.gz
 Source99:   baselibs.conf
-Patch1: lz4-use-shlib.diff
 Patch2: lz-export.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 
 %description
 LZ4 is a lossless data compression algorithm that is focused on
@@ -70,20 +68,17 @@
 
 %prep
 %setup -q
-%patch -P 1 -P 2 -p1
+%patch -P 2 -p1
 
 %build
-# Goddammit, lz4
+# Goddammit, lz4, stop hardcoding silent mode.
 perl -i -pe 's{^\t@}{\t}g' Makefile */Makefile
-# don't bother building here, because make install builds it again - 
unconditionally :-(
+
+make %{?_smp_mflags} 

commit openblas for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package openblas for openSUSE:Factory 
checked in at 2018-02-10 17:54:17

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


Package is "openblas"

Sat Feb 10 17:54:17 2018 rev:20 rq:573788 version:0.2.20

Changes:

--- /work/SRC/openSUSE:Factory/openblas/openblas.changes2018-01-16 
09:25:38.832642698 +0100
+++ /work/SRC/openSUSE:Factory/.openblas.new/openblas.changes   2018-02-10 
17:54:18.772503801 +0100
@@ -1,0 +2,5 @@
+Tue Jan 30 18:19:33 CET 2018 - r...@suse.de
+
+- add openblas-s390.patch to build on s390 (bsc#1079513).
+
+---

New:

  openblas-s390.patch



Other differences:
--
++ openblas.spec ++
--- /var/tmp/diff_new_pack.RzIt3f/_old  2018-02-10 17:54:19.588474264 +0100
+++ /var/tmp/diff_new_pack.RzIt3f/_new  2018-02-10 17:54:19.592474119 +0100
@@ -131,6 +131,8 @@
 Patch2: openblas-noexecstack.patch
 # PATCH-FIX-UPSTREADM fix-arm64-cpuid-return.patch
 Patch4: fix-arm64-cpuid-return.patch
+# PATCH port
+Patch5: openblas-s390.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -237,6 +239,10 @@
 %patch1 -p1
 %patch2 -p1
 %patch4 -p1
+%patch5 -p1
+%ifarch s390
+sed -i -e "s@m32@m31@" Makefile.system
+%endif
 
 %if %{without hpc}
 cp %{SOURCE1} .

++ openblas-s390.patch ++
--- OpenBLAS-0.2.20/c_check 2018/01/19 15:53:41 1.1
+++ OpenBLAS-0.2.20/c_check 2018/01/19 15:54:23
@@ -10,7 +10,7 @@
 $hostarch = "arm" if ($hostarch =~ /^arm.*/);
 $hostarch = "arm64" if ($hostarch eq "aarch64");
 $hostarch = "power" if ($hostarch =~ /^(powerpc|ppc).*/);
-$hostarch = "zarch" if ($hostarch eq "s390x");
+$hostarch = "zarch" if ($hostarch =~ /^s390/);
 
 $tmpf = new File::Temp( UNLINK => 1 );
 $binary = $ENV{"BINARY"};
--- OpenBLAS-0.2.20/ctest.c 2018/01/19 15:54:29 1.1
+++ OpenBLAS-0.2.20/ctest.c 2018/01/19 15:54:49
@@ -105,7 +105,7 @@
 ARCH_POWER
 #endif
 
-#if defined(__s390x__) || defined(__zarch__)
+#if defined(__s390x__) || defined(__s390__) || defined(__zarch__)
 ARCH_ZARCH
 #endif
 
--- OpenBLAS-0.2.20/getarch.c   2018/01/19 15:54:57 1.1
+++ OpenBLAS-0.2.20/getarch.c   2018/01/19 15:55:07
@@ -974,7 +974,7 @@
 #define OPENBLAS_SUPPORTED
 #endif
 
-#if defined(__zarch__) || defined(__s390x__)
+#if defined(__zarch__) || defined(__s390x__) || defined(__s390__)
 #define ZARCH
 #include "cpuid_zarch.c"
 #define OPENBLAS_SUPPORTED



commit spirv-headers for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package spirv-headers for openSUSE:Factory 
checked in at 2018-02-10 17:54:44

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


Package is "spirv-headers"

Sat Feb 10 17:54:44 2018 rev:7 rq:573918 version:1.2.g22

Changes:

--- /work/SRC/openSUSE:Factory/spirv-headers/spirv-headers.changes  
2017-11-27 22:15:41.080572488 +0100
+++ /work/SRC/openSUSE:Factory/.spirv-headers.new/spirv-headers.changes 
2018-02-10 17:54:46.459501540 +0100
@@ -1,0 +2,7 @@
+Wed Feb  7 22:24:49 UTC 2018 - jeng...@inai.de
+
+- Update to new snapshot 1.2.g22
+  * Add headers for the 1.2 unified (1.0, 1.1, and 1.2)
+specification.
+
+---

Old:

  spirv-headers-1.2.g13.tar.xz

New:

  spirv-headers-1.2.g22.tar.xz



Other differences:
--
++ spirv-headers.spec ++
--- /var/tmp/diff_new_pack.ZQKA4t/_old  2018-02-10 17:54:47.991446084 +0100
+++ /var/tmp/diff_new_pack.ZQKA4t/_new  2018-02-10 17:54:47.999445795 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package spirv-headers
 #
-# 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,10 +16,10 @@
 #
 
 
-%define version_unconverted 1.2.g13
+%define version_unconverted 1.2.g22
 
 Name:   spirv-headers
-Version:1.2.g13
+Version:1.2.g22
 Release:0
 Summary:Machine-readable files from the SPIR-V registry
 License:MIT

++ spirv-headers-1.2.g13.tar.xz -> spirv-headers-1.2.g22.tar.xz ++
 23632 lines of diff (skipped)




commit libcue for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package libcue for openSUSE:Factory checked 
in at 2018-02-10 17:54:33

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


Package is "libcue"

Sat Feb 10 17:54:33 2018 rev:8 rq:573910 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/libcue/libcue.changes2016-07-15 
12:29:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.libcue.new/libcue.changes   2018-02-10 
17:54:34.279942437 +0100
@@ -1,0 +2,9 @@
+Wed Feb  7 21:44:48 UTC 2018 - jeng...@inai.de
+
+- Update to new upstream release 2.2.0
+  * Fix memory corruption in cue_scanner.l
+  * Use MAXINDEX instead of MAXTRACK when indexing INDEX entries
+  * Allow for 100 INDEX entries
+- Remove cmake.diff (applied upstream)
+
+---

Old:

  cmake.diff
  v2.1.0.tar.gz

New:

  v2.2.0.tar.gz



Other differences:
--
++ libcue.spec ++
--- /var/tmp/diff_new_pack.SE1tr2/_old  2018-02-10 17:54:35.259906963 +0100
+++ /var/tmp/diff_new_pack.SE1tr2/_new  2018-02-10 17:54:35.263906817 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libcue
 #
-# 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
@@ -18,15 +18,14 @@
 
 Name:   libcue
 %define lname  libcue2
-Version:2.1.0
+Version:2.2.0
 Release:0
 Summary:CUE sheet parsing library
 License:GPL-2.0
 Group:  Development/Libraries/C and C++
-Url:http://sf.net/projects/libcue/
+Url:https://github.com/lipnitsk/libcue
 
 Source: https://github.com/lipnitsk/libcue/archive/v%version.tar.gz
-Patch1: cmake.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison
 BuildRequires:  cmake
@@ -44,7 +43,7 @@
 
 %description -n %lname
 libcue parses so-called cue sheets from a char string or a FILE
-pointer. This project is meant as a fork of (defunct) cuetools.
+pointer.
 
 %package devel
 Summary:Development files for libcue, a CUE sheet parsing library
@@ -53,14 +52,13 @@
 
 %description devel
 libcue parses so-called cue sheets from a char string or a FILE
-pointer. This project is meant as a fork of (defunct) cuetools.
+pointer.
 
 This package contains the development library symlink and header
 files.
 
 %prep
 %setup -q
-%patch -P 1 -p1
 
 %build
 %cmake

++ v2.1.0.tar.gz -> v2.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libcue-2.1.0/CMakeLists.txt 
new/libcue-2.2.0/CMakeLists.txt
--- old/libcue-2.1.0/CMakeLists.txt 2016-04-15 07:31:27.0 +0200
+++ new/libcue-2.2.0/CMakeLists.txt 2017-11-08 07:36:45.0 +0100
@@ -1,12 +1,15 @@
 SET(PACKAGE libcue)
 SET(PACKAGE_NAME libcue)
-SET(PACKAGE_VERSION 2.1.0)
+SET(PACKAGE_VERSION 2.2.0)
 SET(PACKAGE_SOVERSION 2)
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8 FATAL_ERROR)
 
 PROJECT(libcue)
 
+include(GNUInstallDirs)
+
+
 SET(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
 ADD_DEFINITIONS(-DPACKAGE_VERSION="${PACKAGE_VERSION}")
 ADD_DEFINITIONS(-DPACKAGE_STRING="${PACKAGE_STRING}")
@@ -19,7 +22,7 @@
 
 CONFIGURE_FILE(libcue.pc.in libcue.pc @ONLY)
 INSTALL(FILES ${CMAKE_BINARY_DIR}/libcue.pc
-   DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
+   DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
 
 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
 INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR}) # for generated files
@@ -44,14 +47,15 @@
C_VISIBILITY_PRESET hidden)
 
 INSTALL(TARGETS cue
-   LIBRARY DESTINATION lib
-   ARCHIVE DESTINATION lib)
-INSTALL(FILES ${CMAKE_SOURCE_DIR}/libcue.h DESTINATION include)
+   RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
+   LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
+   ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/libcue.h DESTINATION 
${CMAKE_INSTALL_INCLUDEDIR})
 if(CMAKE_HOST_UNIX)
-   INSTALL(DIRECTORY DESTINATION include/libcue)
+   INSTALL(DIRECTORY DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libcue)
INSTALL(CODE "
EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E create_symlink ../libcue.h
-   \$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/include/libcue/libcue.h)
+   \$ENV{DESTDIR}/${CMAKE_INSTALL_FULL_INCLUDEDIR}/libcue/libcue.h)
")
 endif(CMAKE_HOST_UNIX)
 
@@ -70,6 +74,10 @@
 
 ADD_EXECUTABLE(issue10 ${CMAKE_SOURCE_DIR}/t/issue10.c)
 TARGET_LINK_LIBRARIES(issue10 cue)
+

commit php7 for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package php7 for openSUSE:Factory checked in 
at 2018-02-10 17:54:28

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


Package is "php7"

Sat Feb 10 17:54:28 2018 rev:32 rq:573849 version:7.2.2

Changes:

--- /work/SRC/openSUSE:Factory/php7/php7.changes2018-02-05 
10:45:10.334323582 +0100
+++ /work/SRC/openSUSE:Factory/.php7.new/php7.changes   2018-02-10 
17:54:29.944099393 +0100
@@ -1,0 +2,7 @@
+Wed Feb  7 17:50:36 UTC 2018 - pgaj...@suse.com
+
+- updated to 7.2.2: This is a bugfix release, with several bug 
+  fixes included.
+  http://php.net/ChangeLog-7.php#7.2.2
+
+---

Old:

  php-7.2.1.tar.xz
  php-7.2.1.tar.xz.asc

New:

  php-7.2.2.tar.xz
  php-7.2.2.tar.xz.asc



Other differences:
--
++ php7.spec ++
--- /var/tmp/diff_new_pack.e7osFw/_old  2018-02-10 17:54:31.032060009 +0100
+++ /var/tmp/diff_new_pack.e7osFw/_new  2018-02-10 17:54:31.036059865 +0100
@@ -47,7 +47,7 @@
 %define system_gd 1
 %endif
 Name:   php7
-Version:7.2.1
+Version:7.2.2
 Release:0
 Summary:Interpreter for the PHP scripting language version 7
 License:PHP-3.01


++ php-7.2.1.tar.xz -> php-7.2.2.tar.xz ++
/work/SRC/openSUSE:Factory/php7/php-7.2.1.tar.xz 
/work/SRC/openSUSE:Factory/.php7.new/php-7.2.2.tar.xz differ: char 25, line 1

++ php7-no-build-date.patch ++
--- /var/tmp/diff_new_pack.e7osFw/_old  2018-02-10 17:54:31.200053928 +0100
+++ /var/tmp/diff_new_pack.e7osFw/_new  2018-02-10 17:54:31.200053928 +0100
@@ -1,7 +1,7 @@
-Index: php-7.2.0/ext/standard/info.c
+Index: php-7.2.2/ext/standard/info.c
 ===
 php-7.2.0.orig/ext/standard/info.c 2017-11-28 10:23:01.0 +0100
-+++ php-7.2.0/ext/standard/info.c  2017-12-11 10:15:31.169547129 +0100
+--- php-7.2.2.orig/ext/standard/info.c 2018-01-30 11:33:46.0 +0100
 php-7.2.2/ext/standard/info.c  2018-02-07 18:28:22.660632533 +0100
 @@ -830,7 +830,7 @@ PHPAPI void php_print_info(int flag)
php_info_print_box_end();
php_info_print_table_start();
@@ -20,62 +20,46 @@
  #endif
  
if (sapi_module.pretty_name) {
-Index: php-7.2.0/sapi/fpm/fpm/fpm_main.c
+Index: php-7.2.2/sapi/cli/php_cli.c
 ===
 php-7.2.0.orig/sapi/fpm/fpm/fpm_main.c 2017-11-28 10:23:05.0 
+0100
-+++ php-7.2.0/sapi/fpm/fpm/fpm_main.c  2017-12-11 10:15:31.213547858 +0100
-@@ -1755,9 +1755,9 @@ int main(int argc, char *argv[])
-   SG(request_info).no_headers = 1;
- 
- #if ZEND_DEBUG
--  php_printf("PHP %s (%s) (built: %s %s) 
(DEBUG)\nCopyright (c) 1997-2017 The PHP Group\n%s", PHP_VERSION, 
sapi_module.name, __DATE__,__TIME__, get_zend_version());
-+  php_printf("PHP %s (%s) (DEBUG)\nCopyright (c) 
1997-2017 The PHP Group\n%s", PHP_VERSION, sapi_module.name, 
get_zend_version());
- #else
--  php_printf("PHP %s (%s) (built: %s 
%s)\nCopyright (c) 1997-2017 The PHP Group\n%s", PHP_VERSION, sapi_module.name, 
__DATE__, __TIME__,  get_zend_version());
-+  php_printf("PHP %s (%s) \nCopyright (c) 
1997-2017 The PHP Group\n%s", PHP_VERSION, sapi_module.name, 
get_zend_version());
- #endif
-   php_request_shutdown((void *) 0);
-   fcgi_shutdown();
-Index: php-7.2.0/sapi/cli/php_cli.c
-===
 php-7.2.0.orig/sapi/cli/php_cli.c  2017-11-28 10:23:05.0 +0100
-+++ php-7.2.0/sapi/cli/php_cli.c   2017-12-11 10:15:31.225548056 +0100
+--- php-7.2.2.orig/sapi/cli/php_cli.c  2018-02-07 18:28:22.660632533 +0100
 php-7.2.2/sapi/cli/php_cli.c   2018-02-07 18:34:12.278238172 +0100
 @@ -697,8 +697,8 @@ static int do_cli(int argc, char **argv)
goto out;
  
case 'v': /* show php version & quit */
--  php_printf("PHP %s (%s) (built: %s %s) ( 
%s)\nCopyright (c) 1997-2017 The PHP Group\n%s",
+-  php_printf("PHP %s (%s) (built: %s %s) ( 
%s)\nCopyright (c) 1997-2018 The PHP Group\n%s",
 -  PHP_VERSION, cli_sapi_module.name, 
__DATE__, __TIME__,
-+  php_printf("PHP %s (%s) ( %s)\nCopyright (c) 
1997-2017 The PHP Group\n%s",
++  php_printf("PHP %s (%s) ( 

commit perl-MailTools for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package perl-MailTools for openSUSE:Factory 
checked in at 2018-02-10 17:54:11

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


Package is "perl-MailTools"

Sat Feb 10 17:54:11 2018 rev:34 rq:573784 version:2.20

Changes:

--- /work/SRC/openSUSE:Factory/perl-MailTools/perl-MailTools.changes
2017-08-29 11:34:29.501273340 +0200
+++ /work/SRC/openSUSE:Factory/.perl-MailTools.new/perl-MailTools.changes   
2018-02-10 17:54:13.432697101 +0100
@@ -1,0 +2,15 @@
+Wed Feb  7 15:49:21 UTC 2018 - co...@suse.com
+
+- updated to 2.20
+   see /usr/share/doc/packages/perl-MailTools/ChangeLog
+
+  version 2.20: Mon 22 Jan 18:14:44 CET 2018
+  
+   Improvements:
+   - rewrite doc syntax to my current standard style.
+   - text corrections rt.cpan.org#123823 [Ville Skyttä]
+   - text corrections rt.cpan.org#123824 [Ville Skyttä]
+   - convert to GIT
+   - move to GitHUB
+
+---

Old:

  MailTools-2.19.tar.gz

New:

  MailTools-2.20.tar.gz



Other differences:
--
++ perl-MailTools.spec ++
--- /var/tmp/diff_new_pack.pu84Z0/_old  2018-02-10 17:54:14.364663364 +0100
+++ /var/tmp/diff_new_pack.pu84Z0/_new  2018-02-10 17:54:14.368663219 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MailTools
 #
-# 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,11 +17,11 @@
 
 
 Name:   perl-MailTools
-Version:2.19
+Version:2.20
 Release:0
 %define cpan_name MailTools
 Summary:Bundle of Ancient Email Modules
-License:Artistic-1.0 or GPL-1.0+
+License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MailTools/
 Source0:
https://cpan.metacpan.org/authors/id/M/MA/MARKOV/%{cpan_name}-%{version}.tar.gz
@@ -63,6 +63,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc ChangeLog examples MailTools.ppd README README.demos
+%doc ChangeLog examples MailTools.ppd README README.demos README.md
 
 %changelog

++ MailTools-2.19.tar.gz -> MailTools-2.20.tar.gz ++
 1727 lines of diff (skipped)




commit perl-DateTime-TimeZone for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package perl-DateTime-TimeZone for 
openSUSE:Factory checked in at 2018-02-10 17:54:03

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


Package is "perl-DateTime-TimeZone"

Sat Feb 10 17:54:03 2018 rev:49 rq:573783 version:2.17

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-DateTime-TimeZone/perl-DateTime-TimeZone.changes
2017-11-12 17:56:35.393399406 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-DateTime-TimeZone.new/perl-DateTime-TimeZone.changes
   2018-02-10 17:54:07.992894020 +0100
@@ -1,0 +2,19 @@
+Wed Feb  7 15:51:40 UTC 2018 - pmonrealgonza...@suse.com
+
+- updated to 2.17
+  see /usr/share/doc/packages/perl-DateTime-TimeZone/Changes
+
+  2.172018-01-23
+
+  - This release is based on version 2018b of the Olson database. This release
+reverts the changes for Ireland in the previous versions as these caused
+breakages in some systems that consumed the IANA time zone data.
+
+  2.162018-01-19
+
+  - This release is based on version 2018b of the Olson database. This release
+includes contemporary changes for São Tomé and Príncipe, Brazil, and
+Ireland. The 2018a was skipped because it was missing a file, but there are
+no data changes from 2018a to 2018b.
+
+---

Old:

  DateTime-TimeZone-2.15.tar.gz

New:

  DateTime-TimeZone-2.17.tar.gz



Other differences:
--
++ perl-DateTime-TimeZone.spec ++
--- /var/tmp/diff_new_pack.vpRole/_old  2018-02-10 17:54:08.776865640 +0100
+++ /var/tmp/diff_new_pack.vpRole/_new  2018-02-10 17:54:08.776865640 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DateTime-TimeZone
 #
-# 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:   perl-DateTime-TimeZone
-Version:2.15
+Version:2.17
 Release:0
 %define cpan_name DateTime-TimeZone
 Summary:Time zone object base class and factory

++ DateTime-TimeZone-2.15.tar.gz -> DateTime-TimeZone-2.17.tar.gz ++
 24207 lines of diff (skipped)




commit perl-List-UtilsBy for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package perl-List-UtilsBy for 
openSUSE:Factory checked in at 2018-02-10 17:53:51

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


Package is "perl-List-UtilsBy"

Sat Feb 10 17:53:51 2018 rev:2 rq:573768 version:0.11

Changes:

--- /work/SRC/openSUSE:Factory/perl-List-UtilsBy/perl-List-UtilsBy.changes  
2016-07-15 12:53:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-List-UtilsBy.new/perl-List-UtilsBy.changes 
2018-02-10 17:53:54.093397177 +0100
@@ -1,0 +2,13 @@
+Wed Feb  7 15:44:26 UTC 2018 - co...@suse.com
+
+- updated to 0.11
+   see /usr/share/doc/packages/perl-List-UtilsBy/Changes
+
+  0.112018-01-31 23:12:44
+  [CHANGES]
+   * Added 'minmax_by' (RT124275)
+  
+  [BUGFIXES]
+   * use lib '.' for 5.26+ (RT120418)
+
+---

Old:

  List-UtilsBy-0.10.tar.gz

New:

  List-UtilsBy-0.11.tar.gz



Other differences:
--
++ perl-List-UtilsBy.spec ++
--- /var/tmp/diff_new_pack.PtwT7V/_old  2018-02-10 17:53:55.389350264 +0100
+++ /var/tmp/diff_new_pack.PtwT7V/_new  2018-02-10 17:53:55.401349829 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-List-UtilsBy
 #
-# Copyright (c) 2015 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,14 +17,14 @@
 
 
 Name:   perl-List-UtilsBy
-Version:0.10
+Version:0.11
 Release:0
 %define cpan_name List-UtilsBy
 Summary:Higher-Order List Utility Functions
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/List-UtilsBy/
-Source0:
http://www.cpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -40,8 +40,8 @@
 similar core perl or 'List::Util' functions of similar names, but which use
 the block to control their behaviour. For example, the core Perl function
 'sort' takes a list of values and returns them, sorted into order by their
-string value. The 'sort_by' function sorts them according to the string
-value returned by the extra function, when given each value.
+string value. The sort_by function sorts them according to the string value
+returned by the extra function, when given each value.
 
  my @names_sorted = sort @names;
 
@@ -63,6 +63,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ List-UtilsBy-0.10.tar.gz -> List-UtilsBy-0.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/List-UtilsBy-0.10/Changes 
new/List-UtilsBy-0.11/Changes
--- old/List-UtilsBy-0.10/Changes   2015-07-16 20:23:58.0 +0200
+++ new/List-UtilsBy-0.11/Changes   2018-02-01 00:21:27.0 +0100
@@ -1,5 +1,12 @@
 Revision history for List-UtilsBy
 
+0.112018-01-31 23:12:44
+[CHANGES]
+ * Added 'minmax_by' (RT124275)
+
+[BUGFIXES]
+ * use lib '.' for 5.26+ (RT120418)
+
 0.102015/07/16 19:22:00
 [CHANGES]
  * Added 'extract_first_by'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/List-UtilsBy-0.10/LICENSE 
new/List-UtilsBy-0.11/LICENSE
--- old/List-UtilsBy-0.10/LICENSE   2015-07-16 20:23:58.0 +0200
+++ new/List-UtilsBy-0.11/LICENSE   2018-02-01 00:21:27.0 +0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2015 by Paul Evans .
+This software is copyright (c) 2018 by Paul Evans .
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2015 by Paul Evans .
+This software is Copyright (c) 2018 by Paul Evans .
 
 This is free software, licensed under:
 
@@ -272,7 +272,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2015 by Paul Evans .
+This software is Copyright (c) 2018 by Paul Evans .
 
 This is free 

commit perl-DBI for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package perl-DBI for openSUSE:Factory 
checked in at 2018-02-10 17:53:56

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


Package is "perl-DBI"

Sat Feb 10 17:53:56 2018 rev:45 rq:573774 version:1.640

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBI/perl-DBI.changes2018-01-09 
14:34:49.219497618 +0100
+++ /work/SRC/openSUSE:Factory/.perl-DBI.new/perl-DBI.changes   2018-02-10 
17:53:57.525272943 +0100
@@ -1,0 +2,6 @@
+Wed Feb  7 15:19:14 UTC 2018 - co...@suse.com
+
+- updated to 1.640
+   see /usr/share/doc/packages/perl-DBI/Changes
+
+---

Old:

  DBI-1.639.tar.gz

New:

  DBI-1.640.tar.gz



Other differences:
--
++ perl-DBI.spec ++
--- /var/tmp/diff_new_pack.x1Hxco/_old  2018-02-10 17:53:58.333243695 +0100
+++ /var/tmp/diff_new_pack.x1Hxco/_new  2018-02-10 17:53:58.337243551 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBI
 #
-# 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:   perl-DBI
-Version:1.639
+Version:1.640
 Release:0
 %define cpan_name DBI
 Summary:Database independent interface for Perl

++ DBI-1.639.tar.gz -> DBI-1.640.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBI-1.639/Changes new/DBI-1.640/Changes
--- old/DBI-1.639/Changes   2017-12-28 15:17:04.0 +0100
+++ new/DBI-1.640/Changes   2018-01-28 17:33:00.0 +0100
@@ -6,7 +6,17 @@
 
 =cut
 
-=head2 Changes in DBI 1.638 - ...
+=head2 Changes in DBI 1.640 - 28th January 2018
+
+Fix test t/91_store_warning.t for perl 5.10.0
+thanks to pali #57
+
+Add Perl 5.10.0 and 5.8.1 specific versions to Travis testing
+thanks to pali #57
+Add registration of mariadb_ prefix for new DBD::MariaDB driver
+thanks to pali #56
+
+=head2 Changes in DBI 1.639 - 28th December 2017
 
 Fix UTF-8 support for warn/croak calls within DBI internals,
 thanks to pali #53
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBI-1.639/DBI.pm new/DBI-1.640/DBI.pm
--- old/DBI-1.639/DBI.pm2017-12-28 15:33:38.0 +0100
+++ new/DBI-1.640/DBI.pm2018-01-28 17:32:47.0 +0100
@@ -11,7 +11,7 @@
 require 5.008_001;
 
 BEGIN {
-our $XS_VERSION = our $VERSION = "1.639"; # ==> ALSO update the version in the 
pod text below!
+our $XS_VERSION = our $VERSION = "1.640"; # ==> ALSO update the version in the 
pod text below!
 $VERSION = eval $VERSION;
 }
 
@@ -143,7 +143,7 @@
 
 =head2 NOTES
 
-This is the DBI specification that corresponds to DBI version 1.639
+This is the DBI specification that corresponds to DBI version 1.640
 (see L for details).
 
 The DBI is evolving at a steady pace, so it's good to check that
@@ -338,6 +338,7 @@
   ing_ => { class => 'DBD::Ingres', },
   ix_  => { class => 'DBD::Informix',   },
   jdbc_=> { class => 'DBD::JDBC',   },
+  mariadb_ => { class => 'DBD::MariaDB',},
   mem_ => { class => 'DBD::Mem',},
   mo_  => { class => 'DBD::MO', },
   monetdb_ => { class => 'DBD::monetdb',},
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBI-1.639/META.json new/DBI-1.640/META.json
--- old/DBI-1.639/META.json 2017-12-28 15:36:35.0 +0100
+++ new/DBI-1.640/META.json 2018-01-28 21:38:32.0 +0100
@@ -59,7 +59,7 @@
   "x_IRC" : "irc://irc.perl.org/#dbi",
   "x_MailingList" : "mailto:dbi-...@perl.org;
},
-   "version" : "1.639",
+   "version" : "1.640",
"x_serialization_backend" : "JSON::PP version 2.27300_01",
"x_suggests" : {
   "Clone" : 0.34,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBI-1.639/META.yml new/DBI-1.640/META.yml
--- old/DBI-1.639/META.yml  2017-12-28 15:36:35.0 +0100
+++ new/DBI-1.640/META.yml  2018-01-28 21:38:32.0 +0100
@@ -35,7 +35,7 @@
   homepage: http://dbi.perl.org/
   license: http://dev.perl.org/licenses/
   repository: https://github.com/perl5-dbi/dbi
-version: '1.639'
+version: '1.640'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
 x_suggests:
   Clone: 0.34
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit go for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package go for openSUSE:Factory checked in 
at 2018-02-10 17:53:45

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


Package is "go"

Sat Feb 10 17:53:45 2018 rev:85 rq:573756 version:1.9.2

Changes:

--- /work/SRC/openSUSE:Factory/go/go.changes2017-11-03 16:32:28.195570746 
+0100
+++ /work/SRC/openSUSE:Factory/.go.new/go.changes   2018-02-10 
17:53:46.749663017 +0100
@@ -1,0 +2,15 @@
+Thu Dec 21 11:51:19 UTC 2017 - jmassaguer...@suse.com
+
+- Make go be a metapackage 
+  Removed patches:
+   * allow-binary-only-packages.patch
+   * armv6l.patch
+   * fix-sanitizer-build-against-latest-glibc.patch
+   * tools-packaging.patch
+   * go-1.5-build-dont-reinstall-stdlibs.patch
+   * verbose-build.patch
+   * go-1.5-install-dont-reinstall-stdlibs.patch
+   * gcc6-go.patch
+   * gcc7-go.patch
+
+---

Old:

  README.SUSE
  _service
  allow-binary-only-packages.patch
  armv6l.patch
  compiler-rt-g68e1532492f9b3fce0e9024f3c31411105965b11.tar.xz
  fix-sanitizer-build-against-latest-glibc.patch
  gcc6-go.patch
  gcc7-go.patch
  go-1.5-build-dont-reinstall-stdlibs.patch
  go-1.5-install-dont-reinstall-stdlibs.patch
  go-rpmlintrc
  go.gdbinit
  go.sh
  go1.9.2.src.tar.gz
  tools-packaging.patch
  verbose-build.patch

New:

  README



Other differences:
--
++ go.spec ++
--- /var/tmp/diff_new_pack.xCy34Z/_old  2018-02-10 17:53:48.825587869 +0100
+++ /var/tmp/diff_new_pack.xCy34Z/_new  2018-02-10 17:53:48.829587725 +0100
@@ -16,139 +16,23 @@
 #
 # nodebuginfo
 
-
-# strip will cause Go's .a archives to become invalid because strip appears to
-# reassemble the archive incorrectly. This is a known issue upstream
-# (https://github.com/golang/go/issues/17890), but we have to deal with it in
-# the meantime.
-%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
-
-# By default use go and not gccgo
-%define with_gccgo 0
-
-# The fallback boostrap method via go1.4 does not work for Factory because
-# of a known bug with binutils 2.27 https://github.com/golang/go/issues/16906.
-# Leap will work but we don't have go1.4 in there.
-%if 0%{?suse_version} > 1320
-# openSUSE Factory
-%define with_gccgo 1
-%else
-%if 0%{?suse_version} == 1315 && 0%{?is_opensuse}
-# openSUSE Leap
-%define with_gccgo 1
-%endif
-%endif
-
-# The fallback bootstrap method via go1.4 doesn't work
-# for aarch64 nor ppc64le because go 1.4 did not support that architecture.
-%ifarch aarch64 ppc64le ppc64 s390x
-%define with_gccgo 1
-%endif
-
 # By default we don't include tsan. It's only supported on amd64.
 %define tsan_arch x86_64
 
-# Go has precompiled versions of LLVM's compiler-rt inside their source code.
-# We cannot ship pre-compiled binaries so we have to recompile said source,
-# however they vendor specific commits from upstream. This value comes from
-# src/runtime/race/README (and we verify that it matches in check).
-# See boo#1052528 for more details.
-%define tsan_commit 68e1532492f9b3fce0e9024f3c31411105965b11
-
-%define go_api 1.9
-
-# shared library support
-%define shared_supported %(echo "%{go_api} >= 1.5" | bc -l)
-%if %{shared_supported}
-%if %{with_gccgo}
-%define with_shared 1
-%else
-%ifarch %ix86 %arm x86_64 aarch64
-%define with_shared 1
-%else
-%define with_shared 0
-%endif
-%endif
-%else
-%define with_shared 0
-%endif
-%ifarch ppc64
-%define with_shared 0
-%endif
+%define short_version 1.9
 
 Name:   go
 Version:1.9.2
 Release:0
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:A compiled, garbage-collected, concurrent programming language
 License:BSD-3-Clause
 Group:  Development/Languages/Other
 Url:http://golang.org
-Source: http://golang.org/dl/go%{version}.src.tar.gz
-Source1:go-rpmlintrc
-Source2:go.sh
-Source4:README.SUSE
-Source6:go.gdbinit
-# We have to compile TSAN ourselves. boo#1052528
-Source100:  compiler-rt-g%{tsan_commit}.tar.xz
-# PATCH-FIX-OPENSUSE add -s flag to 'go install' (don't rebuild/install std 
libs)
-Patch1: go-1.5-build-dont-reinstall-stdlibs.patch
-# PATCH-FIX-OPENSUSE re-enable build binary only packages (we are binary 
distro)
-# see http://code.google.com/p/go/issues/detail?id=2775 & also issue 3268
-Patch2: allow-binary-only-packages.patch
-#PATCH-FIX-OPENSUSE use -x verbose build output for qemu-arm builders
-Patch3: verbose-build.patch
-# PATCH-FIX-OPENSUSE BNC#776058
-Patch4: go-1.5-install-dont-reinstall-stdlibs.patch
-# PATCH-FIX-OPENSUSE enable writing tools outside $GOROOT/pkg/tool for 
packaging
-Patch5: 

commit aaa_base for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2018-02-10 17:53:07

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


Package is "aaa_base"

Sat Feb 10 17:53:07 2018 rev:445 rq:574352 version:84.87+git20180208.8eeab90

Changes:

--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes2018-02-08 
14:02:08.813073710 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2018-02-10 
17:53:22.970523811 +0100
@@ -1,0 +2,10 @@
+Thu Feb 08 13:04:38 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87+git20180208.8eeab90:
+  * Don't call fillup for removed sysconfig.news
+  * Adjust path for script converting sysctl config
+  * For ksh use builtin keyword 'function' to make sure that the
+keyword 'typeset' really set the variable IFS to be local within
+the function _ls.
+
+---

Old:

  aaa_base-84.87+git20180205.2d2832f.tar.xz

New:

  aaa_base-84.87+git20180208.8eeab90.tar.xz



Other differences:
--
++ aaa_base.spec ++
--- /var/tmp/diff_new_pack.ep6iFT/_old  2018-02-10 17:53:24.042485007 +0100
+++ /var/tmp/diff_new_pack.ep6iFT/_new  2018-02-10 17:53:24.042485007 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:   aaa_base
-Version:84.87+git20180205.2d2832f
+Version:84.87+git20180208.8eeab90
 Release:0
 Url:https://github.com/openSUSE/aaa_base
 Provides:   aaa_skel = %{version}-%{release}
@@ -232,7 +232,6 @@
 %dir /usr/lib/initscripts
 %dir /usr/lib/initscripts/legacy-actions
 %{_fillupdir}/sysconfig.language
-%{_fillupdir}/sysconfig.news
 %{_fillupdir}/sysconfig.proxy
 %{_fillupdir}/sysconfig.windowmanager
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.ep6iFT/_old  2018-02-10 17:53:24.110482545 +0100
+++ /var/tmp/diff_new_pack.ep6iFT/_new  2018-02-10 17:53:24.110482545 +0100
@@ -1,4 +1,4 @@
 
 
 git://github.com/openSUSE/aaa_base.git
-  2d2832ff10366b2f3e84fbf9d242a1787a52c118
\ No newline at end of file
+  8eeab902586416060527ddde7dabcec81d820022
\ No newline at end of file

++ aaa_base-84.87+git20180205.2d2832f.tar.xz -> 
aaa_base-84.87+git20180208.8eeab90.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-84.87+git20180205.2d2832f/aaa_base.post 
new/aaa_base-84.87+git20180208.8eeab90/aaa_base.post
--- old/aaa_base-84.87+git20180205.2d2832f/aaa_base.post2018-02-05 
14:56:59.0 +0100
+++ new/aaa_base-84.87+git20180208.8eeab90/aaa_base.post2018-02-08 
14:01:58.0 +0100
@@ -61,13 +61,12 @@
 if ! [ -d /etc/sysconfig ] ; then
   mkdir -p /etc/sysconfig
 fi
-for i in language proxy windowmanager \
-   news ; do
+for i in language proxy windowmanager ; do
 %{fillup_only -n $i}
 done
 if [ -e /etc/sysconfig/sysctl ]; then
echo "merging /etc/sysconfig/sysctl into /etc/sysctl.conf ..."
-   /lib/aaa_base/convert_sysctl
+   /usr/lib/base-scripts/convert_sysctl
mv /etc/sysconfig/sysctl /etc/sysconfig/sysctl.rpmsave
 fi
 test -e /etc/sysctl.conf || cat 

commit mono-core for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mono-core for openSUSE:Factory 
checked in at 2018-02-10 17:52:57

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


Package is "mono-core"

Sat Feb 10 17:52:57 2018 rev:116 rq:574310 version:5.8.0

Changes:

--- /work/SRC/openSUSE:Factory/mono-core/mono-core.changes  2018-01-30 
15:41:01.412073114 +0100
+++ /work/SRC/openSUSE:Factory/.mono-core.new/mono-core.changes 2018-02-10 
17:53:06.567117607 +0100
@@ -1,0 +2,129 @@
+Sat Feb 03 00:00:00 UTC 2018 - fwdsbs.to.1...@xoxy.net
+
+- Update to version 5.8.0.108 (5.8.0 Stable)
+- Minor packaging updates
+- Remove patch: bug-57918.patch
+- Remove patch: bug-59608.patch
+- Remove patch: mcs-compatibility-fix.patch
+- Add fix-64bit-portability-issue.patch:
+  * Fix build error: E: mono-core 64bit-portability-issue threads.c:1866
+- New features and changes:
+  * WebAssembly:  it should be possible to build both the runtime and class 
libraries targeting WebAssembly
+  * Profiler: added a new "quiet" mode; added Mono.Profiler.Log.dll, which 
provides an API to the profiler
+  * Verifier: the runtime verifier now supports C# 7.0 byref returns
+  * Modes for the SGen GC: sgen garbage collector now has support for so 
called "modes", check out the mode parameter documentation for the 
MONO_GC_PARAMS environment variable in the man page
+  * Other changes: improved compatibily with alternative languages that depend 
on implicit widening of locals
+  * Class Libraries: more classes was replaced by CoreFX codebase
+  * MCS changes: mcs now has better support for C# 7 syntax
+  * csi: You are now able to use Roslyn’s csi (C# interactive) REPL tool from 
the command line
+  * Roslyn: roslyn was updated to the 2.3.2 release
+  * ilasm: ilasm gained support for the AggressiveInlining keyword
+- Bugfixes:
+  * bxc#4786 - After failed call to SqlConnection.Open (due to invalid 
password), subsequent invalid password attempts result in wrong exception
+  * bxc#5798 - Thread abort can lead to locks not being released
+  * bxc#5804 - Thread.ResetAbort can prevent appdomain unloading
+  * bxc#6339 - Headers not being populated in SoapExtension
+  * bxc#10074 - Error while updating status of command: 
MonoDevelop.Ide.Commands.ViewCommands.LayoutList
+  * bxc#11696 - Missing MethodImpl has a duplicate
+  * bxc#12157 - Missing: Init state for this differs depending on path
+  * bxc#17325 - RealProxy returns MarshalByRefObject for an Interface instead 
of the real interface type
+  * bxc#25755 - HttpClient.Timeout does not throw ArgumentOutOfRangeException 
when setting Timeout property to 0
+  * bxc#31507 - ObjectDisposedException when canceling postAsync
+  * bxc#36053 - Broken enum values conversion
+  * bxc#36634 - IpcChannelTest.Bug609381 hangs on Linux
+  * bxc#40556 - Output pad no longer displays unicode characters
+  * bxc#41279 - Wrong syntax used for nested types in MethodAccessException 
(and similar)
+  * bxc#43172 - Failure when alerting threads waiting on a socket that closes
+  * bxc#43563 - Crash when struct Foo contains static field of type Foo[][]
+  * bxc#44255 - Inconsistent results in the serialization of TimeZoneInfo.
+  * bxc#44266 - Unable to change variable values whilst debugging
+  * bxc#46683 - Recurring hang in System.Xaml on CI
+  * bxc#52157 - SocketTest.ConnectedProperty test fails in FullAOT Linux runs
+  * bxc#52621 - Typo in exception message in PKCS12.cs
+  * bxc#55603 - Follow-up to bug 52845: Satellite assemblies not loaded by app 
when using “Bundle assemblies into native code” even though they are now 
successfully mkbundled
+  * bxc#55697 - .NET 2.0 style web services fail to build under msbuild in 
Release but work with xbuild
+  * bxc#56111 - Hitting assertion after enabling AOT+LLVM on x86 devices in 
tramp-x86.c:124
+  * bxc#56242 - TypeTest.GetGenericMethodDefinitionOverInflatedMethodOnGTD 
throws NRE on Android in Release mode
+  * bxc#56452 - Problem Stack too big
+  * bxc#56653 - Zygote crashes
+  * bxc#56684 - (mono-2.0-sgen.dll) in mono.exe: 0xC005: Access violation 
reading location 0x04FA3D9A.
+  * bxc#56727 - Runtime crashes when disposing DeflateStream
+  * bxc#56814 - Xamarin.Mac.dll Memory Leak starting with 3.2.0.175 Release
+  * bxc#57002 - New bockbuild package is missing .dSYM directories
+  * bxc#57069 - WaitHandle.SignalAndWait is broke
+  * bxc#57222 - System.Reflection.AmbiguousMatchException for two fields with 
same name but different types
+  * bxc#57232 - Compiler error when using ternary operator and no whitespace
+  * bxc#57476 - AOT fails with large StructLayout size on Debug+ARMv7
+  * bxc#57488 - Debugger crashes when inspecting variable in a unit test
+  * bxc#57496 - [Slovenian CultureInfo + others] .Parse throws exception when 

commit smartmontools for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package smartmontools for openSUSE:Factory 
checked in at 2018-02-10 17:53:15

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


Package is "smartmontools"

Sat Feb 10 17:53:15 2018 rev:74 rq:574389 version:6.6

Changes:

--- /work/SRC/openSUSE:Factory/smartmontools/smartmontools.changes  
2017-11-29 10:51:28.387233639 +0100
+++ /work/SRC/openSUSE:Factory/.smartmontools.new/smartmontools.changes 
2018-02-10 17:53:27.098374385 +0100
@@ -1,0 +2,80 @@
+Thu Feb  8 19:49:07 CET 2018 - sbra...@suse.com
+
+- Make possible to disable broken SAT support by -d scsi+cciss,N
+  (bsc#1038271, smartmontools-scsiata-scsi_only.patch,
+  https://www.smartmontools.org/ticket/871).
+- Update smartmontools.keyring.
+
+---
+Mon Dec 18 04:03:10 UTC 2017 - avin...@opensuse.org
+
+- update to 6.6 version
+  - smartctl:
+* -i' and '--identify': ATA ACS-4 and SATA 3.3 enhancements.
+* Control ATA write cache through SCT Feature Control
+with '-s wcache-sct,ata|on|off[,p]' and '-g wcache-sct'.
+* Print ATA Pending Defects log with '-l defects'.
+* '-s wcreorder,on|off': New persistent flag ',p'.
+* '-s standby': Prevent temporary drive spinup.
+* '-n POWERMODE': New parameter to set exit status.
+* '-g security': ATA Security Level check fixed.
+* '-l scttemp*': Print minimum supported ERC Time Limit.
+* '-q noserial': Now also suppresses "SAS address" output.
+* '-i': Print IEEE EUI-64 of NVMe namespace.
+* '-c': Print NVMe 1.3 feature flags.
+* '-A': Print NVMe 1.3 thermal temperature transition
+statistic.
+* '-g/s dsn': Get/set ATA DSN.
+  - smartd
+* Uses also device identify information to detect for duplicate
+devices.
+* '-e dsn' directive: Set ATA DSN.
+* Improved SCSI/SAS temperature logging.
+* Silence emails and log messages on open errors of
+'-d removable' devices.
+* Exit on device open error unless '-q never' or '-d removable'
+is specified (regression).
+  - update-smart-drivedb: Now authenticates downloaded file with GnuPG.
+  - update-smart-drivedb: New options '--trunk', '--no-verify' and
+'--export-key'.
+  - Device type '-d intelliprop,N' for IntelliProp controllers.
+  - SCSI: Default timeout increased to 1 minute.
+  - configure: New options '--with-gnupg', '--with-scriptpath' and
+'--with-update-smart-drivedb=X.Y'
+  - configure: Checks for C++11 support option and requires
+'--with[out]-cxx11-option' if option unknown or no C++11 support.
+  - HDD, SSD and USB additions to drive database.
+  - New smartmontools-* mailing list addresses.
+  - Man page formatting reworked.
+  - Linux:
+* Uses SG_IO V4 API if supported.
+* Devices behind hpsa driver are no longer detected as regular
+  SCSI devices.
+  - Darwin: Initial NVMe support based on undocumented API.
+  - FreeBSD:
+* Fix panic on INVARIANTS enabled kernel.
+* Improve ATA SMART STATUS check for legacy controllers.
+* Compile fix for FreeBSD-11 and newer.
+  - NetBSD:
+* NVMe support.
+* Full 28-bit ATA support.
+* Compile fix.
+* Use a raw disk device file.
+  - OpenBSD: Compile fix.
+  - OS/2: Support for the OS2AHCI driver, updating source code,
+adding autoscan support, adding self-test support.
+  - Windows fixes:
+* Support for Windows 10 NVMe driver (stornvme.sys).
+* Fix CSMI access for IRST driver 15.2.
+* smartd: Ability to run PowerShell scripts with '-M exec'.
+* smartd: New PowerShell script to send smartd warning emails
+  without external tools.
+* package now provides PDF man pages.
+- switch to new url
+- drop upstreamed patches:
+  * smartmontools-scsi-suppress-no-temperature.patch
+  * smartmontools-scsi-temperature-check.patch
+  * smartmontools-log-scsi-temperature.patch
+- regen smartmontools-drivedb.h
+
+---

Old:

  smartmontools-6.5.tar.gz
  smartmontools-6.5.tar.gz.asc
  smartmontools-log-scsi-temperature.patch
  smartmontools-scsi-suppress-no-temperature.patch
  smartmontools-scsi-temperature-check.patch

New:

  smartmontools-6.6.tar.gz
  smartmontools-6.6.tar.gz.asc
  smartmontools-scsiata-scsi_only.patch



Other differences:
--
++ smartmontools.spec ++
--- /var/tmp/diff_new_pack.qM6ABb/_old  2018-02-10 17:53:27.878346151 +0100
+++ /var/tmp/diff_new_pack.qM6ABb/_new  2018-02-10 17:53:27.878346151 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package smartmontools
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX 

commit unzip for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package unzip for openSUSE:Factory checked 
in at 2018-02-10 17:53:01

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


Package is "unzip"

Sat Feb 10 17:53:01 2018 rev:41 rq:574312 version:6.00

Changes:

--- /work/SRC/openSUSE:Factory/unzip/unzip.changes  2017-07-11 
08:23:39.549948410 +0200
+++ /work/SRC/openSUSE:Factory/.unzip.new/unzip.changes 2018-02-10 
17:53:15.294801669 +0100
@@ -1,0 +2,6 @@
+Thu Feb  8 14:11:25 UTC 2018 - kbabi...@suse.com
+
+- Add CVE-2018-135.patch: Fix a heap-based buffer overflow in 
+  password protected ZIP archives (CVE-2018-135 bsc#1080074)
+
+---

New:

  CVE-2018-135.patch



Other differences:
--
++ unzip-rcc.spec ++
--- /var/tmp/diff_new_pack.y13mXj/_old  2018-02-10 17:53:16.110772131 +0100
+++ /var/tmp/diff_new_pack.y13mXj/_new  2018-02-10 17:53:16.110772131 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package unzip-rcc
 #
-# 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

++ unzip.spec ++
--- /var/tmp/diff_new_pack.y13mXj/_old  2018-02-10 17:53:16.130771407 +0100
+++ /var/tmp/diff_new_pack.y13mXj/_new  2018-02-10 17:53:16.134771262 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package unzip
 #
-# 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
@@ -56,6 +56,7 @@
 Patch16:CVE-2015-7697.patch
 Patch17:CVE-2016-9844.patch
 Patch18:CVE-2014-9913.patch
+Patch19:CVE-2018-135.patch
 Requires(post): update-alternatives
 Requires(preun): update-alternatives
 Recommends: %{_name}-doc
@@ -98,6 +99,7 @@
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
+%patch19 -p0
 
 %build
 export RPM_OPT_FLAGS="%{optflags} \

++ CVE-2018-135.patch ++
From: 
Date: Thu Feb  8 15:10:03 CET 2018
Upstream: merged
References: http://www.info-zip.org/phpBB3/viewtopic.php?f=7=548

Index: fileio.c
===
--- fileio.c.orig
+++ fileio.c
@@ -1613,7 +1613,11 @@ int UZ_EXP UzpPassword (pG, rcnt, pwbuf,
 int r = IZ_PW_ENTERED;
 char *m;
 char *prompt;
-
+char *zfnf;
+char *efnf;
+size_t zfnfl;
+int isOverflow;
+
 #ifndef REENTRANT
 /* tell picky compilers to shut up about "unused variable" warnings */
 pG = pG;
@@ -1621,7 +1625,15 @@ int UZ_EXP UzpPassword (pG, rcnt, pwbuf,
 
 if (*rcnt == 0) {   /* First call for current entry */
 *rcnt = 2;
-if ((prompt = (char *)malloc(2*FILNAMSIZ + 15)) != (char *)NULL) {
+zfnf = FnFilter1(zfn);
+efnf = FnFilter2(efn);
+zfnfl = strlen(zfnf);
+isOverflow = TRUE;
+if (2*FILNAMSIZ >= zfnfl && (2*FILNAMSIZ - zfnfl) >= strlen(efnf))
+{
+   isOverflow = FALSE;
+}
+if ((isOverflow == FALSE) && ((prompt = (char *)malloc(2*FILNAMSIZ + 
15)) != (char *)NULL)) {
 sprintf(prompt, LoadFarString(PasswPrompt),
 FnFilter1(zfn), FnFilter2(efn));
 m = prompt;



commit python-lxml for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package python-lxml for openSUSE:Factory 
checked in at 2018-02-10 17:52:24

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


Package is "python-lxml"

Sat Feb 10 17:52:24 2018 rev:63 rq:574258 version:4.1.1

Changes:

--- /work/SRC/openSUSE:Factory/python-lxml/python-lxml.changes  2017-11-04 
10:22:18.366129845 +0100
+++ /work/SRC/openSUSE:Factory/.python-lxml.new/python-lxml.changes 
2018-02-10 17:52:30.708415672 +0100
@@ -1,0 +2,11 @@
+Thu Feb  8 12:34:33 UTC 2018 - mimi...@gmail.com
+
+- update to 4.1.1
+ - ElementPath supports text predicates for current node, like "[.='text']".
+ - ElementPath allows spaces in predicates.
+ - Custom Element classes and XPath functions can now be registered with
+a decorator rather than explicit dict assignments.
+ - LP#1722776: Requesting non-Element objects like comments from
+a document with PythonElementClassLookup could fail with a TypeError.
+
+---

Old:

  lxml-4.0.0.tar.gz
  lxmldoc-4.0.0.pdf

New:

  lxml-4.1.1.tar.gz
  lxmldoc-4.1.1.pdf



Other differences:
--
++ python-lxml.spec ++
--- /var/tmp/diff_new_pack.Eaq3te/_old  2018-02-10 17:52:31.608383094 +0100
+++ /var/tmp/diff_new_pack.Eaq3te/_new  2018-02-10 17:52:31.612382949 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-lxml
 #
-# 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
@@ -18,26 +18,23 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-lxml
-Version:4.0.0
+Version:4.1.1
 Release:0
 Summary:Pythonic XML processing library
-License:BSD-3-Clause and GPL-2.0+
+License:BSD-3-Clause AND GPL-2.0+
 Group:  Development/Languages/Python
 Url:https://lxml.de/
 Source: 
https://files.pythonhosted.org/packages/source/l/lxml/lxml-%{version}.tar.gz
 Source1:http://lxml.de/lxmldoc-%{version}.pdf
-BuildRequires:  %{python_module Cython >= 0.22.1}
+BuildRequires:  %{python_module Cython >= 0.26.1}
+BuildRequires:  %{python_module cssselect >= 0.9.1}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools >= 18.0.1}
 BuildRequires:  fdupes
 BuildRequires:  libxml2-devel >= 2.7.0
 BuildRequires:  libxslt-devel >= 1.1.23
 BuildRequires:  python-rpm-macros
-# Needed for test cases:
-BuildRequires:  %{python_module cssselect >= 0.9.1}
 Requires:   python-cssselect >= 0.9.1
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
 %python_subpackages
 
 %description
@@ -93,10 +90,10 @@
 export LANG=en_US.UTF-8
 export PYTHONUNBUFFERED=x
 %if 0%{?have_python2}
-make test
+make %{?_smp_mflags} test
 %endif
 %if 0%{?have_python3}
-make test3
+make %{?_smp_mflags} test3
 %endif
 
 %install
@@ -104,7 +101,6 @@
 %fdupes %{buildroot}
 
 %files %{python_files}
-%defattr(-,root,root)
 %doc CHANGES.txt CREDITS.txt LICENSES.txt README.rst
 %{python_sitearch}/lxml/
 %{python_sitearch}/lxml-%{version}-py%{python_version}.egg-info
@@ -112,12 +108,10 @@
 %exclude %{python_sitearch}/lxml/includes/*.h
 
 %files %{python_files devel}
-%defattr(-,root,root)
 %{python_sitearch}/lxml/*.h
 %{python_sitearch}/lxml/includes/*.h
 
 %files %{python_files doc}
-%defattr(-,root,root)
 %doc doc/html lxmldoc-%{version}.pdf
 
 %changelog

++ lxml-4.0.0.tar.gz -> lxml-4.1.1.tar.gz ++
 361744 lines of diff (skipped)

++ lxmldoc-4.0.0.pdf -> lxmldoc-4.1.1.pdf ++
(binary differes)




commit mpfr for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package mpfr for openSUSE:Factory checked in 
at 2018-02-10 17:52:14

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


Package is "mpfr"

Sat Feb 10 17:52:14 2018 rev:47 rq:574113 version:4.0.1

Changes:

--- /work/SRC/openSUSE:Factory/mpfr/mpfr.changes2018-01-10 
23:28:46.638018192 +0100
+++ /work/SRC/openSUSE:Factory/.mpfr.new/mpfr.changes   2018-02-10 
17:52:15.568963711 +0100
@@ -1,0 +2,7 @@
+Wed Feb  7 18:50:06 UTC 2018 - astie...@suse.com
+
+- update to 4.0.1:
+  * Improved MPFR manual
+  * bug fixes, including mpfr_div_ui, mpfr_div rounding issue
+
+---

Old:

  mpfr-4.0.0.tar.bz2
  mpfr-4.0.0.tar.bz2.asc

New:

  mpfr-4.0.1.tar.bz2
  mpfr-4.0.1.tar.bz2.asc



Other differences:
--
++ mpfr.spec ++
--- /var/tmp/diff_new_pack.G0LqXj/_old  2018-02-10 17:52:16.144942860 +0100
+++ /var/tmp/diff_new_pack.G0LqXj/_new  2018-02-10 17:52:16.148942716 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   mpfr
-Version:4.0.0
+Version:4.0.1
 Release:0
 Summary:The GNU multiple-precision floating-point library
 License:LGPL-3.0+
@@ -28,8 +28,7 @@
 Source2:%{name}.keyring
 Source3:baselibs.conf
 BuildRequires:  gmp-devel
-BuildRequires:  pkg-config
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig
 
 %description
 The MPFR library is a C library for multiple-precision floating-point
@@ -70,7 +69,7 @@
 
 %build
 %configure \
-%ifarch %sparc hppa
+%ifarch %{sparc} hppa
--disable-thread-safe \
 %else
--enable-thread-safe \
@@ -84,7 +83,7 @@
 make check %{?_smp_mflags}
 
 %install
-make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n libmpfr6 -p /sbin/ldconfig
@@ -96,13 +95,11 @@
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
 %files -n libmpfr6
-%defattr(-,root,root)
 %{_libdir}/libmpfr.so.6*
 
 %files devel
-%defattr(-,root,root)
 %doc %{_docdir}/mpfr
-%{_infodir}/mpfr.info.gz
+%{_infodir}/mpfr.info%{ext_info}
 %{_libdir}/libmpfr.so
 %{_includedir}/mpf2mpfr.h
 %{_includedir}/mpfr.h

++ mpfr-4.0.0.tar.bz2 -> mpfr-4.0.1.tar.bz2 ++
 9040 lines of diff (skipped)





commit bind for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package bind for openSUSE:Factory checked in 
at 2018-02-10 17:52:20

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


Package is "bind"

Sat Feb 10 17:52:20 2018 rev:131 rq:574246 version:9.11.2

Changes:

--- /work/SRC/openSUSE:Factory/bind/bind.changes2018-01-26 
13:37:52.677838854 +0100
+++ /work/SRC/openSUSE:Factory/.bind.new/bind.changes   2018-02-10 
17:52:22.184724225 +0100
@@ -1,0 +2,5 @@
+Wed Feb  7 15:17:17 UTC 2018 - navin.kukr...@suse.com
+
+- Implement systemd init scripts for bind and lwresd (fate#323155) 
+
+---



Other differences:
--
++ bind.spec ++
--- /var/tmp/diff_new_pack.9RFHjN/_old  2018-02-10 17:52:23.196687592 +0100
+++ /var/tmp/diff_new_pack.9RFHjN/_new  2018-02-10 17:52:23.200687447 +0100
@@ -43,7 +43,12 @@
 %defineGROUPADD_NAMED getent group %{NAMED_GID_NAME} >/dev/null || 
%{_sbindir}/groupadd -g %{NAMED_GID} -o -r %{NAMED_GID_NAME}
 %defineUSERADD_NAMED getent passwd %{NAMED_UID_NAME} >/dev/null || 
%{_sbindir}/useradd -r -o -g %{NAMED_GID_NAME} -u %{NAMED_UID} -s 
%{NAMED_SHELL} -c "%{NAMED_COMMENT}" -d %{NAMED_HOMEDIR} %{NAMED_UID_NAME}
 %defineUSERMOD_NAMED getent passwd %{NAMED_UID_NAME} >/dev/null || 
%{_sbindir}/usermod -s %{NAMED_SHELL} -d  %{NAMED_HOMEDIR} %{NAMED_UID_NAME}
+%if 0%{?suse_version} >= 1500
+%define with_systemd 1
+%else
 %define with_systemd 0
+%endif
+
 #Compat macro for new _fillupdir macro introduced in Nov 2017
 %if ! %{defined _fillupdir}
   %define _fillupdir %{_localstatedir}/adm/fillup-templates
@@ -99,9 +104,11 @@
 Provides:   dns_daemon
 Obsoletes:  bind8 < %{version}
 Obsoletes:  bind9 < %{version}
-%{?systemd_requires}
 %if %{with_systemd}
 BuildRequires:  systemd-rpm-macros
+BuildRequires:  pkgconfig(libsystemd)
+BuildRequires:  pkgconfig(systemd)
+%{?systemd_requires}
 %else
 Requires(post): %insserv_prereq
 %endif
@@ -313,12 +320,11 @@
sed -e "s@__NSD__@/lib@g" \
-e "s@__BIND_PACKAGE_NAME__@%{name}@g" \
-e "s@__VENDOR__@%{VENDOR}@g" \
-   -e "s@___lib__@%{_lib}@g" \
 -e "s@__openssl__@$(pkg-config --variable=enginesdir 
libcrypto)@g" \
-i "${file}"
 }
 pushd vendor-files
-for file in docu/README tools/createNamedConfInclude 
config/{README,named.conf} init/{named,lwresd} 
sysconfig/{named-common,named-named,syslog-named}; do
+for file in docu/README tools/createNamedConfInclude 
config/{README,named.conf} init/{named,lwresd} system/{named.init,lwresd.init} 
sysconfig/{named-common,named-named,syslog-named}; do
replaceStrings ${file}
 done
 popd
@@ -349,6 +355,9 @@
--with-gssapi=yes \
--disable-isc-spnego \
--enable-fixed-rrset \
+%if %{with_systemd}
+--with-systemd \
+%endif
--enable-full-report
 # disable rpath
 sed -i '
@@ -387,10 +396,19 @@
 for file in lwresd.conf named.conf.include rndc.key; do
touch %{buildroot}/%{_sysconfdir}/${file}
 done
-for file in lwresd named; do
+
+%if %{with_systemd}
+   for file in lwresd named; do
+   install -D -m 0644 vendor-files/system/${file}.service 
%{buildroot}%{_unitdir}/${file}.service
+install -m 0755 vendor-files/system/${file}.init 
%{buildroot}/usr/sbin/${file}.init
+   ln -s /sbin/service %{buildroot}%{_sbindir}/rc${file}
+   done
+%else
+   for file in lwresd named; do
install -m 0754 vendor-files/init/${file} 
%{buildroot}%{_initddir}/${file}
ln -sf %{_initddir}/${file} %{buildroot}%{_sbindir}/rc${file}
-done
+   done
+%endif
 install -m 0644 ${RPM_SOURCE_DIR}/named.root 
%{buildroot}%{_localstatedir}/lib/named/root.hint
 mv vendor-files/config/{127.0.0,localhost}.zone 
%{buildroot}%{_localstatedir}/lib/named
 install -m 0754 vendor-files/tools/createNamedConfInclude 
%{buildroot}/%{_datadir}/bind
@@ -674,7 +692,12 @@
 %attr(0644,root,root) /%{_sysconfdir}/slp.reg.d/bind.reg
 %attr(0644,root,named) %ghost /%{_sysconfdir}/named.conf.include
 %attr(0640,root,named) %ghost %config(noreplace) /%{_sysconfdir}/rndc.key
+%if %{with_systemd}
+%config %{_unitdir}/named.service
+%{_sbindir}/named.init
+%else 
 %config /%{_sysconfdir}/init.d/named
+%endif
 %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/bind
 %{_bindir}/bind9-config
 %{_bindir}/named-rrchecker
@@ -766,7 +789,12 @@
 
 %files lwresd
 %ghost %attr(0644,root,named) %config(noreplace) /%{_sysconfdir}/lwresd.conf
+%if %{with_systemd}
+%config %{_unitdir}/lwresd.service
+%{_sbindir}/lwresd.init
+%else
 %config %{_initddir}/lwresd
+%endif
 %{_sbindir}/rclwresd
 

commit bash for openSUSE:Factory

2018-02-10 Thread root
Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2018-02-10 17:52:08

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


Package is "bash"

Sat Feb 10 17:52:08 2018 rev:143 rq:573586 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/bash/bash.changes2018-02-03 
15:35:42.160427669 +0100
+++ /work/SRC/openSUSE:Factory/.bash.new/bash.changes   2018-02-10 
17:52:10.509146873 +0100
@@ -1,0 +2,8 @@
+Tue Feb  6 23:25:18 UTC 2018 - avin...@opensuse.org
+
+- Add patch 19 to bash-4.4-patches.tar.bz2
+  * With certain values for PS1, especially those that wrap onto
+three or more lines, readline will miscalculate the number of
+invisible characters, leading to crashes and core dumps.
+
+---



Other differences:
--
++ bash-4.4-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bash-4.4-patches/bash44-019 
new/bash-4.4-patches/bash44-019
--- old/bash-4.4-patches/bash44-019 1970-01-01 01:00:00.0 +0100
+++ new/bash-4.4-patches/bash44-019 2018-02-06 22:23:47.0 +0100
@@ -0,0 +1,50 @@
+BASH PATCH REPORT
+=
+
+Bash-Release:  4.4
+Patch-ID:  bash44-019
+
+Bug-Reported-by:   Kieran Grant 
+Bug-Reference-ID:  
+Bug-Reference-URL: 
http://lists.gnu.org/archive/html/bug-bash/2018-02/msg2.html
+
+Bug-Description:
+
+With certain values for PS1, especially those that wrap onto three or more
+lines, readline will miscalculate the number of invisible characters,
+leading to crashes and core dumps.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-4.4.18/lib/readline/display.c  2016-07-28 14:49:33.0 
-0400
+--- lib/readline/display.c 2018-02-03 19:19:35.0 -0500
+***
+*** 772,776 
+wadjust = (newlines == 0)
+ ? prompt_invis_chars_first_line
+!: ((newlines == prompt_lines_estimate) ? wrap_offset : 
prompt_invis_chars_first_line);
+  
+/* fix from Darin Johnson  for prompt string with
+--- 788,794 
+wadjust = (newlines == 0)
+ ? prompt_invis_chars_first_line
+!: ((newlines == prompt_lines_estimate)
+!  ? (wrap_offset - prompt_invis_chars_first_line)
+!  : 0);
+  
+/* fix from Darin Johnson  for prompt string with
+*** ../bash-4.4/patchlevel.h   2016-06-22 14:51:03.0 -0400
+--- patchlevel.h   2016-10-01 11:01:28.0 -0400
+***
+*** 26,30 
+ looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 18
+  
+  #endif /* _PATCHLEVEL_H_ */
+--- 26,30 
+ looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 19
+  
+  #endif /* _PATCHLEVEL_H_ */