Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-users for openSUSE:Factory checked in at 2023-09-28 00:24:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-users (Old) and /work/SRC/openSUSE:Factory/.yast2-users.new.23327 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-users" Thu Sep 28 00:24:53 2023 rev:261 rq:1113640 version:5.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes 2023-07-30 20:57:54.779269933 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-users.new.23327/yast2-users.changes 2023-09-28 00:28:18.138751970 +0200 @@ -1,0 +2,11 @@ +Mon Sep 25 12:33:45 UTC 2023 - Stefan Hundhammer <shundham...@suse.com> + +- Don't use obsolete method Dir.exists? (bsc#1215637) +- 5.0.1 + +------------------------------------------------------------------- +Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidin...@suse.cz> + +- 5.0.0 (#bsc1185510) + +------------------------------------------------------------------- Old: ---- yast2-users-4.6.4.tar.bz2 New: ---- yast2-users-5.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-users.spec ++++++ --- /var/tmp/diff_new_pack.xO7n0R/_old 2023-09-28 00:28:19.190789943 +0200 +++ /var/tmp/diff_new_pack.xO7n0R/_new 2023-09-28 00:28:19.194790088 +0200 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 4.6.4 +Version: 5.0.1 Release: 0 Summary: YaST2 - User and Group Configuration License: GPL-2.0-only ++++++ yast2-users-4.6.4.tar.bz2 -> yast2-users-5.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.6.4/package/yast2-users.changes new/yast2-users-5.0.1/package/yast2-users.changes --- old/yast2-users-4.6.4/package/yast2-users.changes 2023-07-25 18:33:43.000000000 +0200 +++ new/yast2-users-5.0.1/package/yast2-users.changes 2023-09-25 14:47:05.000000000 +0200 @@ -1,4 +1,15 @@ ------------------------------------------------------------------- +Mon Sep 25 12:33:45 UTC 2023 - Stefan Hundhammer <shundham...@suse.com> + +- Don't use obsolete method Dir.exists? (bsc#1215637) +- 5.0.1 + +------------------------------------------------------------------- +Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidin...@suse.cz> + +- 5.0.0 (#bsc1185510) + +------------------------------------------------------------------- Tue Jul 25 11:04:17 UTC 2023 - Michal Filka <mfi...@suse.com> - bsc#1211583 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.6.4/package/yast2-users.spec new/yast2-users-5.0.1/package/yast2-users.spec --- old/yast2-users-4.6.4/package/yast2-users.spec 2023-07-25 18:33:43.000000000 +0200 +++ new/yast2-users-5.0.1/package/yast2-users.spec 2023-09-25 14:47:05.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 4.6.4 +Version: 5.0.1 Release: 0 Summary: YaST2 - User and Group Configuration License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.6.4/src/include/users/dialogs.rb new/yast2-users-5.0.1/src/include/users/dialogs.rb --- old/yast2-users-4.6.4/src/include/users/dialogs.rb 2023-07-25 18:33:43.000000000 +0200 +++ new/yast2-users-5.0.1/src/include/users/dialogs.rb 2023-09-25 14:47:05.000000000 +0200 @@ -1326,7 +1326,7 @@ # inside Details dialog if current == :details && ret == :browse - start_dir = Dir.exists?(home) ? home : Users.GetDefaultHome(new_type) + start_dir = Dir.exist?(home) ? home : Users.GetDefaultHome(new_type) selected_dir = cleanpath(UI.AskForExistingDirectory(start_dir, "")) UI.ChangeWidget(Id(:home), :Value, selected_dir) unless selected_dir.empty? end