tagoh / rpms / anthy

Forked from rpms/anthy 4 years ago
Clone
2ea5fec
%define use_utf8_dict 1
2ea5fec
%define pkg  anthy
5ddcb26
2ea5fec
Name:  anthy
2ea5fec
Version: 9100h
4d47329
Release: 26%{?dist}
a96088f
# The entire source code is LGPLv2+ and dictionaries is GPLv2. the corpus data is under Public Domain.
a96088f
License: LGPLv2+ and GPLv2 and Public Domain
2ea5fec
URL:  http://sourceforge.jp/projects/anthy/
2ea5fec
BuildRequires: emacs
c575c66
%if 0%{?rhel} == 0
2ea5fec
BuildRequires: xemacs
c575c66
%endif
693aa3b
2ea5fec
Source0: http://osdn.dl.sourceforge.jp/anthy/37536/anthy-%{version}.tar.gz
9b3d818
Source1: %{name}-init.el
9b3d818
Patch0:  %{name}-fix-typo-in-dict.patch
9b3d818
Patch1:  %{name}-fix-typo-in-dict-name.patch
9b3d818
Patch10: %{name}-corpus.patch
9b3d818
Patch11: %{name}-fix-elisp.patch
a25ff2c
Patch12: %{name}-aarch64.patch
9b3d818
Patch13: %{name}-fix-segfault.patch
2ea5fec
2ea5fec
Summary: Japanese character set input library
2ea5fec
Group:  System Environment/Libraries
693aa3b
693aa3b
%description
693aa3b
Anthy provides the library to input Japanese on the applications, such as
693aa3b
X applications and emacs. and the user dictionaries and the users information
693aa3b
which is used for the conversion, is stored into their own home directory.
693aa3b
So Anthy is secure than other conversion server.
693aa3b
2ea5fec
%package devel
2ea5fec
Summary: Header files and library for developing programs which uses Anthy
2ea5fec
Group:  Development/Libraries
a25ff2c
Requires: %{name}%{?_isa} = %{version}-%{release}
2ea5fec
Requires: pkgconfig
2ea5fec
2ea5fec
%description devel
693aa3b
The anthy-devel package contains the development files which is needed to build
693aa3b
the programs which uses Anthy.
693aa3b
2ea5fec
%package -n emacs-%{pkg}
2ea5fec
Summary: Compiled elisp files to run Anthy under GNU Emacs
2ea5fec
Group:  System Environment/Libraries
2ea5fec
Requires: emacs(bin) >= %{_emacs_version}
f652797
Requires: %{name} = %{version}-%{release}
2ea5fec
BuildArch: noarch
5ddcb26
2ea5fec
%description -n emacs-%{pkg}
5ddcb26
This package contains the byte compiled elisp packages to run Anthy with GNU
5ddcb26
Emacs.
5ddcb26
2ea5fec
%package -n emacs-%{pkg}-el
2ea5fec
Summary: Elisp source files for Anthy under GNU Emacs
2ea5fec
Group:  System Environment/Libraries
2ea5fec
Requires: emacs-%{pkg} = %{version}-%{release}
2ea5fec
BuildArch: noarch
5ddcb26
2ea5fec
%description -n emacs-%{pkg}-el
5ddcb26
This package contains the elisp source files for Anthy under GNU Emacs. You
5ddcb26
do not need to install this package to run Anthy. Install the emacs-%{pkg}
5ddcb26
package to use Anthy with GNU Emacs.
693aa3b
c575c66
%if 0%{?rhel} == 0
2ea5fec
%package -n xemacs-%{pkg}
2ea5fec
Summary: Compiled elisp files to run Anthy under XEmacs
2ea5fec
Group:  System Environment/Libraries
2ea5fec
Requires: xemacs(bin) >= %{_xemacs_version}
f652797
Requires: %{name} = %{version}-%{release}
2ea5fec
BuildArch: noarch
2ea5fec
2ea5fec
%description -n xemacs-%{pkg}
5ddcb26
This package contains the byte compiled elisp packages to use Anthy with
5ddcb26
XEmacs.
5ddcb26
2ea5fec
%package -n xemacs-%{pkg}-el
2ea5fec
Summary: Elisp source files for Anthy under XEmacs
2ea5fec
Group:  System Environment/Libraries
2ea5fec
Requires: xemacs-%{pkg} = %{version}-%{release}
2ea5fec
BuildArch: noarch
5ddcb26
2ea5fec
%description -n xemacs-%{pkg}-el
5ddcb26
This package contains the elisp source files for Anthy under XEmacs. You do
5ddcb26
not need to install this package to run Anthy. Install the xemacs-%{pkg}
5ddcb26
package to use Anthy with XEmacs.
c575c66
%endif
5ddcb26
693aa3b
693aa3b
%prep
9ba5c40
%setup -q #-a 2
7fc11f4
%patch0 -p1 -b .0-typo
5a900ee
%patch1 -p1 -b .1-typo-name
5a900ee
%patch10 -p1 -b .10-corpus
c2b0367
%patch11 -p1 -b .11-elisp
a25ff2c
%patch12 -p1 -b .12-aarch64
9b3d818
%patch13 -p1 -b .13-segv
693aa3b
2ea5fec
# Convert to utf-8
2ea5fec
for file in ChangeLog doc/protocol.txt; do
2ea5fec
    iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
