d3a6a4
%global _hardened_build 1
d3a6a4
d3a6a4
Name:           libvoikko
d3a6a4
Version:        4.3
d3a6a4
Release:        7%{?dist}
d3a6a4
Summary:        Voikko is a library for spellcheckers and hyphenators
d3a6a4
d3a6a4
License:        GPLv2+
d3a6a4
URL:            https://voikko.puimula.org
d3a6a4
# The usual format of stable release URLs
d3a6a4
Source0:        https://www.puimula.org/voikko-sources/%{name}/%{name}-%{version}.tar.gz
d3a6a4
# The usual format of test release URLs
d3a6a4
#Source0:        https://www.puimula.org/htp/testing/%%{name}-%%{version}rc1.tar.gz
d3a6a4
d3a6a4
# See https://voikko.puimula.org/sources.html for the key fingerprint.
d3a6a4
# I did
d3a6a4
#  gpg --recv-keys "AC5D 65F1 0C85 96D7 E2DA  E263 3D30 9B60 4AE3 942E"
d3a6a4
# and then
d3a6a4
#  gpg2 --export --export-options export-minimal AC5D65F10C8596D7E2DAE2633D309B604AE3942E > gpgkey-AC5D65F10C8596D7E2DAE2633D309B604AE3942E.gpg
d3a6a4
Source1:        http://www.puimula.org/voikko-sources/%{name}/%{name}-%{version}.tar.gz.asc
d3a6a4
Source2:        gpgkey-AC5D65F10C8596D7E2DAE2633D309B604AE3942E.gpg
d3a6a4
d3a6a4
Requires: voikko-fi
d3a6a4
BuildRequires:  gcc-c++
d3a6a4
BuildRequires:  python3-devel
d3a6a4
BuildRequires: make
d3a6a4
BuildRequires: gnupg2
d3a6a4
d3a6a4
%description
d3a6a4
This is libvoikko, library for spellcheckers and hyphenators using Malaga
d3a6a4
natural language grammar development tool. The library is written in C.
d3a6a4
d3a6a4
Currently only Finnish is supported, but the API of the library has been
d3a6a4
designed to allow adding support for other languages later. Note however that
d3a6a4
Malaga is rather low level tool that requires implementing the whole morphology
d3a6a4
of a language as a left associative grammar. Therefore languages that have
d3a6a4
simple or even moderately complex morphologies and do not require morphological
d3a6a4
analysis in their hyphenators should be implemented using other tools such as
d3a6a4
Hunspell.
d3a6a4
d3a6a4
%package        devel
d3a6a4
Summary:        Development files for %{name}
d3a6a4
Requires:       %{name}%{?_isa} = %{version}-%{release}
d3a6a4
Requires:       pkgconfig
d3a6a4
d3a6a4
%description    devel
d3a6a4
The %{name}-devel package contains libraries and header files for
d3a6a4
developing applications that use %{name}.
d3a6a4
d3a6a4
%package -n     voikko-tools
d3a6a4
Summary:        Test tools for %{name}
d3a6a4
Requires:       %{name}%{?_isa} = %{version}-%{release}
d3a6a4
d3a6a4
%description -n voikko-tools
d3a6a4
This package contains voikkospell and voikkohyphenate, small command line
d3a6a4
tools for testing libvoikko. These tools may also be useful for shell
d3a6a4
scripts.
d3a6a4
d3a6a4
%package -n python3-libvoikko
d3a6a4
Summary:        Python interface to %{name}
d3a6a4
Requires:       %{name} = %{version}-%{release}
d3a6a4
BuildArch:      noarch
d3a6a4
d3a6a4
%description -n python3-libvoikko
d3a6a4
Python interface to libvoikko, library of Finnish language tools.
d3a6a4
This module can be used to perform various natural language analysis
d3a6a4
tasks on Finnish text.
d3a6a4
d3a6a4
%prep
d3a6a4
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
d3a6a4
d3a6a4
%autosetup
d3a6a4
d3a6a4
d3a6a4
%build
d3a6a4
# Use vfst for now, no hfst yet. We need to package hfst-ospell for the hfst dictionaries.
d3a6a4
# Use /usr/lib/voikko for the dictionaries, this is where the voikko-fi package will put them.
d3a6a4
# The dictonary path has been agreed on in reviews and fedora-devel discussions.
d3a6a4
# This way the voikko-fi package can be noarch.
d3a6a4
%configure --disable-hfst --with-dictionary-path=%{_prefix}/lib/voikko
d3a6a4
# Remove rpath,
d3a6a4
# https://fedoraproject.org/wiki/Packaging/Guidelines#Removing_Rpath
d3a6a4
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
d3a6a4
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
d3a6a4
%make_build CXXFLAGS="$CXXFLAGS"
d3a6a4
d3a6a4
d3a6a4
%install
d3a6a4
make install INSTALL="install -p" DESTDIR=$RPM_BUILD_ROOT
d3a6a4
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
d3a6a4
# Remove static archive
d3a6a4
find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';'
d3a6a4
# Install the Python interface
d3a6a4
install -d $RPM_BUILD_ROOT%{python3_sitelib}
d3a6a4
install -pm 0644 python/libvoikko.py $RPM_BUILD_ROOT%{python3_sitelib}/
d3a6a4
# Make the directory for the dictionary data files, so this package can own it.
d3a6a4
mkdir -p %{buildroot}%{_prefix}/lib/voikko
d3a6a4
d3a6a4
d3a6a4
%files
d3a6a4
%doc ChangeLog README
d3a6a4
%license COPYING
d3a6a4
%dir %{_prefix}/lib/voikko
d3a6a4
%{_libdir}/libvoikko.so.1*
d3a6a4
d3a6a4
%files -n voikko-tools
d3a6a4
%{_bindir}/voikkospell
d3a6a4
%{_bindir}/voikkohyphenate
d3a6a4
%{_bindir}/voikkogc
d3a6a4
%{_bindir}/voikkovfstc
d3a6a4
%{_mandir}/man1/voikkohyphenate.1*
d3a6a4
%{_mandir}/man1/voikkospell.1*
d3a6a4
%{_mandir}/man1/voikkogc.1*
d3a6a4
%{_mandir}/man1/voikkovfstc.1*
d3a6a4
d3a6a4
%files devel
d3a6a4
%{_includedir}/*
d3a6a4
%{_libdir}/libvoikko.so
d3a6a4
%{_libdir}/pkgconfig/libvoikko.pc
d3a6a4
d3a6a4
%files -n python3-libvoikko
d3a6a4
%pycached %{python3_sitelib}/%{name}.py
d3a6a4
d3a6a4
%changelog
d3a6a4
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.3-7
d3a6a4
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
d3a6a4
  Related: rhbz#1991688
d3a6a4
d3a6a4
* Tue Jul 13 2021 Mike FABIAN <mfabian@redhat.com> - 4.3-6
d3a6a4
- Resolves: rhbz#1977691 bump release number to add libvoikko-devel package to CRB
d3a6a4
d3a6a4
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.3-5
d3a6a4
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
d3a6a4
d3a6a4
* Fri Feb 19 2021 Mike FABIAN <mfabian@redhat.com> - 4.3-4
d3a6a4
- Add Requires: voikko-fi
d3a6a4
d3a6a4
* Sun Jan 31 2021 Ville-Pekka Vainio <vpvainio AT iki.fi> - 4.3-3
d3a6a4
- The dictionary data directory will now be /usr/lib/voikko on all architectures
d3a6a4
- Create and own /usr/lib/voikko, so different dictionary packages can own the subdirectories there
d3a6a4
- This was suggested in the review of the voikko-fi package, see rhbz#1919688
d3a6a4
- Use the license macro
d3a6a4
d3a6a4
* Sun Jan 24 2021 Ville-Pekka Vainio <vpvainio AT iki.fi> - 4.3-2
d3a6a4
- Bump release for a new Copr build
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
d3a6a4
d3a6a4
* Sat Jan 16 2021 Ville-Pekka Vainio <vpvainio AT iki.fi> - 4.3-1
d3a6a4
- Update to 4.3
d3a6a4
- Add GPG signature check for the source
d3a6a4
- Fix pycached stuff
d3a6a4
- Remove old python_provide macro
d3a6a4
- Remove ldconfig_scriptlets macro
d3a6a4
- Only use VFST for now, HFST can be provided in a later update
d3a6a4
d3a6a4
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-8
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
d3a6a4
d3a6a4
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.1.1-7
d3a6a4
- Rebuilt for Python 3.9
d3a6a4
d3a6a4
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-6
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
d3a6a4
d3a6a4
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 4.1.1-5
d3a6a4
- Rebuilt for Python 3.8.0rc1 (#1748018)
d3a6a4
d3a6a4
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.1.1-4
d3a6a4
- Rebuilt for Python 3.8
d3a6a4
d3a6a4
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-3
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
d3a6a4
d3a6a4
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
d3a6a4
d3a6a4
* Fri Aug 3 2018 Ville-Pekka Vainio <vpvainio AT iki.fi> - 4.1.1-1
d3a6a4
- New upstream release.
d3a6a4
- Provide only python3-libvoikko, remove python2-libvoikko
d3a6a4
- Use malaga for now, foma is not packaged for Fedora yet.
d3a6a4
d3a6a4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-11
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
d3a6a4
d3a6a4
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.8-10
d3a6a4
- Rebuilt for Python 3.7
d3a6a4
d3a6a4
* Wed May 23 2018 Mike FABIAN <mfabian@redhat.com> - 3.8-9
d3a6a4
- Add python3-devel to BuildRequires.
d3a6a4
- Resolves: rhbz#1580782
d3a6a4
d3a6a4
* Thu Apr 19 2018 Mike FABIAN <mfabian@redhat.com> - 3.8-8
d3a6a4
- Build Python 2 subpackage only for Fedora
d3a6a4
- Resolves: rhbz#1566121
d3a6a4
d3a6a4
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-7
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d3a6a4
d3a6a4
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.8-6
d3a6a4
- Python 2 binary package renamed to python2-libvoikko
d3a6a4
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
d3a6a4
d3a6a4
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-5
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d3a6a4
d3a6a4
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-4
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d3a6a4
d3a6a4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-3
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d3a6a4
d3a6a4
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-2
d3a6a4
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
d3a6a4
d3a6a4
* Thu Jul 14 2016 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.8-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.1-4
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d3a6a4
d3a6a4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.1-3
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d3a6a4
d3a6a4
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.7.1-2
d3a6a4
- Rebuilt for GCC 5 C++11 ABI change
d3a6a4
d3a6a4
* Sat Oct 25 2014 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.7.1-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7-3
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d3a6a4
d3a6a4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d3a6a4
d3a6a4
* Sun Jan 26 2014 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.7-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Fri Oct 18 2013 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.6.1-1
d3a6a4
- New upstream release
d3a6a4
- Remove voikkovfstc from the package, it is not built by default anymore
d3a6a4
- Update upstream URLs
d3a6a4
d3a6a4
* Mon Jul 29 2013 Parag <paragn AT fedoraproject DOT org> - 3.6-2
d3a6a4
- Ah don't add %%{?_isa} for noarch packages
d3a6a4
d3a6a4
* Mon Jul 29 2013 Parag <paragn AT fedoraproject DOT org> - 3.6-2
d3a6a4
- Fix spec file to follow packaging guidelines
d3a6a4
d3a6a4
* Sun Apr 14 2013 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.6-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-3
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
d3a6a4
d3a6a4
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d3a6a4
d3a6a4
* Sun Jul 01 2012 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.5-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.1-2
d3a6a4
- Rebuilt for c++ ABI breakage
d3a6a4
d3a6a4
* Sat Feb 04 2012 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.4.1-1
d3a6a4
- New upstream release, fixes build with GCC 4.7
d3a6a4
d3a6a4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d3a6a4
d3a6a4
* Tue Dec 27 2011 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.4-1
d3a6a4
- Update to the latest upstream release:
d3a6a4
- A crash bug affecting grammar checker has been fixed.
d3a6a4
- New grammar checker rule for missing verbs has been added.
d3a6a4
d3a6a4
* Sun Sep 25 2011 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.3.1-0.3.rc1
d3a6a4
- Remove the isa macro from the malaga-suomi-voikko dependency,
d3a6a4
  malaga-suomi-voikko is not a library and is thus not multilib'd. The previous
d3a6a4
  change was a misunderstanding.
d3a6a4
d3a6a4
* Sat Sep 24 2011 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.3.1-0.2.rc1
d3a6a4
- Add the isa macro to the malaga-suomi-voikko dependency and drop the version.
d3a6a4
d3a6a4
* Sat Sep 24 2011 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.3.1-0.1.rc1
d3a6a4
- New upstream release candidate, fixes a bug which crashed Firefox when
d3a6a4
  using Finnish spell checking.
d3a6a4
d3a6a4
* Fri Sep 16 2011 Ville-Pekka Vainio <vpvainio AT iki.fi> - 3.3-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Sun Jun 12 2011 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 3.2.1-1
d3a6a4
- New upstream release
d3a6a4
- Fixes handling of embedded null characters in input strings entered through
d3a6a4
  Python or Java interfaces.
d3a6a4
d3a6a4
* Fri Mar 25 2011 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 3.2-1
d3a6a4
- New upstream release
d3a6a4
d3a6a4
* Tue Feb 15 2011 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 3.1-3
d3a6a4
- Add patch to fix build with GCC 4.6
d3a6a4
d3a6a4
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d3a6a4
d3a6a4
* Mon Nov 22 2010 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 3.1-1
d3a6a4
- New upstream release
d3a6a4
- Remove the unneeded %%clean section, not needed in Fedora >= 13
d3a6a4
d3a6a4
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 3.0-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
d3a6a4
d3a6a4
* Thu May 27 2010 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 3.0-1
d3a6a4
- 3.0 final
d3a6a4
d3a6a4
* Thu May 13 2010 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 3.0-0.1.rc1
d3a6a4
- New upstream release candidate with multithread support
d3a6a4
- Remove unneeded BuildRoot tag
d3a6a4
d3a6a4
* Thu Feb 18 2010 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.3.1-1
d3a6a4
- Version 2.3.1 contains fixes for bugs found in version 2.3
d3a6a4
d3a6a4
* Sun Jan 31 2010 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.3-0.1.rc1
d3a6a4
- New release candidate
d3a6a4
- Dependency on glib has been removed
d3a6a4
d3a6a4
* Wed Nov 11 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.2.2-1
d3a6a4
- Version 2.2.2 fixes a crash found in version 2.2.1 that can occur when the
d3a6a4
  APIs that use wchar_t strings as arguments are used.
d3a6a4
d3a6a4
* Mon Oct 26 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.2.1-2
d3a6a4
- Add Python interface (package python-libvoikko, noarch)
d3a6a4
d3a6a4
* Fri Oct 09 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.2.1-1
d3a6a4
- New upstream release, fixes bugs found in 2.2
d3a6a4
d3a6a4
* Fri Sep 18 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.2-0.3.rc2
d3a6a4
- 2.2rc2
d3a6a4
- Remove getcwd() value check patch, accepted upstream
d3a6a4
d3a6a4
* Wed Sep 16 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.2-0.2.rc1
d3a6a4
- Remove rpath which was set for the voikko-tools binaries in 64 bit
d3a6a4
  architechtures
d3a6a4
d3a6a4
* Tue Sep 15 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.2-0.1.rc1
d3a6a4
- New release candidate
d3a6a4
- Improvements to spelling suggestions, grammar checker etc.
d3a6a4
- Libvoikko now uses its own internal implementation of malaga.
d3a6a4
- This prevents symbol conflicts such as https://bugzilla.redhat.com/502546
d3a6a4
- BuildRequires malaga removed and glib2-devel added.
d3a6a4
- Require malaga-suomi-voikko >= 1.4, libvoikko 2.2 expects the newer
d3a6a4
  dictionary format
d3a6a4
- Add a patch to make it compile on Fedora with -Werror
d3a6a4
d3a6a4
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
d3a6a4
d3a6a4
* Sat May 2 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.1-1
d3a6a4
- 2.1 final, including fixes to grammar checking
d3a6a4
d3a6a4
* Fri Apr 17 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.1-0.5.rc4
d3a6a4
- 2.1rc4:
d3a6a4
  - Fix invalid use of delete vs. delete[]
d3a6a4
  - Limit the scope of some variables
d3a6a4
d3a6a4
* Mon Apr 13 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.1-0.4.rc3
d3a6a4
- 2.1rc3, remove patch
d3a6a4
d3a6a4
* Sat Apr 11 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.1-0.3.rc2
d3a6a4
- Patch to current SVN HEAD, includes a fix for a memory leak in the grammar
d3a6a4
  checker
d3a6a4
d3a6a4
* Mon Apr 6 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.1-0.2.rc2
d3a6a4
- New release candidate
d3a6a4
- Both patches applied upstream
d3a6a4
d3a6a4
* Mon Apr 6 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.1-0.1.rc1
d3a6a4
- New release candidate
d3a6a4
- Improvements on grammar checking and dictionary loading
d3a6a4
- Raise malaga-suomi-voikko dependency to 1.3-10, which has the new dictionary
d3a6a4
  data directory layout needed by this version of libvoikko
d3a6a4
- Add BuildRequires python for running the trie compiler during build
d3a6a4
- Add patch for GCC 4.4 and glibc 2.90 compliance
d3a6a4
- Add patch to fix warn_unused_result errors
d3a6a4
d3a6a4
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-2
d3a6a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d3a6a4
d3a6a4
* Thu Aug 28 2008 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.0-1
d3a6a4
- libvoikko 2.0
d3a6a4
d3a6a4
* Sat Aug 23 2008 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 2.0-0.1.rc1
d3a6a4
- New release candidate, including the new voikkogc tool in voikko-tools
d3a6a4
- Add defattr to voikko-tools
d3a6a4
- Drop upstreamed pkg-config patch
d3a6a4
d3a6a4
* Fri May 30 2008 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.7-3
d3a6a4
- Add Requires pkgconfig to -devel
d3a6a4
d3a6a4
* Mon May 26 2008 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.7-2
d3a6a4
- Add patch which makes a libvoikko.pc file for pkg-config
d3a6a4
d3a6a4
* Sat May 24 2008 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.7-1
d3a6a4
- libvoikko 1.7
d3a6a4
d3a6a4
* Thu May 22 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.7-0.2.rc2
d3a6a4
- Don't BuildRequire the Finnish data files, this should make Koji builds a bit
d3a6a4
  quicker
d3a6a4
d3a6a4
* Sun May 11 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.7-0.1.rc2
d3a6a4
- New release candidate
d3a6a4
d3a6a4
* Sun Mar 02 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-3
d3a6a4
- Put voikkospell and voikkohyphenate into a separate voikko-tools
d3a6a4
  subpackage to decrease the size of the binary libvoikko package
d3a6a4
d3a6a4
* Sat Feb 16 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-2
d3a6a4
- Rebuild for GCC 4.3
d3a6a4
d3a6a4
* Tue Dec 04 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-1
d3a6a4
- libvoikko 1.6
d3a6a4
- Add versioned BuildRequires and Requires as per the Voikko release notes
d3a6a4
  at http://voikko.sourceforge.net/releases.html
d3a6a4
d3a6a4
* Mon Dec 03 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-0.4.rc4
d3a6a4
- Upstream released a new release candidate
d3a6a4
d3a6a4
* Wed Nov 28 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-0.3.rc3
d3a6a4
- Upstream released a new release candidate
d3a6a4
d3a6a4
* Wed Nov 28 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-0.2.rc2
d3a6a4
- Upstream released a new release candidate
d3a6a4
d3a6a4
* Tue Nov 27 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.6-0.1.rc1
d3a6a4
- Upstream released a new release candidate
d3a6a4
d3a6a4
* Thu Nov 08 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.5-1
d3a6a4
- Bump Release for the first Fedora build
d3a6a4
d3a6a4
* Wed Nov 07 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.5-0.3
d3a6a4
- libvoikko-devel: remove unneeded Requires: malaga-devel
d3a6a4
- install with -p so that timestamps are preserved
d3a6a4
d3a6a4
* Wed Nov 07 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.5-0.2
d3a6a4
- Requires only malaga-suomi-voikko, BR malaga-devel and malaga-suomi-voikko
d3a6a4
- Remove static archive
d3a6a4
d3a6a4
* Wed Oct 24 2007 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.5-0.1
d3a6a4
- Initial package