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-03-08 15:15:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-ruby-bindings (Old) and /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-ruby-bindings" Mon Mar 8 15:15:53 2021 rev:108 rq:876912 version:4.3.13 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes 2021-02-26 21:58:24.791766110 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new.2378/yast2-ruby-bindings.changes 2021-03-08 15:17:36.781954324 +0100 @@ -1,0 +2,9 @@ +Thu Mar 4 14:44:36 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz> + +- Change the special keybard shortcut to start a graphical + menu instead of a low level command line console, +- The command line console can be started from there as well +- Related to jsc#PM-1895, jsc#SLE-16263 +- 4.3.13 + +------------------------------------------------------------------- Old: ---- yast2-ruby-bindings-4.3.12.tar.bz2 New: ---- yast2-ruby-bindings-4.3.13.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-ruby-bindings.spec ++++++ --- /var/tmp/diff_new_pack.IZukXL/_old 2021-03-08 15:17:37.445954810 +0100 +++ /var/tmp/diff_new_pack.IZukXL/_new 2021-03-08 15:17:37.449954813 +0100 @@ -17,7 +17,7 @@ Name: yast2-ruby-bindings -Version: 4.3.12 +Version: 4.3.13 Release: 0 URL: https://github.com/yast/yast-ruby-bindings BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-ruby-bindings-4.3.12.tar.bz2 -> yast2-ruby-bindings-4.3.13.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-ruby-bindings-4.3.12/package/yast2-ruby-bindings.changes new/yast2-ruby-bindings-4.3.13/package/yast2-ruby-bindings.changes --- old/yast2-ruby-bindings-4.3.12/package/yast2-ruby-bindings.changes 2021-02-16 10:06:27.000000000 +0100 +++ new/yast2-ruby-bindings-4.3.13/package/yast2-ruby-bindings.changes 2021-03-05 08:15:50.000000000 +0100 @@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Thu Mar 4 14:44:36 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz> + +- Change the special keybard shortcut to start a graphical + menu instead of a low level command line console, +- The command line console can be started from there as well +- Related to jsc#PM-1895, jsc#SLE-16263 +- 4.3.13 + +------------------------------------------------------------------- Mon Feb 15 17:44:17 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz> - Handle a special keyboard shortcut for starting the installation diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-ruby-bindings-4.3.12/package/yast2-ruby-bindings.spec new/yast2-ruby-bindings-4.3.13/package/yast2-ruby-bindings.spec --- old/yast2-ruby-bindings-4.3.12/package/yast2-ruby-bindings.spec 2021-02-16 10:06:27.000000000 +0100 +++ new/yast2-ruby-bindings-4.3.13/package/yast2-ruby-bindings.spec 2021-03-05 08:15:50.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-ruby-bindings -Version: 4.3.12 +Version: 4.3.13 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.3.12/src/binary/Yast.cc new/yast2-ruby-bindings-4.3.13/src/binary/Yast.cc --- old/yast2-ruby-bindings-4.3.12/src/binary/Yast.cc 2021-02-16 10:06:27.000000000 +0100 +++ new/yast2-ruby-bindings-4.3.13/src/binary/Yast.cc 2021-03-05 08:15:50.000000000 +0100 @@ -295,7 +295,7 @@ static VALUE require_console(...) { - rb_require("installation/console"); + rb_require("installation/console/menu"); return Qtrue; } @@ -306,7 +306,7 @@ } /** - * Start the configuration console, it calls "Installation::Console.run" Ruby code. + * Start the configuration console, it calls "Installation::Console::Menu.run" Ruby code. */ static void start_config_console() { @@ -319,10 +319,11 @@ // LoadError caught if (success == Qfalse) return; - // call "Installation::Console.run" + // call "Installation::Console::Menu.run" VALUE installation = rb_const_get(rb_cObject, rb_intern("Installation")); VALUE console = rb_const_get(installation, rb_intern("Console")); - rb_funcall(console, rb_intern("run"), 0); + VALUE menu = rb_const_get(console, rb_intern("Menu")); + rb_funcall(menu, rb_intern("run"), 0); } /*