Hello community,
here is the log from the commit of package yast2-ruby-bindings for
openSUSE:Factory checked in at 2017-07-11 08:33:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ruby-bindings (Old)
and /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-ruby-bindings"
Tue Jul 11 08:33:59 2017 rev:82 rq:508097 version:3.2.14
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes
2017-06-07 13:08:13.533215400 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new/yast2-ruby-bindings.changes
2017-07-11 08:34:00.438366586 +0200
@@ -1,0 +2,6 @@
+Tue Jul 4 09:50:48 UTC 2017 - [email protected]
+
+- Set proper title also for YaST2 System Log (bsc#1046153)
+- 3.2.14
+
+-------------------------------------------------------------------
Old:
----
yast2-ruby-bindings-3.2.13.tar.bz2
New:
----
yast2-ruby-bindings-3.2.14.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-ruby-bindings.spec ++++++
--- /var/tmp/diff_new_pack.imAx3v/_old 2017-07-11 08:34:00.966292107 +0200
+++ /var/tmp/diff_new_pack.imAx3v/_new 2017-07-11 08:34:00.970291542 +0200
@@ -17,7 +17,7 @@
Name: yast2-ruby-bindings
-Version: 3.2.13
+Version: 3.2.14
Release: 0
Url: https://github.com/yast/yast-ruby-bindings
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ yast2-ruby-bindings-3.2.13.tar.bz2 -> yast2-ruby-bindings-3.2.14.tar.bz2
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ruby-bindings-3.2.13/package/yast2-ruby-bindings.changes
new/yast2-ruby-bindings-3.2.14/package/yast2-ruby-bindings.changes
--- old/yast2-ruby-bindings-3.2.13/package/yast2-ruby-bindings.changes
2017-05-23 17:26:03.749382784 +0200
+++ new/yast2-ruby-bindings-3.2.14/package/yast2-ruby-bindings.changes
2017-07-04 14:12:56.404420105 +0200
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue Jul 4 09:50:48 UTC 2017 - [email protected]
+
+- Set proper title also for YaST2 System Log (bsc#1046153)
+- 3.2.14
+
+-------------------------------------------------------------------
Tue May 23 15:14:45 UTC 2017 - [email protected]
- Set proper title for YaST2 installation (bsc#1037891)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ruby-bindings-3.2.13/package/yast2-ruby-bindings.spec
new/yast2-ruby-bindings-3.2.14/package/yast2-ruby-bindings.spec
--- old/yast2-ruby-bindings-3.2.13/package/yast2-ruby-bindings.spec
2017-05-23 17:26:03.749382784 +0200
+++ new/yast2-ruby-bindings-3.2.14/package/yast2-ruby-bindings.spec
2017-07-04 14:12:56.404420105 +0200
@@ -17,7 +17,7 @@
Name: yast2-ruby-bindings
-Version: 3.2.13
+Version: 3.2.14
Url: https://github.com/yast/yast-ruby-bindings
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-ruby-bindings-3.2.13/src/y2start/y2start
new/yast2-ruby-bindings-3.2.14/src/y2start/y2start
--- old/yast2-ruby-bindings-3.2.13/src/y2start/y2start 2017-05-23
17:26:03.897382784 +0200
+++ new/yast2-ruby-bindings-3.2.14/src/y2start/y2start 2017-07-04
14:12:56.508420105 +0200
@@ -11,7 +11,7 @@
Yast::Y2StartHelpers.setup_signals
-File.umask(0022)
+File.umask(0o022)
Yast.y2milestone("y2base called with #{ARGV.inspect}")
@@ -28,8 +28,8 @@
exit 0
end
-if (args[:client_name] == "installation" &&
- args[:client_options][:params].include?("initial"))
+if args[:client_name] == "installation" &&
+ args[:client_options][:params].include?("initial")
ENV["YAST_IS_RUNNING"] = "instsys"
end
@@ -38,7 +38,7 @@
exit 1
end
-
+NO_CLI_CLIENTS = ["installation", "view_anymsg"].freeze
Yast.ui_create(args[:server_name], args[:server_options])
# set application title bsc#1033161
Yast.import "UI"
@@ -50,7 +50,7 @@
title = "YaST2 - #{args[:client_name]}#{hostname}"
# set title only if it is not CLI (bsc#1033993)
# modules do not have CLI arguments, except installation (bsc#1037891)
-set_title = args[:client_options][:params].empty? || args[:client_name] ==
"installation"
+set_title = args[:client_options][:params].empty? ||
NO_CLI_CLIENTS.include?(args[:client_name])
Yast::UI.SetApplicationTitle(title) if set_title
Yast::WFM.CallFunction(args[:client_name], args[:client_options][:params])