Hello community,

here is the log from the commit of package yast2-country for openSUSE:Factory 
checked in at 2017-10-28 14:19:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-country (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-country.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-country"

Sat Oct 28 14:19:36 2017 rev:186 rq:536487 version:4.0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-country/yast2-country.changes      
2017-10-23 16:42:58.237666715 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-country.new/yast2-country.changes 
2017-10-28 14:19:36.876092415 +0200
@@ -1,0 +2,14 @@
+Wed Oct 25 08:43:25 UTC 2017 - lsle...@suse.cz
+
+- Display an error popup when saving the keyboard config fails
+  (related to bsc#1046436)
+- 4.0.5
+
+-------------------------------------------------------------------
+Mon Oct 23 14:18:29 UTC 2017 - lsle...@suse.cz
+
+- Do not use `--root` option for the `systemd-firstboot` call,
+  SCR already runs it in the target chroot (bsc#1046436)
+- 4.0.4
+
+-------------------------------------------------------------------

Old:
----
  yast2-country-4.0.3.tar.bz2

New:
----
  yast2-country-4.0.5.tar.bz2

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

Other differences:
------------------
++++++ yast2-country.spec ++++++
--- /var/tmp/diff_new_pack.c4900F/_old  2017-10-28 14:19:37.960052781 +0200
+++ /var/tmp/diff_new_pack.c4900F/_new  2017-10-28 14:19:37.960052781 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-country
-Version:        4.0.3
+Version:        4.0.5
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-country-4.0.3.tar.bz2 -> yast2-country-4.0.5.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-4.0.3/keyboard/src/modules/Keyboard.rb 
new/yast2-country-4.0.5/keyboard/src/modules/Keyboard.rb
--- old/yast2-country-4.0.3/keyboard/src/modules/Keyboard.rb    2017-10-20 
14:38:26.433377370 +0200
+++ new/yast2-country-4.0.5/keyboard/src/modules/Keyboard.rb    2017-10-25 
11:10:59.357922312 +0200
@@ -111,7 +111,6 @@
       Yast.import "Directory"
       Yast.import "FileUtils"
       Yast.import "Initrd"
-      Yast.import "Installation"
       Yast.import "Label"
       Yast.import "Language"
       Yast.import "Linuxrc"
@@ -888,13 +887,16 @@
 
       chomped_keymap = @keymap.chomp(".map.gz")
       cmd = if Stage.initial
-        "/usr/bin/systemd-firstboot --root #{Installation.destdir} --keymap 
'#{chomped_keymap}'"
+        # do not use --root option, SCR.Execute(".target...") already runs in 
chroot
+        "/usr/bin/systemd-firstboot --keymap '#{chomped_keymap}'"
       else
         "/usr/bin/localectl --no-convert set-keymap #{chomped_keymap}"
       end
       log.info "Making console keyboard persistent: #{cmd}"
       result = SCR.Execute(path(".target.bash_output"), cmd)
       if result["exit"] != 0
+        # TRANSLATORS: the "%s" is replaced by the executed command
+        Report.Error(_("Could not save the keyboard setting, the 
command\n%s\nfailed.") % cmd)
         log.error "Console keyboard configuration not written. Failed to 
execute '#{cmd}'"
         log.error "output: #{result.inspect}"
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-4.0.3/keyboard/test/keyboard_test.rb 
new/yast2-country-4.0.5/keyboard/test/keyboard_test.rb
--- old/yast2-country-4.0.3/keyboard/test/keyboard_test.rb      2017-10-20 
14:38:26.433377370 +0200
+++ new/yast2-country-4.0.5/keyboard/test/keyboard_test.rb      2017-10-25 
11:10:59.357922312 +0200
@@ -73,7 +73,7 @@
 
         it "writes the configuration" do
           expect(SCR).to execute_bash_output(
-            /systemd-firstboot --root \/mnt --keymap 'es'$/
+            /systemd-firstboot --keymap 'es'$/
           )
           expect(AsciiFile).to receive(:AppendLine).with(anything, 
["Keytable:", "es.map.gz"])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-4.0.3/package/yast2-country.changes 
new/yast2-country-4.0.5/package/yast2-country.changes
--- old/yast2-country-4.0.3/package/yast2-country.changes       2017-10-20 
14:38:26.453377370 +0200
+++ new/yast2-country-4.0.5/package/yast2-country.changes       2017-10-25 
11:10:59.369922312 +0200
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Wed Oct 25 08:43:25 UTC 2017 - lsle...@suse.cz
+
+- Display an error popup when saving the keyboard config fails
+  (related to bsc#1046436)
+- 4.0.5
+
+-------------------------------------------------------------------
+Mon Oct 23 14:18:29 UTC 2017 - lsle...@suse.cz
+
+- Do not use `--root` option for the `systemd-firstboot` call,
+  SCR already runs it in the target chroot (bsc#1046436)
+- 4.0.4
+
+-------------------------------------------------------------------
 Fri Oct 20 11:32:05 UTC 2017 - lsle...@suse.cz
 
 - Use `systemd-firstboot` call for setting the keyboard in the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-4.0.3/package/yast2-country.spec 
new/yast2-country-4.0.5/package/yast2-country.spec
--- old/yast2-country-4.0.3/package/yast2-country.spec  2017-10-20 
14:38:26.453377370 +0200
+++ new/yast2-country-4.0.5/package/yast2-country.spec  2017-10-25 
11:10:59.369922312 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-country
-Version:        4.0.3
+Version:        4.0.5
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build


Reply via email to