OBS User unknown 2008-08-15 21:55:25 +00:00 committed by Git OBS Bridge
parent 44f6617d91
commit 308e63c94e
4 changed files with 59 additions and 7 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c88bfa865d5aa977957e325f6d9ee3842c892934d93bd20043e1ccadb6825c1a
size 616891

3
hunspell-1.2.7.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:573e503a81597dfcda5554f8b629c44abc2b113bab88c1c32fff933846c036d7
size 629414

View File

@ -1,3 +1,27 @@
-------------------------------------------------------------------
Fri Aug 15 13:37:06 CEST 2008 - lmichnovic@suse.cz
- update to version 1.2.7
* FULLSTRIP: new option for affix handling. With FULLSTRIP, affix
rules can strip full words, not only one less characters.
* COMPOUNDRULE works with all flag types. (COMPOUNDRULE is for
pattern matching. For example, en_US dictionary of
OpenOffice.org uses COMPOUNDRULE for ordinal number recognition:
1st, 2nd, 11th, 12th, 22nd, 112th, 1000122nd etc.).
* optimized suggestions:
- modified 1-character distance suggestion algorithms: search
a TRY character in all position instead of all TRY characters
in a character position (it can give more readable suggestion
order, also better suggestions in the first positions, when
TRY characters are sorted by frequency.)
For example, suggestions for "moze":
ooze, doze, Roze, maze, more etc. (Hunspell 1.2.6),
maze, more, mote, ooze, mole etc. (Hunspell 1.2.7).
* extended compound word checking for better COMPOUNDRULE related
suggestions, for example English ordinal numbers: 121323th ->
121323rd (it needs also a th->rd REP definition).
* bug fixes (see Changelog)
-------------------------------------------------------------------
Tue Jul 15 15:29:08 CEST 2008 - lmichnovic@suse.cz

View File

@ -1,10 +1,17 @@
#
# spec file for package hunspell (Version 1.2.6)
# spec file for package hunspell (Version 1.2.7)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
@ -12,7 +19,7 @@
Summary: Hunspell - a spell checker and morphological analyzer library
Name: hunspell
Version: 1.2.6
Version: 1.2.7
Release: 1
License: GPL v2 or later; LGPL v2.1 or later; MOZILLA PUBLIC LICENSE (MPL/NPL)
Group: System/Libraries
@ -150,6 +157,27 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/libhunspell-*.a
%changelog
* Fri Aug 15 2008 lmichnovic@suse.cz
- update to version 1.2.7
* FULLSTRIP: new option for affix handling. With FULLSTRIP, affix
rules can strip full words, not only one less characters.
* COMPOUNDRULE works with all flag types. (COMPOUNDRULE is for
pattern matching. For example, en_US dictionary of
OpenOffice.org uses COMPOUNDRULE for ordinal number recognition:
1st, 2nd, 11th, 12th, 22nd, 112th, 1000122nd etc.).
* optimized suggestions:
- modified 1-character distance suggestion algorithms: search
a TRY character in all position instead of all TRY characters
in a character position (it can give more readable suggestion
order, also better suggestions in the first positions, when
TRY characters are sorted by frequency.)
For example, suggestions for "moze":
ooze, doze, Roze, maze, more etc. (Hunspell 1.2.6),
maze, more, mote, ooze, mole etc. (Hunspell 1.2.7).
* extended compound word checking for better COMPOUNDRULE related
suggestions, for example English ordinal numbers: 121323th ->
121323rd (it needs also a th->rd REP definition).
* bug fixes (see Changelog)
* Tue Jul 15 2008 lmichnovic@suse.cz
- update to version 1.2.6
* affentry.cxx: fixes of the affix rule matching algorithm