From c6578396e88336d23db6958b348c0f02aaaa1137 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 08:20:05 +0000 Subject: [PATCH 01/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index fc82c2f..a906f30 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -72,6 +72,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jul 15 2021 Mike FABIAN - 1.4.6-1 - Update to 1.4.6 - Make inscript2 engines rank higher than inscript engines From ead318acf99eb47a886c3964f84c116ccbe377f2 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Fri, 13 Aug 2021 19:57:35 +0200 Subject: [PATCH 02/40] Update to 1.4.7 - Assign symbols to all the new inscript2 engines (and add some other missing symbols) (Resolves: https://github.com/ibus/ibus-m17n/issues/34) - Allow to use kbd engines (#32) (Resolves: https://github.com/ibus/ibus-m17n/issues/32) - ibus-m17n-xkb-options.patch from Fedora included upstream - ibus-m17n-enable-ar-kbd.patch from Fedora included upstream - adapt CI test to new input method names --- .gitignore | 1 + ibus-m17n-enable-ar-kbd.patch | 16 ------- ibus-m17n-xkb-options.patch | 79 ----------------------------------- ibus-m17n.spec | 24 ++++++----- sources | 2 +- tests/smoke/runtest.sh | 11 ++--- 6 files changed, 21 insertions(+), 112 deletions(-) delete mode 100644 ibus-m17n-enable-ar-kbd.patch delete mode 100644 ibus-m17n-xkb-options.patch diff --git a/.gitignore b/.gitignore index 516038e..5d7f708 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.4.tar.gz /ibus-m17n-1.4.5.tar.gz /ibus-m17n-1.4.6.tar.gz +/ibus-m17n-1.4.7.tar.gz diff --git a/ibus-m17n-enable-ar-kbd.patch b/ibus-m17n-enable-ar-kbd.patch deleted file mode 100644 index 37f1e9e..0000000 --- a/ibus-m17n-enable-ar-kbd.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- ibus-m17n-1.3.4/src/default.xml.old 2016-12-20 11:07:26.242523223 +0530 -+++ ibus-m17n-1.3.4/src/default.xml 2016-12-20 11:11:42.392527990 +0530 -@@ -18,6 +18,13 @@ - m17n:*:kbd - -1 - -+ -+ -+ m17n:ar:kbd -+ 1 -+ -+ - - - m17n:zh:py diff --git a/ibus-m17n-xkb-options.patch b/ibus-m17n-xkb-options.patch deleted file mode 100644 index 5e39e44..0000000 --- a/ibus-m17n-xkb-options.patch +++ /dev/null @@ -1,79 +0,0 @@ -Index: ibus-m17n-1.3.4/src/default.xml -=================================================================== ---- ibus-m17n-1.3.4.orig/src/default.xml -+++ ibus-m17n-1.3.4/src/default.xml -@@ -184,6 +184,15 @@ - m17n:si:samanala - 0 - -+ -+ -+ m17n:*:inscript* -+ default[lv3:ralt_switch] -+ -+ -+ m17n:si:* -+ default[lv3:ralt_switch] -+ - - - m17n:zh:cangjie -Index: ibus-m17n-1.3.4/src/m17nutil.c -=================================================================== ---- ibus-m17n-1.3.4.orig/src/m17nutil.c -+++ ibus-m17n-1.3.4/src/m17nutil.c -@@ -17,7 +17,8 @@ typedef enum { - ENGINE_CONFIG_RANK_MASK = 1 << 0, - ENGINE_CONFIG_SYMBOL_MASK = 1 << 1, - ENGINE_CONFIG_LONGNAME_MASK = 1 << 2, -- ENGINE_CONFIG_PREEDIT_HIGHLIGHT_MASK = 1 << 3 -+ ENGINE_CONFIG_LAYOUT_MASK = 1 << 3, -+ ENGINE_CONFIG_PREEDIT_HIGHLIGHT_MASK = 1 << 4 - } EngineConfigMask; - - struct _EngineConfigNode { -@@ -137,7 +138,7 @@ ibus_m17n_engine_new (MSymbol lang, - "language", msymbol_name (lang), - "license", "GPL", - "icon", engine_icon ? engine_icon : "", -- "layout", "default", -+ "layout", config->layout ? config->layout : "default", - "rank", config->rank, - "symbol", config->symbol ? config->symbol : "", - "setup", engine_setup, -@@ -272,6 +273,8 @@ ibus_m17n_get_engine_config (const gchar - config->symbol = cnode->config.symbol; - if (cnode->mask & ENGINE_CONFIG_LONGNAME_MASK) - config->longname = cnode->config.longname; -+ if (cnode->mask & ENGINE_CONFIG_LAYOUT_MASK) -+ config->layout = cnode->config.layout; - if (cnode->mask & ENGINE_CONFIG_PREEDIT_HIGHLIGHT_MASK) - config->preedit_highlight = cnode->config.preedit_highlight; - } -@@ -314,6 +317,12 @@ ibus_m17n_engine_config_parse_xml_node ( - cnode->mask |= ENGINE_CONFIG_LONGNAME_MASK; - continue; - } -+ if (g_strcmp0 (sub_node->name , "layout") == 0) { -+ g_free (cnode->config.layout); -+ cnode->config.layout = g_strdup (sub_node->text); -+ cnode->mask |= ENGINE_CONFIG_LAYOUT_MASK; -+ continue; -+ } - if (g_strcmp0 (sub_node->name , "preedit-highlight") == 0) { - if (g_ascii_strcasecmp ("TRUE", sub_node->text) == 0) - cnode->config.preedit_highlight = TRUE; -Index: ibus-m17n-1.3.4/src/m17nutil.h -=================================================================== ---- ibus-m17n-1.3.4.orig/src/m17nutil.h -+++ ibus-m17n-1.3.4/src/m17nutil.h -@@ -20,6 +20,9 @@ struct _IBusM17NEngineConfig { - /* overridding longname shown on panel */ - gchar *longname; - -+ /* keyboard layout */ -+ gchar *layout; -+ - /* whether to highlight preedit */ - gboolean preedit_highlight; - }; diff --git a/ibus-m17n.spec b/ibus-m17n.spec index a906f30..c610462 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,8 +1,8 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.6 -Release: 2%{?dist} +Version: 1.4.7 +Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -11,13 +11,8 @@ Source0: https://github.com/ibus/%{name}/archive/%{version}/%{name}-%{version # Upstreamed patches: # Fedora specific patches: -# Enable lv3:ralt_switch option for some Indic engines in default.xml. -Patch100: ibus-m17n-xkb-options.patch # Don't make the status button clickable (maybe obsolete). -Patch101: ibus-m17n-hide-title-status.patch -# Use ar-kbd as default keymap for Arabic -# https://bugzilla.redhat.com/show_bug.cgi?id=1076945 -Patch103: ibus-m17n-enable-ar-kbd.patch +Patch100: ibus-m17n-hide-title-status.patch BuildRequires: gettext-devel >= 0.19 BuildRequires: libtool @@ -40,9 +35,7 @@ the input table maps from m17n-db. %prep %setup -q -%patch100 -p1 -b .xkb-options -%patch101 -p1 -b .hide-title-status -%patch103 -p1 -b .enable-ar-kbd +%patch100 -p1 -b .hide-title-status %build @@ -72,6 +65,15 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Fri Aug 13 2021 Mike FABIAN - 1.4.7-1 +- Update to 1.4.7 +- Assign symbols to all the new inscript2 engines (and add some other missing symbols) + (Resolves: https://github.com/ibus/ibus-m17n/issues/34) +- Allow to use kbd engines (#32) + (Resolves: https://github.com/ibus/ibus-m17n/issues/32) +- ibus-m17n-xkb-options.patch from Fedora included upstream +- ibus-m17n-enable-ar-kbd.patch from Fedora included upstream + * Thu Jul 22 2021 Fedora Release Engineering - 1.4.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index c9ba943..65ef658 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.6.tar.gz) = d33c89735e5e6c93301a3c3985f46708e41d44b66e580b282e484a7497c0b9d2615c66931cdd7260b4a63d9e9af4d9ebbad5e23d4a3f8a7773dcab61a7600c57 +SHA512 (ibus-m17n-1.4.7.tar.gz) = b011d4ee63a538a51f67012932d872fc2d527c6f3e5dd1642b7e70d3a32164532bc2ab69fb794eb985617b2698074af9079dac7991b5a2a30828595b129cce40 diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh index aa22874..ddf7ba6 100755 --- a/tests/smoke/runtest.sh +++ b/tests/smoke/runtest.sh @@ -39,10 +39,10 @@ rlJournalStart bo:ewts \ bo:tcrc \ bo:wylie \ - brx:inscript2 \ + brx:inscript2-deva \ cr:western \ da:post \ - doi:inscript2 \ + doi:inscript2-deva \ dv:phonetic \ eo:h-fundamente \ eo:h-sistemo \ @@ -76,8 +76,9 @@ rlJournalStart kn:kgp \ kn:optitransv2 \ kn:typewriter \ - kok:inscript2 \ + kok:inscript2-deva \ ks:inscript \ + ks:inscript2-deva \ ks:kbd \ lo:lrt \ mai:inscript \ @@ -97,7 +98,7 @@ rlJournalStart mr:phonetic \ mr:remington \ mr:typewriter \ - ne:inscript2 \ + ne:inscript2-deva \ ne:rom \ ne:rom-translit \ ne:trad \ @@ -125,7 +126,7 @@ rlJournalStart sat:inscript2-deva \ sat:inscript2-olck \ sd:inscript \ - sd:inscript2 \ + sd:inscript2-deva \ si:phonetic-dynamic \ si:samanala \ si:sayura \ From a623fe112b45d5f0dea0c42e3c23e807d44328bc Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Tue, 19 Oct 2021 08:39:00 +0530 Subject: [PATCH 03/40] Remove BR: gnome-common and pkgconfig as it is not needed for released tarball --- ibus-m17n.spec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index c610462..26b8917 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -16,14 +16,12 @@ Patch100: ibus-m17n-hide-title-status.patch BuildRequires: gettext-devel >= 0.19 BuildRequires: libtool -BuildRequires: pkgconfig -BuildRequires: gnome-common BuildRequires: m17n-lib-devel BuildRequires: gtk3-devel BuildRequires: ibus-devel >= %{require_ibus_version} BuildRequires: desktop-file-utils BuildRequires: libappstream-glib -BuildRequires: make +BuildRequires: make Requires: ibus >= %{require_ibus_version} Requires: m17n-lib @@ -65,6 +63,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Tue Oct 19 2021 Parag Nemade - 1.4.7-2 +- Remove BR: gnome-common and pkgconfig as it is not needed for released tarball + * Fri Aug 13 2021 Mike FABIAN - 1.4.7-1 - Update to 1.4.7 - Assign symbols to all the new inscript2 engines (and add some other missing symbols) From 4c08dcf2f47b0f33ff118c8c6e9dffa12fa5cbad Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Tue, 19 Oct 2021 17:26:10 +0200 Subject: [PATCH 04/40] Update to 1.4.8 - Remove gnome-common requirement and re-write autogen.sh (by Parag Nemade) (Resolves: https://github.com/ibus/ibus-m17n/pull/37) - Translation update from Weblate for Sinhala --- .gitignore | 1 + ibus-m17n.spec | 10 ++++++++-- sources | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5d7f708..acc9002 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.5.tar.gz /ibus-m17n-1.4.6.tar.gz /ibus-m17n-1.4.7.tar.gz +/ibus-m17n-1.4.8.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 26b8917..1b46600 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,8 +1,8 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.7 -Release: 2%{?dist} +Version: 1.4.8 +Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,12 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Tue Oct 19 2021 Mike FABIAN - 1.4.8-1 +- Update to 1.4.8 +- Remove gnome-common requirement and re-write autogen.sh (by Parag Nemade) + (Resolves: https://github.com/ibus/ibus-m17n/pull/37) +- Translation update from Weblate for Sinhala + * Tue Oct 19 2021 Parag Nemade - 1.4.7-2 - Remove BR: gnome-common and pkgconfig as it is not needed for released tarball diff --git a/sources b/sources index 65ef658..4d9d7c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.7.tar.gz) = b011d4ee63a538a51f67012932d872fc2d527c6f3e5dd1642b7e70d3a32164532bc2ab69fb794eb985617b2698074af9079dac7991b5a2a30828595b129cce40 +SHA512 (ibus-m17n-1.4.8.tar.gz) = 3e808ffc3b7d03a745be1009a58c8d03ecabe15478f7bf36d70b777d342ad04d0f5574bb78743bcb67ab36674d316aef3cd7070d48ef9e11d07f960d75597aec From 81b4d32d39832955b5a2eaa5e62f739231c81ed6 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Tue, 18 Jan 2022 08:42:38 +0100 Subject: [PATCH 05/40] Update to 1.4.9 - Free lang and name after engine_name is built (Resolves: https://github.com/ibus/ibus-m17n/issues/39) - Just return from ibus_m17n_engine_callback with nullable m17n - Accept virtual engine names for CI - Hide status from the panel if status == title (by Daiki Ueno) --- .gitignore | 1 + ibus-m17n.spec | 19 +++++++++---------- sources | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index acc9002..7c5c27b 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.6.tar.gz /ibus-m17n-1.4.7.tar.gz /ibus-m17n-1.4.8.tar.gz +/ibus-m17n-1.4.9.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 1b46600..036b50d 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,19 +1,13 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.8 +Version: 1.4.9 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n Source0: https://github.com/ibus/%{name}/archive/%{version}/%{name}-%{version}.tar.gz -# Upstreamed patches: - -# Fedora specific patches: -# Don't make the status button clickable (maybe obsolete). -Patch100: ibus-m17n-hide-title-status.patch - BuildRequires: gettext-devel >= 0.19 BuildRequires: libtool BuildRequires: m17n-lib-devel @@ -33,9 +27,6 @@ the input table maps from m17n-db. %prep %setup -q -%patch100 -p1 -b .hide-title-status - - %build %configure --disable-static --with-gtk=3.0 # make -C po update-gmo @@ -63,6 +54,14 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Tue Jan 18 2022 Mike FABIAN - 1.4.9-1 +- Update to 1.4.9 +- Free lang and name after engine_name is built + (Resolves: https://github.com/ibus/ibus-m17n/issues/39) +- Just return from ibus_m17n_engine_callback with nullable m17n +- Accept virtual engine names for CI +- Hide status from the panel if status == title (by Daiki Ueno) + * Tue Oct 19 2021 Mike FABIAN - 1.4.8-1 - Update to 1.4.8 - Remove gnome-common requirement and re-write autogen.sh (by Parag Nemade) diff --git a/sources b/sources index 4d9d7c0..a3fefb3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.8.tar.gz) = 3e808ffc3b7d03a745be1009a58c8d03ecabe15478f7bf36d70b777d342ad04d0f5574bb78743bcb67ab36674d316aef3cd7070d48ef9e11d07f960d75597aec +SHA512 (ibus-m17n-1.4.9.tar.gz) = 6a7d7316fc98e832282302a5d54eb40b6e879f98d6910db8d2c834be6c23ebda30ccbc5ed116caa3d91148e5bb2260c49f670c8c7fb2c6215d31f3e6794cd3ab From 84f8ce87ece598f0e5e23e16ebbc2ae17a1ed328 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 13:03:57 +0000 Subject: [PATCH 06/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 036b50d..352e96e 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -54,6 +54,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1.4.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jan 18 2022 Mike FABIAN - 1.4.9-1 - Update to 1.4.9 - Free lang and name after engine_name is built From 34e8c9a6fe1cf69426dacb471871770323899097 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 14:24:53 +0000 Subject: [PATCH 07/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 352e96e..cebefd7 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -54,6 +54,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 1.4.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jan 20 2022 Fedora Release Engineering - 1.4.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 713e2afed53be36c171e76b278428db707eb45a9 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 3 Aug 2022 16:26:02 +0200 Subject: [PATCH 08/40] Update to 1.4.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add language to longname in --xml output to make engines which have exactly the same icon distinguishable in the engine switcher - Make the icon of the current engine appear at the left of floating panel of ibus. And also show the full engine name as a tooltip on that icon Before only a generic gear wheel ⚙️ was shown, the same for all engines, so one could not distinguish which engine was selected in the floating panel. - Show also the engine name in the title of the setup tool window. I.e. instead of just “Preferences” show something like “Preferences m17n:t:latn-post”. - Better icon and a screenshot which can be shown in gnome-software - Improvements in m17n.appdata.xml --- .gitignore | 1 + ibus-m17n.spec | 27 +++++++++++++++++++++++++-- sources | 2 +- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7c5c27b..62b2fa2 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.7.tar.gz /ibus-m17n-1.4.8.tar.gz /ibus-m17n-1.4.9.tar.gz +/ibus-m17n-1.4.10.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index cebefd7..362dae3 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,8 +1,8 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.9 -Release: 3%{?dist} +Version: 1.4.10 +Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ URL: https://github.com/ibus/ibus-m17n @@ -47,6 +47,14 @@ make check %license COPYING %{_datadir}/metainfo/m17n.appdata.xml %{_datadir}/ibus-m17n +%{_datadir}/icons/hicolor/16x16/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/22x22/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/24x24/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/32x32/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/48x48/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/64x64/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/128x128/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/256x256/apps/ibus-m17n.png %{_libexecdir}/ibus-engine-m17n %{_libexecdir}/ibus-setup-m17n %{_datadir}/ibus/component/* @@ -54,6 +62,21 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Wed Aug 03 2022 Mike FABIAN - 1.4.10-1 +- Update to 1.4.10 +- Add language to longname in --xml output to make engines which have exactly + the same icon distinguishable in the engine switcher +- Make the icon of the current engine appear at the left of floating panel of ibus. + And also show the full engine name as a tooltip on that icon + Before only a generic gear wheel ⚙️ was shown, the same for + all engines, so one could not distinguish which engine was + selected in the floating panel. +- Show also the engine name in the title of the setup tool window. + I.e. instead of just “Preferences” show something like + “Preferences m17n:t:latn-post”. +- Better icon and a screenshot which can be shown in gnome-software +- Improvements in m17n.appdata.xml + * Thu Jul 21 2022 Fedora Release Engineering - 1.4.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index a3fefb3..38968f6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.9.tar.gz) = 6a7d7316fc98e832282302a5d54eb40b6e879f98d6910db8d2c834be6c23ebda30ccbc5ed116caa3d91148e5bb2260c49f670c8c7fb2c6215d31f3e6794cd3ab +SHA512 (ibus-m17n-1.4.10.tar.gz) = 7e8ab477de7fb75fbbcdd25d6f13b0dc1fdaae6ab23a2c5c18de7eadcd88c3ff4d441a32f58d4b4bde0d20685d45dd57fa24c5e61361ad5b6bbb29075949d396 From 6edeedf8a0e621245c08b41587857efb1c718cd7 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sat, 3 Sep 2022 11:39:35 +0200 Subject: [PATCH 09/40] Update to 1.4.11 - Added translation using Weblate (Arabic, 100%) - Add 256x256 icon to m17n.appdata.xml --- .gitignore | 1 + ibus-m17n.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 62b2fa2..71f6581 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.8.tar.gz /ibus-m17n-1.4.9.tar.gz /ibus-m17n-1.4.10.tar.gz +/ibus-m17n-1.4.11.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 362dae3..89dca0f 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.10 +Version: 1.4.11 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ @@ -62,6 +62,11 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sat Sep 03 2022 Mike FABIAN - 1.4.11-1 +- Update to 1.4.11 +- Added translation using Weblate (Arabic, 100%) +- Add 256x256 icon to m17n.appdata.xml + * Wed Aug 03 2022 Mike FABIAN - 1.4.10-1 - Update to 1.4.10 - Add language to longname in --xml output to make engines which have exactly diff --git a/sources b/sources index 38968f6..2816638 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.10.tar.gz) = 7e8ab477de7fb75fbbcdd25d6f13b0dc1fdaae6ab23a2c5c18de7eadcd88c3ff4d441a32f58d4b4bde0d20685d45dd57fa24c5e61361ad5b6bbb29075949d396 +SHA512 (ibus-m17n-1.4.11.tar.gz) = f2fb4afc009ffee63b6f09e42fc6ec9528ba0b06c16d4371db8d2e4e4d0da1795bf6c28f8ccc5bad206b13181a98906eabb474adf331175636de2b8a0119a731 From 57f8d7a3aaa46c90ea5e3674c6a07e1ad7e3f0d0 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 8 Sep 2022 10:04:25 +0200 Subject: [PATCH 10/40] Update to 1.4.13 - Translation update from Weblate (ar updated 100%, ka added 100%) --- .gitignore | 2 ++ ibus-m17n.spec | 6 +++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 71f6581..beefccf 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.9.tar.gz /ibus-m17n-1.4.10.tar.gz /ibus-m17n-1.4.11.tar.gz +/ibus-m17n-1.4.12.tar.gz +/ibus-m17n-1.4.13.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 89dca0f..2af1930 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.11 +Version: 1.4.13 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ @@ -62,6 +62,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Thu Sep 08 2022 Mike FABIAN - 1.4.13-1 +- Update to 1.4.13 +- Translation update from Weblate (ar updated 100%, ka added 100%) + * Sat Sep 03 2022 Mike FABIAN - 1.4.11-1 - Update to 1.4.11 - Added translation using Weblate (Arabic, 100%) diff --git a/sources b/sources index 2816638..e1a4680 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.11.tar.gz) = f2fb4afc009ffee63b6f09e42fc6ec9528ba0b06c16d4371db8d2e4e4d0da1795bf6c28f8ccc5bad206b13181a98906eabb474adf331175636de2b8a0119a731 +SHA512 (ibus-m17n-1.4.13.tar.gz) = 5753a8c1888a2fefa87986d7396d3ad56e3e1109c0dd01fadcaf1e7a7a056dc45323d204f9b5a548900752e1bfc69d638076f51884a8948fa5ba16c7a17d5640 From ad7d7e6809b712d9e76455eba9a84dfca321adac Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Fri, 16 Sep 2022 18:04:08 +0200 Subject: [PATCH 11/40] Update to 1.4.17 - Fix problem that sa-IAST input method cannot be activated and make settings of sa-IAST work (Resolves: https://github.com/ibus/ibus-m17n/issues/52) - Let IBusM17nEngine inherit from IBusEngineSimple to enable compose support (Resolves: https://github.com/ibus/ibus-m17n/pull/51) --- .gitignore | 4 ++++ ibus-m17n.spec | 9 ++++++++- sources | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index beefccf..02eadc9 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,7 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.11.tar.gz /ibus-m17n-1.4.12.tar.gz /ibus-m17n-1.4.13.tar.gz +/ibus-m17n-1.4.14.tar.gz +/ibus-m17n-1.4.15.tar.gz +/ibus-m17n-1.4.16.tar.gz +/ibus-m17n-1.4.17.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 2af1930..931a3cd 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.13 +Version: 1.4.17 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ @@ -62,6 +62,13 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sat Sep 17 2022 Mike FABIAN - 1.4.17-1 +- Update to 1.4.17 +- Fix problem that sa-IAST input method cannot be activated and make settings of sa-IAST work + (Resolves: https://github.com/ibus/ibus-m17n/issues/52) +- Let IBusM17nEngine inherit from IBusEngineSimple to enable compose support + (Resolves: https://github.com/ibus/ibus-m17n/pull/51) + * Thu Sep 08 2022 Mike FABIAN - 1.4.13-1 - Update to 1.4.13 - Translation update from Weblate (ar updated 100%, ka added 100%) diff --git a/sources b/sources index e1a4680..83baf96 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.13.tar.gz) = 5753a8c1888a2fefa87986d7396d3ad56e3e1109c0dd01fadcaf1e7a7a056dc45323d204f9b5a548900752e1bfc69d638076f51884a8948fa5ba16c7a17d5640 +SHA512 (ibus-m17n-1.4.17.tar.gz) = 794dfce969f447354a092758d20999637e3d0a1006f8e078845ae3e79b63b7a467f9f28a7bdeeac4f4709d6750e7156efbc3d341bfa574ac7002266d0dce2b95 From b47bb012da146ba3c793190ca52e05032260f78a Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sat, 26 Nov 2022 00:33:30 +0100 Subject: [PATCH 12/40] Migrate license tag to SPDX --- ibus-m17n.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 931a3cd..99ce407 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,9 +2,9 @@ Name: ibus-m17n Version: 1.4.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform -License: GPLv2+ +License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n Source0: https://github.com/ibus/%{name}/archive/%{version}/%{name}-%{version}.tar.gz @@ -62,6 +62,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sat Nov 26 2022 Mike FABIAN - 1.4.17-2 +- Migrate license tag to SPDX + * Sat Sep 17 2022 Mike FABIAN - 1.4.17-1 - Update to 1.4.17 - Fix problem that sa-IAST input method cannot be activated and make settings of sa-IAST work From 9d37bed3de306156513d745845ed3813c5d1d698 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 7 Dec 2022 12:34:46 +0100 Subject: [PATCH 13/40] Update to 1.4.18 - Add new icon --- .gitignore | 1 + ibus-m17n.spec | 9 +++++++-- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 02eadc9..7fcb6d8 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.15.tar.gz /ibus-m17n-1.4.16.tar.gz /ibus-m17n-1.4.17.tar.gz +/ibus-m17n-1.4.18.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 99ce407..10416fa 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,8 +1,8 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.17 -Release: 2%{?dist} +Version: 1.4.18 +Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -55,6 +55,7 @@ make check %{_datadir}/icons/hicolor/64x64/apps/ibus-m17n.png %{_datadir}/icons/hicolor/128x128/apps/ibus-m17n.png %{_datadir}/icons/hicolor/256x256/apps/ibus-m17n.png +%{_datadir}/icons/hicolor/scalable/apps/ibus-m17n.svg %{_libexecdir}/ibus-engine-m17n %{_libexecdir}/ibus-setup-m17n %{_datadir}/ibus/component/* @@ -62,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Wed Dec 07 2022 Mike FABIAN - 1.4.18-1 +- Update to 1.4.18 +- Add new icon + * Sat Nov 26 2022 Mike FABIAN - 1.4.17-2 - Migrate license tag to SPDX diff --git a/sources b/sources index 83baf96..771cb62 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.17.tar.gz) = 794dfce969f447354a092758d20999637e3d0a1006f8e078845ae3e79b63b7a467f9f28a7bdeeac4f4709d6750e7156efbc3d341bfa574ac7002266d0dce2b95 +SHA512 (ibus-m17n-1.4.18.tar.gz) = 4960301ee2a4b10a8ca3c618df1a9f5acabce89da662c80bc39520d1b4b2a6e0b487f85c6e513ba174addc7b8ae349b3cb799f4925abfc20c8ac1ef1b8678540 From 2fe4c85b39cbbe28ba33f4950645c9285de7da48 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 12:54:45 +0000 Subject: [PATCH 14/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 10416fa..41724d9 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 1.4.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Dec 07 2022 Mike FABIAN - 1.4.18-1 - Update to 1.4.18 - Add new icon From 75a30f60af95348dfbd5fe79502c90ba6ce850fd Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sun, 19 Feb 2023 13:10:16 +0100 Subject: [PATCH 15/40] Update to 1.4.19 - Translation update from Weblate (Sinhala, si 100%) --- .gitignore | 1 + ibus-m17n.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7fcb6d8..07c02df 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.16.tar.gz /ibus-m17n-1.4.17.tar.gz /ibus-m17n-1.4.18.tar.gz +/ibus-m17n-1.4.19.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 41724d9..7ea1999 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,8 +1,8 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.18 -Release: 2%{?dist} +Version: 1.4.19 +Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sun Feb 19 2023 Mike FABIAN - 1.4.19-1 +- Update to 1.4.19 +- Translation update from Weblate (Sinhala, si 100%) + * Thu Jan 19 2023 Fedora Release Engineering - 1.4.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index 771cb62..08e96e6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.18.tar.gz) = 4960301ee2a4b10a8ca3c618df1a9f5acabce89da662c80bc39520d1b4b2a6e0b487f85c6e513ba174addc7b8ae349b3cb799f4925abfc20c8ac1ef1b8678540 +SHA512 (ibus-m17n-1.4.19.tar.gz) = d859ccd566ec46b0f03cee47dc926bf4608bbe281f62ac9127cd518749a54e7f11bbef573900575f34c1a0d33a55262226132c320acbbabf44b1ff262565702d From dcc41c43ed32e57a22d26f8ae190a405553b6f83 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 07:09:28 +0000 Subject: [PATCH 16/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 7ea1999..89e2fe4 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 1.4.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sun Feb 19 2023 Mike FABIAN - 1.4.19-1 - Update to 1.4.19 - Translation update from Weblate (Sinhala, si 100%) From 5008fdc92bd13711f741e1e4d093c22dc2926696 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sun, 30 Jul 2023 20:39:09 +0200 Subject: [PATCH 17/40] Update to 1.4.20 - Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) - Remove `xml:lang="en"` from the screenshot in appdata.xml See: https://github.com/ximion/appstream/issues/494 There must be one image in the default locale, and there can be some translated ones, but having only translated images is not okay. - Use ibus_text_new_from_string (string) instead of ibus_text_new_from_static_string (string) in ibus_m17n_engine_commit_string() - Add missing g_free (buf) in ibus_m17n_mtext_to_utf8() --- .gitignore | 1 + ibus-m17n.spec | 15 +++++++++++++-- sources | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 07c02df..77769ff 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.17.tar.gz /ibus-m17n-1.4.18.tar.gz /ibus-m17n-1.4.19.tar.gz +/ibus-m17n-1.4.20.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 89e2fe4..d563dcb 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,8 +1,8 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.19 -Release: 2%{?dist} +Version: 1.4.20 +Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,17 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sun Jul 30 2023 Mike FABIAN - 1.4.20-1 +- Update to 1.4.20 +- Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) +- Remove `xml:lang="en"` from the screenshot in appdata.xml + See: https://github.com/ximion/appstream/issues/494 + There must be one image in the default locale, and there can be some + translated ones, but having only translated images is not okay. +- Use ibus_text_new_from_string (string) instead of + ibus_text_new_from_static_string (string) in ibus_m17n_engine_commit_string() +- Add missing g_free (buf) in ibus_m17n_mtext_to_utf8() + * Thu Jul 20 2023 Fedora Release Engineering - 1.4.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/sources b/sources index 08e96e6..e4f9370 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.19.tar.gz) = d859ccd566ec46b0f03cee47dc926bf4608bbe281f62ac9127cd518749a54e7f11bbef573900575f34c1a0d33a55262226132c320acbbabf44b1ff262565702d +SHA512 (ibus-m17n-1.4.20.tar.gz) = 10a0b915f0523291167c4364d1b3d732d99c86e6fb0ab28bb17140fd56f3a0b4177f1bcf1ec0bb227de0b44613b20029b96073e00d29573366945a8dd956c300 From 7f2077162301c588185b3df56865ba4767103547 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 7 Aug 2023 18:32:13 +0200 Subject: [PATCH 18/40] Update to 1.4.21 - Translation update from Weblate (Swedish, sv 100%) --- .gitignore | 1 + ibus-m17n.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 77769ff..92e617d 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.18.tar.gz /ibus-m17n-1.4.19.tar.gz /ibus-m17n-1.4.20.tar.gz +/ibus-m17n-1.4.21.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index d563dcb..21e3dd1 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.20 +Version: 1.4.21 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Mon Aug 07 2023 Mike FABIAN - 1.4.21-1 +- Update to 1.4.21 +- Translation update from Weblate (Swedish, sv 100%) + * Sun Jul 30 2023 Mike FABIAN - 1.4.20-1 - Update to 1.4.20 - Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) diff --git a/sources b/sources index e4f9370..81d634e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.20.tar.gz) = 10a0b915f0523291167c4364d1b3d732d99c86e6fb0ab28bb17140fd56f3a0b4177f1bcf1ec0bb227de0b44613b20029b96073e00d29573366945a8dd956c300 +SHA512 (ibus-m17n-1.4.21.tar.gz) = 6bcc0a3f984430bf0fab0d472bef5cedef3961890d0fe9dcd4955559ddea40a4f780c7f74b39a8f782297c511c3db396a5e5838be91dff9e82fef6e35d77a48b From 4a9e04aa9022b6543c835c971ec4e8a511c7f388 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 21 Aug 2023 10:45:05 +0200 Subject: [PATCH 19/40] Update to 1.4.22 - Translation update from Weblate (Lithuanian, lt 100%) --- .gitignore | 1 + ibus-m17n.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 92e617d..877c666 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.19.tar.gz /ibus-m17n-1.4.20.tar.gz /ibus-m17n-1.4.21.tar.gz +/ibus-m17n-1.4.22.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 21e3dd1..34f9ab2 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.21 +Version: 1.4.22 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Mon Aug 21 2023 Mike FABIAN - 1.4.22-1 +- Update to 1.4.22 +- Translation update from Weblate (Lithuanian, lt 100%) + * Mon Aug 07 2023 Mike FABIAN - 1.4.21-1 - Update to 1.4.21 - Translation update from Weblate (Swedish, sv 100%) diff --git a/sources b/sources index 81d634e..c8e404c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.21.tar.gz) = 6bcc0a3f984430bf0fab0d472bef5cedef3961890d0fe9dcd4955559ddea40a4f780c7f74b39a8f782297c511c3db396a5e5838be91dff9e82fef6e35d77a48b +SHA512 (ibus-m17n-1.4.22.tar.gz) = 064bc1af9d7dc4cfd9fcd236769003fcbcfc63e8e68869dbdec50e7834c834218995feef45fae97e93fe68e8735636c2090e2b1b34f738d9c06e4098e7da6015 From dc83dd130d93eceebd1431d687973bb8c9efad37 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Fri, 27 Oct 2023 12:15:06 +0200 Subject: [PATCH 20/40] Update to 1.4.23 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” - Fix option “☑️ Use US keyboard layout” (Resolves: https://github.com/ibus/ibus-m17n/issues/66) - Translation update from Weblate: new language Hindi, hi 100% --- .gitignore | 1 + ibus-m17n.spec | 9 ++++++++- sources | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 877c666..bde262f 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.20.tar.gz /ibus-m17n-1.4.21.tar.gz /ibus-m17n-1.4.22.tar.gz +/ibus-m17n-1.4.23.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 34f9ab2..6040139 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.22 +Version: 1.4.23 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,13 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Fri Oct 27 2023 Mike FABIAN - 1.4.23-1 +- Update to 1.4.23 +- Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” +- Fix option “☑️ Use US keyboard layout” + (Resolves: https://github.com/ibus/ibus-m17n/issues/66) +- Translation update from Weblate: new language Hindi, hi 100% + * Mon Aug 21 2023 Mike FABIAN - 1.4.22-1 - Update to 1.4.22 - Translation update from Weblate (Lithuanian, lt 100%) diff --git a/sources b/sources index c8e404c..a319795 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.22.tar.gz) = 064bc1af9d7dc4cfd9fcd236769003fcbcfc63e8e68869dbdec50e7834c834218995feef45fae97e93fe68e8735636c2090e2b1b34f738d9c06e4098e7da6015 +SHA512 (ibus-m17n-1.4.23.tar.gz) = 813653cd52d8d532f6125288a56cd0d655e9216a7631218bd1a13e1ba51f161ca151e88c89adda16729e58fdd08b88d87848eb47e284f06d5b9f429127145bff From 73bfe43d14790f7b843c2a57b4a90f03c96f774a Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sat, 28 Oct 2023 22:52:10 +0200 Subject: [PATCH 21/40] Update to 1.4.24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Make IBusEngineSimple read ~/.XCompose (Resolves: https://github.com/ibus/ibus-m17n/issues/70) - Do not hide empty preedit text before committing text. (Resolves: https://github.com/ibus/ibus-m17n/pull/64). Together with ibus >= 1.5.29 this solves the preedit flicker problem perfectly. - Use “” in m17n.appdata.xml instead of “” Because is deprecated and it makes the build fail on Fedora rawhide. --- .gitignore | 1 + ibus-m17n.spec | 12 +++++++++++- sources | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bde262f..c2503b4 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.21.tar.gz /ibus-m17n-1.4.22.tar.gz /ibus-m17n-1.4.23.tar.gz +/ibus-m17n-1.4.24.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 6040139..6e1290b 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.23 +Version: 1.4.24 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,16 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Fri Nov 10 2023 Mike FABIAN - 1.4.24-1 +- Update to 1.4.24 +- Make IBusEngineSimple read ~/.XCompose + (Resolves: https://github.com/ibus/ibus-m17n/issues/70) +- Do not hide empty preedit text before committing text. + (Resolves: https://github.com/ibus/ibus-m17n/pull/64). + Together with ibus >= 1.5.29 this solves the preedit flicker problem perfectly. +- Use “” in m17n.appdata.xml instead of “” + Because is deprecated and it makes the build fail on Fedora rawhide. + * Fri Oct 27 2023 Mike FABIAN - 1.4.23-1 - Update to 1.4.23 - Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” diff --git a/sources b/sources index a319795..a6d2f64 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.23.tar.gz) = 813653cd52d8d532f6125288a56cd0d655e9216a7631218bd1a13e1ba51f161ca151e88c89adda16729e58fdd08b88d87848eb47e284f06d5b9f429127145bff +SHA512 (ibus-m17n-1.4.24.tar.gz) = ec6a596e629a8214f1f7b33e4adf094c16884d51afe0e6f0624866d333888be911cdd1a5acd0f5fdeb27c061af89cebec507ec81458620e85000c0ad2cfeb191 From 462baac3cf8bbd0159b608bf87637ab177272f58 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 20 Nov 2023 22:09:54 +0100 Subject: [PATCH 22/40] Update to 1.4.27 - Prefer commit to "return FALSE;" for space, and other keys where the msymbol name is exactly one character, add a sleep for Return. This is to avoid ordering problems in mutter. (Resolves: https://github.com/ibus/ibus-m17n/issues/72) --- .gitignore | 3 +++ ibus-m17n.spec | 10 +++++++++- sources | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c2503b4..dd4db55 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,6 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.22.tar.gz /ibus-m17n-1.4.23.tar.gz /ibus-m17n-1.4.24.tar.gz +/ibus-m17n-1.4.25.tar.gz +/ibus-m17n-1.4.26.tar.gz +/ibus-m17n-1.4.27.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 6e1290b..aebdbf0 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.24 +Version: 1.4.27 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,14 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sat Dec 02 2023 Mike FABIAN - 1.4.27-1 +- Update to 1.4.27 +- Prefer commit to "return FALSE;" for space, and other keys + where the msymbol name is exactly one character, add a + sleep for Return. This is to avoid ordering problems in + mutter. + (Resolves: https://github.com/ibus/ibus-m17n/issues/72) + * Fri Nov 10 2023 Mike FABIAN - 1.4.24-1 - Update to 1.4.24 - Make IBusEngineSimple read ~/.XCompose diff --git a/sources b/sources index a6d2f64..01b3b23 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.24.tar.gz) = ec6a596e629a8214f1f7b33e4adf094c16884d51afe0e6f0624866d333888be911cdd1a5acd0f5fdeb27c061af89cebec507ec81458620e85000c0ad2cfeb191 +SHA512 (ibus-m17n-1.4.27.tar.gz) = b2952e99cbd8ce1bbad53cc594d963b473ee1f1c8f1f51a46dac03bf0b0cef8249f5a8f5ec0a04e81665e3394477a9e96e9b6c0c4c471a4fffa8631ef8180f83 From db0504e3b1bccdc784837d53d2c3e8690a8eb76d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jan 2024 22:51:11 +0000 Subject: [PATCH 23/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index aebdbf0..cf4c0d2 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.27 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sat Jan 20 2024 Fedora Release Engineering - 1.4.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Dec 02 2023 Mike FABIAN - 1.4.27-1 - Update to 1.4.27 - Prefer commit to "return FALSE;" for space, and other keys From f3b9417bfb743d3ba6c5a08e6e9d7a4db4ebe57f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jan 2024 22:28:37 +0000 Subject: [PATCH 24/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- ibus-m17n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ibus-m17n.spec b/ibus-m17n.spec index cf4c0d2..c2fa027 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.27 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,6 +63,9 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Wed Jan 24 2024 Fedora Release Engineering - 1.4.27-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jan 20 2024 Fedora Release Engineering - 1.4.27-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From caa278fbde5eb03f7cf9ce03112161a9c27e1b08 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 15 Feb 2024 14:49:59 +0100 Subject: [PATCH 25/40] Convert to rpm-autospec --- changelog | 539 ++++++++++++++++++++++++++++++++++++++++++++++++ ibus-m17n.spec | 542 +------------------------------------------------ 2 files changed, 541 insertions(+), 540 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..50cbc25 --- /dev/null +++ b/changelog @@ -0,0 +1,539 @@ +* Wed Jan 24 2024 Fedora Release Engineering - 1.4.27-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jan 20 2024 Fedora Release Engineering - 1.4.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Dec 02 2023 Mike FABIAN - 1.4.27-1 +- Update to 1.4.27 +- Prefer commit to "return FALSE;" for space, and other keys + where the msymbol name is exactly one character, add a + sleep for Return. This is to avoid ordering problems in + mutter. + (Resolves: https://github.com/ibus/ibus-m17n/issues/72) + +* Fri Nov 10 2023 Mike FABIAN - 1.4.24-1 +- Update to 1.4.24 +- Make IBusEngineSimple read ~/.XCompose + (Resolves: https://github.com/ibus/ibus-m17n/issues/70) +- Do not hide empty preedit text before committing text. + (Resolves: https://github.com/ibus/ibus-m17n/pull/64). + Together with ibus >= 1.5.29 this solves the preedit flicker problem perfectly. +- Use “” in m17n.appdata.xml instead of “” + Because is deprecated and it makes the build fail on Fedora rawhide. + +* Fri Oct 27 2023 Mike FABIAN - 1.4.23-1 +- Update to 1.4.23 +- Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” +- Fix option “☑️ Use US keyboard layout” + (Resolves: https://github.com/ibus/ibus-m17n/issues/66) +- Translation update from Weblate: new language Hindi, hi 100% + +* Mon Aug 21 2023 Mike FABIAN - 1.4.22-1 +- Update to 1.4.22 +- Translation update from Weblate (Lithuanian, lt 100%) + +* Mon Aug 07 2023 Mike FABIAN - 1.4.21-1 +- Update to 1.4.21 +- Translation update from Weblate (Swedish, sv 100%) + +* Sun Jul 30 2023 Mike FABIAN - 1.4.20-1 +- Update to 1.4.20 +- Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) +- Remove `xml:lang="en"` from the screenshot in appdata.xml + See: https://github.com/ximion/appstream/issues/494 + There must be one image in the default locale, and there can be some + translated ones, but having only translated images is not okay. +- Use ibus_text_new_from_string (string) instead of + ibus_text_new_from_static_string (string) in ibus_m17n_engine_commit_string() +- Add missing g_free (buf) in ibus_m17n_mtext_to_utf8() + +* Thu Jul 20 2023 Fedora Release Engineering - 1.4.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Feb 19 2023 Mike FABIAN - 1.4.19-1 +- Update to 1.4.19 +- Translation update from Weblate (Sinhala, si 100%) + +* Thu Jan 19 2023 Fedora Release Engineering - 1.4.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Dec 07 2022 Mike FABIAN - 1.4.18-1 +- Update to 1.4.18 +- Add new icon + +* Sat Nov 26 2022 Mike FABIAN - 1.4.17-2 +- Migrate license tag to SPDX + +* Sat Sep 17 2022 Mike FABIAN - 1.4.17-1 +- Update to 1.4.17 +- Fix problem that sa-IAST input method cannot be activated and make settings of sa-IAST work + (Resolves: https://github.com/ibus/ibus-m17n/issues/52) +- Let IBusM17nEngine inherit from IBusEngineSimple to enable compose support + (Resolves: https://github.com/ibus/ibus-m17n/pull/51) + +* Thu Sep 08 2022 Mike FABIAN - 1.4.13-1 +- Update to 1.4.13 +- Translation update from Weblate (ar updated 100%, ka added 100%) + +* Sat Sep 03 2022 Mike FABIAN - 1.4.11-1 +- Update to 1.4.11 +- Added translation using Weblate (Arabic, 100%) +- Add 256x256 icon to m17n.appdata.xml + +* Wed Aug 03 2022 Mike FABIAN - 1.4.10-1 +- Update to 1.4.10 +- Add language to longname in --xml output to make engines which have exactly + the same icon distinguishable in the engine switcher +- Make the icon of the current engine appear at the left of floating panel of ibus. + And also show the full engine name as a tooltip on that icon + Before only a generic gear wheel ⚙️ was shown, the same for + all engines, so one could not distinguish which engine was + selected in the floating panel. +- Show also the engine name in the title of the setup tool window. + I.e. instead of just “Preferences” show something like + “Preferences m17n:t:latn-post”. +- Better icon and a screenshot which can be shown in gnome-software +- Improvements in m17n.appdata.xml + +* Thu Jul 21 2022 Fedora Release Engineering - 1.4.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jan 20 2022 Fedora Release Engineering - 1.4.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Jan 18 2022 Mike FABIAN - 1.4.9-1 +- Update to 1.4.9 +- Free lang and name after engine_name is built + (Resolves: https://github.com/ibus/ibus-m17n/issues/39) +- Just return from ibus_m17n_engine_callback with nullable m17n +- Accept virtual engine names for CI +- Hide status from the panel if status == title (by Daiki Ueno) + +* Tue Oct 19 2021 Mike FABIAN - 1.4.8-1 +- Update to 1.4.8 +- Remove gnome-common requirement and re-write autogen.sh (by Parag Nemade) + (Resolves: https://github.com/ibus/ibus-m17n/pull/37) +- Translation update from Weblate for Sinhala + +* Tue Oct 19 2021 Parag Nemade - 1.4.7-2 +- Remove BR: gnome-common and pkgconfig as it is not needed for released tarball + +* Fri Aug 13 2021 Mike FABIAN - 1.4.7-1 +- Update to 1.4.7 +- Assign symbols to all the new inscript2 engines (and add some other missing symbols) + (Resolves: https://github.com/ibus/ibus-m17n/issues/34) +- Allow to use kbd engines (#32) + (Resolves: https://github.com/ibus/ibus-m17n/issues/32) +- ibus-m17n-xkb-options.patch from Fedora included upstream +- ibus-m17n-enable-ar-kbd.patch from Fedora included upstream + +* Thu Jul 22 2021 Fedora Release Engineering - 1.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Jul 15 2021 Mike FABIAN - 1.4.6-1 +- Update to 1.4.6 +- Make inscript2 engines rank higher than inscript engines +- Resolves: rhbz#1982546 + +* Fri Mar 12 2021 Mike FABIAN - 1.4.5-1 +- Update to 1.4.5 +- Use ibus_engine_update_preedit_with_mode() *always* with IBUS_ENGINE_PREEDIT_COMMIT mode +- Translation update from Weblate, bn new and 100% complete, pt_BR now 100% complete +- Remove redundant target for desktop.in file + +* Thu Jan 28 2021 Mike FABIAN - 1.4.4-1 +- Update to 1.4.4 +- Translation update from Weblate, zh_CN now 100% complete. + +* Tue Jan 26 2021 Fedora Release Engineering - 1.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Jul 28 2020 Fedora Release Engineering - 1.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat Jun 20 2020 Mike FABIAN - 1.4.3-1 +- Update to 1.4.3 +- New translation: es (Spanish) 100%. + +* Sat Apr 18 2020 Parag Nemade - 1.4.2-4 +- No need to call autogen.sh in %%prep section + +* Wed Mar 18 2020 Parag Nemade - 1.4.2-3 +- Use make_build and make_install macros + +* Wed Jan 29 2020 Fedora Release Engineering - 1.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Jan 20 2020 Mike FABIAN - 1.4.2-1 +- Update to 1.4.2 +- New translations: tr (Turkish) 100%, uk (Ukrainian) 100%, + id (Indonesian) 100%, ja_JP (Japanese) 100%. +- Translation updates: zh_CN, pt_BR + +* Thu Jul 25 2019 Fedora Release Engineering - 1.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Feb 01 2019 Fedora Release Engineering - 1.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Oct 25 2018 Mike FABIAN - 1.4.1-1 +- Update to 1.4.1 +- Fix for google code issue 1781 in ibus-m17n for kk (Correct symbols for kk input methods) +- Add German translations +- Add m17n.appdata.xml + +* Tue Oct 23 2018 Mike FABIAN - 1.4.0-1 +- Update to 1.4.0 +- Migration from IBusConfig to GSettings +- Remove patches which are included upstream now + +* Fri Jul 13 2018 Fedora Release Engineering - 1.3.4-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Jun 22 2018 Parag Nemade - 1.3.4-26 +- Fix the upstream URL and Source0 tags + +* Wed Feb 07 2018 Fedora Release Engineering - 1.3.4-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 02 2017 Fedora Release Engineering - 1.3.4-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.3.4-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1.3.4-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 20 2016 Parag Nemade - 1.3.4-21 +- Resolves:rhbz#1076945 - Enable default ar-kbd.mim for Arabic language + +* Thu Feb 04 2016 Fedora Release Engineering - 1.3.4-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 1.3.4-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Mar 25 2015 Richard Hughes - 1.3.4-18 +- Register as an AppStream component. + +* Thu Nov 6 2014 Daiki Ueno - 1.3.4-17 +- Add ibus-m17n-content-type.patch +- Fix bug 1024071 - ibus-m17n is enabled in the password entry field + of the lock screen + +* Tue Sep 16 2014 Daiki Ueno - 1.3.4-16 +- Add ibus-m17n-fix-preferences-ui.patch +- Fix bug 1117720 - ibus-m17n input method's setup option does not work + +* Sat Aug 16 2014 Fedora Release Engineering - 1.3.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1.3.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Jun 5 2014 Daiki Ueno - 1.3.4-13 +- Use gettext-0.19 instead of intltool (#1078169) + +* Wed Sep 4 2013 Daiki Ueno - 1.3.4-12 +- Add ibus-m17n-fix-preedit-color.patch +- Fix bug 995842 - Preedit background colour in ibus-m17n is always + black and preedit underlining is always off + +* Sat Aug 03 2013 Fedora Release Engineering - 1.3.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon May 13 2013 Daiki Ueno - 1.3.4-10 +- Add ibus-m17n-fix-data-location.patch +- Fix bug 962144 [abrt] ibus-m17n-1.3.4-9.fc19: + setup_dialog_load_config: Process /usr/libexec/ibus-setup-m17n was + killed by signal 11 (SIGSEGV) + +* Wed May 1 2013 Daiki Ueno - 1.3.4-9 +- Update ibus-m17n-xkb-options.patch to set XKB option for Inscript2 +- Fix bug 957993 - ibus-m17n doesn't automatically map Alt_R to AltGr + when Inscript2 maps are used + +* Fri Apr 26 2013 Daiki Ueno - 1.3.4-8 +- Update ibus-m17n-HEAD.patch to the latest upstream master +- Remove unnecessary and not upstreamable patches +- Use gtk3 always +- Fix bug 912592 - ibus-m17n should use default keyboard in most cases + +* Thu Feb 14 2013 Fedora Release Engineering - 1.3.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Oct 8 2012 Daiki Ueno - 1.3.4-6 +- Add ibus-m17n-desktop-file.patch + Fix bug 860955 - ibus-m17n setup is not enabled in + gnome-control-center region, .desktop file is missing + +* Wed Sep 26 2012 Daiki Ueno - 1.3.4-5 +- Add ibus-m17n-honor-user-cflags.patch + +* Wed Aug 15 2012 Daiki Ueno - 1.3.4-4 +- Add ibus-m17n-translit-layout.patch +- Fix bug 847495 - For non-US keyboard layout Ibus-m17n adds English + (US) to the list of input methods and other input methods use US + layout +- Require eekboard-service instead of eekboard +- Fix bug 847500 - Don't install Eekboard by default in the desktop spin + +* Thu Aug 2 2012 Daiki Ueno - 1.3.4-3 +- Add ibus-m17n-fix-mtext-config.patch +- Fix bug 836397 - [abrt] ibus-m17n-1.3.3-11.fc17: mtext_data: Process + /usr/libexec/ibus-setup-m17n was killed by signal 11 (SIGSEGV) + +* Thu Jul 19 2012 Fedora Release Engineering - 1.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri May 11 2012 Daiki Ueno - 1.3.4-1 +- New upstream release. + +* Tue Apr 3 2012 Daiki Ueno - 1.3.3-12 +- Check %%{rhel} version in addition to %%{fedora} +- Remove unnecessary %%defattr(-,root,root,-) from %%files +- Drop libxklavier-devel from BR + +* Fri Mar 30 2012 Daiki Ueno - 1.3.3-11 +- Revive m17n:zh:pinyin with a different label ("hanyu pinyin (m17n)") +- Rebase ibus-m17n-virtkbd.patch + +* Tue Mar 6 2012 Takao Fujiwara - 1.3.3-9 +- Rebuild for ibus 1.4.99.20120304 + +* Fri Jan 13 2012 Fedora Release Engineering - 1.3.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 6 2011 Daiki Ueno - 1.3.3-7 +- Add ibus-m17n-custom-setup-element.patch +- Fix bug 760427 - engine preferences button in ibus-setup doesn't + work for ibus-m17n + +* Fri Nov 18 2011 Daiki Ueno - 1.3.3-6 +- Add ibus-m17n-blacklist-engines.patch + https://lists.fedoraproject.org/pipermail/i18n/2011-October/001194.html + +* Thu Sep 29 2011 Daiki Ueno - 1.3.3-5 +- Add ibus-m17n-hide-title-status.patch. +- Fix bug 741157 - ibus-m17n: m17n "title" variable appears as a + dormant button on the language panel + +* Fri Sep 16 2011 Daiki Ueno - 1.3.3-4 +- Fix Indic IME symbols (thanks to pravins). + +* Fri Sep 9 2011 Takao Fujiwara - 1.3.3-3 +- Rebuild with the latest ibus 1.3.99.20110817-4 and eekboard 1.0.3 + +* Fri Sep 2 2011 Daiki Ueno - 1.3.3-2 +- Revive iok patch. + +* Thu Sep 1 2011 Daiki Ueno - 1.3.3-1 +- New upstream release. +- Add ibus-m17n-default-xml-override.patch. +- Add ibus-m17n-virtkbd.patch, instead of ibus-m17n-iok.patch. + +* Tue Aug 9 2011 Daiki Ueno - 1.3.2-10 +- Set symbol for m17n:ne:rom. + +* Mon Aug 8 2011 Daiki Ueno - 1.3.2-9 +- Update ibus-m17n-xkb-options.patch. +- Don't set XKB options directly from engine but via ibus-xkb + +* Fri Aug 5 2011 Daiki Ueno - 1.3.2-8 +- Update ibus-m17n-xx-icon-symbol.patch. +- Fix bug 727024 - ibus compose file needs a symbol tag for gnome-shell +- Update ibus-m17n-xkb-options.patch. + +* Thu Jul 7 2011 Daiki Ueno - 1.3.2-7 +- don't specify --with-hotkey. + +* Mon Jul 4 2011 Daiki Ueno - 1.3.2-6 +- Add ibus-m17n-xkb-options.patch. +- Add ibus-m17n-xx-icon-symbol.patch. +- Drop surrounding-text patches since they are included in the HEAD patch. + +* Wed Jun 15 2011 Daiki Ueno - 1.3.2-5 +- Add ibus-m17n-stsreq.patch. +- Fix bug 711126 - ibus: surrounding text support fails for the first + syllable upon activation + +* Tue Jun 7 2011 Daiki Ueno - 1.3.2-4 +- Add ibus-m17n-stscap.patch. +- Fix bug 711126 - ibus: surrounding text support fails for the first + syllable upon activation + +* Mon May 23 2011 Daiki Ueno - 1.3.2-3 +- Update ibus-m17n-HEAD.patch. + +* Mon May 23 2011 Daiki Ueno - 1.3.2-2 +- Bump the release to fix upgrade path. +- Fix bug 706602 - ibus-m17n-1.3.2-2.fc14 > ibus-m17n-1.3.2-1.fc15 +- Drop preparing/cleaning buildroot. + +* Mon Mar 7 2011 Daiki Ueno - 1.3.2-1 +- New upstream release. + +* Fri Feb 11 2011 Matthias Clasen - 1.3.1-18 +- Rebuild against newer gtk + +* Wed Feb 09 2011 Fedora Release Engineering - 1.3.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen - 1.3.1-16 +- Rebuild against newer gtk + +* Fri Jan 14 2011 Daiki Ueno - 1.3.1-15 +- Update iok patch. +- Fix bug 669128 - [abrt] ibus-m17n-1.3.1-14.fc15: + Process /usr/libexec/ibus-engine-m17n was killed by signal 6 (SIGABRT) + +* Sun Jan 9 2011 Matthias Clasen - 1.3.1-14 +- Rebuild against newer gtk3 + +* Mon Dec 27 2010 Daiki Ueno - 1.3.1-13 +- Update iok patch. + +* Wed Dec 22 2010 Daiki Ueno - 1.3.1-12 +- Update surrounding-text patch. + +* Fri Dec 10 2010 Daiki Ueno - 1.3.1-11 +- Update ibus-m17n-HEAD.patch. +- Lower si-samanala.mim rank per request from a Sinhala user. + +* Wed Dec 8 2010 Daiki Ueno - 1.3.1-10 +- Update ibus-m17n-HEAD.patch. +- Fix bug 658336 - ibus-m17n: define the IM ranks in a config file and + not in a compiled binary + +* Fri Dec 3 2010 Matthias Clasen - 1.3.1-9 +- Rebuild against newer gtk3 + +* Tue Nov 9 2010 Daiki Ueno - 1.3.1-8 +- Apply ibus-m17n-ibus-1.4.patch for ibus-1.3.99. +- Specify backup filename for each patch. + +* Fri Nov 5 2010 Daiki Ueno - 1.3.1-7 +- Rename ibus-m17n-fedora.patch to ibus-m17n-HEAD.patch since the + changes are merged into upstream. +- Update ibus-m17n-HEAD.patch with upstream fix 08e06310 +- Fix bug 649230 - [si] last input character is committed late in + wijesekara input method + +* Fri Oct 22 2010 Daiki Ueno - 1.3.1-6 +- Link ibus-setup-m17n with GTK+ 3.0. + +* Tue Oct 12 2010 Daiki Ueno - 1.3.1-5 +- put several Fedora patches into one. +- Fix bug 640896 - Ibus does not load all the keymaps for a language + that is used for logging in. + +* Tue Oct 5 2010 Daiki Ueno - 1.3.1-4 +- Remove Shift+AltGr patch; apply a simplified AltGr patch. +- Fix bug 639963 - SHIFT switch is not working in layouts as expected. + +* Fri Oct 1 2010 Daiki Ueno - 1.3.1-3 +- Apply a patch to handle Shift+AltGr. +- Update surrounding-text patch. +- Fix bug 634829 - [abrt] ibus-m17n-1.3.1-1.fc14: shift_state: Process + /usr/libexec/ibus-engine-m17n was killed by signal 11 (SIGSEGV). + +* Thu Sep 16 2010 Daiki Ueno - 1.3.1-2 +- Apply surrounding text patch. Bug 435880. + +* Fri Sep 3 2010 Daiki Ueno - 1.3.1-1 +- Update to 1.3.1. +- Fix bug 615158 - Do not change the background colour of the pre-edit buffer +- Add gtk2-devel to BR +- Install ibus-setup-m17n in %%{_libexecdir} + +* Thu Aug 26 2010 Daiki Ueno - 1.3.0-4 +- Rebuild with ibus 1.3.7 to avoid ABI incompatibility. Bug 627256. + +* Tue Jul 27 2010 Daiki Ueno - 1.3.0-3 +- Update ibus-m17n-HEAD.patch. +- Fix regression with the previous update. See comment 7 of bug 614867. + +* Fri Jul 16 2010 Daiki Ueno - 1.3.0-2 +- Update ibus-m17n-HEAD.patch. +- Fix bug 614867 - Invisible pre-edit buffer when using m17n Wijesekera keyboard layout +- Update iok patch. + +* Mon Mar 29 2010 Peng Huang - 1.3.0-1 +- Update to 1.3.0. +- Update iok patch. +- Fix bug 577148 - IOK screen appears with all keyboard layouts on ibus language panel + +* Tue Feb 02 2010 Peng Huang - 1.2.99.20100202-1 +- Update to 1.2.99.20100202. +- Update iok patch. + +* Thu Dec 17 2009 Peng Huang - 1.2.0.20091217-1 +- Update to 1.2.0.20091217. +- Update iok patch. + +* Fri Nov 20 2009 Peng Huang - 1.2.0.20091120-1 +- Update to 1.2.0.20091120. +- Fix bug 530976 + +* Fri Oct 23 2009 Peng Huang - 1.2.0.20090617-5 +- Update iok patch to fix bug 530493. + +* Wed Oct 14 2009 Peng Huang - 1.2.0.20090617-4 +- Update iok patch to fix build error. + +* Tue Oct 13 2009 Parag - 1.2.0.20090617-3 +- Re-enable iok support to ibus-m17n. + +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090617-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jun 22 2009 Peng Huang - 1.2.0.20090617-1 +- Update to 1.2.0.20090617. + +* Thu Mar 05 2009 Parag - 1.1.0.20090211-4 +- Add iok support to ibus-m17n. + +* Tue Feb 24 2009 Fedora Release Engineering - 1.1.0.20090211-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 18 2009 Peng Huang - 1.1.0.20090211-2 +- Add patch ibus-m17n-HEAD.patch from upstream git tree. +- Make Control + Alt + ... available. (#482789) + +* Wed Feb 11 2009 Peng Huang - 1.1.0.20090211-1 +- Update to 1.1.0.20090211. + +* Thu Feb 05 2009 Peng Huang - 1.1.0.20090205-1 +- Update to 1.1.0.20090205. + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.1.1.20081013-4 +- Rebuild for Python 2.6 + +* Thu Oct 16 2008 Jens Petersen - 0.1.1.20081013-3 +- move the .engine files to m17n-db and m17n-contrib (#466410) + +* Wed Oct 15 2008 Peng Huang - 0.1.1.20081013-2 +- Move unicode, rfc1345 to generic package, and syrc-phonetic to syriac package. + +* Mon Oct 13 2008 Peng Huang - 0.1.1.20081013-1 +- Update to 0.1.1.20081013. + +* Thu Oct 09 2008 Peng Huang - 0.1.1.20081009-1 +- Update to 0.1.1.20081009. + +* Mon Sep 01 2008 Peng Huang - 0.1.1.20080901-1 +- Update to 0.1.1.20080901. + +* Sat Aug 23 2008 Peng Huang - 0.1.1.20080823-1 +- Update to 0.1.1.20080823. + +* Fri Aug 15 2008 Peng Huang - 0.1.1.20080815-1 +- Update to 0.1.1.20080815. + +* Tue Aug 12 2008 Peng Huang - 0.1.1.20080812-1 +- Update to 0.1.1.20080812. + +* Thu Aug 07 2008 Peng Huang - 0.1.0.20080810-1 +- The first version. diff --git a/ibus-m17n.spec b/ibus-m17n.spec index c2fa027..9e47a63 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.4.27 -Release: 3%{?dist} +Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later URL: https://github.com/ibus/ibus-m17n @@ -63,542 +63,4 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog -* Wed Jan 24 2024 Fedora Release Engineering - 1.4.27-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sat Jan 20 2024 Fedora Release Engineering - 1.4.27-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sat Dec 02 2023 Mike FABIAN - 1.4.27-1 -- Update to 1.4.27 -- Prefer commit to "return FALSE;" for space, and other keys - where the msymbol name is exactly one character, add a - sleep for Return. This is to avoid ordering problems in - mutter. - (Resolves: https://github.com/ibus/ibus-m17n/issues/72) - -* Fri Nov 10 2023 Mike FABIAN - 1.4.24-1 -- Update to 1.4.24 -- Make IBusEngineSimple read ~/.XCompose - (Resolves: https://github.com/ibus/ibus-m17n/issues/70) -- Do not hide empty preedit text before committing text. - (Resolves: https://github.com/ibus/ibus-m17n/pull/64). - Together with ibus >= 1.5.29 this solves the preedit flicker problem perfectly. -- Use “” in m17n.appdata.xml instead of “” - Because is deprecated and it makes the build fail on Fedora rawhide. - -* Fri Oct 27 2023 Mike FABIAN - 1.4.23-1 -- Update to 1.4.23 -- Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” -- Fix option “☑️ Use US keyboard layout” - (Resolves: https://github.com/ibus/ibus-m17n/issues/66) -- Translation update from Weblate: new language Hindi, hi 100% - -* Mon Aug 21 2023 Mike FABIAN - 1.4.22-1 -- Update to 1.4.22 -- Translation update from Weblate (Lithuanian, lt 100%) - -* Mon Aug 07 2023 Mike FABIAN - 1.4.21-1 -- Update to 1.4.21 -- Translation update from Weblate (Swedish, sv 100%) - -* Sun Jul 30 2023 Mike FABIAN - 1.4.20-1 -- Update to 1.4.20 -- Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) -- Remove `xml:lang="en"` from the screenshot in appdata.xml - See: https://github.com/ximion/appstream/issues/494 - There must be one image in the default locale, and there can be some - translated ones, but having only translated images is not okay. -- Use ibus_text_new_from_string (string) instead of - ibus_text_new_from_static_string (string) in ibus_m17n_engine_commit_string() -- Add missing g_free (buf) in ibus_m17n_mtext_to_utf8() - -* Thu Jul 20 2023 Fedora Release Engineering - 1.4.19-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Sun Feb 19 2023 Mike FABIAN - 1.4.19-1 -- Update to 1.4.19 -- Translation update from Weblate (Sinhala, si 100%) - -* Thu Jan 19 2023 Fedora Release Engineering - 1.4.18-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Wed Dec 07 2022 Mike FABIAN - 1.4.18-1 -- Update to 1.4.18 -- Add new icon - -* Sat Nov 26 2022 Mike FABIAN - 1.4.17-2 -- Migrate license tag to SPDX - -* Sat Sep 17 2022 Mike FABIAN - 1.4.17-1 -- Update to 1.4.17 -- Fix problem that sa-IAST input method cannot be activated and make settings of sa-IAST work - (Resolves: https://github.com/ibus/ibus-m17n/issues/52) -- Let IBusM17nEngine inherit from IBusEngineSimple to enable compose support - (Resolves: https://github.com/ibus/ibus-m17n/pull/51) - -* Thu Sep 08 2022 Mike FABIAN - 1.4.13-1 -- Update to 1.4.13 -- Translation update from Weblate (ar updated 100%, ka added 100%) - -* Sat Sep 03 2022 Mike FABIAN - 1.4.11-1 -- Update to 1.4.11 -- Added translation using Weblate (Arabic, 100%) -- Add 256x256 icon to m17n.appdata.xml - -* Wed Aug 03 2022 Mike FABIAN - 1.4.10-1 -- Update to 1.4.10 -- Add language to longname in --xml output to make engines which have exactly - the same icon distinguishable in the engine switcher -- Make the icon of the current engine appear at the left of floating panel of ibus. - And also show the full engine name as a tooltip on that icon - Before only a generic gear wheel ⚙️ was shown, the same for - all engines, so one could not distinguish which engine was - selected in the floating panel. -- Show also the engine name in the title of the setup tool window. - I.e. instead of just “Preferences” show something like - “Preferences m17n:t:latn-post”. -- Better icon and a screenshot which can be shown in gnome-software -- Improvements in m17n.appdata.xml - -* Thu Jul 21 2022 Fedora Release Engineering - 1.4.9-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Thu Jan 20 2022 Fedora Release Engineering - 1.4.9-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Tue Jan 18 2022 Mike FABIAN - 1.4.9-1 -- Update to 1.4.9 -- Free lang and name after engine_name is built - (Resolves: https://github.com/ibus/ibus-m17n/issues/39) -- Just return from ibus_m17n_engine_callback with nullable m17n -- Accept virtual engine names for CI -- Hide status from the panel if status == title (by Daiki Ueno) - -* Tue Oct 19 2021 Mike FABIAN - 1.4.8-1 -- Update to 1.4.8 -- Remove gnome-common requirement and re-write autogen.sh (by Parag Nemade) - (Resolves: https://github.com/ibus/ibus-m17n/pull/37) -- Translation update from Weblate for Sinhala - -* Tue Oct 19 2021 Parag Nemade - 1.4.7-2 -- Remove BR: gnome-common and pkgconfig as it is not needed for released tarball - -* Fri Aug 13 2021 Mike FABIAN - 1.4.7-1 -- Update to 1.4.7 -- Assign symbols to all the new inscript2 engines (and add some other missing symbols) - (Resolves: https://github.com/ibus/ibus-m17n/issues/34) -- Allow to use kbd engines (#32) - (Resolves: https://github.com/ibus/ibus-m17n/issues/32) -- ibus-m17n-xkb-options.patch from Fedora included upstream -- ibus-m17n-enable-ar-kbd.patch from Fedora included upstream - -* Thu Jul 22 2021 Fedora Release Engineering - 1.4.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Thu Jul 15 2021 Mike FABIAN - 1.4.6-1 -- Update to 1.4.6 -- Make inscript2 engines rank higher than inscript engines -- Resolves: rhbz#1982546 - -* Fri Mar 12 2021 Mike FABIAN - 1.4.5-1 -- Update to 1.4.5 -- Use ibus_engine_update_preedit_with_mode() *always* with IBUS_ENGINE_PREEDIT_COMMIT mode -- Translation update from Weblate, bn new and 100% complete, pt_BR now 100% complete -- Remove redundant target for desktop.in file - -* Thu Jan 28 2021 Mike FABIAN - 1.4.4-1 -- Update to 1.4.4 -- Translation update from Weblate, zh_CN now 100% complete. - -* Tue Jan 26 2021 Fedora Release Engineering - 1.4.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 1.4.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Sat Jun 20 2020 Mike FABIAN - 1.4.3-1 -- Update to 1.4.3 -- New translation: es (Spanish) 100%. - -* Sat Apr 18 2020 Parag Nemade - 1.4.2-4 -- No need to call autogen.sh in %%prep section - -* Wed Mar 18 2020 Parag Nemade - 1.4.2-3 -- Use make_build and make_install macros - -* Wed Jan 29 2020 Fedora Release Engineering - 1.4.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Mon Jan 20 2020 Mike FABIAN - 1.4.2-1 -- Update to 1.4.2 -- New translations: tr (Turkish) 100%, uk (Ukrainian) 100%, - id (Indonesian) 100%, ja_JP (Japanese) 100%. -- Translation updates: zh_CN, pt_BR - -* Thu Jul 25 2019 Fedora Release Engineering - 1.4.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Feb 01 2019 Fedora Release Engineering - 1.4.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Oct 25 2018 Mike FABIAN - 1.4.1-1 -- Update to 1.4.1 -- Fix for google code issue 1781 in ibus-m17n for kk (Correct symbols for kk input methods) -- Add German translations -- Add m17n.appdata.xml - -* Tue Oct 23 2018 Mike FABIAN - 1.4.0-1 -- Update to 1.4.0 -- Migration from IBusConfig to GSettings -- Remove patches which are included upstream now - -* Fri Jul 13 2018 Fedora Release Engineering - 1.3.4-27 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Jun 22 2018 Parag Nemade - 1.3.4-26 -- Fix the upstream URL and Source0 tags - -* Wed Feb 07 2018 Fedora Release Engineering - 1.3.4-25 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Aug 02 2017 Fedora Release Engineering - 1.3.4-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1.3.4-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.3.4-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Dec 20 2016 Parag Nemade - 1.3.4-21 -- Resolves:rhbz#1076945 - Enable default ar-kbd.mim for Arabic language - -* Thu Feb 04 2016 Fedora Release Engineering - 1.3.4-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Wed Jun 17 2015 Fedora Release Engineering - 1.3.4-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Wed Mar 25 2015 Richard Hughes - 1.3.4-18 -- Register as an AppStream component. - -* Thu Nov 6 2014 Daiki Ueno - 1.3.4-17 -- Add ibus-m17n-content-type.patch -- Fix bug 1024071 - ibus-m17n is enabled in the password entry field - of the lock screen - -* Tue Sep 16 2014 Daiki Ueno - 1.3.4-16 -- Add ibus-m17n-fix-preferences-ui.patch -- Fix bug 1117720 - ibus-m17n input method's setup option does not work - -* Sat Aug 16 2014 Fedora Release Engineering - 1.3.4-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 1.3.4-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Thu Jun 5 2014 Daiki Ueno - 1.3.4-13 -- Use gettext-0.19 instead of intltool (#1078169) - -* Wed Sep 4 2013 Daiki Ueno - 1.3.4-12 -- Add ibus-m17n-fix-preedit-color.patch -- Fix bug 995842 - Preedit background colour in ibus-m17n is always - black and preedit underlining is always off - -* Sat Aug 03 2013 Fedora Release Engineering - 1.3.4-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Mon May 13 2013 Daiki Ueno - 1.3.4-10 -- Add ibus-m17n-fix-data-location.patch -- Fix bug 962144 [abrt] ibus-m17n-1.3.4-9.fc19: - setup_dialog_load_config: Process /usr/libexec/ibus-setup-m17n was - killed by signal 11 (SIGSEGV) - -* Wed May 1 2013 Daiki Ueno - 1.3.4-9 -- Update ibus-m17n-xkb-options.patch to set XKB option for Inscript2 -- Fix bug 957993 - ibus-m17n doesn't automatically map Alt_R to AltGr - when Inscript2 maps are used - -* Fri Apr 26 2013 Daiki Ueno - 1.3.4-8 -- Update ibus-m17n-HEAD.patch to the latest upstream master -- Remove unnecessary and not upstreamable patches -- Use gtk3 always -- Fix bug 912592 - ibus-m17n should use default keyboard in most cases - -* Thu Feb 14 2013 Fedora Release Engineering - 1.3.4-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Mon Oct 8 2012 Daiki Ueno - 1.3.4-6 -- Add ibus-m17n-desktop-file.patch - Fix bug 860955 - ibus-m17n setup is not enabled in - gnome-control-center region, .desktop file is missing - -* Wed Sep 26 2012 Daiki Ueno - 1.3.4-5 -- Add ibus-m17n-honor-user-cflags.patch - -* Wed Aug 15 2012 Daiki Ueno - 1.3.4-4 -- Add ibus-m17n-translit-layout.patch -- Fix bug 847495 - For non-US keyboard layout Ibus-m17n adds English - (US) to the list of input methods and other input methods use US - layout -- Require eekboard-service instead of eekboard -- Fix bug 847500 - Don't install Eekboard by default in the desktop spin - -* Thu Aug 2 2012 Daiki Ueno - 1.3.4-3 -- Add ibus-m17n-fix-mtext-config.patch -- Fix bug 836397 - [abrt] ibus-m17n-1.3.3-11.fc17: mtext_data: Process - /usr/libexec/ibus-setup-m17n was killed by signal 11 (SIGSEGV) - -* Thu Jul 19 2012 Fedora Release Engineering - 1.3.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri May 11 2012 Daiki Ueno - 1.3.4-1 -- New upstream release. - -* Tue Apr 3 2012 Daiki Ueno - 1.3.3-12 -- Check %%{rhel} version in addition to %%{fedora} -- Remove unnecessary %%defattr(-,root,root,-) from %%files -- Drop libxklavier-devel from BR - -* Fri Mar 30 2012 Daiki Ueno - 1.3.3-11 -- Revive m17n:zh:pinyin with a different label ("hanyu pinyin (m17n)") -- Rebase ibus-m17n-virtkbd.patch - -* Tue Mar 6 2012 Takao Fujiwara - 1.3.3-9 -- Rebuild for ibus 1.4.99.20120304 - -* Fri Jan 13 2012 Fedora Release Engineering - 1.3.3-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Dec 6 2011 Daiki Ueno - 1.3.3-7 -- Add ibus-m17n-custom-setup-element.patch -- Fix bug 760427 - engine preferences button in ibus-setup doesn't - work for ibus-m17n - -* Fri Nov 18 2011 Daiki Ueno - 1.3.3-6 -- Add ibus-m17n-blacklist-engines.patch - https://lists.fedoraproject.org/pipermail/i18n/2011-October/001194.html - -* Thu Sep 29 2011 Daiki Ueno - 1.3.3-5 -- Add ibus-m17n-hide-title-status.patch. -- Fix bug 741157 - ibus-m17n: m17n "title" variable appears as a - dormant button on the language panel - -* Fri Sep 16 2011 Daiki Ueno - 1.3.3-4 -- Fix Indic IME symbols (thanks to pravins). - -* Fri Sep 9 2011 Takao Fujiwara - 1.3.3-3 -- Rebuild with the latest ibus 1.3.99.20110817-4 and eekboard 1.0.3 - -* Fri Sep 2 2011 Daiki Ueno - 1.3.3-2 -- Revive iok patch. - -* Thu Sep 1 2011 Daiki Ueno - 1.3.3-1 -- New upstream release. -- Add ibus-m17n-default-xml-override.patch. -- Add ibus-m17n-virtkbd.patch, instead of ibus-m17n-iok.patch. - -* Tue Aug 9 2011 Daiki Ueno - 1.3.2-10 -- Set symbol for m17n:ne:rom. - -* Mon Aug 8 2011 Daiki Ueno - 1.3.2-9 -- Update ibus-m17n-xkb-options.patch. -- Don't set XKB options directly from engine but via ibus-xkb - -* Fri Aug 5 2011 Daiki Ueno - 1.3.2-8 -- Update ibus-m17n-xx-icon-symbol.patch. -- Fix bug 727024 - ibus compose file needs a symbol tag for gnome-shell -- Update ibus-m17n-xkb-options.patch. - -* Thu Jul 7 2011 Daiki Ueno - 1.3.2-7 -- don't specify --with-hotkey. - -* Mon Jul 4 2011 Daiki Ueno - 1.3.2-6 -- Add ibus-m17n-xkb-options.patch. -- Add ibus-m17n-xx-icon-symbol.patch. -- Drop surrounding-text patches since they are included in the HEAD patch. - -* Wed Jun 15 2011 Daiki Ueno - 1.3.2-5 -- Add ibus-m17n-stsreq.patch. -- Fix bug 711126 - ibus: surrounding text support fails for the first - syllable upon activation - -* Tue Jun 7 2011 Daiki Ueno - 1.3.2-4 -- Add ibus-m17n-stscap.patch. -- Fix bug 711126 - ibus: surrounding text support fails for the first - syllable upon activation - -* Mon May 23 2011 Daiki Ueno - 1.3.2-3 -- Update ibus-m17n-HEAD.patch. - -* Mon May 23 2011 Daiki Ueno - 1.3.2-2 -- Bump the release to fix upgrade path. -- Fix bug 706602 - ibus-m17n-1.3.2-2.fc14 > ibus-m17n-1.3.2-1.fc15 -- Drop preparing/cleaning buildroot. - -* Mon Mar 7 2011 Daiki Ueno - 1.3.2-1 -- New upstream release. - -* Fri Feb 11 2011 Matthias Clasen - 1.3.1-18 -- Rebuild against newer gtk - -* Wed Feb 09 2011 Fedora Release Engineering - 1.3.1-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Feb 2 2011 Matthias Clasen - 1.3.1-16 -- Rebuild against newer gtk - -* Fri Jan 14 2011 Daiki Ueno - 1.3.1-15 -- Update iok patch. -- Fix bug 669128 - [abrt] ibus-m17n-1.3.1-14.fc15: - Process /usr/libexec/ibus-engine-m17n was killed by signal 6 (SIGABRT) - -* Sun Jan 9 2011 Matthias Clasen - 1.3.1-14 -- Rebuild against newer gtk3 - -* Mon Dec 27 2010 Daiki Ueno - 1.3.1-13 -- Update iok patch. - -* Wed Dec 22 2010 Daiki Ueno - 1.3.1-12 -- Update surrounding-text patch. - -* Fri Dec 10 2010 Daiki Ueno - 1.3.1-11 -- Update ibus-m17n-HEAD.patch. -- Lower si-samanala.mim rank per request from a Sinhala user. - -* Wed Dec 8 2010 Daiki Ueno - 1.3.1-10 -- Update ibus-m17n-HEAD.patch. -- Fix bug 658336 - ibus-m17n: define the IM ranks in a config file and - not in a compiled binary - -* Fri Dec 3 2010 Matthias Clasen - 1.3.1-9 -- Rebuild against newer gtk3 - -* Tue Nov 9 2010 Daiki Ueno - 1.3.1-8 -- Apply ibus-m17n-ibus-1.4.patch for ibus-1.3.99. -- Specify backup filename for each patch. - -* Fri Nov 5 2010 Daiki Ueno - 1.3.1-7 -- Rename ibus-m17n-fedora.patch to ibus-m17n-HEAD.patch since the - changes are merged into upstream. -- Update ibus-m17n-HEAD.patch with upstream fix 08e06310 -- Fix bug 649230 - [si] last input character is committed late in - wijesekara input method - -* Fri Oct 22 2010 Daiki Ueno - 1.3.1-6 -- Link ibus-setup-m17n with GTK+ 3.0. - -* Tue Oct 12 2010 Daiki Ueno - 1.3.1-5 -- put several Fedora patches into one. -- Fix bug 640896 - Ibus does not load all the keymaps for a language - that is used for logging in. - -* Tue Oct 5 2010 Daiki Ueno - 1.3.1-4 -- Remove Shift+AltGr patch; apply a simplified AltGr patch. -- Fix bug 639963 - SHIFT switch is not working in layouts as expected. - -* Fri Oct 1 2010 Daiki Ueno - 1.3.1-3 -- Apply a patch to handle Shift+AltGr. -- Update surrounding-text patch. -- Fix bug 634829 - [abrt] ibus-m17n-1.3.1-1.fc14: shift_state: Process - /usr/libexec/ibus-engine-m17n was killed by signal 11 (SIGSEGV). - -* Thu Sep 16 2010 Daiki Ueno - 1.3.1-2 -- Apply surrounding text patch. Bug 435880. - -* Fri Sep 3 2010 Daiki Ueno - 1.3.1-1 -- Update to 1.3.1. -- Fix bug 615158 - Do not change the background colour of the pre-edit buffer -- Add gtk2-devel to BR -- Install ibus-setup-m17n in %%{_libexecdir} - -* Thu Aug 26 2010 Daiki Ueno - 1.3.0-4 -- Rebuild with ibus 1.3.7 to avoid ABI incompatibility. Bug 627256. - -* Tue Jul 27 2010 Daiki Ueno - 1.3.0-3 -- Update ibus-m17n-HEAD.patch. -- Fix regression with the previous update. See comment 7 of bug 614867. - -* Fri Jul 16 2010 Daiki Ueno - 1.3.0-2 -- Update ibus-m17n-HEAD.patch. -- Fix bug 614867 - Invisible pre-edit buffer when using m17n Wijesekera keyboard layout -- Update iok patch. - -* Mon Mar 29 2010 Peng Huang - 1.3.0-1 -- Update to 1.3.0. -- Update iok patch. -- Fix bug 577148 - IOK screen appears with all keyboard layouts on ibus language panel - -* Tue Feb 02 2010 Peng Huang - 1.2.99.20100202-1 -- Update to 1.2.99.20100202. -- Update iok patch. - -* Thu Dec 17 2009 Peng Huang - 1.2.0.20091217-1 -- Update to 1.2.0.20091217. -- Update iok patch. - -* Fri Nov 20 2009 Peng Huang - 1.2.0.20091120-1 -- Update to 1.2.0.20091120. -- Fix bug 530976 - -* Fri Oct 23 2009 Peng Huang - 1.2.0.20090617-5 -- Update iok patch to fix bug 530493. - -* Wed Oct 14 2009 Peng Huang - 1.2.0.20090617-4 -- Update iok patch to fix build error. - -* Tue Oct 13 2009 Parag - 1.2.0.20090617-3 -- Re-enable iok support to ibus-m17n. - -* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090617-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Jun 22 2009 Peng Huang - 1.2.0.20090617-1 -- Update to 1.2.0.20090617. - -* Thu Mar 05 2009 Parag - 1.1.0.20090211-4 -- Add iok support to ibus-m17n. - -* Tue Feb 24 2009 Fedora Release Engineering - 1.1.0.20090211-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Feb 18 2009 Peng Huang - 1.1.0.20090211-2 -- Add patch ibus-m17n-HEAD.patch from upstream git tree. -- Make Control + Alt + ... available. (#482789) - -* Wed Feb 11 2009 Peng Huang - 1.1.0.20090211-1 -- Update to 1.1.0.20090211. - -* Thu Feb 05 2009 Peng Huang - 1.1.0.20090205-1 -- Update to 1.1.0.20090205. - -* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.1.1.20081013-4 -- Rebuild for Python 2.6 - -* Thu Oct 16 2008 Jens Petersen - 0.1.1.20081013-3 -- move the .engine files to m17n-db and m17n-contrib (#466410) - -* Wed Oct 15 2008 Peng Huang - 0.1.1.20081013-2 -- Move unicode, rfc1345 to generic package, and syrc-phonetic to syriac package. - -* Mon Oct 13 2008 Peng Huang - 0.1.1.20081013-1 -- Update to 0.1.1.20081013. - -* Thu Oct 09 2008 Peng Huang - 0.1.1.20081009-1 -- Update to 0.1.1.20081009. - -* Mon Sep 01 2008 Peng Huang - 0.1.1.20080901-1 -- Update to 0.1.1.20080901. - -* Sat Aug 23 2008 Peng Huang - 0.1.1.20080823-1 -- Update to 0.1.1.20080823. - -* Fri Aug 15 2008 Peng Huang - 0.1.1.20080815-1 -- Update to 0.1.1.20080815. - -* Tue Aug 12 2008 Peng Huang - 0.1.1.20080812-1 -- Update to 0.1.1.20080812. - -* Thu Aug 07 2008 Peng Huang - 0.1.0.20080810-1 -- The first version. +%autochangelog From 37e8ccd895d95f9883f75cde30e84f673f81f79a Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 15 Feb 2024 15:02:57 +0100 Subject: [PATCH 26/40] Update to 1.4.28 - Translation update from Weblate (Russian (ru), new, 100%) - Build against gtk3 by default (Resolves: https://github.com/ibus/ibus-m17n/issues/73) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index dd4db55..5581c57 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.25.tar.gz /ibus-m17n-1.4.26.tar.gz /ibus-m17n-1.4.27.tar.gz +/ibus-m17n-1.4.28.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 9e47a63..203092c 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.27 +Version: 1.4.28 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index 01b3b23..537fb64 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.27.tar.gz) = b2952e99cbd8ce1bbad53cc594d963b473ee1f1c8f1f51a46dac03bf0b0cef8249f5a8f5ec0a04e81665e3394477a9e96e9b6c0c4c471a4fffa8631ef8180f83 +SHA512 (ibus-m17n-1.4.28.tar.gz) = b96dea6a46f50529aeb0b828f8846b1e856e0fc0bb3dbf14ea384283156741653ff396e1647a835c505292cfea78f788ec0a391a57622b8f4c3e13fb35f191fc From c7c92a3afc103c66275f2dbc70900c24976cf8cc Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 10 Apr 2024 18:03:12 +0200 Subject: [PATCH 27/40] Update to 1.4.29 - Translation update from Weblate (Malayalam (ml), new, 100%, Swedish (sv) 100%) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5581c57..eb7033a 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.26.tar.gz /ibus-m17n-1.4.27.tar.gz /ibus-m17n-1.4.28.tar.gz +/ibus-m17n-1.4.29.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 203092c..b1e7876 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.28 +Version: 1.4.29 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index 537fb64..3b7134f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.28.tar.gz) = b96dea6a46f50529aeb0b828f8846b1e856e0fc0bb3dbf14ea384283156741653ff396e1647a835c505292cfea78f788ec0a391a57622b8f4c3e13fb35f191fc +SHA512 (ibus-m17n-1.4.29.tar.gz) = bb3b3f44fa5a79e7e15c71b30760f7b29454a47b167f12cc4bde52ee03151f794795fd0d9bb6a2a7877a0afc909f81342d50461da3d49a905255c76288023edb From b38ef576bde9cd164d52ea77b85041cd6be97bbd Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 10 Jun 2024 10:44:47 +0200 Subject: [PATCH 28/40] Fix CI tests --- tests/smoke/runtest.sh | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh index ddf7ba6..ba932b1 100755 --- a/tests/smoke/runtest.sh +++ b/tests/smoke/runtest.sh @@ -3,23 +3,33 @@ rlJournalStart rlPhaseStartSetup + rlShowPackageVersion ibus-m17n + rlRun -t -l "VERSION=$(rpm -q ibus-m17n --queryformat='%{version}')" 0 "Get VERSION" + FEDORA_VERSION=$(rlGetDistroRelease) + rlLog "FEDORA_VERSION=${DISTRO_RELEASE}" rlRun "tmp=\$(mktemp -d)" 0 "Create tmp directory" rlRun "pushd $tmp" rlFetchSrcForInstalled "ibus-m17n" rlRun "rpm --define '_topdir $tmp' -i *src.rpm" - rlRun "mkdir BUILD" 0 "Creating BUILD directory" - rlRun "rpmbuild --nodeps --define '_topdir $tmp' -bp $tmp/SPECS/*spec" - rlRun "pushd BUILD/ibus-m17n*" + rlRun -t -l "mkdir BUILD" 0 "Creating BUILD directory" + rlRun -t -l "rpmbuild --noclean --nodeps --define '_topdir $tmp' -bp $tmp/SPECS/*spec" + if [ ${FEDORA_VERSION} -le "40" ]; then + rlRun -t -l "pushd BUILD/ibus-m17n-${VERSION}" + else + rlRun -t -l "pushd BUILD/ibus-m17n-${VERSION}-build/ibus-m17n-${VERSION}" + fi rlRun "set -o pipefail" - rlRun "NOCONFIGURE=1 ./autogen.sh" - rlRun "./configure --disable-static --with-gtk=3.0" - rlRun "make check" + rlRun -t -l "NOCONFIGURE=1 ./autogen.sh" + rlRun -t -l "./configure --disable-static --with-gtk=3.0" + rlRun -t -l "make check" rlAssertRpm "ibus" rlAssertRpm "m17n-db" rlPhaseEnd rlPhaseStartTest - rlRun "ibus-daemon -v -r -d" + # The -s option and & is important, when using the -d option + # in this test environment the error “Can't connect to IBus.” occurs. + rlRun -t -l "ibus-daemon -v -r -s &" rlRun "sleep 5" 0 "Give ibus-daemon some time to start properly." for name in \ am:sera \ @@ -111,7 +121,7 @@ rlJournalStart or:phonetic \ pa:anmollipi \ pa:inscript \ - pa:inscript2 \ + pa:inscript2-guru \ pa:itrans \ pa:jhelum \ pa:phonetic \ @@ -173,9 +183,9 @@ rlJournalStart vi:vni \ yi:yivo do - rlRun "/usr/libexec/ibus-engine-m17n --xml 2>/dev/null | grep 'm17n:${name}'" \ + rlRun -t -l "/usr/libexec/ibus-engine-m17n --xml 2>/dev/null | grep 'm17n:${name}'" \ 0 "checking whether 'ibus-engine-m17n --xml' can list m17n:${name}:" - rlRun "ibus list-engine --name-only | grep 'm17n:${name}$'" \ + rlRun -t -l "ibus list-engine --name-only | grep 'm17n:${name}$'" \ 0 "checking whether ibus can list m17n:${name}:" done rlPhaseEnd From 79972e4b237c9f800872b3924c7b8228ad34bf4e Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Tue, 9 Jul 2024 18:40:47 +0200 Subject: [PATCH 29/40] Fix CI tests better --- tests/smoke/runtest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh index ba932b1..90eda8f 100755 --- a/tests/smoke/runtest.sh +++ b/tests/smoke/runtest.sh @@ -13,10 +13,10 @@ rlJournalStart rlRun "rpm --define '_topdir $tmp' -i *src.rpm" rlRun -t -l "mkdir BUILD" 0 "Creating BUILD directory" rlRun -t -l "rpmbuild --noclean --nodeps --define '_topdir $tmp' -bp $tmp/SPECS/*spec" - if [ ${FEDORA_VERSION} -le "40" ]; then - rlRun -t -l "pushd BUILD/ibus-m17n-${VERSION}" - else + if [ -d BUILD/ibus-m17n-${VERSION}-build ]; then rlRun -t -l "pushd BUILD/ibus-m17n-${VERSION}-build/ibus-m17n-${VERSION}" + else + rlRun -t -l "pushd BUILD/ibus-m17n-${VERSION}" fi rlRun "set -o pipefail" rlRun -t -l "NOCONFIGURE=1 ./autogen.sh" From d893098bb9bb46876dc824fc5a90f775ad3fedb8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 10:06:47 +0000 Subject: [PATCH 30/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From bda3941185ef46ce01b58807f330587cd9556853 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sat, 20 Jul 2024 17:54:48 +0200 Subject: [PATCH 31/40] Update to 1.4.30 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Name of Sinhala input method changed: si-wijesekera ➡️ si-wijesekara (This changes comes when m17n-db is updated to 1.8.6) - Translation update from Weblate (si 100%) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eb7033a..2004475 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.27.tar.gz /ibus-m17n-1.4.28.tar.gz /ibus-m17n-1.4.29.tar.gz +/ibus-m17n-1.4.30.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index b1e7876..815ae3a 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.29 +Version: 1.4.30 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index 3b7134f..fae1a88 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.29.tar.gz) = bb3b3f44fa5a79e7e15c71b30760f7b29454a47b167f12cc4bde52ee03151f794795fd0d9bb6a2a7877a0afc909f81342d50461da3d49a905255c76288023edb +SHA512 (ibus-m17n-1.4.30.tar.gz) = d2abbf6018231b1b84b4c04170aaf48f9efc1936c88cac7a960141b18d4f4477ca02354ca080937c9b7a6971b57d4b20981d88267caac3cae87330dc710e3560 From 58a364db110387939af59a736e1c5c0eb0b4f8e3 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 25 Jul 2024 09:29:58 +0200 Subject: [PATCH 32/40] Update to 1.4.31 - Translation update from Weblate (new: cs 100%) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2004475..fbaa657 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.28.tar.gz /ibus-m17n-1.4.29.tar.gz /ibus-m17n-1.4.30.tar.gz +/ibus-m17n-1.4.31.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 815ae3a..4624e26 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.30 +Version: 1.4.31 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index fae1a88..fd4b37d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.30.tar.gz) = d2abbf6018231b1b84b4c04170aaf48f9efc1936c88cac7a960141b18d4f4477ca02354ca080937c9b7a6971b57d4b20981d88267caac3cae87330dc710e3560 +SHA512 (ibus-m17n-1.4.31.tar.gz) = 06f6d412d36b13628cb2ce9d7b3a1827a19c7e7213a0579f685f791bfbe101d5e8fc80162bde1ba46ac931f3f689492d02da8c02a8e2155cddc39181416f2269 From 10de9d413d61a6e2cde3767023e4f85a54a26e7d Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sun, 8 Sep 2024 17:43:41 +0200 Subject: [PATCH 33/40] Update to 1.4.32 - Translation update from Weblate (new: el 100%) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fbaa657..999ca32 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.29.tar.gz /ibus-m17n-1.4.30.tar.gz /ibus-m17n-1.4.31.tar.gz +/ibus-m17n-1.4.32.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 4624e26..23ad10f 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.31 +Version: 1.4.32 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index fd4b37d..1b2ea23 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.31.tar.gz) = 06f6d412d36b13628cb2ce9d7b3a1827a19c7e7213a0579f685f791bfbe101d5e8fc80162bde1ba46ac931f3f689492d02da8c02a8e2155cddc39181416f2269 +SHA512 (ibus-m17n-1.4.32.tar.gz) = 00e657dc0120de12d637f0be0ee6b3af9af3a4783d5c3827fdcacf78c534f0dcbb454052c17886b3ffd554797011c345a948b684c5768a085717de1117b84932 From 005af2118077364899abd5332abe5e3b540e33fb Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sun, 20 Oct 2024 22:14:11 +0200 Subject: [PATCH 34/40] Update to 1.4.33 Translation update from Weblate (new: kab 100%) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 999ca32..b19f7e6 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.30.tar.gz /ibus-m17n-1.4.31.tar.gz /ibus-m17n-1.4.32.tar.gz +/ibus-m17n-1.4.33.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 23ad10f..e0acab3 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.32 +Version: 1.4.33 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index 1b2ea23..9c1f84e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.32.tar.gz) = 00e657dc0120de12d637f0be0ee6b3af9af3a4783d5c3827fdcacf78c534f0dcbb454052c17886b3ffd554797011c345a948b684c5768a085717de1117b84932 +SHA512 (ibus-m17n-1.4.33.tar.gz) = 9da5f795eb5f23a07e8e5465ee7bf62ebcb021c547b8193aaccc6b9b9757f61fb5db73077c8db900ee08ebd3aef6e46001771669271bdb99f58f957a50c43123 From 1044cfc69457c53ffe7b6415bb7420466404b504 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 7 Nov 2024 14:57:27 +0100 Subject: [PATCH 35/40] Update to 1.4.34 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add the “S-” prefix to msymbols for non-ASCII characters only if the character “is not graph”. “is not graph” is the same as “is space or is not printable”. (Resolves: https://github.com/ibus/ibus-m17n/issues/90) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b19f7e6..89a40c4 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.31.tar.gz /ibus-m17n-1.4.32.tar.gz /ibus-m17n-1.4.33.tar.gz +/ibus-m17n-1.4.34.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index e0acab3..cdfa35d 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.33 +Version: 1.4.34 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index 9c1f84e..9fd2f7d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.33.tar.gz) = 9da5f795eb5f23a07e8e5465ee7bf62ebcb021c547b8193aaccc6b9b9757f61fb5db73077c8db900ee08ebd3aef6e46001771669271bdb99f58f957a50c43123 +SHA512 (ibus-m17n-1.4.34.tar.gz) = c0ed3eef79acbff622640c5ac58a5e91be5012a049a1ee21d2bcfe393b1ed8e15d4a903cf769230385de2febeccb6cc7a0945ade26a2588d1cc1f8373224fac9 From 96fe31b5e914d9a62a4d1c2b7c1ae102bcb6a812 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 06:52:00 +0000 Subject: [PATCH 36/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 0ee45cd59ba2ba70953f769636220a1c98481789 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Tue, 21 Jan 2025 00:01:30 +0100 Subject: [PATCH 37/40] Update to 1.4.35 - Generate translations into metainfo.xml files with autotools Related: https://github.com/mike-fabian/ibus-m17n/issues/2 - Rename m17n.appdata.xml to org.freedesktop.ibus.engine.m17n.metainfo.xml (Resolves: https://github.com/mike-fabian/ibus-m17n/issues/2) - Fix match pattern for layout for inscript - Fix match pattern for rank for inscript2 --- .gitignore | 1 + ibus-m17n.spec | 6 +++--- sources | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 89a40c4..eb755ce 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.32.tar.gz /ibus-m17n-1.4.33.tar.gz /ibus-m17n-1.4.34.tar.gz +/ibus-m17n-1.4.35.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index cdfa35d..ac53dca 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.34 +Version: 1.4.35 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -38,14 +38,14 @@ the input table maps from m17n-db. %find_lang %{name} %check -appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdata.xml +appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.metainfo.xml desktop-file-validate ${RPM_BUILD_ROOT}%{_datadir}/applications/ibus-setup-m17n.desktop make check %files -f %{name}.lang %doc AUTHORS README %license COPYING -%{_datadir}/metainfo/m17n.appdata.xml +%{_datadir}/metainfo/org.freedesktop.ibus.engine.m17n.metainfo.xml %{_datadir}/ibus-m17n %{_datadir}/icons/hicolor/16x16/apps/ibus-m17n.png %{_datadir}/icons/hicolor/22x22/apps/ibus-m17n.png diff --git a/sources b/sources index 9fd2f7d..e8c6997 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.34.tar.gz) = c0ed3eef79acbff622640c5ac58a5e91be5012a049a1ee21d2bcfe393b1ed8e15d4a903cf769230385de2febeccb6cc7a0945ade26a2588d1cc1f8373224fac9 +SHA512 (ibus-m17n-1.4.35.tar.gz) = e7202d23029650195d62fb5e1057952faab8c8903762b02b91e49d28933c6c3018f6e95e8ceb3bd540107168670c2301c9fa424502f41b53989302b253f31bd0 From 5926dd4431a129bf70444fca366ac97bc009b31b Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 7 Apr 2025 11:07:50 +0200 Subject: [PATCH 38/40] Update to 1.4.36 - Translation update from Weblate (new: fi 100%, kab 100%) --- .gitignore | 1 + ibus-m17n.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eb755ce..97ff6ec 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.33.tar.gz /ibus-m17n-1.4.34.tar.gz /ibus-m17n-1.4.35.tar.gz +/ibus-m17n-1.4.36.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index ac53dca..b4cedd6 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.35 +Version: 1.4.36 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later diff --git a/sources b/sources index e8c6997..858c5e3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.35.tar.gz) = e7202d23029650195d62fb5e1057952faab8c8903762b02b91e49d28933c6c3018f6e95e8ceb3bd540107168670c2301c9fa424502f41b53989302b253f31bd0 +SHA512 (ibus-m17n-1.4.36.tar.gz) = 6c839500458ce93d43ed36c30f1b38546cf70440ad246befb835d05b7bbaf90519a23586dc3bebe0c95961e034d181ec5acd25091a8de723c056c159b53e76e5 From 015cd168894918586593ddcba14cde0fbd6c161b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 17:30:42 +0000 Subject: [PATCH 39/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 643fb84d202a3e12e8bea15da4399d7365e39bb3 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Wed, 24 Dec 2025 01:46:49 +0100 Subject: [PATCH 40/40] Update to 1.4.37 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Port UI to GTK4 (Resolves: github-issue#99). Configure option for Gtk4 added: “--with-gtk=2.0|3.0|4.0|no” (default: 4.0) - Translation update from Weblate (cs 100%, de 100%, el 100%, es 100%, new: fi 100%, fr 100%, ja 100%, ka 100%, kab 100%, lt 100%, pt_BR 100%, ro 96%, ru 100%, sv 100%, tr 100%, uk 100%, zh_CN 100%, zh_TW 28% --- .gitignore | 1 + ibus-m17n.spec | 6 +++--- sources | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 97ff6ec..f8ee366 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.34.tar.gz /ibus-m17n-1.4.35.tar.gz /ibus-m17n-1.4.36.tar.gz +/ibus-m17n-1.4.37.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index b4cedd6..01f7545 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.36 +Version: 1.4.37 Release: %autorelease Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -11,7 +11,7 @@ Source0: https://github.com/ibus/%{name}/archive/%{version}/%{name}-%{version BuildRequires: gettext-devel >= 0.19 BuildRequires: libtool BuildRequires: m17n-lib-devel -BuildRequires: gtk3-devel +BuildRequires: gtk4-devel BuildRequires: ibus-devel >= %{require_ibus_version} BuildRequires: desktop-file-utils BuildRequires: libappstream-glib @@ -28,7 +28,7 @@ the input table maps from m17n-db. %setup -q %build -%configure --disable-static --with-gtk=3.0 +%configure --disable-static --with-gtk=4.0 # make -C po update-gmo %{make_build} diff --git a/sources b/sources index 858c5e3..c57da11 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.36.tar.gz) = 6c839500458ce93d43ed36c30f1b38546cf70440ad246befb835d05b7bbaf90519a23586dc3bebe0c95961e034d181ec5acd25091a8de723c056c159b53e76e5 +SHA512 (ibus-m17n-1.4.37.tar.gz) = fde658bf6be122345da3ea7efbf331dec47092a241ffd39a4d8c9dab514ebb7d1e48a8c391788752133f5b56fcf20f5e9424859cb926662929289cc3a46b7479