Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2021-06-19 23:01:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation" Sat Jun 19 23:01:56 2021 rev:473 rq:900373 version:4.4.13 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2021-06-15 16:37:22.817697984 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new.2625/yast2-installation.changes 2021-06-19 23:01:57.539590016 +0200 @@ -1,0 +2,7 @@ +Wed Jun 16 10:35:42 UTC 2021 - David Diaz <dgonza...@suse.com> + +- Fix scope resolution for ::Users::UsersDatabase + (related to fate#319624) +- 4.4.13 + +------------------------------------------------------------------- Old: ---- yast2-installation-4.4.12.tar.bz2 New: ---- yast2-installation-4.4.13.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.xY4zzu/_old 2021-06-19 23:01:58.475591213 +0200 +++ /var/tmp/diff_new_pack.xY4zzu/_new 2021-06-19 23:01:58.479591218 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.4.12 +Version: 4.4.13 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only ++++++ yast2-installation-4.4.12.tar.bz2 -> yast2-installation-4.4.13.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.12/package/yast2-installation.changes new/yast2-installation-4.4.13/package/yast2-installation.changes --- old/yast2-installation-4.4.12/package/yast2-installation.changes 2021-06-10 17:13:40.000000000 +0200 +++ new/yast2-installation-4.4.13/package/yast2-installation.changes 2021-06-16 14:32:58.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Jun 16 10:35:42 UTC 2021 - David Diaz <dgonza...@suse.com> + +- Fix scope resolution for ::Users::UsersDatabase + (related to fate#319624) +- 4.4.13 + +------------------------------------------------------------------- Tue Jun 8 08:28:28 UTC 2021 - Knut Anderssen <kanders...@suse.com> - Export also the https_proxy environment variable when a proxy diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.12/package/yast2-installation.spec new/yast2-installation-4.4.13/package/yast2-installation.spec --- old/yast2-installation-4.4.12/package/yast2-installation.spec 2021-06-10 17:13:40.000000000 +0200 +++ new/yast2-installation-4.4.13/package/yast2-installation.spec 2021-06-16 14:32:58.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.4.12 +Version: 4.4.13 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.12/src/lib/installation/clients/inst_pre_install.rb new/yast2-installation-4.4.13/src/lib/installation/clients/inst_pre_install.rb --- old/yast2-installation-4.4.12/src/lib/installation/clients/inst_pre_install.rb 2021-06-10 17:13:40.000000000 +0200 +++ new/yast2-installation-4.4.13/src/lib/installation/clients/inst_pre_install.rb 2021-06-16 14:32:58.000000000 +0200 @@ -119,7 +119,7 @@ def can_read_users? @can_read_users ||= begin require_users_database - defined? Users::UsersDatabase + defined? ::Users::UsersDatabase end end @@ -137,7 +137,7 @@ # @param mount_point [String] path where the filesystem is mounted def read_users(device, mount_point) log.info "Reading users information from #{device}" - Users::UsersDatabase.import(mount_point) + ::Users::UsersDatabase.import(mount_point) end # Stores the SSH configuration of a given partition in the SSH importer diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.12/test/ssh_import_auto_test.rb new/yast2-installation-4.4.13/test/ssh_import_auto_test.rb --- old/yast2-installation-4.4.12/test/ssh_import_auto_test.rb 2021-06-10 17:13:40.000000000 +0200 +++ new/yast2-installation-4.4.13/test/ssh_import_auto_test.rb 2021-06-16 14:32:58.000000000 +0200 @@ -139,14 +139,6 @@ end end - context "Read" do - let(:func) { "Read" } - - it "returns true" do - expect(subject.run).to eq(true) - end - end - context "Reset" do let(:func) { "Reset" }