757bf72
%define double_profiling_build 1
757bf72
ff7dd74
Name:      hunspell
ceb0d9a
Summary:   A spell checker and morphological analyzer library
73ecf2a
Version:   1.7.0
6821516
Release:   7%{?dist}
85ada8b
Source:    https://github.com/hunspell/hunspell/archive/v%{version}.tar.gz
85ada8b
URL:       https://github.com/hunspell/hunspell
d8ff5c8
License:   LGPLv2+ or GPLv2+ or MPLv1.1
06de43a
BuildRequires:  gcc-c++
2a9d287
BuildRequires: autoconf, automake, libtool, ncurses-devel, gettext
0240ac6
BuildRequires: perl-generators
926a65e
%ifarch %{ix86} x86_64
926a65e
BuildRequires: valgrind
926a65e
%endif
757bf72
%if %{double_profiling_build}
757bf72
BuildRequires: words
757bf72
%endif
31b3c60
BuildRequires: make
4064bbf
Requires:  hunspell-en-US
78c4daa
01fa8fb
Patch0: 0001-invalid-read-memory-access-624.patch
01fa8fb
78c4daa
%description
78c4daa
Hunspell is a spell checker and morphological analyzer library and program 
78c4daa
designed for languages with rich morphology and complex word compounding or 
78c4daa
character encoding. Hunspell interfaces: Ispell-like terminal interface using 
421a2c2
Curses library, Ispell pipe interface, LibreOffice UNO module.
78c4daa
78c4daa
%package devel
ff7dd74
Requires: hunspell = %{version}-%{release}, pkgconfig
78c4daa
Summary: Files for developing with hunspell
78c4daa
78c4daa
%description devel
78c4daa
Includes and definitions for developing with hunspell
78c4daa
78c4daa
%prep
c3a67c9
%setup -q
01fa8fb
%patch0 -p1 -b .CVE-2019-16707
78c4daa
78c4daa
%build
185800b
autoreconf -vfi
757bf72
configureflags="--disable-rpath --disable-static --with-ui --with-readline"
757bf72
757bf72
%define profilegenerate \
757bf72
    CFLAGS="${RPM_OPT_FLAGS} -fprofile-generate"\
757bf72
    CXXFLAGS="${RPM_OPT_FLAGS} -fprofile-generate"
757bf72
%define profileuse \
757bf72
    CFLAGS="${RPM_OPT_FLAGS} -fprofile-use"\
757bf72
    CXXFLAGS="${RPM_OPT_FLAGS} -fprofile-use"
757bf72
757bf72
%if !%{double_profiling_build}
757bf72
%configure $configureflags
113b75d
%make_build
757bf72
%else
757bf72
#Generate a word list to use for profiling, take half of it to ensure
757bf72
#that the original word list is then considered to contain correctly
757bf72
#and incorrectly spelled words
757bf72
head -n $((`cat /usr/share/dict/words | wc -l`/2)) /usr/share/dict/words |\
757bf72
    sed '/\//d'> words
