Blame SPECS/hunspell.spec

194e1d
%define double_profiling_build 1
194e1d
194e1d
Name:      hunspell
194e1d
Summary:   A spell checker and morphological analyzer library
194e1d
Version:   1.6.2
194e1d
Release:   1%{?dist}
194e1d
Source:    https://github.com/hunspell/hunspell/archive/v%{version}.tar.gz
194e1d
Group:     System Environment/Libraries
194e1d
URL:       https://github.com/hunspell/hunspell
194e1d
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
194e1d
License:   LGPLv2+ or GPLv2+ or MPLv1.1
194e1d
BuildRequires: autoconf, automake, libtool, ncurses-devel, gettext
194e1d
BuildRequires: perl-generators
194e1d
%if %{double_profiling_build}
194e1d
BuildRequires: words
194e1d
%endif
194e1d
Requires:  hunspell-en-US
194e1d
194e1d
%description
194e1d
Hunspell is a spell checker and morphological analyzer library and program 
194e1d
designed for languages with rich morphology and complex word compounding or 
194e1d
character encoding. Hunspell interfaces: Ispell-like terminal interface using 
194e1d
Curses library, Ispell pipe interface, LibreOffice UNO module.
194e1d
194e1d
%package devel
194e1d
Requires: hunspell = %{version}-%{release}, pkgconfig
194e1d
Summary: Files for developing with hunspell
194e1d
Group: Development/Libraries
194e1d
194e1d
%description devel
194e1d
Includes and definitions for developing with hunspell
194e1d
194e1d
%prep
194e1d
%setup -q
194e1d
194e1d
%build
194e1d
autoreconf -vfi
194e1d
configureflags="--disable-rpath --disable-static --with-ui --with-readline"
194e1d
194e1d
%define profilegenerate \
194e1d
    CFLAGS="${RPM_OPT_FLAGS} -fprofile-generate"\
194e1d
    CXXFLAGS="${RPM_OPT_FLAGS} -fprofile-generate"
194e1d
%define profileuse \
194e1d
    CFLAGS="${RPM_OPT_FLAGS} -fprofile-use"\
194e1d
    CXXFLAGS="${RPM_OPT_FLAGS} -fprofile-use"
194e1d
194e1d
%if !%{double_profiling_build}
194e1d
%configure $configureflags
194e1d
make %{?_smp_mflags}
194e1d
%else
194e1d
#Generate a word list to use for profiling, take half of it to ensure
194e1d
#that the original word list is then considered to contain correctly
194e1d
#and incorrectly spelled words
194e1d
head -n $((`cat /usr/share/dict/words | wc -l`/2)) /usr/share/dict/words |\
194e1d
    sed '/\//d'> words
