Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2 for openSUSE:Factory checked in at 2022-09-10 20:17:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2 (Old) and /work/SRC/openSUSE:Factory/.yast2.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2" Sat Sep 10 20:17:04 2022 rev:538 rq:1002277 version:4.5.13 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2/yast2.changes 2022-09-06 13:00:58.858959083 +0200 +++ /work/SRC/openSUSE:Factory/.yast2.new.2083/yast2.changes 2022-09-10 20:17:06.072799639 +0200 @@ -1,0 +2,7 @@ +Fri Sep 9 08:18:15 UTC 2022 - Michal Filka <mfi...@suse.com> + +- bsc#1203227 + - Replaced egrep with grep -E. +- 4.5.13 + +------------------------------------------------------------------- Old: ---- yast2-4.5.12.tar.bz2 New: ---- yast2-4.5.13.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.M0DeSO/_old 2022-09-10 20:17:06.768801429 +0200 +++ /var/tmp/diff_new_pack.M0DeSO/_new 2022-09-10 20:17:06.772801439 +0200 @@ -17,7 +17,7 @@ Name: yast2 -Version: 4.5.12 +Version: 4.5.13 Release: 0 Summary: YaST2 Main Package ++++++ yast2-4.5.12.tar.bz2 -> yast2-4.5.13.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.5.12/library/general/src/modules/Arch.rb new/yast2-4.5.13/library/general/src/modules/Arch.rb --- old/yast2-4.5.12/library/general/src/modules/Arch.rb 2022-09-05 09:31:48.000000000 +0200 +++ new/yast2-4.5.13/library/general/src/modules/Arch.rb 2022-09-09 12:18:04.000000000 +0200 @@ -459,7 +459,7 @@ def is_zkvm if @_is_zkvm.nil? # using different check than on x86 as recommended by IBM - @_is_zkvm = s390 && Yast::WFM.Execute(path(".local.bash"), "/usr/bin/egrep 'Control Program: KVM' /proc/sysinfo") == 0 + @_is_zkvm = s390 && Yast::WFM.Execute(path(".local.bash"), "/usr/bin/grep 'Control Program: KVM' /proc/sysinfo") == 0 end @_is_zkvm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.5.12/package/yast2.changes new/yast2-4.5.13/package/yast2.changes --- old/yast2-4.5.12/package/yast2.changes 2022-09-05 09:31:48.000000000 +0200 +++ new/yast2-4.5.13/package/yast2.changes 2022-09-09 12:18:04.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Sep 9 08:18:15 UTC 2022 - Michal Filka <mfi...@suse.com> + +- bsc#1203227 + - Replaced egrep with grep -E. +- 4.5.13 + +------------------------------------------------------------------- Thu Sep 1 08:08:30 UTC 2022 - Knut Anderssen <kanders...@suse.com> - Added a parameter to NetworkService.EnableDisableNow method in diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.5.12/package/yast2.spec new/yast2-4.5.13/package/yast2.spec --- old/yast2-4.5.12/package/yast2.spec 2022-09-05 09:31:48.000000000 +0200 +++ new/yast2-4.5.13/package/yast2.spec 2022-09-09 12:18:04.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2 -Version: 4.5.12 +Version: 4.5.13 Release: 0 Summary: YaST2 Main Package diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.5.12/scripts/yast2-funcs new/yast2-4.5.13/scripts/yast2-funcs --- old/yast2-4.5.12/scripts/yast2-funcs 2022-09-05 09:31:48.000000000 +0200 +++ new/yast2-4.5.13/scripts/yast2-funcs 2022-09-09 12:18:04.000000000 +0200 @@ -19,7 +19,7 @@ function get_plugindir() { plugindir=$YAST_PREFIX/lib/YaST2/plugin - if `ldd $ybindir/y2base | egrep "/lib64/(.*/)?libc.so" > /dev/null` ; then + if `ldd $ybindir/y2base | grep -E "/lib64/(.*/)?libc.so" > /dev/null` ; then plugindir=$YAST_PREFIX/lib64/YaST2/plugin fi }