The NetBSD Project

CVS log for pkgsrc/textproc/hunspell/PLIST

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / textproc / hunspell

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.9 / (download) - annotate - [select for diffs], Fri Nov 16 13:02:20 2018 UTC (5 years, 4 months ago) by bsiegert
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, HEAD
Changes since 1.8: +2 -4 lines
Diff to previous 1.8 (colored)

Update hunspell to 1.7.0.

Bump ABI_DEPENDS in bl3.mk.

New features and bug fixes by Laszlo Nemeth, supported by FSF.hu Foundation:

  ãàNo annoying suggestion times any more, especially in languages with
    compound word handling and complex morphology. By adding balanced
    multi-level time limits, now the guaranteed suggestion time is there
    within half a second, not seconds (nor dozen of seconds or more
    in extreme cases) for longer misspellings, too.

  add SPELLML support for run-time dictionary extension with optional
    affixation of user words. See new "Grammar By" feature of
    language-specific user dictionaries of LibreOffice 6.0:

    News: https://wiki.documentfoundation.org/ReleaseNotes/6.0#.E2.80.9CGrammar_By.E2.80.9D_spell_checking

    Screencast with English example: https://www.youtube.com/watch?v=EsS3gaBTfOo

    Screencast with German example: https://www.youtube.com/watch?v=aYVFDqCUb6I

  Improved, highly customizable suggestions on level of dictionary words:
    Pronunciations and typical misspellings defined by optional "ph:" fields of
    the dictionary words are used not only in n-gram suggestions, but as
    elements of the REP replacement list getting the highest priority in normal
    suggestions, also giving the best suggestions for short words, too.
    More information: see "ph:" in man 5 hunspell.

  Handling multiple word suggestions is much more easier. Like in a
    traditional spelling dictionary, for example, to get the correct suggestion
    "a lot" for the typical misspelling "alot" at the first place, now it's
    enough to put the following line to the dic(tionary) file:

    a lot

  Limit compound overgeneration by dictionary based word pairs:
    Now it's possible to filter bad compound words by listing
    the correct word pairs with space in the dictionary, as in a traditional
    spelling dictionary.

  clean-up suggestion:

      no n-gram and compound word suggestions, if "good" suggestion
        exists, ie. uppercase, REP, ph: or dictionary word pair suggestions

      word pairs are always suggested, if they exist in the dic file

      word pairs have top priority in suggestions, and
        these are the only suggestions if there is no other good suggestion.

      also dictionary word pairs separated by dash instead of space
        are handled specially in two-word suggestion (depending from the
        language)

  limit bad suggestions by improved n-gram suggestion rules:

    don't suggest capitalized dictionary words for lower
    case misspellings in n-gram suggestions, except

      PHONE usage, or
      in the case of German, where not only proper
        nouns are capitalized, or
      the capitalized word has special pronunciation

    and don't suggest if the difference of lengths of misspellings and
    suggestions is 5 or more characters.

  Extend dotless i and dotted I rules to Crimean Tatar language
    Allow dotted I in dictionary, and disable bad capitalization of i.

  BREAK: extended recursive word breaking algorithm to handle words or
    words with suffixes when they already contain word break characters,
    for example, "e-mail" is a dictionary word with a word break character, and
    it wasn't accepted before in compounds in some languages.

  FORBIDDENWORD precedes BREAK: Now it's possible to forbid compound
    forms recognized by BREAK word breaking by adding the bad compounds to
    the dictionary with FORBIDDENWORD flags.

  lower limit for "doubletwochars" suggestion algorithm:
    one of the typical misspellings recognized by Hunspell suggestion
    mechanism is the syllable duplication. Along the old pattern
    ABABA -> ABA, for example nutrITITIon -> nutrITIon, now also the
    simpler ABAB -> AB pattern is recognized in non-starting position,
    for example, regretTETEd -> regretTEd.

  lower limit for longswapchar and movechar: recognized only max.
    4-character distances to avoid slow and bad suggestions.

  fix compound handling for new Hungarian orthography reform

  Allow suggestion search for prefix + two suffixes:
    Remove artificial performance limit to get correct
    suggestions for relatively simple misspellings in
    Hungarian, etc., when the word form contains prefix
    and both derivative and inflectional suffixes, too:

    lefikszálása -> lefixálása

