Hello community, here is the log from the commit of package live-langset-data for openSUSE:Factory checked in at 2019-11-20 10:25:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/live-langset-data (Old) and /work/SRC/openSUSE:Factory/.live-langset-data.new.26869 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "live-langset-data" Wed Nov 20 10:25:19 2019 rev:13 rq:744197 version:2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/live-langset-data/live-langset-data.changes 2019-01-08 12:31:36.548067537 +0100 +++ /work/SRC/openSUSE:Factory/.live-langset-data.new.26869/live-langset-data.changes 2019-11-20 10:25:22.622540040 +0100 @@ -1,0 +2,10 @@ +Wed Oct 30 13:58:53 UTC 2019 - Fabian Vogt <[email protected]> + +- Make sure the changes are fully in effect before returning (bsc#1154638) + +------------------------------------------------------------------- +Fri Jan 18 09:19:37 UTC 2019 - Fabian Vogt <[email protected]> + +- Support new keyboard API in yast2-country + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ getcountrydata.rb ++++++ --- /var/tmp/diff_new_pack.uLJtop/_old 2019-11-20 10:25:23.158540147 +0100 +++ /var/tmp/diff_new_pack.uLJtop/_new 2019-11-20 10:25:23.162540148 +0100 @@ -30,9 +30,15 @@ Builtins.foreach(langs) do |lang, ll| suffix = ll[2] || "" fqlanguage = lang + suffix - kbd = Keyboard.GetKeyboardForLanguage(lang, "us") - # does not really set keyboard, only fills some data - Keyboard.SetKeyboard(kbd) + if Keyboard.methods.include? :Codes + kbd = Keyboard.GetKeyboardForLanguage(lang, "us") + keymap = Keyboard.Codes.key(kbd) + else + kbd = Keyboard.GetKeyboardForLanguage(lang, "us") + # does not really set keyboard, only fills some data + Keyboard.SetKeyboard(kbd) + keymap = Keyboard.keymap + end consolefont = consolefonts[fqlanguage] || consolefonts[lang] if consolefont.nil? && lang.size > 2 consolefont = consolefonts[lang[0,2]] @@ -56,7 +62,7 @@ "CONSOLE_SCREENMAP='#{screenMap}'\n" + "CONSOLE_UNICODEMAP='#{unicodeMap}'\n" + "CONSOLE_MAGIC='#{magic}'\n" + - "KEYTABLE='#{Keyboard.keymap}'\n" + + "KEYTABLE='#{keymap}'\n" + "TIMEZONE='#{timezone}'\n" contents << "RC_LC_MESSAGES='zh_TW.UTF-8'\n" if lang == "zh_HK" ++++++ langset.sh ++++++ --- /var/tmp/diff_new_pack.uLJtop/_old 2019-11-20 10:25:23.206540156 +0100 +++ /var/tmp/diff_new_pack.uLJtop/_new 2019-11-20 10:25:23.206540156 +0100 @@ -86,3 +86,6 @@ [ -z "$keytable" ] || localectl set-keymap $keytable echo "$lang" > /var/lib/zypp/RequestedLocales + +# Make sure all changes are in effect when returning +systemctl restart systemd-vconsole-setup
