b67caa
Name:       ibus-table
b67caa
Version:    1.9.18
56711a
Release:    6%{?dist}
b67caa
Summary:    The Table engine for IBus platform
b67caa
License:    LGPLv2+
b67caa
Group:      System Environment/Libraries
b67caa
URL:        http://code.google.com/p/ibus/
b67caa
Source0:    http://mfabian.fedorapeople.org/ibus-table/%{name}-%{version}.tar.gz
56711a
Patch0:     add-a-test-suite.patch
56711a
Patch1:     add-a-gui-test.patch
56711a
Patch2:     use-config-not-gsettings-for-gui-test.patch
56711a
Patch3:     fix-test-cases-for-old-ibus-table.patch
b67caa
Requires:       ibus > 1.3.0
b67caa
Requires:       python(abi) >= 3.3
b67caa
Requires:       %{__python3}
b67caa
BuildRequires:  ibus-devel > 1.3.0
b67caa
BuildRequires:  python3-devel
56711a
# for the unit tests
56711a
BuildRequires:  automake
56711a
BuildRequires:  autoconf
56711a
BuildRequires:  gettext-devel
b67caa
BuildRequires:  libappstream-glib
56711a
BuildRequires:  desktop-file-utils
56711a
BuildRequires:  python3-mock
56711a
BuildRequires:  python3-gobject
56711a
BuildRequires:  python3-gobject-base
56711a
BuildRequires:  dbus-x11
56711a
BuildRequires:  xorg-x11-server-Xvfb
56711a
BuildRequires:  ibus-table-chinese-wubi-jidian
56711a
BuildRequires:  ibus-table-chinese-cangjie
56711a
BuildRequires:  ibus-table-chinese-stroke5
b67caa
b67caa
Obsoletes:   ibus-table-additional < 1.2.0.20100111-5
b67caa
b67caa
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
b67caa
BuildArch:  noarch
b67caa
b67caa
%description
b67caa
The Table engine for IBus platform.
b67caa
b67caa
%package -n %{name}-devel
b67caa
Summary:        Development files for %{name}
b67caa
Group:          Development/Libraries
b67caa
Requires:       %{name} = %{version}-%{release}, pkgconfig
b67caa
b67caa
%description -n %{name}-devel
b67caa
Development files for %{name}.
b67caa
56711a
%package tests
56711a
Summary:        Tests for the %{name} package
56711a
Requires:       %{name} = %{version}-%{release}
56711a
56711a
%description tests
56711a
The %{name}-tests package contains tests that can be used to verify
56711a
the functionality of the installed %{name} package.
56711a
b67caa
%prep
b67caa
%setup -q
56711a
%patch0 -p1 -b .add-a-test-suite
56711a
%patch1 -p1 -b .add-a-gui-test
56711a
%patch2 -p1 -b .use-config-not-gsettings-for-gui-test
56711a
%patch3 -p1 -b .fix-test-cases-for-old-ibus-table
b67caa
b67caa
%build
b67caa
export PYTHON=%{__python3}
56711a
./autogen.sh --prefix=/usr
56711a
%configure --enable-installed-tests
b67caa
%__make %{?_smp_mflags}
b67caa
b67caa
%install
b67caa
%__rm -rf $RPM_BUILD_ROOT
b67caa
export PYTHON=%{__python3}
b67caa
%__make DESTDIR=${RPM_BUILD_ROOT} NO_INDEX=true install pkgconfigdir=%{_datadir}/pkgconfig
b67caa
b67caa
%find_lang %{name}
b67caa
b67caa
%check
b67caa
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
56711a
pushd engine
56711a
# run doctests
56711a
    python3 table.py
56711a
    python3 it_util.py
