[cg3] branch master updated (43155d1 -> ef475f4)

Tino Didriksen tinodidriksen-guest at moszumanska.debian.org
Mon Jun 26 09:57:49 UTC 2017


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

tinodidriksen-guest pushed a change to branch master
in repository cg3.

      from  43155d1   Standards-Version to 3.9.8
       new  6dedb6b   Imported Upstream version 1.0.0~r12254
       new  ef475f4   Imported Debian patch 1.0.0~r12254-1

The 2 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:
 CMakeLists.txt                                     |  23 +-
 ChangeLog                                          | 951 ++++++++++-----------
 README.md                                          |   8 +-
 TODO                                               |   4 +
 clang-format.pl                                    |   2 +-
 cmake.sh                                           |   3 +-
 debian/changelog                                   |   6 +
 debian/control                                     |  15 +-
 debian/copyright                                   |   8 +-
 debian/{libcg3-0.install => libcg3-1.install}      |   0
 debian/{libcg3-0.postinst => libcg3-1.postinst}    |   0
 debian/rules                                       |   1 +
 debian/watch                                       |   2 +-
 emacs/cg.el                                        | 119 +--
 manual/cmdreference.xml                            |  25 +-
 manual/compatibility.xml                           |   6 +-
 manual/grammar.xml                                 |  20 +
 manual/installation.xml                            |  26 +-
 manual/man/cg-comp.1                               |   8 +-
 manual/man/cg-conv.1                               |   6 +-
 manual/man/cg-proc.1                               |   4 +-
 manual/man/cg3-autobin.pl.1                        |   4 +-
 manual/man/vislcg3.1                               |  12 +-
 manual/manual.xml                                  |   2 +-
 manual/probabilistic.xml                           |   4 +-
 manual/rules.xml                                   |  42 +-
 manual/sets.xml                                    |  21 +-
 manual/tags.xml                                    |  16 +-
 newsletters/2017-05-20.txt                         |  49 ++
 scripts/CG3_External.pm                            |  14 +-
 scripts/cg-strictify                               | 202 +++++
 scripts/cg3-autobin.pl.in                          |  12 +-
 scripts/external.pl                                |   2 +-
 scripts/external_text.pl                           |  16 +-
 scripts/profile-revisions.php                      |  12 +-
 src/AST.hpp                                        |  11 +-
 src/ApertiumApplicator.cpp                         |  76 +-
 src/ApertiumApplicator.hpp                         |   3 +-
 src/BinaryGrammar.cpp                              |   2 +-
 src/BinaryGrammar.hpp                              |   6 +-
 src/BinaryGrammar_read.cpp                         |  38 +-
 src/BinaryGrammar_read_10043.cpp                   |  20 +-
 src/BinaryGrammar_write.cpp                        |  58 +-
 src/CMakeLists.txt                                 |  16 +-
 src/Cohort.cpp                                     |  50 +-
 src/Cohort.hpp                                     |  10 +-
 src/CohortIterator.cpp                             |  21 +-
 src/CohortIterator.hpp                             |   2 +-
 src/ContextualTest.cpp                             |   8 +-
 src/ContextualTest.hpp                             |   4 +-
 src/FSTApplicator.cpp                              |  28 +-
 src/FSTApplicator.hpp                              |   2 +-
 src/FormatConverter.cpp                            |   2 +-
 src/FormatConverter.hpp                            |   2 +-
 src/Grammar.cpp                                    | 272 +++---
 src/Grammar.hpp                                    |  13 +-
 src/GrammarApplicator.cpp                          | 153 ++--
 src/GrammarApplicator.hpp                          |  36 +-
 src/GrammarApplicator_matchSet.cpp                 | 139 ++-
 src/GrammarApplicator_reflow.cpp                   | 111 +--
 src/GrammarApplicator_runContextualTest.cpp        | 120 ++-
 src/GrammarApplicator_runGrammar.cpp               |  56 +-
 src/GrammarApplicator_runRules.cpp                 | 784 +++++++++++------
 src/GrammarWriter.cpp                              |  71 +-
 src/GrammarWriter.hpp                              |   2 +-
 src/IGrammarParser.hpp                             |   2 +-
 src/MatxinApplicator.cpp                           |  36 +-
 src/MatxinApplicator.hpp                           |   2 +-
 src/MweSplitApplicator.cpp                         |  34 +-
 src/MweSplitApplicator.hpp                         |   2 +-
 src/NicelineApplicator.cpp                         |  44 +-
 src/NicelineApplicator.hpp                         |   2 +-
 src/PlaintextApplicator.cpp                        |  29 +-
 src/PlaintextApplicator.hpp                        |   4 +-
 src/Reading.cpp                                    |   8 +-
 src/Reading.hpp                                    |   6 +-
 src/Relabeller.cpp                                 |  58 +-
 src/Relabeller.hpp                                 |  10 +-
 src/Rule.cpp                                       |  22 +-
 src/Rule.hpp                                       |  64 +-
 src/Set.cpp                                        |   4 +-
 src/Set.hpp                                        |   6 +-
 src/SingleWindow.cpp                               |  12 +-
 src/SingleWindow.hpp                               |   2 +-
 src/Strings.cpp                                    |  12 +-
 src/Strings.hpp                                    |   8 +-
 src/Tag.cpp                                        |  36 +-
 src/Tag.hpp                                        |  16 +-
 src/TagTrie.hpp                                    |  32 +-
 src/TextualParser.cpp                              | 182 +++-
 src/TextualParser.hpp                              |   9 +-
 src/Window.cpp                                     |  28 +-
 src/Window.hpp                                     |   2 +-
 src/bloomish.hpp                                   |   6 +-
 src/cg-mwesplit.cpp                                |   4 +-
 src/cg-relabel.cpp                                 |   4 +-
 src/cg3.h                                          |   7 +-
 src/cg_comp.cpp                                    |   2 +-
 src/cg_conv.cpp                                    |   9 +-
 src/cg_proc.cpp                                    |   7 +-
 src/flat_unordered_map.hpp                         |   4 +-
 src/flat_unordered_set.hpp                         |   4 +-
 src/inlines.hpp                                    |  79 +-
 src/interval_vector.hpp                            |   4 +-
 src/istream.hpp                                    |   4 +-
 src/libcg3.cpp                                     |  44 +-
 src/main.cpp                                       |  43 +-
 src/options.hpp                                    |   6 +-
 src/options_conv.hpp                               |   6 +-
 src/parser_helpers.hpp                             |  48 +-
 src/process.hpp                                    |   2 +-
 src/scoped_stack.hpp                               |   2 +-
 src/sorted_vector.hpp                              |  19 +-
 src/stdafx.hpp                                     |  19 +-
 src/test_libcg3.c                                  |   2 +-
 src/uextras.cpp                                    |   2 +-
 src/uextras.hpp                                    |   4 +-
 src/version.hpp                                    |  20 +-
 .../{T_SuperBlanks => T_Flush}/expected.txt        | Bin 100 -> 105 bytes
 .../{T_CharsInWhiteSpace => T_Flush}/grammar.cg3   |   0
 test/Apertium/{T_SuperBlanks => T_Flush}/input.txt | Bin 142 -> 147 bytes
 test/Apertium/T_Flush/run.pl                       |  61 ++
 test/T_Append/expected.txt                         |   6 +-
 test/T_Append/grammar.cg3                          |   2 +-
 test/T_Dependency_Loops/grammar.cg3                |   2 +-
 test/T_External/run.pl                             |   2 +-
 test/T_JumpExecute/expected.txt                    |  18 +-
 test/T_MapAdd_Different/expected.txt               |   6 +-
 test/T_MapAdd_Different/grammar.cg3                |   8 +-
 test/T_MapAdd_Different/grammar.cg3b.10043         | Bin 907 -> 0 bytes
 test/T_MapAdd_Different/input.txt                  |   2 +-
 test/T_Movement/expected.txt                       |  12 +-
 test/T_Movement/grammar.cg3                        |   2 +
 test/T_Movement/grammar.cg3b.10043                 | Bin 1574 -> 0 bytes
 test/T_Movement/input.txt                          |  14 +-
 test/T_MweSplit/run.pl                             |   4 +-
 test/T_RelabelList/run.pl                          |   2 +-
 test/T_RelabelList_Apertium/run.pl                 |   2 +-
 test/T_RelabelSet/run.pl                           |   2 +-
 test/T_RemCohort/expected.txt                      |  40 +-
 test/T_RemCohort/grammar.cg3                       |   3 +
 test/T_RemCohort/grammar.cg3b.10043                | Bin 2239 -> 0 bytes
 test/T_RemCohort/input.txt                         |  22 +-
 test/T_SetOps/expected.txt                         |  18 +-
 test/T_SetOps/grammar.cg3                          |   3 +-
 test/T_SetOps/grammar.cg3b.10043                   | Bin 1437 -> 0 bytes
 test/T_SubReadings_Apertium/run.pl                 |   2 +-
 test/T_SubstituteNil/grammar.cg3                   |   5 +-
 test/T_SubstituteNil/grammar.cg3b.10043            | Bin 543 -> 0 bytes
 test/T_SubstituteNil/input.txt                     |   2 +-
 test/clean.sh                                      |   2 +-
 test/runall.pl                                     |   4 +-
 152 files changed, 3042 insertions(+), 1988 deletions(-)
 rename debian/{libcg3-0.install => libcg3-1.install} (100%)
 rename debian/{libcg3-0.postinst => libcg3-1.postinst} (100%)
 create mode 100644 newsletters/2017-05-20.txt
 create mode 100755 scripts/cg-strictify
 copy test/Apertium/{T_SuperBlanks => T_Flush}/expected.txt (60%)
 copy test/Apertium/{T_CharsInWhiteSpace => T_Flush}/grammar.cg3 (100%)
 copy test/Apertium/{T_SuperBlanks => T_Flush}/input.txt (87%)
 create mode 100755 test/Apertium/T_Flush/run.pl
 delete mode 100644 test/T_MapAdd_Different/grammar.cg3b.10043
 delete mode 100644 test/T_Movement/grammar.cg3b.10043
 delete mode 100644 test/T_RemCohort/grammar.cg3b.10043
 delete mode 100644 test/T_SetOps/grammar.cg3b.10043
 delete mode 100644 test/T_SubstituteNil/grammar.cg3b.10043

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/cg3.git



More information about the debian-science-commits mailing list