[hunspell] branch upstream updated (2cd2c7c -> 84f2666)

Rene Engelhard rene at moszumanska.debian.org
Mon May 8 15:08:00 UTC 2017


This is an automated email from the git hooks/post-receive script.

rene pushed a change to branch upstream
in repository hunspell.

      from  2cd2c7c   New upstream version 1.6.0
       new  84f2666   New upstream version 1.6.1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                          |  13 +
 appveyor.yml                                       |   8 +-
 configure.ac                                       |   4 +-
 license.hunspell                                   |   9 +-
 man/hu/hunspell.5                                  |   2 +-
 man/hunspell.1                                     |   2 +-
 man/hunspell.3                                     |   2 +-
 man/hunspell.5                                     |  10 +-
 po/LINGUAS                                         |   2 +-
 po/{es.po => tg.po}                                | 257 +++++++-------
 src/hunspell/Makefile.am                           |   2 +-
 src/hunspell/affentry.cxx                          |   9 +-
 src/hunspell/affentry.hxx                          |   9 +-
 src/hunspell/affixmgr.cxx                          |  31 +-
 src/hunspell/affixmgr.hxx                          |   9 +-
 src/hunspell/atypes.hxx                            |   9 +-
 src/hunspell/baseaffix.hxx                         |   9 +-
 src/hunspell/csutil.cxx                            |  66 ++--
 src/hunspell/csutil.hxx                            |   9 +-
 src/hunspell/filemgr.cxx                           |   9 +-
 src/hunspell/filemgr.hxx                           |   9 +-
 src/hunspell/hashmgr.cxx                           |  25 +-
 src/hunspell/hashmgr.hxx                           |  10 +-
 src/hunspell/htypes.hxx                            |   9 +-
 src/hunspell/hunspell.cxx                          |  28 +-
 src/hunspell/hunspell.hxx                          |   9 +-
 src/hunspell/hunzip.cxx                            |   9 +-
 src/hunspell/hunzip.hxx                            |   9 +-
 src/hunspell/langnum.hxx                           |   9 +-
 src/hunspell/phonet.cxx                            |   3 +-
 src/hunspell/replist.cxx                           |  39 +-
 src/hunspell/replist.hxx                           |   9 +-
 src/hunspell/suggestmgr.cxx                        | 159 +++++----
 src/hunspell/suggestmgr.hxx                        |   9 +-
 src/hunspell/utf_info.cxx                          |   9 +-
 src/hunspell/w_char.hxx                            |   9 +-
 src/hunspell2/.astylerc                            |   2 -
 src/hunspell2/.clang-format                        |   6 +
 src/hunspell2/aff_manager.cxx                      | 237 ++++++-------
 src/hunspell2/aff_manager.hxx                      |  46 ++-
 src/hunspell2/clang-format.sh                      |   1 +
 src/hunspell2/dic_manager.cxx                      |  38 +-
 src/hunspell2/dic_manager.hxx                      |  41 +--
 src/hunspell2/dict_finder.cxx                      | 395 +++++++++++++++++++++
 src/hunspell2/dict_finder.hxx                      |  40 +++
 src/hunspell2/hunspell.hxx                         | 117 ++++++
 src/hunspell2/main.cxx                             | 161 ++++++++-
 src/hunspell2/string_utils.hxx                     |  35 +-
 src/parsers/Makefile.am                            |   2 +-
 src/parsers/firstparser.cxx                        |   9 +-
 src/parsers/firstparser.hxx                        |  17 +-
 src/parsers/htmlparser.cxx                         |   9 +-
 src/parsers/htmlparser.hxx                         |  17 +-
 src/parsers/latexparser.cxx                        |   9 +-
 src/parsers/latexparser.hxx                        |  17 +-
 src/parsers/manparser.cxx                          |   9 +-
 src/parsers/manparser.hxx                          |  17 +-
 src/parsers/odfparser.cxx                          |   9 +-
 src/parsers/odfparser.hxx                          |  15 +-
 src/parsers/testparser.cxx                         |   9 +-
 src/parsers/textparser.cxx                         |  16 +-
 src/parsers/textparser.hxx                         |  19 +-
 src/parsers/xmlparser.cxx                          |   9 +-
 src/parsers/xmlparser.hxx                          |  17 +-
 src/tools/Makefile.am                              |   2 +-
 src/tools/analyze.cxx                              |   9 +-
 src/tools/chmorph.cxx                              |   9 +-
 src/tools/example.cxx                              |   9 +-
 src/tools/{hunzip.cxx => fuzzer.cxx}               |  75 ++--
 src/tools/hunspell.cxx                             |  40 ++-
 src/tools/hunzip.cxx                               |   9 +-
 src/tools/hzip.cxx                                 |   9 +-
 src/tools/munch.cxx                                |   9 +-
 src/tools/unmunch.cxx                              |   9 +-
 src/tools/unmunch.h                                |   9 +-
 tests/.gitattributes                               |   8 +-
 tests/Makefile.am                                  |  10 +
 tests/hu.aff                                       |  23 ++
 tests/hu.dic                                       |  16 +
 tests/hu.good                                      |   7 +
 tests/{1975530.test => hu.test}                    |   0
 tests/hu.wrong                                     |   3 +
 tests/iconv2.aff                                   |   8 +
 tests/iconv2.dic                                   |   5 +
 tests/iconv2.good                                  |   4 +
 tests/{1463589_utf.test => iconv2.test}            |   0
 .../suggestiontest/List_of_common_misspellings.txt |   3 +
 tests/test.sh                                      |   8 +-
 88 files changed, 1523 insertions(+), 905 deletions(-)
 copy po/{es.po => tg.po} (51%)
 delete mode 100644 src/hunspell2/.astylerc
 create mode 100644 src/hunspell2/.clang-format
 create mode 100755 src/hunspell2/clang-format.sh
 create mode 100644 src/hunspell2/dict_finder.cxx
 create mode 100644 src/hunspell2/dict_finder.hxx
 create mode 100644 src/hunspell2/hunspell.hxx
 copy src/tools/{hunzip.cxx => fuzzer.cxx} (50%)
 create mode 100644 tests/hu.aff
 create mode 100644 tests/hu.dic
 create mode 100644 tests/hu.good
 copy tests/{1975530.test => hu.test} (100%)
 create mode 100644 tests/hu.wrong
 create mode 100644 tests/iconv2.aff
 create mode 100644 tests/iconv2.dic
 create mode 100644 tests/iconv2.good
 copy tests/{1463589_utf.test => iconv2.test} (100%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-openoffice/hunspell.git



More information about the Pkg-openoffice-commits mailing list