56711a
popd
56711a
export DISPLAY=:1
56711a
Xvfb $DISPLAY -screen 0 1024x768x16 &
56711a
ibus-daemon -drx # not needed on Fedora 32
56711a
# A window manager and and ibus-daemon are needed to run the GUI
56711a
# test tests/test_gtk.py, for example i3 can be used.
56711a
#
56711a
# To debug what is going on if there is a problem with the GUI test
56711a
# add BuildRequires: x11vnc and start a vnc server:
56711a
#
56711a
#     x11vnc -display $DISPLAY -unixsock /tmp/mysock -bg -nopw -listen localhost -xkb
56711a
#
56711a
# Then one can view what is going on outside of the chroot with vncviewer:
56711a
#
56711a
#     vncviewer /var/lib/mock/fedora-32-x86_64/root/tmp/mysock
56711a
#
56711a
# The GUI test will be skipped if XDG_SESSION_TYPE is not x11 or wayland.
56711a
#
56711a
#ibus-daemon -drx
56711a
#touch /tmp/i3config
56711a
#i3 -c /tmp/i3config &
56711a
#export XDG_SESSION_TYPE=x11
56711a
56711a
make check && rc=0 || rc=1
56711a
cat tests/*.log
56711a
if [ $rc != 0 ] ; then
56711a
    exit $rc
56711a
fi
b67caa
b67caa
%clean
b67caa
%__rm -rf $RPM_BUILD_ROOT
b67caa
b67caa
b67caa
%files -f %{name}.lang
b67caa
%defattr(-,root,root,-)
b67caa
%doc AUTHORS COPYING README
b67caa
%{_datadir}/%{name}
b67caa
%{_datadir}/metainfo/*.appdata.xml
b67caa
%{_datadir}/ibus/component/table.xml
b67caa
%{_datadir}/applications/ibus-setup-table.desktop
b67caa
%{_bindir}/%{name}-createdb
b67caa
%{_libexecdir}/ibus-engine-table
b67caa
%{_libexecdir}/ibus-setup-table
b67caa
%{_mandir}/man1/*
b67caa
b67caa
%files devel
b67caa
%defattr(-, root, root, -)
b67caa
%{_datadir}/pkgconfig/%{name}.pc
b67caa
56711a
%files tests
56711a
%dir %{_libexecdir}/installed-tests
56711a
%{_libexecdir}/installed-tests/%{name}
56711a
%dir %{_datadir}/installed-tests
56711a
%{_datadir}/installed-tests/%{name}
56711a
b67caa
%changelog
56711a
* Tue Feb 16 2021 Mike FABIAN <mfabian@redhat.com> - 1.9.18-6
56711a
- Fix a covscan error
56711a
- Related: rhbz#1929102
56711a
56711a
* Tue Feb 16 2021 Mike FABIAN <mfabian@redhat.com> - 1.9.18-5
56711a
- Bump release number to add the new subpackage ibus-table-tests
56711a
- Resolves: rhbz#1929102
56711a
56711a
* Sat Jul 25 2020 Mike FABIAN <mfabian@redhat.com> - 1.9.18-4
56711a
- Add gating tests to ibus-table
56711a
- Resolves: rhbz#1682163
56711a
b67caa
* Thu Sep 20 2018 Tomas Orsava <torsava@redhat.com> - 1.9.18-3
b67caa
- Require the Python interpreter directly instead of using the package name
b67caa
- Related: rhbz#1619153
b67caa
b67caa
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.18-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b67caa
b67caa
* Wed Aug 02 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.18-1
b67caa
- update to 1.9.18
b67caa
- validate ibus-table.appdata.xml in %%check
b67caa
- Update translations from zanata (pt_BR updated, es new)
b67caa
- Don't query user database if user define phrase and
b67caa
  dynamic adjust are disabled (thanks to heiher)
b67caa
- Enable hash map based cache for user database enabled
b67caa
  (thanks to heiher)
b67caa
- Import hash map based cache for table database (thanks to
b67caa
  heiher)
b67caa
- Install appstream metadata to /usr/share/metainfo/ (thanks
b67caa
  to jbicha)
b67caa
- Fix some appdata validation issues (thanks to jbicha)
b67caa
- Fix bug in Unihan_Variants.txt, 著 U+8457 is both
b67caa
  simplified *and* traditional Chinese (thanks to heiher)
b67caa
b67caa
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.17-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b67caa
b67caa
* Thu Jun 01 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.17-1
b67caa
- update to 1.9.17
b67caa
- Load .desktop file for ibus-setup-table correctly under Gnome Wayland
b67caa
- Set WM_CLASS of ibus-setup-table correctly
b67caa
b67caa
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.16-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b67caa
b67caa
* Tue Jan 17 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.16-1
b67caa
- update to 1.9.16
b67caa
- Avoid running initialization code of ibus_table_location.py
b67caa
  when using ibus-table-createdb.
b67caa
- Make it work on Python 3.6 (Unbreak sqlite on Python 3.6)
b67caa
  (Resolves: rhbz#1413580).
b67caa
b67caa
* Mon Jan 16 2017 Mike FABIAN <mfabian@redhat.com> - 1.9.15-1
b67caa
- update to 1.9.15
b67caa
- Update translations from zanata (ca, de, fr, uk updated)
b67caa
- Point to new home-page in the “About” tab.
b67caa
- Improve README
b67caa
b67caa
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.9.14-2
b67caa
- Rebuild for Python 3.6
b67caa
b67caa
* Wed Aug 24 2016 Mike FABIAN <mfabian@redhat.com> - 1.9.14-1
b67caa
- update to 1.9.14
b67caa
- Fix bug in Unihan_Variants.txt, 乾 U+4E7E is both simplified
b67caa
  and traditional Chinese (thanks to Heiher <r@hev.cc>)
b67caa
b67caa
* Tue Aug 23 2016 Mike FABIAN <mfabian@redhat.com> - 1.9.13-1
b67caa
- update to 1.9.13
b67caa
- When ignoring key release events, “False” should be returned, not “True”
b67caa
- Resolves: Resolves: rhbz#1369514
b67caa
- add ibus-table.appdata.xml and make it translatable
b67caa
- pull some new translations and updates from Zanata
b67caa
  (ca, fr, pt_BR, and uk are new, ja, zh_CN, and
b67caa
  zh_TW have updates).
b67caa
b67caa
* Wed Mar 16 2016 Mike FABIAN <mfabian@redhat.com> - 1.9.12-1
b67caa
- update to 1.9.12
b67caa
- Show the table code in the candidate list when pinyin mode is used
b67caa
- Resolves: rhbz#1318109
b67caa
b67caa
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.11-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b67caa
b67caa
* Fri Nov 27 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.11-1
b67caa
- update to 1.9.11
b67caa
- Fix bug in Unihan_Variants.txt, U+9762 and U+7CFB are both simplified *and* traditional Chinese
b67caa
- Resolves: rhbz#1285379
b67caa
- Add a few more IBus.Text.new_from_string() conversions to make it work on older systems
b67caa
b67caa
* Tue Nov 24 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.10-2
b67caa
- update to 1.9.10
b67caa
- Fix bug in Unihan_Variants.txt, U+8868 and U+6770 are both simplified *and* traditional Chinese
b67caa
- Resolves: rhbz#1284749
b67caa
b67caa
* Tue Nov 17 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.9-1
b67caa
- update to 1.9.9
b67caa
- Fix hotkey matching
b67caa
- Resolves: rhbz#1282683
b67caa
b67caa
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.8-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
b67caa
b67caa
* Wed Oct 21 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.8-1
b67caa
- update to 1.9.8
b67caa
- Get option 'lookuptableorientation' default value from database (Thanks to Heiher <r@hev.cc>).
b67caa
b67caa
* Wed Oct 14 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.7-1
b67caa
- update to 1.9.7
b67caa
- When matching hotkeys, ignore all modifiers not requested in the match
b67caa
- Fix U+8986 in Unihan_variants.txt, it is both simplified *and* traditional Chinese
b67caa
- Resolves: rhbz#1271036
b67caa
- Update Unihan_Variants.txt from "2014-05-09 Unicode 7.0.0" to "2015-04-30 Unicode 8.0.0"
b67caa
b67caa
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.6-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b67caa
b67caa
* Wed May 06 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.6-1
b67caa
- update to 1.9.6
b67caa
- Use os.path.expanduser('~') instead of os.getenv('HOME')
b67caa
- Resolves: rhbz#1218023
b67caa
b67caa
* Mon Apr 13 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.5-1
b67caa
- update to 1.9.5
b67caa
- Don’t strip space when parsing phrases from a source table
b67caa
- Resolves: rhbz#1211208
b67caa
b67caa
* Sat Mar 07 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.4-1
b67caa
- update to 1.9.4
b67caa
- Check existence of old log files before trying to delete them
b67caa
- Resolves: rhbz#1199673
b67caa
b67caa
* Mon Mar 02 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.3-1
b67caa
- update to 1.9.3
b67caa
- Try to get the English name of the table if run in locale C/POSIX
b67caa
- Resolves: rhbz#1197001
b67caa
b67caa
* Fri Jan 09 2015 Mike FABIAN <mfabian@redhat.com> - 1.9.2-1
b67caa
- update to 1.9.2
b67caa
- Use directories according to theXDG Base Directory Specification
b67caa
- Resolves: rhbz#1172524
b67caa
- When a leading invalid character is passed through, it needs
b67caa
  to be remembered in self._prev_char
b67caa
- Change class “KeyEvent” to store the keycode as well
b67caa
b67caa
* Tue Sep 30 2014 Mike FABIAN <mfabian@redhat.com> - 1.9.1-1
b67caa
- update to 1.9.1
b67caa
- Use proper fallback when reading the localized table name
b67caa
- Show pinyin mode as well in the input mode indicator
b67caa
b67caa
* Tue Sep 16 2014 Mike FABIAN <mfabian@redhat.com> - 1.9.0-1
b67caa
- update to 1.9.0
b67caa
- Redesign the property menus, use sub-menus instead of toggles
b67caa
b67caa
* Sun Sep 14 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.11-1
b67caa
- update to 1.8.11
b67caa
- fixes a Python backtrace when the dconf key
b67caa
  /desktop/ibus/engine/table/wubi-jidian86/onechar was not set
b67caa
* Thu Sep 04 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.10-1
b67caa
- update to 1.8.10
b67caa
- Disable auto_commit option for tables which do not have RULES
b67caa
- Resolves: rhbz#1135759
b67caa
- Disable hotkey to switch Chinese mode if database is not Chinese
b67caa
- Disable “onechar” (Phrase mode/Single char mode) option for non-CJK databases
b67caa
b67caa
* Tue Aug 26 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.9-1
b67caa
- update to 1.8.9
b67caa
- Move some options into a new tab “Details”
b67caa
- Ignore Shift+Space hotkey to switch fullwidth/halfwidth if the database is not for CJK
b67caa
- Resolves: rhbz#1133422
b67caa
- Pass IBus.KEY_KP_Enter to the application if the preedit is empty
b67caa
- Resolves: rhbz#1133424
b67caa
b67caa
* Thu Aug 14 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.8-1
b67caa
- update to 1.8.8
b67caa
- Show keyboard shortcuts also in the property menu entries
b67caa
- Remove “Hide Candidates/Display Candidates” from the properties menu
b67caa
- If the database is not CJK, set sensitivity to comboboxes
b67caa
  useful only for CJK to OFF
b67caa
- Disable properties related to fullwidth/halfwidth for non-CJK tables
b67caa
- Resolves: rhbz#1128912 - With the new "rusle" table in
b67caa
  ibus-table-cyrillic, typing space works strangely
b67caa
b67caa
* Mon Aug 11 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.7-1
b67caa
- update to 1.8.7
b67caa
- Use the “notify::text” signal instead of “activate” on GtkEntry widget.
b67caa
  This is to make changes in the text entry widgets in the setup tool apply
b67caa
  immediately.
b67caa
- Move the “Restore all defaults” button into the GtkButtonBox at the bottom
b67caa
- Update Unihan_Variants.txt from “2013-02-25 Unicode 6.3.0” to “2014-05-09 Unicode 7.0.0”
b67caa
b67caa
* Tue Jul 29 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.6-1
b67caa
- update to 1.8.6
b67caa
- Escape % and _ if they are not intended as wildcards
b67caa
- Resolves: rhbz#1123981
b67caa
b67caa
* Mon Jul 21 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.5-1
b67caa
- update to 1.8.5
b67caa
- Always write xml output in UTF-8 encoding, not in the encoding
b67caa
  of the current locale
b67caa
- Resolves: rhbz#1120919
b67caa
b67caa
* Mon Jul 07 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.4-1
b67caa
- update to 1.8.4
b67caa
- Tweak defaults for Chinese mode taken from the locale
b67caa
- Fix prompts for array30 table and don’t use prompts in pinyin mode
b67caa
- Make it possible to use select keys like F1, F2, F3 ...
b67caa
- For cangjie* and quick* tables: Use big5 order if the
b67caa
  freq from the table is the same
b67caa
b67caa
* Wed Jun 25 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.3-1
b67caa
- update to 1.8.3
b67caa
- Insert a special candidate for the wildcard character itself
b67caa
  if only a wildcard character has been typed
b67caa
- Make wildchard characters configurable
b67caa
- Resolves: rhbz#1110325 - Unable to input question marks in Wubi-jidian
b67caa
b67caa
* Mon Jun 09 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.2-1
b67caa
- update to 1.8.2
b67caa
- Better sorting of the lookup table in the mixed Chinese modes
b67caa
- Do not create useless indexes
b67caa
- Resolves: rhbz#1105465
b67caa
b67caa
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b67caa
b67caa
* Wed Jun 04 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.1-1
b67caa
- update to 1.8.1
b67caa
- Added support for wildcards (both in table and in pinyin mode)
b67caa
- Don’t show the prompt characters defined in the table in
b67caa
  pinyin mode in the auxiliary text
b67caa
b67caa
* Tue Jun 03 2014 Mike FABIAN <mfabian@redhat.com> - 1.8.0-1
b67caa
- update to 1.8.0
b67caa
- adapt tools/ibus-table-query tothe new database format
b67caa
b67caa
* Wed May 28 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140528-1
b67caa
- update to 1.5.0.20140528
b67caa
- Use Unicode code point as a last ditch sort key for the candidates
b67caa
- Fix bug in Unihan_Variants.txt, 同 is both simplified *and* traditional Chinese
b67caa
- Update Unihan_Variants.txt from “2011-08-08 Unicode 6.1.0” to “2013-02-25 Unicode 6.3.0” and regenerate engine/chinese_variants.py
b67caa
b67caa
* Tue May 27 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140527-1
b67caa
- update to 1.5.0.20140527
b67caa
- Put exact matches always at the top of the candidate list
b67caa
- Fix typo in the filtering for Chinese mode 3 (All characters with traditional Chinese first)
b67caa
- Support prompt characters (e.g. for cangjie and stroke5)
b67caa
b67caa
* Mon May 19 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140519-1
b67caa
- update to 1.5.0.20140519
b67caa
- rewrite major parts of ibus-table, fix many bugs.
b67caa
b67caa
* Wed Apr 16 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140416-1
b67caa
- Do not fail when the environment variable HOME is not set
b67caa
- Resolves: rhbz#1088138
b67caa
- some code cleanup
b67caa
b67caa
* Wed Apr 09 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140409-1
b67caa
- Make toggling pinyin mode with the right shift key work
b67caa
- Don’t try to colour system phrases and user phrases differently in pinyin mode
b67caa
- Resolves: rhbz#1084684
b67caa
- Don’t switch off pinyin mode in clear()
b67caa
- Make usage of engine name and dconf key consistent
b67caa
b67caa
* Wed Apr 02 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140402-1
b67caa
- Fix a regression caused by the Python3 port in tabcreatedb.py (This fixes the build of ibus-table-chinese)
b67caa
b67caa
* Wed Mar 12 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140312-2
b67caa
- fix yet another regression introduced by the Python3 port (problem occured when filtering Chinese characters, see rhbz#1072940 comment#18)
b67caa
- Resolves: rhbz#1072940
b67caa
b67caa
* Wed Mar 12 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140312-1
b67caa
- update to latest upstream
b67caa
- fix another regression introduced by the Python3 port (a spelling mistake in a variable name)
b67caa
- Resolves: rhbz#1072940
b67caa
b67caa
* Tue Mar 11 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140311-1
b67caa
- update to latest upstream
b67caa
- fix a regression introduced by the Python3 port
b67caa
- add a .desktop file and make the setup tool work with Gnome
b67caa
- make it possible to interrupt the setup tool with Control-C from the command line
b67caa
b67caa
* Thu Mar 06 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140306-1
b67caa
- update to latest upstream
b67caa
- Resolves: rhbz#1072940 - Left Shift stopped work for ibus-table-1.5.0.20140218-1.fc20.noarch
b67caa
- port from Python2 to Python3, require Python3 in this rpm now
b67caa
- fix directory for setup tool, setup tool should work now
b67caa
- add profiling support
b67caa
b67caa
* Tue Feb 18 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20140218-1
b67caa
- update to latest upstream
b67caa
- Resolves: rhbz#1061345 - ibus-table shows entered text in password fields
b67caa
- remove patches which are included upstream
b67caa
- remove old, unused patches
b67caa
b67caa
* Fri Jan 24 2014 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20130419-3
b67caa
- Resolves: rhbz#1051365 - suggestion: move ibus-table-createdb to a subpackage
b67caa
- When tabcreatedb.py is called without any options, print a usage message. Do not just show a cryptic backtrace.
b67caa
b67caa
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0.20130419-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b67caa
b67caa
* Fri Apr 19 2013 Mike FABIAN <mfabian@redhat.com> - 1.5.0.20130419-1
b67caa
- update to latest upstream
b67caa
- remove patches which are included upstream
b67caa
- Resolves: #948454 - Man page scan results for ibus-table
b67caa
b67caa
* Thu Feb 14 2013 Mike FABIAN <mfabian@redhat.com> - 1.5.0-2
b67caa
- Resolves: #911487 - Non-Chinese tables from the ibus-table-other package do not work
b67caa
- Add auto_select functionality to select the first phrase when typing.
b67caa
  Useful for Cyrillic transliteration
b67caa
- Update cmode property in chinese mode only
b67caa
- Fall back to auto_select = False if neither dconf nor the table
b67caa
  have a value for auto_select
b67caa
- Preedit needs to be updated on page-up and page-down
b67caa
b67caa
* Mon Jan 28 2013 Mike FABIAN <mfabian@redhat.com> - 1.5.0-1
b67caa
- update to latest upstream 1.5.0  from Caius ‘kaio’ Chance’s repository
b67caa
- add patches for better simplified/traditional Chinese detection
b67caa
- Resolves: #857967 - simplified/traditional Chinese detection in ibus-table does not work well
b67caa
b67caa
* Thu Jan 10 2013 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20130110-1
b67caa
- Resolves: #513901 ibus-table setup does not store config settings
b67caa
- update to latest upstream 1.4.99.20130110 from Caius ‘kaio’ Chance’s repository, 1.5.0 branch
b67caa
- When detecting the Chinese mode from the environment, also check LC_ALL
b67caa
- Fix typo in self._chinese_mode variable (The typo broke the SC/TC property)
b67caa
- Make cursor in lookup table always visible (became invisible after the port to GObjectIntrospection)
b67caa
- apply changes in values of dconf keys immediately
b67caa
b67caa
* Tue Jan 08 2013 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20130108-1
b67caa
- update to latest upstream 1.4.99.20130108 from Caius ‘kaio’ Chance’s repository, 1.5.0 branch
b67caa
- includes port to GObjectIntrospection now
b67caa
b67caa
* Thu Jan 03 2013 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20130103-1
b67caa
- update to latest upstream 1.4.99.20130103 from Caius ‘kaio’ Chance’s repository, 1.5.0 branch
b67caa
b67caa
* Tue Nov 13 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20121113-1
b67caa
- update to latest upstream 1.4.99.20121113 from Caius ‘kaio’ Chance’s repository, using rel20121101 git tag
b67caa
- remove ibus-table-1.4.99.20120907-improve-chinese-category-check.patch (included upstream)
b67caa
- remove fix-ipa-x-sampa-table-and-phrases-containing-spaces.patch (included upstream)
b67caa
- Fix marking of translatable strings for gettext
b67caa
- update zh_??.po files
b67caa
- Add German translation
b67caa
- Do not fail if the ~/.ibus/byo-tables/ directory does not exist
b67caa
b67caa
* Thu Sep 13 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20120907-3
b67caa
- Resolves: #856903
b67caa
- Fix ipa-x-sampa table and phrases containing spaces in emoji-table
b67caa
  Currently there is a regular expression which filters out several
b67caa
  lines defining valid phrases. The emoji-table for example has phrases
b67caa
  containing spaces which are currently filtered out and the ipa-x-sampa
b67caa
  table has trailing comments which are filtered out as well.
b67caa
b67caa
* Tue Sep 11 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20120907-2
b67caa
- Resolves: #856320
b67caa
- Improve check whether a phrase is simplified or traditional Chinese
b67caa
  The improvement is to ignore all non-Han characters when
b67caa
  doing the check.
b67caa
  This is to avoid classifying a simplified Chinese string as
b67caa
  traditional just because it happens to include some non-Chinese
b67caa
  characters, for example box drawing characters, which cannot be
b67caa
  converted to gb2312 but happen to be convertible to big5hkscs.
b67caa
  This fixes the problem in the emoji-table input method that most
b67caa
  phrases cannot be input at all.
b67caa
b67caa
* Fri Sep 07 2012 Mike FABIAN <mfabian@redhat.com> - 1.4.99.20120907-1
b67caa
- Relates: #855250
b67caa
- see comment#1 in #855250
b67caa
- update to latest upstream 1.4.99.20120907 from Caius 'kaio' Chance's repository
b67caa
- remove ibus-table-1.3.9.20110827-add-some-keys-for-translit.patch (included upstream)
b67caa
- remove ibus-table-1.3.9.20110827-enable-non-ascii.patch (included upstream)
b67caa
b67caa
* Wed Sep 05 2012 Mike FABIAN <mfabian@redhat.com> - 1.3.9.20110827-4
b67caa
- Resolves: #845798
b67caa
- add ibus-table-1.3.9.20110827-add-some-keys-for-translit.patch (from Yuwei YU, upstream)
b67caa
- add ibus-table-1.3.9.20110827-enable-non-ascii.patch  (from Yuwei YU, upstream)
b67caa
- add ibus-table-1.3.9.20110827-uppercase-umlauts.patch to allow uppercase as well in translit
b67caa
b67caa
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.9.20110827-3
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b67caa
b67caa
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.9.20110827-2
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b67caa
b67caa
* Wed Aug 31 2011 Caius 'kaio' Chance - 1.3.9.20110827-1
b67caa
- Updated to upstream. 
b67caa
b67caa
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0.20100621-5
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b67caa
b67caa
* Fri Nov 19 2010 Ding-Yi Chen <dchen@redhat.com> - 1.3.0.20100621-4
b67caa
- Rebuild for ibus-1.4
b67caa
b67caa
* Wed Sep  1 2010 Jens Petersen <petersen@redhat.com> - 1.3.0.20100621-3
b67caa
- remove the redundant post and postun scripts (#625330)
b67caa
b67caa
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.0.20100621-2
b67caa
- recompiling .py files against Python 2.7 (rhbz#623320)
b67caa
b67caa
* Mon Jun 21 2010 Caius Chance <cchance@redhat.com> - 1.2.0.20100621-1
b67caa
- Updated from upstream which tarball was rebuilt with IBus 1.3.
b67caa
b67caa
* Wed Mar 10 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-7
b67caa
- Add template.txt in files.
b67caa
b67caa
* Wed Mar 10 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-6
b67caa
- Disable -additional.
b67caa
b67caa
* Wed Mar 10 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-5
b67caa
- Remove -additional for obsoletion by ibus-table-latin and ibus-table-code.
b67caa
b67caa
* Mon Feb 15 2010 Caius 'kaio' Chance <cchance at redhat.com> - 1.2.0.20100111-4.fc13
b67caa
- Fixed latex.svg location.
b67caa
b67caa
* Fri Jan 29 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-3.fc13
b67caa
- Split .pc to -devel subpackage.
b67caa
b67caa
* Thu Jan 14 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-2.fc13
b67caa
- Temporary keep files of additional available in ibus-table until 
b67caa
  ibus-table-{code,latin} packages are ready in repository.
b67caa
b67caa
* Mon Jan 11 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-1.fc13
b67caa
- Updated source from upstream.
b67caa
- Migreate tables from ibus-table-additional to ibus-table-latin and ibus-table-code.
b67caa
b67caa
* Wed Jan 06 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-3.fc13
b67caa
- Apply parsing equal sign patch.
b67caa
b67caa
* Wed Nov 11 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-2.fc13
b67caa
- Fix crashing caused by speedmeter.
b67caa
b67caa
* Fri Sep 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-1.fc12
b67caa
- Upgraded to upstream source.
b67caa
b67caa
* Fri Sep 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090904-1.fc12
b67caa
- Updated source with additional tables separated.
b67caa
b67caa
* Thu Sep 03 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090902-2.fc12
b67caa
- Rebuilt.
b67caa
b67caa
* Wed Sep 02 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090902-1.fc12
b67caa
- Updated source.
b67caa
b67caa
* Tue Aug 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090804-1.fc12
b67caa
- Cleaned up unused dcommit contents.
b67caa
b67caa
* Mon Aug 03 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090803-1.fc12
b67caa
- Updated to upstream.
b67caa
b67caa
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0.20090625-3
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b67caa
b67caa
* Wed Jul 01 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090625-2.fc12
b67caa
- Rebuilt.
b67caa
b67caa
* Wed Jul 01 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090625-1.fc12
b67caa
- Updated source from upstream, which released for IBus 1.2 and so on.
b67caa
b67caa
* Wed May 27 2009 Caius 'kaio' Chance <cchance@redhat.com> - 1.1.0.20090527-1.fc12
b67caa
- Updated source from upstream, which with candidate order fix.
b67caa
b67caa
* Mon Mar 16 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090316-1.fc11
b67caa
- Resolves: rhbz#490396
b67caa
- Updated source tarball.
b67caa
- Disabled speedmeter until config option is implemented.
b67caa
b67caa
* Fri Mar  6 2009 Jens Petersen <petersen@redhat.com> - 1.1.0.20090220-5
b67caa
- make pkgconfig noarch with ibus-table-pkgconfig-noarch.patch
b67caa
- fix license field: actually LGPL
b67caa
- drop gettext-devel BR
b67caa
- require ibus > 1.1.0
b67caa
b67caa
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-4.fc11
b67caa
- Rebuilt.
b67caa
b67caa
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-3.fc11
b67caa
- Rebuilt.
b67caa
b67caa
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-2.fc11
b67caa
- Rebuilt.
b67caa
b67caa
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-1.fc11
b67caa
- Resolves: rhbz#484650
b67caa
- Updated to latest upstream release.
b67caa
- Splitted chinese input methods into modules.
b67caa
b67caa
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1.20081014-5
b67caa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b67caa
b67caa
* Wed Feb 04 2009 Caius Chance <cchance@redhat.com> - 0.1.1.20081014-4
b67caa
- Resolves: rhbz#466430 rhbz#466844
b67caa
- Added wildcard features.
b67caa
- Added preedit clearance on refocus.
b67caa
b67caa
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.1.20081014-3
b67caa
- Rebuild for Python 2.6
b67caa
b67caa
* Mon Dec 1 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081014-2
b67caa
- Modified spec file to own all directories created by ibus-table.
b67caa
b67caa
* Tue Oct 14 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081014-1
b67caa
- Update to 0.1.1.20081014.
b67caa
b67caa
* Mon Sep 01 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20080901-1
b67caa
- Update to 0.1.1.20080901.
b67caa
b67caa
* Tue Aug 19 2008 Yu Yuwei <acevery@gmail.com> - 0.1.1.20080829-1
b67caa
- The first version.