Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ibus for openSUSE:Factory checked in at 2022-08-28 13:12:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ibus (Old) and /work/SRC/openSUSE:Factory/.ibus.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ibus" Sun Aug 28 13:12:11 2022 rev:117 rq:999524 version:1.5.27 Changes: -------- --- /work/SRC/openSUSE:Factory/ibus/ibus.changes 2022-08-24 15:11:02.896497872 +0200 +++ /work/SRC/openSUSE:Factory/.ibus.new.2083/ibus.changes 2022-08-28 13:12:13.832530622 +0200 @@ -1,0 +2,26 @@ +Sat Aug 27 03:24:19 UTC 2022 - Fuminobu Takeyama <[email protected]> - 1.5.27 + +- Upstream update to 1.5.27 + * Disable XKB engines in Plasma Wayland + * ibusimcontext keycode - 8 for gtk3 keycode generation + * client/gtk2: Revert CCedilla change for pt-BR + * Add IBUS_CAP_OSK to IBusCapabilite + * Enable ibus restart in GNOME desktop + * Add ibus im-module command + * Implement new process_key_event for GTK4 + * src/ibusengine: Add focus_in_id()/focus_out_id() class methods + * Delete xkb:latam:: in denylist.txt + * Enhance Xutf8TextListToTextProperty + * Revert Emoji shoftcut key to Super-space + * Update simple.xml with xkeyboard-config 2.36 + * Fix refcounting issues + * Drop ibus-fix-refcounting-issues.patch + * Fix bashisms in org.freedesktop.IBus.session.GNOME.service + * Update xkb-latin-layouts in gschema + * Use our own prefix to look up systemd user services dir + * Add functionality to change IBus panel themes with available GTK themes + * Update translation +- Refresh im-engines-precede-xkb.patch +- Add pkgconfig(libnotify) for the GTK4 flavor + +------------------------------------------------------------------- Old: ---- ibus-1.5.26.tar.gz ibus-fix-refcounting-issues.patch New: ---- ibus-1.5.27.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ibus.spec ++++++ --- /var/tmp/diff_new_pack.D9n1gg/_old 2022-08-28 13:12:14.400532071 +0200 +++ /var/tmp/diff_new_pack.D9n1gg/_new 2022-08-28 13:12:14.408532092 +0200 @@ -35,7 +35,7 @@ %define _name ibus Name: %{_name}%{?nsuffix} -Version: 1.5.26 +Version: 1.5.27 Release: 0 Summary: The "Intelligent Input Bus" input method License: LGPL-2.1-or-later @@ -53,7 +53,7 @@ # Fix lost XIM input after screenlock Patch4: ibus-xim-fix-re-focus-after-lock.patch # PATCH-FIX-UPSTREAM [email protected] -# Select an IM engine at the first login +# Select an IM engine instead of xkb engine at the first login Patch8: im-engines-precede-xkb.patch # PATCH-FIX-OPENSUSE ibus-fix-Signal-does-not-exist.patch [email protected] # panel.vala: The name `Signal' does not exist in the context of `Posix' in Leap 15.1 and below @@ -72,10 +72,8 @@ # Qt5 does not be update to the new version and patch for ibus on Leap 15, # it still needs this patch on leap 15. (boo#1187202) Patch15: ibus-socket-name-compatibility.patch -# PATCH-FIX-UPSTREAM ibus-fix-refcounting-issues.patch gh#ibus/ibus#2387, gh#ibus/ibus#2393 [email protected] -# Fix refcounting issues and address possible glib warnings -Patch16: ibus-fix-refcounting-issues.patch BuildRequires: pkgconfig(iso-codes) +BuildRequires: pkgconfig(libnotify) BuildRequires: pkgconfig(systemd) %if ! 0%{?with_gtk4} BuildRequires: fdupes @@ -99,7 +97,6 @@ BuildRequires: systemd-rpm-macros BuildRequires: x11-tools BuildRequires: pkgconfig(json-glib-1.0) -BuildRequires: pkgconfig(libnotify) BuildRequires: pkgconfig(vapigen) BuildRequires: pkgconfig(xkbcommon) %if %{with_emoji} @@ -232,7 +229,6 @@ %if 0%{?suse_version} <= 1500 %patch15 -p1 %endif -%patch16 -p1 %build %configure --disable-static \ ++++++ ibus-1.5.26.tar.gz -> ibus-1.5.27.tar.gz ++++++ ++++ 85938 lines of diff (skipped) ++++++ im-engines-precede-xkb.patch ++++++ --- /var/tmp/diff_new_pack.D9n1gg/_old 2022-08-28 13:12:15.052533735 +0200 +++ /var/tmp/diff_new_pack.D9n1gg/_new 2022-08-28 13:12:15.056533745 +0200 @@ -1,25 +1,15 @@ -commit 389d179c0b15664e23af2f26c17b3b5f316bc4e5 -Author: Fuminobu TAKEYAMA <[email protected]> -Date: Tue Oct 7 20:23:42 2014 +0900 - - make IM engines precede xkb engines so that users can input - CJK letters without switching IMs at the first login - -diff --git a/ui/gtk3/panel.vala b/ui/gtk3/panel.vala -index 76cea23..1ff56fb 100644 ---- a/ui/gtk3/panel.vala -+++ b/ui/gtk3/panel.vala -@@ -411,10 +411,10 @@ class Panel : IBus.PanelService { - get_engines_from_locale(engines); +--- ibus-1.5.27/ui/gtk3/panel.vala.org 2022-08-23 00:32:16.000000000 +0900 ++++ ibus-1.5.27/ui/gtk3/panel.vala 2022-08-27 11:48:21.086332809 +0900 +@@ -589,9 +589,9 @@ + } string[] names = {}; - foreach (unowned IBus.EngineDesc engine in xkb_engines) - names += engine.get_name(); foreach (unowned IBus.EngineDesc engine in im_engines) - names += engine.get_name(); ++ names += engine.get_name(); + foreach (unowned IBus.EngineDesc engine in xkb_engines) -+ names += engine.get_name(); + names += engine.get_name(); m_settings_general.set_strv("preload-engines", names); - }
