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