Blame SPECS/ibus-table.spec

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