Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2016-03-16 10:25:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old)
 and      /work/SRC/openSUSE:Factory/.autoyast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "autoyast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes      2016-02-29 
09:11:12.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2016-03-16 
10:25:11.000000000 +0100
@@ -1,0 +2,14 @@
+Wed Mar  9 08:39:49 UTC 2016 - igonzalezs...@suse.com
+
+- Check uptime instead of system time while waiting for systemd
+  services to be restarted (bsc#956730)
+- 3.1.118
+
+-------------------------------------------------------------------
+Thu Feb 25 15:11:38 CET 2016 - sch...@suse.de
+
+- Fixed crash if the general/mode section has not been defined.
+  (bnc#968080)
+- 3.1.117
+
+-------------------------------------------------------------------

Old:
----
  autoyast2-3.1.116.tar.bz2

New:
----
  autoyast2-3.1.118.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ autoyast2.spec ++++++
--- /var/tmp/diff_new_pack.f7NQf9/_old  2016-03-16 10:25:12.000000000 +0100
+++ /var/tmp/diff_new_pack.f7NQf9/_new  2016-03-16 10:25:12.000000000 +0100
@@ -18,7 +18,7 @@
 
 Name:           autoyast2
 
-Version:        3.1.116
+Version:        3.1.118
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ autoyast2-3.1.116.tar.bz2 -> autoyast2-3.1.118.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.116/package/autoyast2.changes 
new/autoyast2-3.1.118/package/autoyast2.changes
--- old/autoyast2-3.1.116/package/autoyast2.changes     2016-02-24 
10:04:14.000000000 +0100
+++ new/autoyast2-3.1.118/package/autoyast2.changes     2016-03-09 
10:33:25.000000000 +0100
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Wed Mar  9 08:39:49 UTC 2016 - igonzalezs...@suse.com
+
+- Check uptime instead of system time while waiting for systemd
+  services to be restarted (bsc#956730)
+- 3.1.118
+
+-------------------------------------------------------------------
+Thu Feb 25 15:11:38 CET 2016 - sch...@suse.de
+
+- Fixed crash if the general/mode section has not been defined.
+  (bnc#968080)
+- 3.1.117
+
+-------------------------------------------------------------------
 Tue Feb 23 17:01:09 CET 2016 - sch...@suse.de
 
 - As network configuration will be moved to first installation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.116/package/autoyast2.spec 
new/autoyast2-3.1.118/package/autoyast2.spec
--- old/autoyast2-3.1.116/package/autoyast2.spec        2016-02-24 
10:04:14.000000000 +0100
+++ new/autoyast2-3.1.118/package/autoyast2.spec        2016-03-09 
10:33:25.000000000 +0100
@@ -18,7 +18,7 @@
 
 Name:           autoyast2
 
-Version:        3.1.116
+Version:        3.1.118
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.116/src/clients/inst_autoconfigure.rb 
new/autoyast2-3.1.118/src/clients/inst_autoconfigure.rb
--- old/autoyast2-3.1.116/src/clients/inst_autoconfigure.rb     2016-02-24 
10:04:14.000000000 +0100
+++ new/autoyast2-3.1.118/src/clients/inst_autoconfigure.rb     2016-03-09 
10:33:25.000000000 +0100
@@ -500,7 +500,7 @@
         max_wait,
         ser_ignore
       )
-      st_time = Builtins.time
+      st_time = uptime
       cur_time = st_time
       last_busy = st_time
       cmd = "systemctl --full list-jobs"
@@ -526,7 +526,7 @@
         Builtins.y2milestone("size ll=%1 ll:%2", cnt, ll)
         last_busy = cur_time if Ops.greater_than(cnt, 0)
         Builtins.sleep(500)
-        cur_time = Builtins.time
+        cur_time = uptime
         Builtins.y2milestone(
           "wait_systemd_finished time:%1 idle:%2",
           Ops.subtract(cur_time, st_time),
@@ -540,6 +540,15 @@
 
       nil
     end
+
+    private
+
+    # Determines the current uptime
+    #
+    # @return [Float] Current uptime in seconds
+    def uptime
+      Process.clock_gettime(Process::CLOCK_MONOTONIC)
+    end
   end
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.116/src/clients/inst_autosetup.rb 
new/autoyast2-3.1.118/src/clients/inst_autosetup.rb
--- old/autoyast2-3.1.116/src/clients/inst_autosetup.rb 2016-02-24 
10:04:14.000000000 +0100
+++ new/autoyast2-3.1.118/src/clients/inst_autosetup.rb 2016-03-09 
10:33:25.000000000 +0100
@@ -405,7 +405,7 @@
       # Checking Base Product licenses
       #
       Progress.NextStage
-      if general_section["mode"].fetch( "confirm_base_product_license", false )
+      if general_section["mode"] && general_section["mode"].fetch( 
"confirm_base_product_license", false )
         Wizard.EnableAbortButton
         result = ProductLicense.AskLicenseAgreement(nil,
           "",


Reply via email to