Improvements for command-line Hunspell:

  Remove false alarms during checking OpenDocument (ODF)
    documents by ignoring <text:span> elements. (LibreOffice
    creates a lot of <text:span> elements also within words
    during text reediting, resulted often huge amount of broken
    words before this fix.)

  List filenames during filtering multiple files in command-line:

    Examples:

    $ hunspell -l *.odt
    a.odt: mispelling
    b.odt: egzample

    $ hunspell -l -G *.odt
    a.odt: good
    b.odt: words

  Dictionary search by option -D doesn't wait for the standard input
    (fixed by Siva Mahadevan)

Other improvements:

  makealias dictionary compression: add option --minimize-diff
    to reuse free positions of alias lists to create minimal and
    readable diffs for alias compressed dictionaries stored in
    revision control systems, as dictionaries of LibreOffice.

  Brazilian-Portuguese translation by Rafael Fontenelle

  Catalan translation by robert dot buj at gmail

  Minor bug fixes by several contributors, see git log

Revision 1.8 / (download) - annotate - [select for diffs], Tue Oct 23 11:45:34 2018 UTC (5 years, 5 months ago) by bsiegert
Branch: MAIN
Changes since 1.7: +2 -15 lines
Diff to previous 1.7 (colored)

Update hunspell to 1.6.2.

1.6.2

Library changes: no. Same as 1.6.1.
Command line tool:
-   Added German translation
-   Fixed bug with wrong output encoding, not respecting system locale.

1.6.1

Library changes:
-   Performance improvements in suggest()
-   Fixes regressions for Hungarian related to compounding.
-   Fixes regressions for Korean related to ICONV.
Command line tool:
-   Added Tajik translation
-   Fix regarding serching of OOo dicts installed in user folder
Manpages:
-   Fix microsoft-cp1251 to cp1251. Dicts should not use the first.
-   Typos.

1.6.0

Changes in the library:
-   Performance improvement in ngsuggest(), suggestions should be faster.
-   Revert MAXWORDLEN to 100 as in 1.3.3 for performance reasons.
-   MAXWORDLEN can be set during build time with -D defines.
-   Fix crash when word with 102 consecutive X is spelled.
Changes in the command line tool:
-   -D shows all loaded dictionares insted of only the first.
-   -D properly lists all available dictionaries on Windows.


1.5.4

Fixes bug related to the Hungarian dictionary and the command COMPOUNDSYLLABLE

1.5.3

Remove a unneded #include header in the public hunspell.hxx

1.5.2

Fixes backward compatibility with 1.4 at API level. Now it should be complete.

1.5.1

-   Lot of stability fixes
-   Fixed compilation errors on various systems (Windows, FreeBSD)
-   Small performance improvement compared to 1.4.0
-   Added new API with C++ types (string, vector), yet full API backward compatibility with 1.4 is kept

1.4.1

Past begin() iterator decrement error

VS Debug build threw error on decrement past begin.

1.4.0

New release that strips out fixed length buffers from large parts of the library
Note: dictmgr.hxx header is dropped

Revision 1.7 / (download) - annotate - [select for diffs], Fri Oct 19 17:57:42 2018 UTC (5 years, 5 months ago) by bsiegert
Branch: MAIN
Changes since 1.6: +4 -4 lines
Diff to previous 1.6 (colored)

Rename analyze, munch and unmunch tools.

These names are way too generic to go into bin/, and folks on the mailing
list agreed. Now they have a "hunspell-" prefix.

Bump revision.

