[Pkg-ocaml-maint-commits] [coccinelle] branch master updated (93a12a0 -> 1fa7ba7)

Eugeniy Meshcheryakov eugen at moszumanska.debian.org
Tue Feb 25 23:30:52 UTC 2014


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

eugen pushed a change to branch master
in repository coccinelle.

      from  93a12a0   Don't override dh_builddeb call, xz compression is now default
       new  b53a7c4   Imported Upstream version 1.0.0~rc20.deb
       new  f54ee81   Merge tag 'upstream/1.0.0_rc20.deb'
       new  cbc84c4   New upstream RC
       new  1fa7ba7   Removed patches:

The 4 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:
 changes.txt                                  |  13 +
 cocci.ml                                     |  31 +-
 commons/common.ml                            |  17 +-
 configure                                    |  20 +-
 debian/changelog                             |   8 +
 debian/patches/detect-itimer.diff            |  15 -
 debian/patches/series                        |   1 -
 demos/initvirt.c                             |   1 +
 demos/initvirt.cocci                         |  37 ++
 docs/manual/cocci_syntax.tex                 |  73 +++-
 engine/cocci_vs_c.ml                         |  23 +-
 engine/transformation_c.ml                   |   6 +-
 globals/iteration.ml                         |  24 +-
 globals/iteration.mli                        |   9 +-
 install.txt                                  |   1 +
 main.ml                                      |   4 +
 ocaml/yes_prepare_ocamlcocci.ml              |  80 +++-
 parsing_c/Makefile                           |   2 +-
 parsing_c/ast_c.ml                           |  15 +-
 parsing_c/comment_annotater_c.ml             |  35 +-
 parsing_c/danger.ml                          |  59 +++
 parsing_c/danger.mli                         |   1 +
 parsing_c/lexer_c.mll                        |   1 +
 parsing_c/lib_parsing_c.ml                   |   2 +
 parsing_c/parse_c.ml                         |  36 +-
 parsing_c/parse_string_c.ml                  |   3 +
 parsing_c/parsing_hacks.ml                   |  31 +-
 parsing_c/type_annoter_c.ml                  | 252 ++++++-----
 parsing_c/type_annoter_c.mli                 |  25 +-
 parsing_c/type_c.ml                          |   3 +-
 parsing_c/unparse_c.ml                       | 625 ++++++++++++++++++++-------
 parsing_c/unparse_cocci.ml                   |   9 +-
 parsing_cocci/ast0_cocci.ml                  |  11 +-
 parsing_cocci/ast0_cocci.mli                 |  12 +-
 parsing_cocci/ast_cocci.ml                   |   8 +-
 parsing_cocci/ast_cocci.mli                  |  10 +-
 parsing_cocci/free_vars.ml                   |  16 +-
 parsing_cocci/get_constants2.ml              |  64 ++-
 parsing_cocci/parse_cocci.ml                 |  51 ++-
 parsing_cocci/parser_cocci_menhir.mly        |  15 +
 parsing_cocci/pretty_print_cocci.ml          |   4 +-
 parsing_cocci/safe_for_multi_decls.ml        |  61 ++-
 parsing_cocci/unitary_ast0.ml                |   3 +-
 python/coccipython.a                         | Bin 26356 -> 25316 bytes
 python/coccipython.cmxa                      | Bin 2577 -> 2577 bytes
 python/no_pycocci.ml                         |  48 +-
 standard.h                                   |   8 +
 tests/62.c                                   |   8 +
 tests/62.cocci                               |  21 +
 tests/62.res                                 |  12 +
 tests/SCORE_expected.sexp                    | Bin 15042 -> 15571 bytes
 tests/SCORE_expected_orig.sexp               | Bin 15042 -> 15571 bytes
 tests/{inhmet.res => before.c}               |   1 +
 tests/{metastatement2.cocci => before.cocci} |   4 +-
 tests/before.res                             |   6 +
 tests/castdecl.c                             |  12 +
 tests/castdecl.cocci                         |   7 +
 tests/castdecl.res                           |  12 +
 tests/destroy.c                              |  14 +
 tests/destroy.cocci                          |  10 +
 tests/destroy.res                            |  19 +
 tests/endnl.c                                |  18 +
 tests/endnl.cocci                            |  17 +
 tests/endnl.res                              |  36 ++
 tests/incpos.cocci                           |   1 +
 tests/incpos1.cocci                          |   1 +
 tests/mdec.c                                 |  23 +
 tests/mdec.cocci                             |  18 +
 tests/mdec.res                               |  26 ++
 tests/multidec.c                             |   6 +
 tests/multidec.res                           |   4 +-
 tests/remaft.c                               |  12 +
 tests/remaft.res                             |  10 +
 tests/smallfn.c                              |  14 +-
 tools/splitpatch.ml                          |  83 +++-
 version                                      |   2 +-
 76 files changed, 1629 insertions(+), 541 deletions(-)
 delete mode 100644 debian/patches/detect-itimer.diff
 create mode 100644 demos/initvirt.c
 create mode 100644 demos/initvirt.cocci
 create mode 100644 parsing_c/danger.ml
 create mode 100644 parsing_c/danger.mli
 create mode 100644 tests/62.c
 create mode 100644 tests/62.cocci
 create mode 100644 tests/62.res
 copy tests/{inhmet.res => before.c} (73%)
 copy tests/{metastatement2.cocci => before.cocci} (64%)
 create mode 100644 tests/before.res
 create mode 100644 tests/castdecl.c
 create mode 100644 tests/castdecl.cocci
 create mode 100644 tests/castdecl.res
 create mode 100644 tests/destroy.c
 create mode 100644 tests/destroy.cocci
 create mode 100644 tests/destroy.res
 create mode 100644 tests/endnl.c
 create mode 100644 tests/endnl.cocci
 create mode 100644 tests/endnl.res
 create mode 100644 tests/mdec.c
 create mode 100644 tests/mdec.cocci
 create mode 100644 tests/mdec.res
 create mode 100644 tests/remaft.c
 create mode 100644 tests/remaft.res

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ocaml-maint/packages/coccinelle.git



More information about the Pkg-ocaml-maint-commits mailing list