ibus-table/ibus-table.spec

219 lines
7.4 KiB
RPMSpec
Raw Normal View History

2008-08-24 22:35:16 +00:00
Name: ibus-table
Version: 1.2.0.20100111
2010-01-29 07:33:05 +00:00
Release: 3%{?dist}
2008-08-24 22:35:16 +00:00
Summary: The Table engine for IBus platform
License: LGPLv2+
2008-08-24 22:35:16 +00:00
Group: System Environment/Libraries
URL: http://code.google.com/p/ibus/
Source0: http://cloud.github.com/downloads/kaio/ibus-table/%{name}-%{version}.tar.gz
#Patch0: ibus-table-1.2.0.20090912-1.disable_speedmeter.patch
2010-01-06 02:22:27 +00:00
Patch1: ibus-table-1.2.0.20090904-2.equalsign.patch
Requires: ibus > 1.2.0
BuildRequires: ibus-devel > 1.2.0
2008-08-24 22:35:16 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
The Table engine for IBus platform.
2009-09-21 02:28:02 +00:00
2010-01-29 07:33:05 +00:00
%package -n %{name}-devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}, pkgconfig
%description -n %{name}-devel
Headers and other files needed to develop applications using the %{name} library.
2008-08-24 22:35:16 +00:00
%prep
%setup -q
#%patch0 -p1 -b .1-disable_speedmeter
2010-01-06 02:22:27 +00:00
%patch1 -p1 -b .2-equalsign
2008-08-24 22:35:16 +00:00
%build
%configure --disable-static \
--prefix=%{_prefix} \
--enable-additional
2009-08-04 04:34:29 +00:00
%__make %{?_smp_mflags}
2008-08-24 22:35:16 +00:00
%install
2009-08-04 04:34:29 +00:00
%__rm -rf $RPM_BUILD_ROOT
%__make DESTDIR=${RPM_BUILD_ROOT} NO_INDEX=true install pkgconfigdir=%{_datadir}/pkgconfig
### temp keep additional tables until ibus-table-{code,latin} are ready in repo
#for file in tables/compose.db tables/latex.db icons/compose.svg icons/latex.svg
#do
# %__rm ${RPM_BUILD_ROOT}%{_datadir}/ibus-table/$file
#done
###
2008-08-24 22:35:16 +00:00
%find_lang %{name}
%clean
%__rm -rf $RPM_BUILD_ROOT
2008-08-24 22:35:16 +00:00
2010-01-29 07:33:05 +00:00
%post -p /sbin/ldconfig
### temp keep additional tables until ibus-table-{code,latin} are ready in repo
ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/compose.db
ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/latex.db
###
2009-09-21 02:28:02 +00:00
2010-01-29 07:33:05 +00:00
%postun -p /sbin/ldconfig
2008-08-24 22:35:16 +00:00
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING README
%dir %{_datadir}/%{name}
%dir %{_datadir}/%{name}/engine
%dir %{_datadir}/%{name}/tables
%dir %{_datadir}/%{name}/icons
%dir %{_datadir}/%{name}/data
%{_datadir}/ibus/component/table.xml
%{_datadir}/%{name}/icons/%{name}.svg
%{_datadir}/%{name}/icons/full-letter.svg
%{_datadir}/%{name}/icons/full-punct.svg
%{_datadir}/%{name}/icons/half-letter.svg
%{_datadir}/%{name}/icons/half-punct.svg
%{_datadir}/%{name}/icons/onechar.svg
%{_datadir}/%{name}/icons/phrase.svg
%{_datadir}/%{name}/icons/py-mode.svg
%{_datadir}/%{name}/icons/tab-mode.svg
%{_datadir}/%{name}/icons/chinese.svg
%{_datadir}/%{name}/icons/acommit.svg
%{_datadir}/%{name}/icons/english.svg
%{_datadir}/%{name}/icons/ncommit.svg
2009-08-03 07:14:29 +00:00
%{_datadir}/%{name}/icons/cb-mode.svg
%{_datadir}/%{name}/icons/sc-mode.svg
%{_datadir}/%{name}/icons/scb-mode.svg
%{_datadir}/%{name}/icons/tc-mode.svg
%{_datadir}/%{name}/icons/tcb-mode.svg
%{_datadir}/%{name}/data/pinyin_table.txt.bz2
%{_datadir}/%{name}/engine/factory.py
%{_datadir}/%{name}/engine/factory.pyc
%{_datadir}/%{name}/engine/factory.pyo
%{_datadir}/%{name}/engine/main.py
%{_datadir}/%{name}/engine/main.pyc
%{_datadir}/%{name}/engine/main.pyo
%{_datadir}/%{name}/engine/tabcreatedb.py
%{_datadir}/%{name}/engine/tabcreatedb.pyc
%{_datadir}/%{name}/engine/tabcreatedb.pyo
%{_datadir}/%{name}/engine/tabdict.py
%{_datadir}/%{name}/engine/tabdict.pyc
%{_datadir}/%{name}/engine/tabdict.pyo
%{_datadir}/%{name}/engine/table.py
%{_datadir}/%{name}/engine/table.pyc
%{_datadir}/%{name}/engine/table.pyo
%{_datadir}/%{name}/engine/tabsqlitedb.py
%{_datadir}/%{name}/engine/tabsqlitedb.pyc
%{_datadir}/%{name}/engine/tabsqlitedb.pyo
2009-08-03 07:14:29 +00:00
%{_bindir}/%{name}-createdb
%{_libexecdir}/ibus-engine-table
### temp keep additional tables until ibus-table-{code,latin} are ready in repo
2010-01-29 02:14:58 +00:00
%{_datadir}/%{name}/tables/template.txt
%{_datadir}/%{name}/tables/compose.db
%{_datadir}/%{name}/tables/latex.db
%{_datadir}/%{name}/icons/compose.svg
%{_datadir}/%{name}ibus-table/icons/latex.svg
###
2008-08-29 09:10:13 +00:00
2010-01-29 07:33:05 +00:00
%files devel
%defattr(-, root, root, -)
%{_datadir}/pkgconfig/%{name}.pc
2008-08-24 22:35:16 +00:00
%changelog
2010-01-29 07:33:05 +00:00
* Fri Jan 29 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-3.fc13
- Split .pc to -devel subpackage.
* Thu Jan 14 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-2.fc13
- Temporary keep files of additional available in ibus-table until
ibus-table-{code,latin} packages are ready in repository.
* Mon Jan 11 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20100111-1.fc13
- Updated source from upstream.
- Migreate tables from ibus-table-additional to ibus-table-latin and ibus-table-code.
2010-01-06 02:22:27 +00:00
* Wed Jan 06 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-3.fc13
- Apply parsing equal sign patch.
2009-11-11 02:31:55 +00:00
* Wed Nov 11 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-2.fc13
- Fix crashing caused by speedmeter.
2009-09-21 02:28:02 +00:00
* Fri Sep 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-1.fc12
- Upgraded to upstream source.
* Fri Sep 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090904-1.fc12
- Updated source with additional tables separated.
2009-09-03 01:38:53 +00:00
* Thu Sep 03 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090902-2.fc12
- Rebuilt.
2009-09-02 07:29:20 +00:00
* Wed Sep 02 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090902-1.fc12
- Updated source.
2009-08-04 01:35:52 +00:00
* Tue Aug 04 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090804-1.fc12
- Cleaned up unused dcommit contents.
2009-08-03 07:14:29 +00:00
* Tue Aug 03 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090803-1.fc12
- Updated to upstream.
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0.20090625-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-07-01 06:40:10 +00:00
* Wed Jul 01 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090625-2.fc12
- Rebuilt.
* Wed Jul 01 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090625-1.fc12
- Updated source from upstream, which released for IBus 1.2 and so on.
* Wed May 27 2009 Caius 'kaio' Chance <cchance@redhat.com> - 1.1.0.20090527-1.fc12
- Updated source from upstream, which with candidate order fix.
2009-03-16 05:14:52 +00:00
* Mon Mar 16 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090316-1.fc11
- Resolves: rhbz#490396
- Updated source tarball.
- Disabled speedmeter until config option is implemented.
* Fri Mar 6 2009 Jens Petersen <petersen@redhat.com> - 1.1.0.20090220-5
- make pkgconfig noarch with ibus-table-pkgconfig-noarch.patch
- fix license field: actually LGPL
- drop gettext-devel BR
- require ibus > 1.1.0
2009-03-04 04:40:59 +00:00
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-4.fc11
- Rebuilt.
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-3.fc11
- Rebuilt.
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-2.fc11
- Rebuilt.
* Mon Mar 02 2009 Caius Chance <cchance@redhat.com> - 1.1.0.20090220-1.fc11
- Resolves: rhbz#484650
- Updated to latest upstream release.
- Splitted chinese input methods into modules.
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1.20081014-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Feb 04 2009 Caius Chance <cchance@redhat.com> - 0.1.1.20081014-4
- Resolves: rhbz#466430 rhbz#466844
- Added wildcard features.
- Added preedit clearance on refocus.
2008-12-01 15:00:31 +00:00
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.1.20081014-3
- Rebuild for Python 2.6
* Mon Dec 1 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081014-2
- Modified spec file to own all directories created by ibus-table.
2008-10-17 07:33:53 +00:00
* Fri Oct 14 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081014-1
- Update to 0.1.1.20081014.
* Mon Sep 01 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20080901-1
2008-09-01 02:59:52 +00:00
- Update to 0.1.1.20080901.
2008-08-29 09:10:13 +00:00
* Wed Aug 19 2008 Yu Yuwei <acevery@gmail.com> - 0.1.1.20080829-1
2008-08-24 22:35:16 +00:00
- The first version.