757bf72
757bf72
#generate profiling
757bf72
%{profilegenerate} %configure $configureflags
113b75d
%make_build
757bf72
./src/tools/affixcompress words > /dev/null 2>&1
757bf72
./src/tools/hunspell -d words -l /usr/share/dict/words > /dev/null
757bf72
make check
757bf72
make distclean
757bf72
757bf72
#use profiling
757bf72
%{profileuse} %configure $configureflags
113b75d
%make_build
757bf72
%endif
113b75d
cd po && %make_build update-gmo && cd ..
78c4daa
004d1cf
%check
85ada8b
%ifarch %{ix86} x86_64
85ada8b
VALGRIND=memcheck make check
926a65e
make check
85ada8b
%endif
004d1cf
78c4daa
%install
78c4daa
rm -rf $RPM_BUILD_ROOT
113b75d
%make_install
5a46deb
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.a
78c4daa
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
78c4daa
mkdir $RPM_BUILD_ROOT/%{_datadir}/myspell
e626838
%find_lang %{name}
78c4daa
cc3ba50
%ldconfig_scriptlets
78c4daa
78c4daa
%files -f %{name}.lang
73ecf2a
%doc README COPYING COPYING.LESSER COPYING.MPL AUTHORS license.hunspell license.myspell THANKS
78c4daa
%{_libdir}/*.so.*
78c4daa
%{_datadir}/myspell
78c4daa
%{_bindir}/hunspell
78c4daa
%{_mandir}/man1/hunspell.1.gz
c1e0151
%lang(hu) %{_mandir}/hu/man1/hunspell.1.gz
78c4daa
78c4daa
%files devel
78c4daa
%{_includedir}/%{name}
78c4daa
%{_libdir}/*.so
0e5dbdb
%{_bindir}/affixcompress
0e5dbdb
%{_bindir}/makealias
78c4daa
%{_bindir}/munch
78c4daa
%{_bindir}/unmunch
b45e6ae
%{_bindir}/analyze
b45e6ae
%{_bindir}/chmorph
e7807b4
%{_bindir}/hzip
e7807b4
%{_bindir}/hunzip
3cef01d
%{_bindir}/ispellaff2myspell
ae834a4
%{_bindir}/wordlist2hunspell
5ac9add
%{_bindir}/wordforms
0afe8cd
%{_libdir}/pkgconfig/hunspell.pc
35f1855
%{_mandir}/man1/hunzip.1.gz
35f1855
%{_mandir}/man1/hzip.1.gz
35f1855
%{_mandir}/man3/hunspell.3.gz
0f0d060
%{_mandir}/man5/hunspell.5.gz
78c4daa
78c4daa
%changelog
6821516
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-7
6821516
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
6821516
113b75d
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 1.7.0-6
113b75d
- Use make macros
113b75d
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
113b75d
593ae09
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-5
593ae09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
593ae09
01fa8fb
* Tue Nov 12 2019 Caolán McNamara <caolanm@redhat.com> - 1.7.0-4
01fa8fb
- Resolves: rhbz#1771027 CVE-2019-16707
01fa8fb
b72077d
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-3
b72077d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b72077d
44e4fe5
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-2
44e4fe5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
44e4fe5
73ecf2a
* Tue Nov 13 2018 Caolán McNamara <caolanm@redhat.com> - 1.7.0-1
73ecf2a
- latest release
73ecf2a
064ce64
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.2-3
064ce64
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
064ce64
617a42d
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.2-2
617a42d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
617a42d
185800b
* Fri Nov 24 2017 Caolán McNamara <caolanm@redhat.com> - 1.6.2-1
185800b
- latest release
185800b
213d40e
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-4
213d40e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
213d40e
c9e28af
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-3
c9e28af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c9e28af
21c4748
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2
21c4748
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
21c4748
c9cf84f
* Tue Dec 13 2016 Caolán McNamara <caolanm@redhat.com> - 1.5.4-1
151cd77
- latest release
151cd77
dd1650c
* Tue May 03 2016 Caolán McNamara <caolanm@redhat.com> - 1.4.1-1
dd1650c
- latest version
dd1650c
85ada8b
* Mon Apr 18 2016 Caolán McNamara <caolanm@redhat.com> - 1.4.0-1
85ada8b
- latest version
85ada8b
6b2ac61
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-9
6b2ac61
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6b2ac61
fa17ade
* Fri Sep 11 2015 Caolán McNamara <caolanm@redhat.com> - 1.3.3-8
fa17ade
- Resolves: rhbz#1261421 crash on mashing hangul korean keyboard
fa17ade
e7a4cb5
* Tue Jul 07 2015 Caolán McNamara <caolanm@redhat.com> - 1.3.3-7
0a76633
- Resolves: rhbz#1239570 FTBFS in rawhide with valgrind warnings
0a76633
d898d1b
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-6
d898d1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d898d1b
fa37bc3
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.3.3-5
fa37bc3
- Rebuilt for Fedora 23 Change
fa37bc3
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
fa37bc3
26dd6f9
* Thu Oct 16 2014 maciek <maciek@corsair.lan> - 1.3.3-4
26dd6f9
- Resolves: rhbz#915448, UTF-8 handling patch from
26dd6f9
  http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7781#31
26dd6f9
263ec97
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-3
263ec97
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
263ec97
aba252c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-2
aba252c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
aba252c
0f0d060
* Wed Jun 04 2014 Caolán McNamara <caolanm@redhat.com> - 1.3.3-1
0f0d060
- Resolves: rhbz#1104042 update to latest version
0f0d060
a3e3346
* Tue Oct 15 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-15
a3e3346
- Resolves: rhbz#1019158 esc space in man page
a3e3346
8852eff
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1.3.2-14
8852eff
- Perl 5.18 rebuild
8852eff
f83437d
* Thu Jul 25 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-13
f83437d
- Resolves: rhbz#985052 layout problems with very long lines
f83437d
d7ebd25
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.3.2-12
d7ebd25
- Perl 5.18 rebuild
d7ebd25
48f08b0
* Thu Apr 04 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-11
48f08b0
- Resolves: rhbz#925562 support aarch64
48f08b0
dd402f0
* Wed Mar 13 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-10
dd402f0
- Resolves: rhbz#918938 crash in danish thesaurus/spell interaction
dd402f0
84a7fb1
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-9
84a7fb1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
84a7fb1
4064bbf
* Tue Aug 28 2012 Caolán McNamara <caolanm@redhat.com> - 1.3.2-8
4064bbf
- Related: rhbz#850709 en-US available standalone
4064bbf
b728ec8
* Wed Aug 01 2012 Caolán McNamara <caolanm@redhat.com> - 1.3.2-6
b728ec8
- Resolves: rhbz#573516 have hunspell require hunspell-en to ensure
b728ec8
  at least one dictionary exists
b728ec8
c12dd18
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-5
c12dd18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c12dd18
5686246
* Wed Apr 18 2012 Caolán McNamara <caolanm@redhat.com> - 1.3.2-4
5686246
- Resolves: rhbz#813478 x86_64 valgrind spews, see rhbz#813780
5686246
cdb7a7e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-3
cdb7a7e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
cdb7a7e
5465ec7
* Tue Dec 06 2011 Caolán McNamara <caolanm@redhat.com> - 1.3.2-2
5465ec7
- Resolves: rhbz#759647 temp file name collision
5465ec7
2a6317b
* Tue May 24 2011 Caolán McNamara <caolanm@redhat.com> - 1.3.2-1
2a6317b
- Resolves: rhbz#706686 latest version
2a6317b
a3fbc30
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-2
a3fbc30
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a3fbc30
3aace09
* Thu Jan 27 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.15-1
3aace09
- latest version
3aace09
7593243
* Fri Jan 07 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.14-1
7593243
- latest version
7593243
005b6b5
* Wed Jan 05 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.13-1
005b6b5
- latest version
005b6b5
- drop integrated backport.warnings.patch
005b6b5
- drop integrated backport.rhbz650503.patch
005b6b5
a5e8ae4
* Mon Nov 08 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.12-3
a5e8ae4
- Resolves: rhbz#650503 Arabic spellchecking crash
a5e8ae4
651e72c
* Fri Nov 05 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.12-2
651e72c
- Resolves: rhbz#648740 thousands of trailing empty rules spew
651e72c
817e875
* Thu Jul 15 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.12-1
817e875
- latest version
817e875
- drop integrated hunspell-1.2.11-valgrind.patch
817e875
- drop integrated hunspell-1.2.11-koreansupport.patch
817e875
757bf72
* Fri Jul 09 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-4
757bf72
- use -fprofile-generate and -fprofile-use
757bf72
f4eabb9
* Mon Jul 05 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-3
f4eabb9
- add korean Hangul syllable support
f4eabb9
926a65e
* Tue Jun 22 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-2
926a65e
- use valgrind in make check
926a65e
926a65e
* Thu May 06 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-1
6b90dfb
- Resolves: rhbz#589326 wrong malloc
559dc19
926a65e
* Fri Apr 30 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.10-1
448ffcd
- latest version
448ffcd
926a65e
* Thu Mar 04 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.9-2
d219b41
- Resolves: ooo#107768 hunspell-1.2.9-stacksmash.patch
d219b41
926a65e
* Wed Mar 03 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.9-1
171ca75
- latest version, drop all upstreamed patchs
171ca75
926a65e
* Mon Mar 01 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.8-17
7e35c18
- Resolves: rhbz#569449 hu man dir now exists in filesystem
7e35c18
926a65e
* Mon Jan 18 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.8-16
978c450
- Resolves: rhbz#554876 fix suggestmgr crash
978c450
926a65e
* Tue Jan 05 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.8-15
dcde4c8
- Remove bad const warnings
dcde4c8
926a65e
* Mon Dec 21 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-14
475bf34
- Preserve timestamps
475bf34
926a65e
* Tue Dec 08 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-13
cb84aaf
- Resolves: rhbz#544372 survive having no HOME
cb84aaf
926a65e
* Thu Jul 30 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-12
21191eb
- handle some other interesting edge-cases
21191eb
caf62bc
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-11
caf62bc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
caf62bc
926a65e
* Thu Jul 23 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-10
004d1cf
- run tests in check
004d1cf
926a65e
* Thu Jul 09 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-9
91add7b
- Resolves: rhbz#510360 unowned dirs
4663cc4
- fix up rpmlint warnings
4663cc4
926a65e
* Tue Jul 07 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-8
4e9f8bd
- Resolves: rhbz#509882 ignore an empty LANGUAGE variable
4e9f8bd
926a65e
* Fri Jun 26 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-7
34d3b33
- Related: rhbz#498556 default to something sensible in "C" locale
34d3b33
  for language
34d3b33
926a65e
* Wed Jun 24 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-6
1233a63
- Resolves: rhbz#507829 fortify fixes
1233a63
926a65e
* Fri May 01 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-5
8bb8d83
- Resolves: rhbz#498556 fix default language detection
8bb8d83
9aed54a
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-4
9aed54a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9aed54a
926a65e
* Sun Nov 23 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.8-3
ceb0d9a
- tweak summary
ceb0d9a
926a65e
* Wed Nov 19 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.8-2
88d9d80
- Resolves: rhbz#471085 in ispell compatible mode (-a), ignore
88d9d80
  -m option which means something different to ispell
88d9d80
926a65e
* Sun Nov 02 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.8-1
5ac9add
- latest version
5ac9add
926a65e
* Sat Oct 18 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-5
d472726
- sort as per "C" locale
d472726
926a65e
* Fri Oct 17 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-4
7be83e0
- make wordlist2hunspell remove blank lines 
7be83e0
926a65e
* Mon Sep 15 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-3
3ab1d91
- Workaround rhbz#462184 uniq/sort problems with viramas
3ab1d91
926a65e
* Tue Sep 09 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-2
ae834a4
- add wordlist2hunspell
ae834a4
926a65e
* Sat Aug 23 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-1
1727165
- latest version
1727165
926a65e
* Tue Jul 29 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.6-1
9fdb914
- latest version
9fdb914
926a65e
* Sun Jul 27 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.5-1
c3a67c9
- latest version
c3a67c9
Kristian Høgsberg 8f20aee
* Tue Jul 22 2008 Kristian Høgsberg <krh@redhat.com> - 1.2.4.2-2
Kristian Høgsberg 8f20aee
- Drop ABI breaking hunspell-1.2.2-xulrunner.pita.patch and fix the
Kristian Høgsberg 8f20aee
  hunspell include in xulrunner.
Kristian Høgsberg 8f20aee
f83437d
* Wed Jun 18 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.4.2-1
8dfc92a
- latest version
8dfc92a
f83437d
* Tue Jun 17 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.4-1
35f1855
- latest version
35f1855
926a65e
* Fri May 16 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.2-3
554d309
- Resolves: rhbz#446821 fix crash
554d309
926a65e
* Wed May 14 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.2-2
c2ecaf8
- give xulrunner what it needs so we can get on with it
c2ecaf8
926a65e
* Fri Apr 18 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.2-1
e7807b4
- latest version
e7807b4
- drop integrated hunspell-1.2.1-1863239.badstructs.patch
e7807b4
926a65e
* Wed Mar 05 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.1-6
3cef01d
- add ispellaff2myspell to devel
3cef01d
5fb03d7
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.1-5
5fb03d7
- Autorebuild for GCC 4.3
5fb03d7
926a65e
* Thu Jan 03 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.1-4
4f20bed
- add hunspell-1.2.1-1863239.badstructs.patch
4f20bed
926a65e
* Fri Nov 09 2007 Caolán McNamara <caolanm@redhat.com> - 1.2.1-2
84e5413
- pkg-config cockup
84e5413
926a65e
* Mon Nov 05 2007 Caolán McNamara <caolanm@redhat.com> - 1.2.1-1
b45e6ae
- latest version
b45e6ae
926a65e
* Mon Oct 08 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.12.2-2
c1e0151
- lang fix for man pages from Ville Skyttä
c1e0151
926a65e
* Wed Sep 05 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.12.2-1
00d8078
- next version
00d8078
926a65e
* Tue Aug 28 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.11.2-1
668d624
- next version
668d624
926a65e
* Fri Aug 24 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.10-1
6984c44
- next version
6984c44
926a65e
* Thu Aug 02 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.9-2
d8ff5c8
- clarify license
d8ff5c8
926a65e
* Wed Jul 25 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.9-1
c2c9e42
- latest version
c2c9e42
926a65e
* Wed Jul 18 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.8.2-1
db834b3
- latest version
db834b3
926a65e
* Tue Jul 17 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.8-1
4fc2d34
- latest version
4fc2d34
926a65e
* Sat Jul 07 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.7-1
adc0fb2
- latest version
adc0fb2
- drop integrated hunspell-1.1.5.freem.patch
adc0fb2
926a65e
* Fri Jun 29 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.6-1
d1f39d7
- latest version
d1f39d7
- drop integrated hunspell-1.1.4-defaultdictfromlang.patch
d1f39d7
- drop integrated hunspell-1.1.5-badheader.patch
d1f39d7
- drop integrated hunspell-1.1.5.encoding.patch
d1f39d7
926a65e
* Fri Jun 29 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-5
ca1352d
- fix memory leak
ca1352d
  http://sourceforge.net/tracker/index.php?func=detail&aid=1745263&group_id=143754&atid=756395
ca1352d
926a65e
* Wed Jun 06 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-4
526495f
- Resolves: rhbz#212984 discovered problem with missing wordchars
526495f
926a65e
* Tue May 22 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-3
0a1b5e5
- Resolves: rhbz#240696 extend encoding patch to promote and add
0a1b5e5
  dictionary 8bit WORDCHARS to the ucs-2 word char list
0a1b5e5
926a65e
* Mon May 21 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-2
ebefbaa
- Resolves: rhbz#240696 add hunspell-1.1.5.encoding.patch
ebefbaa
926a65e
* Mon May 21 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-1
8a847c2
- patchlevel release
8a847c2
926a65e
* Tue Mar 20 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5-2
40b6756
- some junk in delivered headers
40b6756
926a65e
* Tue Mar 20 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5-1
4912805
- next version
4912805
926a65e
* Fri Feb 09 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.4-6
ff7dd74
- some spec cleanups
ff7dd74
926a65e
* Fri Jan 19 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.4-5
0afe8cd
- .pc
0afe8cd
926a65e
* Thu Jan 11 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.4-4
e40b38c
- fix out of range
e40b38c
926a65e
* Fri Dec 15 2006 Caolán McNamara <caolanm@redhat.com> - 1.1.4-3
c7f444a
- hunspell#1616353 simple c api for hunspell
c7f444a
926a65e
* Wed Nov 29 2006 Caolán McNamara <caolanm@redhat.com> - 1.1.4-2
3e5b8c6
- add hunspell-1.1.4-defaultdictfromlang.patch to take locale as default
3e5b8c6
  dictionary
3e5b8c6
926a65e
* Wed Oct 25 2006 Caolán McNamara <caolanm@redhat.com> - 1.1.4-1
78c4daa
- initial version