194e1d
194e1d
#generate profiling
194e1d
%{profilegenerate} %configure $configureflags
194e1d
make %{?_smp_mflags}
194e1d
./src/tools/affixcompress words > /dev/null 2>&1
194e1d
./src/tools/hunspell -d words -l /usr/share/dict/words > /dev/null
194e1d
make check
194e1d
make distclean
194e1d
194e1d
#use profiling
194e1d
%{profileuse} %configure $configureflags
194e1d
make %{?_smp_mflags}
194e1d
%endif
194e1d
cd po && make %{?_smp_mflags} update-gmo && cd ..
194e1d
194e1d
%check
194e1d
make check
194e1d
194e1d
%install
194e1d
rm -rf $RPM_BUILD_ROOT
194e1d
make DESTDIR=$RPM_BUILD_ROOT install
194e1d
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.a
194e1d
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
194e1d
mkdir $RPM_BUILD_ROOT/%{_datadir}/myspell
194e1d
%find_lang %{name}
194e1d
194e1d
%clean
194e1d
rm -rf $RPM_BUILD_ROOT
194e1d
194e1d
%post -p /sbin/ldconfig
194e1d
194e1d
%postun -p /sbin/ldconfig
194e1d
194e1d
%files -f %{name}.lang
194e1d
%defattr(-,root,root,-)
194e1d
%doc README README.myspell COPYING COPYING.LESSER COPYING.MPL AUTHORS AUTHORS.myspell license.hunspell license.myspell THANKS
194e1d
%{_libdir}/*.so.*
194e1d
%{_datadir}/myspell
194e1d
%{_bindir}/hunspell
194e1d
%{_mandir}/man1/hunspell.1.gz
194e1d
%lang(hu) %{_mandir}/hu/man1/hunspell.1.gz
194e1d
194e1d
%files devel
194e1d
%defattr(-,root,root,-)
194e1d
%{_includedir}/%{name}
194e1d
%{_libdir}/*.so
194e1d
%{_bindir}/affixcompress
194e1d
%{_bindir}/makealias
194e1d
%{_bindir}/munch
194e1d
%{_bindir}/unmunch
194e1d
%{_bindir}/analyze
194e1d
%{_bindir}/chmorph
194e1d
%{_bindir}/hzip
194e1d
%{_bindir}/hunzip
194e1d
%{_bindir}/ispellaff2myspell
194e1d
%{_bindir}/wordlist2hunspell
194e1d
%{_bindir}/wordforms
194e1d
%{_libdir}/pkgconfig/hunspell.pc
194e1d
%{_mandir}/man1/hunzip.1.gz
194e1d
%{_mandir}/man1/hzip.1.gz
194e1d
%{_mandir}/man3/hunspell.3.gz
194e1d
%{_mandir}/man5/hunspell.5.gz
194e1d
194e1d
%changelog
194e1d
* Fri Nov 24 2017 Caolán McNamara <caolanm@redhat.com> - 1.6.2-1
194e1d
- latest release
194e1d
194e1d
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-4
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
194e1d
194e1d
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-3
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
194e1d
194e1d
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
194e1d
194e1d
* Tue Dec 13 2016 Caolán McNamara <caolanm@redhat.com> - 1.5.4-1
194e1d
- latest release
194e1d
194e1d
* Tue May 03 2016 Caolán McNamara <caolanm@redhat.com> - 1.4.1-1
194e1d
- latest version
194e1d
194e1d
* Mon Apr 18 2016 Caolán McNamara <caolanm@redhat.com> - 1.4.0-1
194e1d
- latest version
194e1d
194e1d
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-9
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
194e1d
194e1d
* Fri Sep 11 2015 Caolán McNamara <caolanm@redhat.com> - 1.3.3-8
194e1d
- Resolves: rhbz#1261421 crash on mashing hangul korean keyboard
194e1d
194e1d
* Tue Jul 07 2015 Caolán McNamara <caolanm@redhat.com> - 1.3.3-7
194e1d
- Resolves: rhbz#1239570 FTBFS in rawhide with valgrind warnings
194e1d
194e1d
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-6
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
194e1d
194e1d
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.3.3-5
194e1d
- Rebuilt for Fedora 23 Change
194e1d
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
194e1d
194e1d
* Thu Oct 16 2014 maciek <maciek@corsair.lan> - 1.3.3-4
194e1d
- Resolves: rhbz#915448, UTF-8 handling patch from
194e1d
  http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7781#31
194e1d
194e1d
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-3
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
194e1d
194e1d
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-2
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
194e1d
194e1d
* Wed Jun 04 2014 Caolán McNamara <caolanm@redhat.com> - 1.3.3-1
194e1d
- Resolves: rhbz#1104042 update to latest version
194e1d
194e1d
* Tue Oct 15 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-15
194e1d
- Resolves: rhbz#1019158 esc space in man page
194e1d
194e1d
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1.3.2-14
194e1d
- Perl 5.18 rebuild
194e1d
194e1d
* Thu Jul 25 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-13
194e1d
- Resolves: rhbz#985052 layout problems with very long lines
194e1d
194e1d
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.3.2-12
194e1d
- Perl 5.18 rebuild
194e1d
194e1d
* Thu Apr 04 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-11
194e1d
- Resolves: rhbz#925562 support aarch64
194e1d
194e1d
* Wed Mar 13 2013 Caolán McNamara <caolanm@redhat.com> - 1.3.2-10
194e1d
- Resolves: rhbz#918938 crash in danish thesaurus/spell interaction
194e1d
194e1d
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-9
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
194e1d
194e1d
* Tue Aug 28 2012 Caolán McNamara <caolanm@redhat.com> - 1.3.2-8
194e1d
- Related: rhbz#850709 en-US available standalone
194e1d
194e1d
* Wed Aug 01 2012 Caolán McNamara <caolanm@redhat.com> - 1.3.2-6
194e1d
- Resolves: rhbz#573516 have hunspell require hunspell-en to ensure
194e1d
  at least one dictionary exists
194e1d
194e1d
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-5
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
194e1d
194e1d
* Wed Apr 18 2012 Caolán McNamara <caolanm@redhat.com> - 1.3.2-4
194e1d
- Resolves: rhbz#813478 x86_64 valgrind spews, see rhbz#813780
194e1d
194e1d
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-3
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
194e1d
194e1d
* Tue Dec 06 2011 Caolán McNamara <caolanm@redhat.com> - 1.3.2-2
194e1d
- Resolves: rhbz#759647 temp file name collision
194e1d
194e1d
* Tue May 24 2011 Caolán McNamara <caolanm@redhat.com> - 1.3.2-1
194e1d
- Resolves: rhbz#706686 latest version
194e1d
194e1d
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15-2
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
194e1d
194e1d
* Thu Jan 27 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.15-1
194e1d
- latest version
194e1d
194e1d
* Fri Jan 07 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.14-1
194e1d
- latest version
194e1d
194e1d
* Wed Jan 05 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.13-1
194e1d
- latest version
194e1d
- drop integrated backport.warnings.patch
194e1d
- drop integrated backport.rhbz650503.patch
194e1d
194e1d
* Mon Nov 08 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.12-3
194e1d
- Resolves: rhbz#650503 Arabic spellchecking crash
194e1d
194e1d
* Fri Nov 05 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.12-2
194e1d
- Resolves: rhbz#648740 thousands of trailing empty rules spew
194e1d
194e1d
* Thu Jul 15 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.12-1
194e1d
- latest version
194e1d
- drop integrated hunspell-1.2.11-valgrind.patch
194e1d
- drop integrated hunspell-1.2.11-koreansupport.patch
194e1d
194e1d
* Fri Jul 09 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-4
194e1d
- use -fprofile-generate and -fprofile-use
194e1d
194e1d
* Mon Jul 05 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-3
194e1d
- add korean Hangul syllable support
194e1d
194e1d
* Tue Jun 22 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-2
194e1d
- use valgrind in make check
194e1d
194e1d
* Thu May 06 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.11-1
194e1d
- Resolves: rhbz#589326 wrong malloc
194e1d
194e1d
* Fri Apr 30 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.10-1
194e1d
- latest version
194e1d
194e1d
* Thu Mar 04 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.9-2
194e1d
- Resolves: ooo#107768 hunspell-1.2.9-stacksmash.patch
194e1d
194e1d
* Wed Mar 03 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.9-1
194e1d
- latest version, drop all upstreamed patchs
194e1d
194e1d
* Mon Mar 01 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.8-17
194e1d
- Resolves: rhbz#569449 hu man dir now exists in filesystem
194e1d
194e1d
* Mon Jan 18 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.8-16
194e1d
- Resolves: rhbz#554876 fix suggestmgr crash
194e1d
194e1d
* Tue Jan 05 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.8-15
194e1d
- Remove bad const warnings
194e1d
194e1d
* Mon Dec 21 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-14
194e1d
- Preserve timestamps
194e1d
194e1d
* Tue Dec 08 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-13
194e1d
- Resolves: rhbz#544372 survive having no HOME
194e1d
194e1d
* Thu Jul 30 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-12
194e1d
- handle some other interesting edge-cases
194e1d
194e1d
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-11
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
194e1d
194e1d
* Thu Jul 23 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-10
194e1d
- run tests in check
194e1d
194e1d
* Thu Jul 09 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-9
194e1d
- Resolves: rhbz#510360 unowned dirs
194e1d
- fix up rpmlint warnings
194e1d
194e1d
* Tue Jul 07 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-8
194e1d
- Resolves: rhbz#509882 ignore an empty LANGUAGE variable
194e1d
194e1d
* Fri Jun 26 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-7
194e1d
- Related: rhbz#498556 default to something sensible in "C" locale
194e1d
  for language
194e1d
194e1d
* Wed Jun 24 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-6
194e1d
- Resolves: rhbz#507829 fortify fixes
194e1d
194e1d
* Fri May 01 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.8-5
194e1d
- Resolves: rhbz#498556 fix default language detection
194e1d
194e1d
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-4
194e1d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
194e1d
194e1d
* Sun Nov 23 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.8-3
194e1d
- tweak summary
194e1d
194e1d
* Wed Nov 19 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.8-2
194e1d
- Resolves: rhbz#471085 in ispell compatible mode (-a), ignore
194e1d
  -m option which means something different to ispell
194e1d
194e1d
* Sun Nov 02 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.8-1
194e1d
- latest version
194e1d
194e1d
* Sat Oct 18 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-5
194e1d
- sort as per "C" locale
194e1d
194e1d
* Fri Oct 17 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-4
194e1d
- make wordlist2hunspell remove blank lines 
194e1d
194e1d
* Mon Sep 15 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-3
194e1d
- Workaround rhbz#462184 uniq/sort problems with viramas
194e1d
194e1d
* Tue Sep 09 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-2
194e1d
- add wordlist2hunspell
194e1d
194e1d
* Sat Aug 23 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.7-1
194e1d
- latest version
194e1d
194e1d
* Tue Jul 29 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.6-1
194e1d
- latest version
194e1d
194e1d
* Sun Jul 27 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.5-1
194e1d
- latest version
194e1d
194e1d
* Tue Jul 22 2008 Kristian Høgsberg <krh@redhat.com> - 1.2.4.2-2
194e1d
- Drop ABI breaking hunspell-1.2.2-xulrunner.pita.patch and fix the
194e1d
  hunspell include in xulrunner.
194e1d
194e1d
* Wed Jun 18 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.4.2-1
194e1d
- latest version
194e1d
194e1d
* Tue Jun 17 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.4-1
194e1d
- latest version
194e1d
194e1d
* Fri May 16 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.2-3
194e1d
- Resolves: rhbz#446821 fix crash
194e1d
194e1d
* Wed May 14 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.2-2
194e1d
- give xulrunner what it needs so we can get on with it
194e1d
194e1d
* Fri Apr 18 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.2-1
194e1d
- latest version
194e1d
- drop integrated hunspell-1.2.1-1863239.badstructs.patch
194e1d
194e1d
* Wed Mar 05 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.1-6
194e1d
- add ispellaff2myspell to devel
194e1d
194e1d
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.1-5
194e1d
- Autorebuild for GCC 4.3
194e1d
194e1d
* Thu Jan 03 2008 Caolán McNamara <caolanm@redhat.com> - 1.2.1-4
194e1d
- add hunspell-1.2.1-1863239.badstructs.patch
194e1d
194e1d
* Fri Nov 09 2007 Caolán McNamara <caolanm@redhat.com> - 1.2.1-2
194e1d
- pkg-config cockup
194e1d
194e1d
* Mon Nov 05 2007 Caolán McNamara <caolanm@redhat.com> - 1.2.1-1
194e1d
- latest version
194e1d
194e1d
* Mon Oct 08 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.12.2-2
194e1d
- lang fix for man pages from Ville Skyttä
194e1d
194e1d
* Wed Sep 05 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.12.2-1
194e1d
- next version
194e1d
194e1d
* Tue Aug 28 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.11.2-1
194e1d
- next version
194e1d
194e1d
* Fri Aug 24 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.10-1
194e1d
- next version
194e1d
194e1d
* Thu Aug 02 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.9-2
194e1d
- clarify license
194e1d
194e1d
* Wed Jul 25 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.9-1
194e1d
- latest version
194e1d
194e1d
* Wed Jul 18 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.8.2-1
194e1d
- latest version
194e1d
194e1d
* Tue Jul 17 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.8-1
194e1d
- latest version
194e1d
194e1d
* Sat Jul 07 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.7-1
194e1d
- latest version
194e1d
- drop integrated hunspell-1.1.5.freem.patch
194e1d
194e1d
* Fri Jun 29 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.6-1
194e1d
- latest version
194e1d
- drop integrated hunspell-1.1.4-defaultdictfromlang.patch
194e1d
- drop integrated hunspell-1.1.5-badheader.patch
194e1d
- drop integrated hunspell-1.1.5.encoding.patch
194e1d
194e1d
* Fri Jun 29 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-5
194e1d
- fix memory leak
194e1d
  http://sourceforge.net/tracker/index.php?func=detail&aid=1745263&group_id=143754&atid=756395
194e1d
194e1d
* Wed Jun 06 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-4
194e1d
- Resolves: rhbz#212984 discovered problem with missing wordchars
194e1d
194e1d
* Tue May 22 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-3
194e1d
- Resolves: rhbz#240696 extend encoding patch to promote and add
194e1d
  dictionary 8bit WORDCHARS to the ucs-2 word char list
194e1d
194e1d
* Mon May 21 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-2
194e1d
- Resolves: rhbz#240696 add hunspell-1.1.5.encoding.patch
194e1d
194e1d
* Mon May 21 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5.3-1
194e1d
- patchlevel release
194e1d
194e1d
* Tue Mar 20 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5-2
194e1d
- some junk in delivered headers
194e1d
194e1d
* Tue Mar 20 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.5-1
194e1d
- next version
194e1d
194e1d
* Fri Feb 09 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.4-6
194e1d
- some spec cleanups
194e1d
194e1d
* Fri Jan 19 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.4-5
194e1d
- .pc
194e1d
194e1d
* Thu Jan 11 2007 Caolán McNamara <caolanm@redhat.com> - 1.1.4-4
194e1d
- fix out of range
194e1d
194e1d
* Fri Dec 15 2006 Caolán McNamara <caolanm@redhat.com> - 1.1.4-3
194e1d
- hunspell#1616353 simple c api for hunspell
194e1d
194e1d
* Wed Nov 29 2006 Caolán McNamara <caolanm@redhat.com> - 1.1.4-2
194e1d
- add hunspell-1.1.4-defaultdictfromlang.patch to take locale as default
194e1d
  dictionary
194e1d
194e1d
* Wed Oct 25 2006 Caolán McNamara <caolanm@redhat.com> - 1.1.4-1
194e1d
- initial version