2ea5fec
    touch -r $file $file.new && \
2ea5fec
    mv $file.new $file
2ea5fec
done
2ea5fec
2ea5fec
%if %{use_utf8_dict}
5ddcb26
function normalize_extra_dict() {
2ea5fec
 sed -e 's/^\([^  ]*\)t[  ]*\(#[A-Z0-9\*]*\)[  ]*\([^  ]*\)$/\1 \2 \3/g' $1 > $1.norm
5ddcb26
}
5ddcb26
function dict_conv() {
2ea5fec
 iconv -f euc-jp -t utf-8 $1 > $1.utf8
5ddcb26
}
5ddcb26
function gen_dict_args() {
2ea5fec
 if ! test -f $RPM_BUILD_DIR/%{name}-%{version}/mkworddic/dict.args.in-orig; then
2ea5fec
  cp -a $RPM_BUILD_DIR/%{name}-%{version}/mkworddic/dict.args.in{,-orig}
2ea5fec
 fi
2ea5fec
 cat <<_EOF_ > $RPM_BUILD_DIR/%{name}-%{version}/mkworddic/dict.args.in
5ddcb26
# Generated by rpm script
5ddcb26
set_input_encoding utf8
5ddcb26
read @top_srcdir@/alt-cannadic/gcanna.ctd.utf8
5ddcb26
read @top_srcdir@/alt-cannadic/gcannaf.ctd.utf8
5ddcb26
read @top_srcdir@/alt-cannadic/gtankan.ctd.utf8
5ddcb26
read @top_srcdir@/alt-cannadic/extra/g-jiritu-34.t.norm
5ddcb26
read @top_srcdir@/alt-cannadic/extra/gc-fullname-34.t.norm
5ddcb26
read @top_srcdir@/alt-cannadic/extra/gt-tankanji_kanji-34.t.norm
5ddcb26
read @top_srcdir@/alt-cannadic/extra/gt-tankanji_hikanji-34.t.norm
5ddcb26
read @top_srcdir@/alt-cannadic/extra/gf-fuzoku-34.t.norm
5ddcb26
read @top_srcdir@/mkworddic/adjust.t.utf8
5ddcb26
read @top_srcdir@/mkworddic/compound.t.utf8
5ddcb26
read @top_srcdir@/mkworddic/extra.t.utf8
5ddcb26
read @top_srcdir@/alt-cannadic/g_fname.t
5ddcb26
#
5ddcb26
build_reverse_dict
5ddcb26
set_dict_encoding utf8
9f60704
read_uc @top_srcdir@/mkworddic/udict.utf8
5ddcb26
write anthy.wdic
5ddcb26
done
5ddcb26
_EOF_
5ddcb26
touch -r $RPM_BUILD_DIR/%{name}-%{version}/mkworddic/dict.args.in{-orig,}
5ddcb26
}
5ddcb26
5ddcb26
(
2ea5fec
 cd alt-cannadic
2ea5fec
 for i in gcanna.ctd gcannaf.ctd gtankan.ctd; do
2ea5fec
  dict_conv $i
2ea5fec
 done
2ea5fec
 cd extra
2ea5fec
 for i in g-jiritu-34.t gc-fullname-34.t gf-fuzoku-34.t gt-tankanji_hikanji-34.t gt-tankanji_kanji-34.t; do
2ea5fec
  normalize_extra_dict $i
2ea5fec
 done
5ddcb26
);(
2ea5fec
 cd mkworddic
2ea5fec
 for i in adjust.t compound.t extra.t udict zipcode.t; do
2ea5fec
  dict_conv $i
2ea5fec
 done
5ddcb26
)
5ddcb26
gen_dict_args
5ddcb26
%endif
5ddcb26
5ddcb26
693aa3b
%build
e0c6413
%configure --disable-static
5ddcb26
# fix rpath issue
5ddcb26
sed -ie 's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' libtool
91c666a
LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags}
693aa3b
693aa3b
%install
2ea5fec
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
693aa3b
e0c6413
# remove unnecessary files
5ddcb26
rm -rf $RPM_BUILD_ROOT%{_libdir}/lib*.{la,a}
e0c6413
5ddcb26
## for emacs-anthy
a25ff2c
mkdir -p $RPM_BUILD_ROOT%{_emacs_sitestartdir}
a1b00f5
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}
693aa3b
c575c66
%if 0%{?rhel} == 0
5ddcb26
## for xemacs-anthy
a25ff2c
mkdir -p $RPM_BUILD_ROOT%{_xemacs_sitestartdir}
a1b00f5
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_xemacs_sitestartdir}
f2b2021
pushd $RPM_BUILD_DIR/%{name}-%{version}/src-util
f2b2021
make clean
a1b00f5
make EMACS=xemacs lispdir="%{_xemacs_sitelispdir}/%{pkg}"
a25ff2c
make install-lispLISP DESTDIR=$RPM_BUILD_ROOT EMACS=xemacs lispdir="%{_xemacs_sitelispdir}/%{pkg}" INSTALL="install -p"
f2b2021
popd
c575c66
%endif
693aa3b
bcdd690
%post -p /sbin/ldconfig
bcdd690
bcdd690
%postun -p /sbin/ldconfig
bcdd690
693aa3b
%files
f3983af
%doc AUTHORS COPYING ChangeLog DIARY NEWS README
693aa3b
%{_bindir}/*
693aa3b
%{_sysconfdir}/*
693aa3b
%{_libdir}/lib*.so.*
4b8dd63
%{_datadir}/anthy/
693aa3b
693aa3b
%files devel
f3983af
%doc doc/DICLIB doc/DICUTIL doc/GLOSSARY doc/GRAMMAR doc/GUIDE.english doc/ILIB doc/LEARNING doc/LIB doc/MISC doc/POS doc/SPLITTER doc/TESTING doc/protocol.txt
693aa3b
%{_includedir}/*
693aa3b
%{_libdir}/lib*.so
02f1661
%{_libdir}/pkgconfig/*.pc
693aa3b
5ddcb26
%files -n emacs-%{pkg}
f3983af
%doc doc/ELISP
a1b00f5
%{_emacs_sitelispdir}/%{pkg}/*.elc
a1b00f5
%{_emacs_sitestartdir}/*.el
a1b00f5
%dir %{_emacs_sitelispdir}/%{pkg}
693aa3b
5ddcb26
%files -n emacs-%{pkg}-el
a1b00f5
%{_emacs_sitelispdir}/%{pkg}/*.el
5ddcb26
c575c66
%if 0%{?rhel} == 0
5ddcb26
%files -n xemacs-%{pkg}
f3983af
%doc doc/ELISP
a1b00f5
%{_xemacs_sitelispdir}/%{pkg}/*.elc
a1b00f5
%{_xemacs_sitestartdir}/*.el
a1b00f5
%dir %{_xemacs_sitelispdir}/%{pkg}
5ddcb26
5ddcb26
%files -n xemacs-%{pkg}-el
a1b00f5
%{_xemacs_sitelispdir}/%{pkg}/*.el
c575c66
%endif
693aa3b
693aa3b
%changelog
4d47329
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-26
4d47329
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4d47329
2b4451a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-25
2b4451a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2b4451a
bff1dcf
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-24
bff1dcf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
bff1dcf
9b3d818
* Mon Jun 17 2013 Akira TAGOH <tagoh@redhat.com> - 9100h-23
9b3d818
- Fix a segfault issue. (#973127)
9b3d818
a25ff2c
* Wed Mar 27 2013 Akira TAGOH <tagoh@redhat.com> - 9100h-22
a25ff2c
- Rebuilt for aarch64 support (#925002)
a25ff2c
c2b0367
* Fri Mar  8 2013 Akira TAGOH <tagoh@redhat.com> - 9100h-21
c2b0367
- Apply a patch from Mike FABIAN to get anthy.el working back on Emacs 24.3.1.
c2b0367
9fbf270
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-20
9fbf270
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
9fbf270
a96088f
* Tue Aug 14 2012 Akira TAGOH <tagoh@redhat.com> - 9100h-19
a96088f
- Update License tag.
a96088f
d726152
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-18
d726152
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d726152
f9fe40f
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-17
f9fe40f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f9fe40f
f5c7225
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-16
f5c7225
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f5c7225
f6cb65f
* Thu Oct  7 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-15
f6cb65f
- Fix a typo in the dictionary. (#629908)
f6cb65f
2ea5fec
* Mon Sep 27 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-14
2ea5fec
- spec file clean up (Parag AN, #552855)
2ea5fec
0a0d175
* Thu Jun 24 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-13
0a0d175
- build emacs-* packages as noarch.
0a0d175
5a900ee
* Mon May 10 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-12
5a900ee
- Fix a typo in g_fname.t. (#584614)
5a900ee
9f60704
* Mon Mar 15 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-11
9f60704
- enable UTF-8 dictionaries really.
9f60704
9f60704
* Sun Mar 14 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com>
a1b00f5
- Update spec file to comply with Emacs add-on packaging guidelines (#573449)
a1b00f5
a295343
* Mon Dec 21 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-10
a295343
- Fix more typos in dictionary. (#548078)
a295343
- correct the source URL.
a295343
c575c66
* Thu Sep  3 2009 Dennis Gregorovic <dgregor@redhat.com> - 9100h-9
c575c66
- Do not build against xemacs on RHEL
c575c66
9032dec
* Fri Aug 28 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-8
9032dec
- Fix more typos in dictionary. (#519769)
9032dec
3e037e5
* Thu Aug 20 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-7
3e037e5
- Stop updating corpus at the build time to avoid creating different dictionary
3e037e5
  among arch. (#816563)
3e037e5
f5d56f0
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-6
f5d56f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f5d56f0
7fc11f4
* Wed Jul  8 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-5
7fc11f4
- Update the corpus.
7fc11f4
- Fix typos in dictionary. (#509534)
7fc11f4
1255c33
* Mon May 11 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-4
02f1661
- Take off the ownership of %%{_libdir}/pkgconfig. (#499663)
02f1661
- Add R: pkgconfig to -devel.
02f1661
dece5c4
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9100h-2
dece5c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
dece5c4
757d3e0
* Tue Feb 10 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-1
757d3e0
- New upstream release.
757d3e0
2f0ecc4
* Fri Feb  6 2009 Akira TAGOH <tagoh@redhat.com> - 9100g-2
2f0ecc4
- Apply a patch reported upstream to fix dictionary's indexing.
2f0ecc4
5ddcb26
* Wed Feb  4 2009 Akira TAGOH <tagoh@redhat.com> - 9100g-1
5ddcb26
- New upstream release.
5ddcb26
- convert all words in dictionaries to UTF-8.
5ddcb26
- Rename anthy-el and anthy-el-xemacs to emacs-anthy{,-el} and xemacs-anthy{,-el}.
5ddcb26
- Fix RPATH issue.
5ddcb26
- Support words for JIS X 0213:2004 in dictionary. (#195437)
5ddcb26
76c6b7d
* Fri Nov 21 2008 Akira TAGOH <tagoh@redhat.com> - 9100e-4
76c6b7d
- Fix a source URL.
76c6b7d
a6f6535
* Fri Jun 27 2008 Akira TAGOH <tagoh@redhat.com> - 9100e-3
a6f6535
- Fix a segfault with some words containing vu. (#452779)
a6f6535
86c5b76
* Tue Feb 12 2008 Akira TAGOH <tagoh@redhat.com> - 9100e-2
86c5b76
- Rebuild for gcc-4.3.
86c5b76
e077eeb
* Tue Jan 29 2008 Akira TAGOH <tagoh@redhat.com> - 9100e-1
e077eeb
- New upstream release.
e077eeb
9ba5c40
* Mon Oct 29 2007 Akira TAGOH <tagoh@redhat.com> - 9100d-1
9ba5c40
- New upstream release.
9ba5c40
- anthy-enable-dict-gtankan.patch: removed. no need to be applied anymore.
9ba5c40
6d042bf
* Tue Sep 18 2007 Akira TAGOH <tagoh@redhat.com> - 9100b-1
6d042bf
- New upstream release.
6d042bf
dfa1f16
* Thu Aug 23 2007 Akira TAGOH <tagoh@redhat.com> - 9100-3
dfa1f16
- Rebuild
dfa1f16
d2fa715
* Wed Aug  8 2007 Akira TAGOH <tagoh@redhat.com> - 9100-2
d2fa715
- Update alt-cannadic to 070805.
d2fa715
- Use gtankan.ctd instead of tankanji.t.
d2fa715
- Update License tag.
d2fa715
de86ff6
* Tue Jul  3 2007 Akira TAGOH <tagoh@redhat.com> - 9100-1
de86ff6
- New upstream release.
de86ff6
de86ff6
* Wed Jun 13 2007 Akira TAGOH <tagoh@redhat.com> - 9011-1
de86ff6
- New upstream release
de86ff6
5378fe0
* Fri Jun  8 2007 Akira TAGOH <tagoh@redhat.com> - 9006-1
5378fe0
- New upstream release.
5378fe0
- Get back the anthy-el-xemacs package. (#243078)
5378fe0
c21eea9
* Fri Apr 27 2007 Akira TAGOH <tagoh@redhat.com> - 8706-2
c21eea9
- Fix wrong Provides line. (#237987)
c21eea9
6cca3eb
* Fri Mar  9 2007 Akira TAGOH <tagoh@redhat.com> - 8706-1
6cca3eb
- New upstream release.
6cca3eb
65e7055
* Mon Feb 26 2007 Akira TAGOH <tagoh@redhat.com> - 8622-1
65e7055
- New upstream release.
65e7055
916c374
* Mon Feb 19 2007 Akira TAGOH <tagoh@redhat.com> - 8616-1
916c374
- New upstream release.
916c374
f3983af
* Tue Feb 13 2007 Akira TAGOH <tagoh@redhat.com> - 8607-1
f3983af
- New upstream release.
f3983af
- correct doc installation. (#228311)
f3983af
e0c6413
* Tue Feb  6 2007 Akira TAGOH <tagoh@redhat.com> - 8604-1
e0c6413
- New upstream release.
e0c6413
- no longer needed to regenerate autotools files. (#224146)
e0c6413
- use original gcanna dict.
e0c6413
- build with --disable-static.
e0c6413
3c1a403
* Fri Aug 11 2006 Akira TAGOH <tagoh@redhat.com> - 7900-2
3c1a403
- anthy-7900-fix-undef-non-weak-symbol.patch: removed the unnecessary library
3c1a403
  chain.
3c1a403
3c1a403
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 7900-1.1
c3cc620
- rebuild
c3cc620
6dcf346
* Tue Jul 11 2006 Akira TAGOH <tagoh@redhat.com> - 7900-1
6dcf346
- New upstream release.
6dcf346
- anthy-7900-fix-undef-non-weak-symbol.patch: fixed the undefined non-weak
6dcf346
  symbols issue. (#198180)
6dcf346
- use dist tag.
6dcf346
ab78d48
* Mon Jun 26 2006 Akira TAGOH <tagoh@redhat.com> - 7824-1
ab78d48
- New upstream snapshot release.
ab78d48
f9a2057
* Tue Jun 20 2006 Akira TAGOH <tagoh@redhat.com> - 7818-1
f9a2057
- New upstream snapshot release.
f9a2057
19a610d
* Mon Jun 12 2006 Akira TAGOH <tagoh@redhat.com> - 7811-1
19a610d
- New upstream snapshot release.
19a610d
- use make install DESTDIR=... instead of %%makeinstall.
19a610d
5efd562
* Mon Jun  5 2006 Akira TAGOH <tagoh@redhat.com> - 7802-2
5efd562
- exclude ppc64 to make anthy-el package. right now emacs.ppc64 isn't provided
5efd562
  and buildsys became much stricter.
5efd562
02423a4
* Fri Jun  2 2006 Akira TAGOH <tagoh@redhat.com> - 7802-1
02423a4
- New upstream snapshot release.
02423a4
87ec408
* Wed May 17 2006 Akira TAGOH <tagoh@redhat.com> - 7716-1
87ec408
- New upstream snapshot release.
87ec408
017b75b
* Mon May 15 2006 Akira TAGOH <tagoh@redhat.com> - 7714-1
017b75b
- New upstream snapshot release.
017b75b
80d841f
* Thu May 11 2006 Akira TAGOH <tagoh@redhat.com> - 7710-1
80d841f
- New upstream snapshot release.
80d841f
80d841f
* Mon Apr 24 2006 Akira TAGOH <tagoh@redhat.com> - 7622-1
0d92c50
- New upstream snapshot release.
0d92c50
  - removed unnecessary patches:
0d92c50
    - anthy-2832.patch
0d92c50
    - anthy-2834.patch
0d92c50
80d841f
* Fri Mar 17 2006 Akira TAGOH <tagoh@redhat.com> - 7500-1
0c48627
- New upstream release.
0c48627
  - larning words works now. (#178764)
0c48627
- anthy-2832.patch: patch from upstream that fixes wrong order of candidate list.
0c48627
- anthy-2834.patch: patch from upstream that fixes unexpected word segment.
0c48627
- anthy-gcanna-nakaguro.patch: added a word to dictionary to convert nakaguro to slash.
0c48627
5b4dd8e
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 7100b-2.2.1
5b4dd8e
- bump again for double-long bug on ppc(64)
5b4dd8e
d925d2e
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 7100b-2.2
d925d2e
- rebuilt for new gcc4.1 snapshot and glibc changes
d925d2e
ea6f1ca
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
ea6f1ca
- rebuilt
ea6f1ca
bcdd690
* Thu Nov 10 2005 Akira TAGOH <tagoh@redhat.com> - 7100b-2
bcdd690
- run ldconfig in %%post and %%postun. (#172768)
bcdd690
d6c28ca
* Sat Nov  5 2005 Akira TAGOH <tagoh@redhat.com> - 7100b-1
d6c28ca
- New upstream release.
d6c28ca
7c1da41
* Mon Oct 31 2005 Akira TAGOH <tagoh@redhat.com> - 7029-1
7c1da41
- New upstream snapshot release.
7c1da41
64dee0b
* Fri Oct 14 2005 Akira TAGOH <tagoh@redhat.com> - 7015-1
64dee0b
- New upstream snapshot release.
64dee0b
0cb9b31
* Thu Oct 13 2005 Akira TAGOH <tagoh@redhat.com> - 7013-1
0cb9b31
- New upstream snapshot release.
0cb9b31
- removed the patches:
0cb9b31
  - anthy-add-placename-dict.patch: isn't needed anymore.
0cb9b31
  - anthy_base.t.diff: merged into upstream.
0cb9b31
  - zipcode-20050831.tar.bz2: merged into upstream.
0cb9b31
f2b2021
* Wed Sep 21 2005 Akira TAGOH <tagoh@redhat.com> - 6829-3
f2b2021
- applied some patches from anthy-dev mailing list to improve the dictionaries.
f2b2021
  - anthy_base.t.diff
f2b2021
  - anthy_gcanna.ctd.diff
f2b2021
  - anthy_gcanna.ctd_20050918.diff
f2b2021
  - anthy_gcanna.ctd_20050920.diff
f2b2021
- parameterize anthy-el-xemacs build.
f2b2021
aeddfea
* Thu Sep  1 2005 Akira TAGOH <tagoh@redhat.com> - 6829-2
aeddfea
- Added the place name dictionary.
aeddfea
8b3c80c
* Tue Aug 30 2005 Akira TAGOH <tagoh@redhat.com> - 6829-1
8b3c80c
- New upstream snapshot release.
8b3c80c
35beb88
* Wed Aug 24 2005 Akira TAGOH <tagoh@redhat.com> - 6801-1
35beb88
- updates to the snapshot version.
35beb88
cdd31cd
* Tue Aug  9 2005 Akira TAGOH <tagoh@redhat.com>
cdd31cd
- added dist tag in Release.
cdd31cd
ad43b6c
* Mon Aug  1 2005 Akira TAGOH <tagoh@redhat.com> - 6700b-2
ad43b6c
- added Provides: anthy-libs = %%{name}-%%{version}
ad43b6c
4b8dd63
* Fri Jul 29 2005 Akira TAGOH <tagoh@redhat.com> - 6700b-1
4b8dd63
- New upstream release.
4b8dd63
- Import into Core.
4b8dd63
- includes the libraries into anthy and added Obsoletes: anthy-libs.
4b8dd63
693aa3b
* Wed Jun 29 2005 Akira TAGOH <tagoh@redhat.com> - 6700-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Fri Apr  1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 6300d-3
693aa3b
- include anthy datadir in main package, and anthy site directory
693aa3b
  in -el and -el-xemacs packages
693aa3b
693aa3b
* Sun Mar 27 2005 Akira TAGOH <tagoh@redhat.com> - 6300d-2
693aa3b
- real updates (#152203)
693aa3b
693aa3b
* Sun Mar 20 2005 Akira TAGOH <tagoh@redhat.com> - 6300d-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Thu Feb 24 2005 Akira TAGOH <tagoh@redhat.com> - 6131-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Wed Jan 12 2005 Akira TAGOH <tagoh@redhat.com> - 6024-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Wed Sep 08 2004 Akira TAGOH <tagoh@redhat.com> 5704-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Mon Jul 05 2004 Akira TAGOH <tagoh@redhat.com> 5500-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Wed Jun 23 2004 Akira TAGOH <tagoh@redhat.com> 5414-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Tue Jun 08 2004 Akira TAGOH <tagoh@redhat.com> 5406-1
693aa3b
- New upstream release.
693aa3b
693aa3b
* Fri Jun 04 2004 Warren Togami <wtogami@redhat.com> 5330-3
693aa3b
- some spec cleanups
693aa3b
693aa3b
* Tue Jun 01 2004 Akira TAGOH <tagoh@redhat.com> 5330-2
693aa3b
- anthy-init.el: add some elisp to configure anthy.
693aa3b
693aa3b
* Tue Jun 01 2004 Akira TAGOH <tagoh@redhat.com> 5330-1
693aa3b
- Initial package.
693aa3b