[cg3] branch master updated (9db6db5 -> d6018b0)
    Tino Didriksen 
    tinodidriksen-guest at moszumanska.debian.org
       
    Sun Jun 21 17:25:35 UTC 2015
    
    
  
This is an automated email from the git hooks/post-receive script.
tinodidriksen-guest pushed a change to branch master
in repository cg3.
      from  9db6db5   Add patch to fix FTBFS on buildds
       new  9b32cea   Imported Upstream version 0.9.9~r10784
       new  d6018b0   Imported Debian patch 0.9.9~r10784-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                                         | 947 +++++++++-------------
 TODO                                              |   8 +-
 cg3.g                                             |   7 +-
 debian/changelog                                  |   6 +
 debian/control                                    |   2 +-
 debian/copyright                                  |  32 +-
 emacs/cg.el                                       |  44 +-
 get-boost.sh                                      |   2 +-
 include/exec-stream/exec-stream.cpp               | 466 -----------
 include/exec-stream/exec-stream.h                 | 163 ----
 include/exec-stream/posix/exec-stream-helpers.cpp | 842 -------------------
 include/exec-stream/posix/exec-stream-helpers.h   | 239 ------
 include/exec-stream/posix/exec-stream-impl.cpp    | 386 ---------
 include/exec-stream/win/exec-stream-helpers.cpp   | 727 -----------------
 include/exec-stream/win/exec-stream-helpers.h     | 183 -----
 include/exec-stream/win/exec-stream-impl.cpp      | 315 -------
 include/posix/popen_plus.c                        | 183 +++++
 include/posix/popen_plus.h                        |  56 ++
 {win32 => include/win32}/getopt.c                 |   0
 {win32 => include/win32}/getopt.h                 |   0
 manual/cgkeywords.xml                             |  26 +
 manual/cmdreference.xml                           | 116 +--
 manual/contexts.xml                               |  17 +
 manual/grammar.xml                                |  74 ++
 manual/sets.xml                                   |  35 +-
 manual/tags.xml                                   |  40 +
 scripts/cg3-autobin.pl.in                         |   6 +-
 src/ApertiumApplicator.cpp                        |   6 +-
 src/BinaryGrammar_read.cpp                        | 204 +++--
 src/BinaryGrammar_read_10043.cpp                  | 196 ++---
 src/BinaryGrammar_write.cpp                       |  92 ++-
 src/CMakeLists.txt                                |  15 +-
 src/ContextualTest.cpp                            |  12 +-
 src/ContextualTest.hpp                            |  18 +-
 src/FSTApplicator.cpp                             |  58 +-
 src/FSTApplicator.hpp                             |   4 +
 src/Grammar.cpp                                   | 228 ++++--
 src/Grammar.hpp                                   |  32 +-
 src/GrammarApplicator.cpp                         | 104 ++-
 src/GrammarApplicator.hpp                         | 110 +--
 src/GrammarApplicator_matchSet.cpp                | 228 +++---
 src/GrammarApplicator_reflow.cpp                  |  36 +-
 src/GrammarApplicator_runContextualTest.cpp       |  83 +-
 src/GrammarApplicator_runGrammar.cpp              |   6 +-
 src/GrammarApplicator_runRules.cpp                | 119 ++-
 src/GrammarWriter.cpp                             |   9 +-
 src/IGrammarParser.hpp                            |   3 +-
 src/NicelineApplicator.cpp                        |   6 +-
 src/PlaintextApplicator.cpp                       |   2 +-
 src/Reading.cpp                                   |  19 +
 src/Reading.hpp                                   |   1 +
 src/Set.cpp                                       |   4 +
 src/Strings.cpp                                   |  12 +-
 src/Strings.hpp                                   |  10 +
 src/Tag.cpp                                       | 282 +------
 src/Tag.hpp                                       |  24 +-
 src/TagTrie.hpp                                   |  22 +
 src/TextualParser.cpp                             | 762 +++++++++++------
 src/TextualParser.hpp                             |  18 +
 src/all_cg_comp.cpp                               |   1 +
 src/all_cg_conv.cpp                               |   1 +
 src/all_cg_proc.cpp                               |   1 +
 src/all_vislcg3.cpp                               |   1 +
 src/cg_comp.cpp                                   |   2 +
 src/cg_conv.cpp                                   |  21 +
 src/cg_proc.cpp                                   |   2 +
 src/inlines.hpp                                   |  57 +-
 src/main.cpp                                      |  20 +-
 src/options.hpp                                   | 116 +--
 src/options_conv.hpp                              |   6 +
 src/parser_helpers.hpp                            | 324 ++++++++
 src/process.hpp                                   | 199 +++++
 src/stdafx.hpp                                    |   5 +-
 src/uextras.cpp                                   |   4 +-
 src/uextras.hpp                                   |  35 +
 src/version.hpp                                   |   4 +-
 test/T_Dependency_Loops/grammar.cg3               |   9 +-
 test/T_MapAdd_Different/args.txt                  |   2 +-
 test/T_MapAdd_Different/expected.txt              |   3 +-
 test/T_RegExp/expected.txt                        |   3 +-
 test/T_RegExp/grammar.cg3                         |   2 +
 test/T_RegExp/grammar.cg3b.10043                  | Bin 3827 -> 4052 bytes
 test/T_Templates/expected.txt                     |   7 +-
 test/T_Templates/grammar.cg3                      |   3 +
 test/T_Templates/grammar.cg3b.10043               | Bin 5270 -> 0 bytes
 test/T_Templates/input.txt                        |   5 +-
 vapply.sh                                         |   4 +-
 win32/libgen.c                                    |  25 -
 win32/libgen.h                                    |  14 -
 90 files changed, 3249 insertions(+), 5297 deletions(-)
 delete mode 100644 include/exec-stream/exec-stream.cpp
 delete mode 100644 include/exec-stream/exec-stream.h
 delete mode 100644 include/exec-stream/posix/exec-stream-helpers.cpp
 delete mode 100644 include/exec-stream/posix/exec-stream-helpers.h
 delete mode 100644 include/exec-stream/posix/exec-stream-impl.cpp
 delete mode 100644 include/exec-stream/win/exec-stream-helpers.cpp
 delete mode 100644 include/exec-stream/win/exec-stream-helpers.h
 delete mode 100644 include/exec-stream/win/exec-stream-impl.cpp
 create mode 100644 include/posix/popen_plus.c
 create mode 100644 include/posix/popen_plus.h
 rename {win32 => include/win32}/getopt.c (100%)
 rename {win32 => include/win32}/getopt.h (100%)
 create mode 100644 src/parser_helpers.hpp
 create mode 100644 src/process.hpp
 delete mode 100644 test/T_Templates/grammar.cg3b.10043
 delete mode 100644 win32/libgen.c
 delete mode 100644 win32/libgen.h
-- 
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