Revision 1.6 / (download) - annotate - [select for diffs], Sun Jun 7 08:22:24 2015 UTC (8 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2
Changes since 1.5: +2 -4 lines
Diff to previous 1.5 (colored)

Update to 1.3.3, provided by David H. Gutteridge in PR 49949:

Change log:

2014-06-02 Néíeth Láózl<nemeth at numbertext dot org>:
        * escape spaces in paths of ODF files

2014-05-28 Néíeth Láózl<nemeth at numbertext dot org>:
        * add long path/Unicode path support in WIN32 environment:
        - hunspell#233 (reported by mahak gark) and LibreOffice fdo#48017
        * flat ODF support, eg.:
          hunspell doc.fodt
          cat doc.fodt | hunspell -l -O
        * new options:
        - -X (XML) input format
        - -O (ODF or flat ODF) input format
        - --check-apostrophe: check and force Unicode apostrophe usage
          (ASCII or Unicode apostrophe has to be in the
          WORDCHARS section of the affix file)
        * fix ODF support:
        - break 1-line XML of ODT documents at </style:style>, too,
          not only at </text:p> (limiting tokenization problems, when
          fgets stops within an XML tag)
        - show ODF file path on the UI instead of the temporary file
        * fix XML support:
        - ', ", &, < and > in replacements converted to XML entities
        - recognize &apos at tokenization, depending from WORDCHARS
        - &apos; in tokens converted to ' before spell checking and
          in the output of the pipe interface
        * better apostrophe usage:
        - WORDCHARS only with one of the Unicode or ASCII apostrophe
          results extended word tokenization: both of them will be part of
          the words (if they are inside: eg. word's, but not words').
        - convert Unicode apostrophes to ASCII ones for 8-bit dictionaries
          (eg. English dictionaries), or for UTF-8 dictionaries only
          with ASCII apostrophe supports (eg. French dictionaries).
        * updated manual:
        - hunspell.4 renamed to hunspell.5, see
          hunspell#241 reported by Cristopher Yeleighton
        - updated translations
        - note about long/Unicode paths in WIN32 (hunspell.3)

2014-04-25 Néíeth Láózl<nemeth at numbertext dot org>:
        * OpenDocument support, eg.
          hunspell *.odt
          hunspell -l *.odt
        * always load default personal dictionary (fix
          filtering bad words - reduce this word list - using
          it as a personal dictionary workflow)
        * fix parsing/URL recognition problem (bad tokens
          with aposthrophes)

2013-07-25 pchang9@cs.wisc.edu
        * moz#897255 Wasted work in line_uniq
        * moz#897780 Wasted work in SuggestMgr::twowords

2013-07-25 Caoláî McNamara <caolanm at LibO>:
        * hunspell#167 layout problems with long lines
                - based on the original fix by xorho
                  adapted to HEAD
        * rhbz#925562 upgrade config.guess for aarch64

2013-07-24 pchang9@cs.wisc.edu
        * moz#896301 Wasted work in SfxEntry::checkword
        * moz#896844 Wasted work in AffixMgr::defcpd_check

2013-06-13 Konstantin Khlebniko
        * #49 HashMgr::add_word computes wrong size for struct hentry

2013-06-13 Ville Skytt        * #53 Man page syntax fixes

2013-04-19 John Thomson <john thomson at SIL>
        * win_api: add remove() of Hunspell API (hun#3606435)

2013-04-19 Rouslan Solomokhin <at sf.net>
        * fix crash in suggestions for 99-character long words
          by extending arrays of SuggestMgr::forgotchar_*
          (hun#3595024, also http://crbug.com/130128),
          thanks to also Pawe&#65533;<82> Hajdan to report the patch

2013-04-01 Caoláî McNamara <caolanm at LibO>:
        * hunspell: -Werror=undef

2013-03-13 Caoláî McNamara <caolanm at LibO>:
        * rhbz#918938 crash in interaction with danish thesaurus

2012-09-18 Néíeth Láózl<nemeth at numbertext dot org>:
        * src/hunspell/affixmgr.*: - fix morphological analysis of
        compound words (hun#3544994, reported by Dáöid Nemeskey, fdo#55045)

2012-06-29 Caoláî McNamara <caolanm at LibO>:
        * fix various coverity warnings

2012-01-10 Ehsan Akhgari <ehsan at mozilla dot com>
        * moz#710940 Firefox Crash [@ AffixMgr::parse_file(char const*, char
        const*) ]

2011-12-16 Jared Wein <jwein at mozilla dot com>
        * moz#710967 Incorrect argument passed to strncmp in
        AffixMgr::parse_convtable

2011-12-06 Caoláî McNamara <caolanm at LibO>:
        * rhbz#759647 fixed tempname of hunSPELL.bak collides with other users
        when multiple edits in one dir

2011-10-13 Caoláî McNamara <caolanm at LibO>:
        * moz#694002 crash in hunspell affixmgr on exit with bad .aff
        * leak in hunspell affixmgr with bad .aff

2011-09-19 Caoláî McNamara <caolanm at LibO>:
        * make libparsers.a not installed thanks to Tom ChváÕal

2011-06-23 CaoláÏ McNamara <caolanm at LibO>:
        * fix some windows compiler warnings

2011-05-24 NñÎeth LáÔzl<nemeth at numbertext dot org>:
        * src/hunspell/affixmgr.*: allow twofold suffixes in compounds
          by extended version of Arno Teigseth's patch, see hun#3288562.
        - new option for this feature: COMPOUNDMORESUFFIXES

2011-02-16 NñÎeth LáÔzl<nemeth at numbertext dot org>:
        * src/*/Makefile.am: fix library versioning, the probem reported by
          Rene Engerhald and Simon Brouwer.

        * man/hunspell.4: new version based on the revised version of Ruud Baars

Revision 1.5 / (download) - annotate - [select for diffs], Mon Feb 13 14:42:59 2012 UTC (12 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1
Changes since 1.4: +9 -5 lines
Diff to previous 1.4 (colored)

Update to 1.3.2:

2011-02-02: Hunspell 1.3.2 release:
  - fix library versioning
  - improved manual

2011-02-02: Hunspell 1.3.1 release:
  - bug fixes

2011-01-26: Hunspell 1.2.15/1.3 release:
  - new features: MAXDIFF, ONLYMAXDIFF, MAXCPDSUGS, FORBIDWARN, see manual
  - bug fixes

2011-01-21:
  - new features: FORCEUCASE and WARN, see manual
  - new options: -r to filter potential mistakes (rare words
    signed by flag WARN in the dictionary)
  - limited and optimized suggestions

2011-01-06: Hunspell 1.2.14 release:
  - bug fix
2011-01-03: Hunspell 1.2.13 release:
  - bug fixes
  - improved compound handling and
    other improvements supported by OpenTaal Foundation, Netherlands
2010-07-15: Hunspell 1.2.12 release
2010-05-06: Hunspell 1.2.11 release:
  - Maintenance release bug fixes
2010-04-30: Hunspell 1.2.10 release:
  - Maintenance release bug fixes
2010-03-03: Hunspell 1.2.9 release:
  - Maintenance release bug fixes and warnings
  - MAP support for composed characters or character sequences

Revision 1.4 / (download) - annotate - [select for diffs], Sun Jun 14 18:17:18 2009 UTC (14 years, 9 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.3: +1 -5 lines
Diff to previous 1.3 (colored)

Remove @dirrm entries from PLISTs

Revision 1.3 / (download) - annotate - [select for diffs], Sun Feb 8 18:25:40 2009 UTC (15 years, 1 month ago) by ahoka
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.2: +5 -1 lines
Diff to previous 1.2 (colored)

Update to 1.2.8.
No longer needs ncurses (at least on NetBSD 5.0).

Official changelog:

2008-11-01: Hunspell 1.2.8 release:
  - Default BREAK feature and better hyphenated word suggestion to accept
    and fix (compound) words with hyphen characters by spell checker
    instead of by work breaking code of OpenOffice.org. With this feature
    it's possible to accept hyphenated compound words, such as "scot-free",
    where "scot" is not a correct English word.

  - ICONV & OCONV: input and output conversion tables for optional character
    handling or using special inner format. Example:

  # Accepting de facto replacements of the Romanian comma acuted letters
  SET UTF-8
  ICONV 4
  ICONV  
  ICONV £ 
  ICONV  
  ICONV ¢ 

    Typical usage of ICONV/OCONV is to manage an inner format for a segmental
    writing system, like the Ethiopic script of the Amharic language.

  - Extended CHECKCOMPOUNDPATTERN to handle conpound word alternations, like
    sandhi feature of Telugu and other writing systems.

  - SIMPLIFIEDTRIPLE compound word feature: allow simplified Swedish and
    Norwegian compound word forms, like till¥ta (till|l¥ta) and
    bussj¥f¸r (buss|sj¥f¸r)

  - wordforms: word generator script for dictionary developers (Hunspell
    version of unmunch).

  - bug fixes

2008-08-15: Hunspell 1.2.7 release:
  - 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

2008-07-15: Hunspell 1.2.6 release:
  - bug fix release (fix affix rule condition checking of sk_SK dictionary,
    iconv support in stemming and morphological analysis of the Hunspell
    utility, see also Changelog)

2008-07-09: Hunspell 1.2.5 release:
  - bug fix release (fix affix rule condition checking of en_GB dictionary,
    also morphological analysis by dictionaries with two-level suffixes)

2008-06-18: Hunspell 1.2.4-2 release:
  - fix GCC compiler warnings

2008-06-17: Hunspell 1.2.4 release:
  - add free_list() for C, C++ interfaces to deallocate suggestion lists

  - bug fixes

2008-06-17: Hunspell 1.2.3 release:
  - extended XML interface to use morphological functions by standard
    spell checking interface, spell() and suggest(). See hunspell.3 manual page.

  - default dash suggestions for compound words: newword-> new word and new-word

  - new manual pages: hunspell.3, hzip.1, hunzip.1.

  - bug fixes

Revision 1.2 / (download) - annotate - [select for diffs], Mon Apr 14 09:39:00 2008 UTC (15 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.1: +9 -2 lines
Diff to previous 1.1 (colored)

Update to 1.2.2.

pkgsrc change:
buildlink3.mk:
Bump API_DEPENDS, since shlib name changed.  No dependencies in pkgsrc.

Release notes:
2008-04-12: Hunspell 1.2.2 release:
  - extended dictionary (dic file) support to use multiple base and
    special dictionaries.

  - new and improved options of command line hunspell:
    -m: morphological analysis or flag debug mode (without affix
        rule data it signs the flag of the affix rules)
    -s: stemming mode
    -D: list available dictionaries and search path
    -d: support extra dictionaries by comma separated list. Example:

    hunspell -d en_US,en_med,de_DE,de_med,de_geo UNESCO.txt

    - forbidding in personal dictionary (with asterisk, / signs affixation)

  - optional compressed dictionary format "hzip" for aff and dic files
    usage:
    hzip example.aff example.dic
    mv example.aff example.dic /tmp
    hunspell -d example
    hunzip example.aff.hz >example.aff
    hunzip example.dic.hz >example.dic

  - new affix compression tool "affixcompress": compression tool for
    large (millions of words) dictionaries.

  - support encrypted dictionaries for closed OpenOffice.org extensions or
    other commercial programs

  - improved manual

  - bug fixes

2007-11-01: Hunspell 1.2.1 release:
  - new memory efficient condition checking algorithm for affix rules

  - new morphological functions:
    - stem() for stemming
    - analyze() for morphological analysis
    - generate() for morphological generation

  - new demos:
    - analyze: stemming, morphological analysis and generation
    - chmorph: morphological conversion of texts

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Sep 11 17:40:29 2007 UTC (16 years, 6 months ago) by wiz
Branch: TNF
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-20070911
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Initial import of hunspell-1.12.2, packaged for pkgsrc-wip by Adam Hoka,
updated to latest version by me:

Hunspell is the default spell checker of OpenOffice.org office suite
and expectant spell checker of Mozilla Firefox and Thunderbird.

Main features:

  * Unicode support.
  * Conditional and multiple affixes for languages with rich morphology.
  * Extended compound word support.
  * Morphological analysis (in custom item and arrangement style).
  * Hunspell is based on MySpell and works also with MySpell dictionaries.
  * GPL/LGPL/MPL tri-license

Revision 1.1 / (download) - annotate - [select for diffs], Tue Sep 11 17:40:29 2007 UTC (16 years, 6 months ago) by wiz
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>