Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-ruby-bindings for openSUSE:Factory checked in at 2021-07-25 20:09:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-ruby-bindings (Old) and /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-ruby-bindings" Sun Jul 25 20:09:05 2021 rev:112 rq:907673 version:4.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes 2021-06-21 20:34:44.978567722 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new.1899/yast2-ruby-bindings.changes 2021-07-25 20:09:06.563453982 +0200 @@ -1,0 +2,7 @@ +Wed Jul 21 14:30:46 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> + +- Avoid IO exception when the stderr was closed. This could happen + when the parent process was killed, see bsc#1154854. +- 4.4.2 + +------------------------------------------------------------------- Old: ---- yast2-ruby-bindings-4.4.1.tar.bz2 New: ---- yast2-ruby-bindings-4.4.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-ruby-bindings.spec ++++++ --- /var/tmp/diff_new_pack.EfKkTp/_old 2021-07-25 20:09:07.031453461 +0200 +++ /var/tmp/diff_new_pack.EfKkTp/_new 2021-07-25 20:09:07.035453456 +0200 @@ -17,7 +17,7 @@ Name: yast2-ruby-bindings -Version: 4.4.1 +Version: 4.4.2 Release: 0 URL: https://github.com/yast/yast-ruby-bindings BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-ruby-bindings-4.4.1.tar.bz2 -> yast2-ruby-bindings-4.4.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-ruby-bindings-4.4.1/package/yast2-ruby-bindings.changes new/yast2-ruby-bindings-4.4.2/package/yast2-ruby-bindings.changes --- old/yast2-ruby-bindings-4.4.1/package/yast2-ruby-bindings.changes 2021-06-16 23:07:47.000000000 +0200 +++ new/yast2-ruby-bindings-4.4.2/package/yast2-ruby-bindings.changes 2021-07-22 10:50:42.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Jul 21 14:30:46 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> + +- Avoid IO exception when the stderr was closed. This could happen + when the parent process was killed, see bsc#1154854. +- 4.4.2 + +------------------------------------------------------------------- Wed Jun 16 14:43:23 UTC 2021 - Josef Reidinger <jreidin...@suse.com> - When a WFM client returns a value not representable in YCP, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-ruby-bindings-4.4.1/package/yast2-ruby-bindings.spec new/yast2-ruby-bindings-4.4.2/package/yast2-ruby-bindings.spec --- old/yast2-ruby-bindings-4.4.1/package/yast2-ruby-bindings.spec 2021-06-16 23:07:47.000000000 +0200 +++ new/yast2-ruby-bindings-4.4.2/package/yast2-ruby-bindings.spec 2021-07-22 10:50:42.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-ruby-bindings -Version: 4.4.1 +Version: 4.4.2 Release: 0 URL: https://github.com/yast/yast-ruby-bindings BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-ruby-bindings-4.4.1/src/ruby/yast/y2start_helpers.rb new/yast2-ruby-bindings-4.4.2/src/ruby/yast/y2start_helpers.rb --- old/yast2-ruby-bindings-4.4.1/src/ruby/yast/y2start_helpers.rb 2021-06-16 23:07:47.000000000 +0200 +++ new/yast2-ruby-bindings-4.4.2/src/ruby/yast/y2start_helpers.rb 2021-07-22 10:50:42.000000000 +0200 @@ -137,7 +137,13 @@ private_class_method def self.signal_handler(name) Signal.trap(name, "IGNORE") - $stderr.puts "YaST got signal #{name}." + # Exception swallowing: writing to stderr could fail if the parent process was killed, + # see bsc#1154854. Note that $stderr.closed? returns false. + begin + $stderr.puts "YaST got signal #{name}." + rescue Errno::EIO + # Nothing to do + end signal_log_open do |f| f.puts "=== #{Time.now} ==="