tagoh / rpms / anthy

Forked from rpms/anthy 4 years ago
Clone
5ddcb26
%define	use_utf8_dict	1
5ddcb26
%define	pkg		anthy
5ddcb26
693aa3b
Name:		anthy
757d3e0
Version:	9100h
17a3c91
Release:	12%{?dist}
d2fa715
# The entire source code is LGPLv2+ and dictionaries is GPLv2.
d2fa715
License:	LGPLv2+ and GPLv2
693aa3b
URL:		http://sourceforge.jp/projects/anthy/
80d841f
Buildroot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
17a3c91
BuildRequires:	emacs
c575c66
%if 0%{?rhel} == 0
5378fe0
BuildRequires:	xemacs
c575c66
%endif
693aa3b
96ee9a3
Source0:	http://osdn.dl.sourceforge.jp/anthy/37536/anthy-%{version}.tar.gz
693aa3b
Source1:	anthy-init.el
7fc11f4
Patch0:		anthy-fix-typo-in-dict.patch
17a3c91
Patch1:		anthy-fix-typo-in-dict-name.patch
17a3c91
Patch10:	anthy-corpus.patch
693aa3b
693aa3b
Summary:	Japanese character set input library
4b8dd63
Group:		System Environment/Libraries
4b8dd63
Obsoletes:	anthy-libs
c21eea9
Provides:	anthy-libs = %{version}
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
693aa3b
%package	devel
693aa3b
Summary:	Header files and library for developing programs which uses Anthy
693aa3b
Group:		Development/Libraries
4b8dd63
Requires:	anthy = %{version}-%{release}
02f1661
Requires:	pkgconfig
693aa3b
%description	devel
693aa3b
The anthy-devel package contains the development files which is needed to build
693aa3b
the programs which uses Anthy.
693aa3b
5ddcb26
%package -n	emacs-%{pkg}
5ddcb26
Summary:	Compiled elisp files to run Anthy under GNU Emacs
693aa3b
Group:		System Environment/Libraries
17a3c91
Requires:	emacs(bin) >= %{_emacs_version}
693aa3b
Requires:	anthy = %{version}-%{release}
5ddcb26
Obsoletes:	anthy-el < 9100g-1
5ddcb26
Provides:	anthy-el = %{version}-%{release}
5ddcb26
5ddcb26
%description -n	emacs-%{pkg}
5ddcb26
This package contains the byte compiled elisp packages to run Anthy with GNU
5ddcb26
Emacs.
5ddcb26
5ddcb26
%package -n	emacs-%{pkg}-el
5ddcb26
Summary:	Elisp source files for Anthy under GNU Emacs
5ddcb26
Group:		System Environment/Libraries
5ddcb26
Requires:	emacs-%{pkg} = %{version}-%{release}
5ddcb26
5ddcb26
%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
5ddcb26
%package -n	xemacs-%{pkg}
5ddcb26
Summary:	Compiled elisp files to run Anthy under XEmacs
f2b2021
Group:		System Environment/Libraries
17a3c91
Requires:	xemacs(bin) >= %{_xemacs_version}
f2b2021
Requires:	anthy = %{version}-%{release}
5ddcb26
Obsoletes:	anthy-el-xemacs < 9100g-1
5ddcb26
Provides:	anthy-el-xemacs = %{version}-%{release}
5ddcb26
5ddcb26
%description -n	xemacs-%{pkg}
5ddcb26
This package contains the byte compiled elisp packages to use Anthy with
5ddcb26
XEmacs.
5ddcb26
5ddcb26
%package -n	xemacs-%{pkg}-el
5ddcb26
Summary:	Elisp source files for Anthy under XEmacs
5ddcb26
Group:		System Environment/Libraries
5ddcb26
Requires:	xemacs-%{pkg} = %{version}-%{release}
5ddcb26
5ddcb26
%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
17a3c91
%patch1 -p1 -b .1-typo-name
17a3c91
%patch10 -p1 -b .10-corpus
693aa3b
5ddcb26
%if	%{use_utf8_dict}
5ddcb26
function normalize_extra_dict() {
5ddcb26
	sed -e 's/^\([^ 	]*\)t[ 	]*\(#[A-Z0-9\*]*\)[ 	]*\([^ 	]*\)$/\1 \2 \3/g' $1 > $1.norm
5ddcb26
}
5ddcb26
function dict_conv() {
5ddcb26
	iconv -f euc-jp -t utf-8 $1 > $1.utf8
5ddcb26
}
5ddcb26
function gen_dict_args() {
5ddcb26
	if ! test -f $RPM_BUILD_DIR/%{name}-%{version}/mkworddic/dict.args.in-orig; then
5ddcb26
		cp -a $RPM_BUILD_DIR/%{name}-%{version}/mkworddic/dict.args.in{,-orig}
5ddcb26
	fi
17a3c91
	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
17a3c91
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
(
5ddcb26
	cd alt-cannadic
5ddcb26
	for i in gcanna.ctd gcannaf.ctd gtankan.ctd; do
5ddcb26
		dict_conv $i
5ddcb26
	done
5ddcb26
	cd extra
5ddcb26
	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
5ddcb26
		normalize_extra_dict $i
5ddcb26
	done
5ddcb26
);(
5ddcb26
	cd mkworddic
2f0ecc4
	for i in adjust.t compound.t extra.t udict zipcode.t; do
5ddcb26
		dict_conv $i
5ddcb26
	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}
3e037e5
#LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params0
3e037e5
#LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params
3e037e5
#LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2
3e037e5
#LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2
3e037e5
#LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2
693aa3b
693aa3b
%install
693aa3b
rm -rf $RPM_BUILD_ROOT
693aa3b
19a610d
make install DESTDIR=$RPM_BUILD_ROOT
693aa3b
e0c6413
# remove unnecessary files
5ddcb26
rm -rf $RPM_BUILD_ROOT%{_libdir}/lib*.{la,a}
e0c6413
5ddcb26
## for emacs-anthy
17a3c91
%__mkdir_p $RPM_BUILD_ROOT%{_emacs_sitestartdir}
17a3c91
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}
693aa3b
c575c66
%if 0%{?rhel} == 0
5ddcb26
## for xemacs-anthy
17a3c91
%__mkdir_p $RPM_BUILD_ROOT%{_xemacs_sitestartdir}
17a3c91
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_xemacs_sitestartdir}
f2b2021
pushd $RPM_BUILD_DIR/%{name}-%{version}/src-util
f2b2021
make clean
17a3c91
make EMACS=xemacs lispdir="%{_xemacs_sitelispdir}/%{pkg}"
17a3c91
make install-lispLISP DESTDIR=$RPM_BUILD_ROOT EMACS=xemacs lispdir="%{_xemacs_sitelispdir}/%{pkg}"
f2b2021
popd
c575c66
%endif
693aa3b
693aa3b
%clean
693aa3b
rm -rf $RPM_BUILD_ROOT
693aa3b
bcdd690
%post -p /sbin/ldconfig
bcdd690
bcdd690
%postun -p /sbin/ldconfig
bcdd690
693aa3b
%files
5ddcb26
%defattr (-, root, root, -)
f3983af
%doc AUTHORS COPYING ChangeLog DIARY NEWS README
693aa3b
%{_bindir}/*
693aa3b
%{_sysconfdir}/*
693aa3b
%{_libdir}/lib*.so.*
4b8dd63
%{_datadir}/anthy/
693aa3b
693aa3b
%files devel
5ddcb26
%defattr (-, root, root, -)
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}
5ddcb26
%defattr(-, root, root, -)
f3983af
%doc doc/ELISP
17a3c91
%{_emacs_sitelispdir}/%{pkg}/*.elc
17a3c91
%{_emacs_sitestartdir}/*.el
17a3c91
%dir %{_emacs_sitelispdir}/%{pkg}
693aa3b
5ddcb26
%files -n emacs-%{pkg}-el
5ddcb26
%defattr(-, root, root, -)
17a3c91
%{_emacs_sitelispdir}/%{pkg}/*.el
5ddcb26
c575c66
%if 0%{?rhel} == 0
5ddcb26
%files -n xemacs-%{pkg}
5ddcb26
%defattr(-, root, root, -)
f3983af
%doc doc/ELISP
17a3c91
%{_xemacs_sitelispdir}/%{pkg}/*.elc
17a3c91
%{_xemacs_sitestartdir}/*.el
17a3c91
%dir %{_xemacs_sitelispdir}/%{pkg}
5ddcb26
5ddcb26
%files -n xemacs-%{pkg}-el
5ddcb26
%defattr(-, root, root, -)
17a3c91
%{_xemacs_sitelispdir}/%{pkg}/*.el
c575c66
%endif
693aa3b
693aa3b
%changelog
17a3c91
* Mon May 10 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-12
17a3c91
- Fix a typo in g_fname.t. (#584614)
17a3c91
17a3c91
* Mon Mar 15 2010 Akira TAGOH <tagoh@redhat.com> - 9100h-11
17a3c91
- enable UTF-8 dictionaries really.
17a3c91
17a3c91
* Sun Mar 14 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com>
17a3c91
- Update spec file to comply with Emacs add-on packaging guidelines (#573449)
17a3c91
96ee9a3
* Mon Dec 21 2009 Akira TAGOH <tagoh@redhat.com> - 9100h-10
96ee9a3
- Fix more typos in dictionary. (#548078)
96ee9a3
- correct the source URL.
96ee9a3
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