Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2014-09-18 07:12:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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      2014-09-05 
13:00:09.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2014-09-18 
07:12:32.000000000 +0200
@@ -1,0 +2,16 @@
+Fri Sep 12 11:35:17 UTC 2014 - [email protected]
+
+- If keyboard tag is missing in profile, try to infer the layout
+  from the language tag (bnc#891808).
+- Updated dependency from yast2-country (>= 3.1.13) with
+  improved Keyboard.Import
+- 3.1.60
+
+-------------------------------------------------------------------
+Wed Sep 10 12:37:32 CEST 2014 - [email protected]
+
+- Trying to mount CD only if the device has been defined.
+  (bnc#895670)
+- 3.1.59
+
+-------------------------------------------------------------------

Old:
----
  autoyast2-3.1.58.tar.bz2

New:
----
  autoyast2-3.1.60.tar.bz2

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

Other differences:
------------------
++++++ autoyast2.spec ++++++
--- /var/tmp/diff_new_pack.3i7v9i/_old  2014-09-18 07:12:33.000000000 +0200
+++ /var/tmp/diff_new_pack.3i7v9i/_new  2014-09-18 07:12:33.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           autoyast2
-Version:        3.1.58
+Version:        3.1.60
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +43,7 @@
 Requires:       yast2
 Requires:       yast2 >= 2.16.36
 Requires:       yast2-core
-Requires:       yast2-country
+Requires:       yast2-country >= 3.1.13
 Requires:       yast2-schema
 Requires:       yast2-storage >= 3.1.27
 Requires:       yast2-transfer >= 2.21.0

++++++ autoyast2-3.1.58.tar.bz2 -> autoyast2-3.1.60.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.58/package/autoyast2.changes 
new/autoyast2-3.1.60/package/autoyast2.changes
--- old/autoyast2-3.1.58/package/autoyast2.changes      2014-09-03 
18:10:08.000000000 +0200
+++ new/autoyast2-3.1.60/package/autoyast2.changes      2014-09-15 
17:09:12.000000000 +0200
@@ -1,4 +1,20 @@
 -------------------------------------------------------------------
+Fri Sep 12 11:35:17 UTC 2014 - [email protected]
+
+- If keyboard tag is missing in profile, try to infer the layout
+  from the language tag (bnc#891808).
+- Updated dependency from yast2-country (>= 3.1.13) with
+  improved Keyboard.Import
+- 3.1.60
+
+-------------------------------------------------------------------
+Wed Sep 10 12:37:32 CEST 2014 - [email protected]
+
+- Trying to mount CD only if the device has been defined.
+  (bnc#895670)
+- 3.1.59
+
+-------------------------------------------------------------------
 Tue Sep  2 12:08:53 CEST 2014 - [email protected]
 
 - Fix failure to import report settings from profile introduced with
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.58/package/autoyast2.spec 
new/autoyast2-3.1.60/package/autoyast2.spec
--- old/autoyast2-3.1.58/package/autoyast2.spec 2014-09-03 18:10:08.000000000 
+0200
+++ new/autoyast2-3.1.60/package/autoyast2.spec 2014-09-15 17:09:12.000000000 
+0200
@@ -17,7 +17,7 @@
 
 
 Name:           autoyast2
-Version:        3.1.58
+Version:        3.1.60
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +43,7 @@
 Requires:       yast2
 Requires:       yast2 >= 2.16.36
 Requires:       yast2-core
-Requires:       yast2-country
+Requires:       yast2-country >= 3.1.13
 Requires:       yast2-schema
 Requires:       yast2-storage >= 3.1.27
 Requires:       yast2-transfer >= 2.21.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.58/src/clients/inst_autosetup.rb 
new/autoyast2-3.1.60/src/clients/inst_autosetup.rb
--- old/autoyast2-3.1.58/src/clients/inst_autosetup.rb  2014-09-03 
18:10:08.000000000 +0200
+++ new/autoyast2-3.1.60/src/clients/inst_autosetup.rb  2014-09-15 
17:09:12.000000000 +0200
@@ -198,8 +198,11 @@
       if Builtins.haskey(Profile.current, "timezone")
         Timezone.Import(Ops.get_map(Profile.current, "timezone", {}))
       end
-      if Builtins.haskey(Profile.current, "keyboard")
-        Keyboard.Import(Ops.get_map(Profile.current, "keyboard", {}))
+      # bnc#891808: infer keyboard from language if needed
+      if Profile.current.has_key?("keyboard")
+        Keyboard.Import(Profile.current["keyboard"] || {}, :keyboard)
+      elsif Profile.current.has_key?("language")
+        Keyboard.Import(Profile.current["language"] || {}, :language)
       end
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/autoyast2-3.1.58/src/clients/inst_autosetup_upgrade.rb 
new/autoyast2-3.1.60/src/clients/inst_autosetup_upgrade.rb
--- old/autoyast2-3.1.58/src/clients/inst_autosetup_upgrade.rb  2014-09-03 
18:10:08.000000000 +0200
+++ new/autoyast2-3.1.60/src/clients/inst_autosetup_upgrade.rb  2014-09-15 
17:09:12.000000000 +0200
@@ -164,8 +164,11 @@
       if Builtins.haskey(Profile.current, "timezone")
         Timezone.Import(Ops.get_map(Profile.current, "timezone", {}))
       end
-      if Builtins.haskey(Profile.current, "keyboard")
-        Keyboard.Import(Ops.get_map(Profile.current, "keyboard", {}))
+      # bnc#891808: infer keyboard from language if needed
+      if Profile.current.has_key?("keyboard")
+        Keyboard.Import(Profile.current["keyboard"] || {}, :keyboard)
+      elsif Profile.current.has_key?("language")
+        Keyboard.Import(Profile.current["language"] || {}, :language)
       end
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.58/src/include/autoinstall/io.rb 
new/autoyast2-3.1.60/src/include/autoinstall/io.rb
--- old/autoyast2-3.1.58/src/include/autoinstall/io.rb  2014-09-03 
18:10:08.000000000 +0200
+++ new/autoyast2-3.1.60/src/include/autoinstall/io.rb  2014-09-15 
17:09:12.000000000 +0200
@@ -177,8 +177,8 @@
             "Trying to find file on installation media: %1",
             Installation.boot
           )
-          if Installation.boot == "cd"
-            cdrom = Convert.to_string(SCR.Read(path(".etc.install_inf.Cdrom")))
+          cdrom = Convert.to_string(SCR.Read(path(".etc.install_inf.Cdrom")))
+          if Installation.boot == "cd" && cdrom
             cdrom_device = Ops.add("/dev/", cdrom)
             already_mounted = Ops.add(
               Ops.add("grep ", cdrom_device),

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to