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