[Pkg-ocaml-maint-commits] [coccinelle] branch master updated (e96ed71 -> ce0e48e)

Eugeniy Meshcheryakov eugen at moszumanska.debian.org
Wed Mar 4 15:47:28 UTC 2015


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

eugen pushed a change to branch master
in repository coccinelle.

      from  e96ed71   Upload to experimental due to freeze
       new  bf03263   Imported Upstream version 1.0.0~rc24.deb
       new  811bae8   Merge tag 'upstream/1.0.0_rc24.deb'
       new  c2f0b9f   New upstream RC
       new  6660d40   Build-depend on libparmap-ocaml-dev
       new  2765d54   New patches:
       new  ce0e48e   Fix parmap library path

The 6 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:
 Makefile                                |   14 +-
 Makefile.libs                           |    9 +
 changes.txt                             |    9 +
 cocci.ml                                |    9 +
 cocci.mli                               |    1 +
 commons/Makefile                        |    2 +-
 commons/common.ml                       |   13 +
 commons/common.mli                      |    3 +
 configure                               |   20 +-
 debian/changelog                        |   10 +
 debian/control                          |    3 +-
 debian/patches/no-parmap-subdir.diff    |   23 +
 debian/patches/series                   |    1 +
 docs/manual/cocci_syntax.tex            |   13 +-
 docs/manual/spatch_options.tex          |   20 +
 engine/asttoctl2.ml                     |    4 +-
 engine/asttomember.ml                   |    6 +-
 engine/check_exhaustive_pattern.ml      |    5 +-
 engine/cocci_vs_c.ml                    |  162 ++--
 main.ml                                 |   71 +-
 myocamlbuild.ml                         |  297 -------
 ocaml/Makefile                          |    5 +
 ocaml/yes_prepare_ocamlcocci.ml         |    3 +-
 parsing_c/ast_c.ml                      |   59 +-
 parsing_c/lexer_c.mll                   |   17 +-
 parsing_c/parser_c.mly                  |   18 +-
 parsing_c/parsing_hacks.ml              |   12 +-
 parsing_c/token_c.ml                    |    2 -
 parsing_c/token_helpers.ml              |   10 +-
 parsing_c/unparse_c.ml                  |   78 +-
 parsing_c/unparse_cocci.ml              |   43 +-
 parsing_c/unparse_hrule.ml              |    3 +
 parsing_cocci/adjust_pragmas.ml         |   50 +-
 parsing_cocci/arity.ml                  |   35 +-
 parsing_cocci/ast0_cocci.ml             |   15 +-
 parsing_cocci/ast0_cocci.mli            |   13 +-
 parsing_cocci/ast0toast.ml              |   50 +-
 parsing_cocci/ast_cocci.ml              |   19 +-
 parsing_cocci/ast_cocci.mli             |   15 +-
 parsing_cocci/check_meta.ml             |    9 +-
 parsing_cocci/compute_lines.ml          |   98 +--
 parsing_cocci/context_neg.ml            |   44 +-
 parsing_cocci/data.ml                   |   71 +-
 parsing_cocci/data.mli                  |    4 +
 parsing_cocci/disjdistr.ml              |   21 +-
 parsing_cocci/free_vars.ml              |    2 +-
 parsing_cocci/function_prototypes.ml    |  242 +++---
 parsing_cocci/get_constants2.ml         |    4 +-
 parsing_cocci/get_metas.ml              |   42 +-
 parsing_cocci/index.ml                  |    5 +-
 parsing_cocci/insert_plus.ml            |    6 +-
 parsing_cocci/iso_pattern.ml            |   51 +-
 parsing_cocci/lexer_cocci.mll           |   11 +-
 parsing_cocci/obsolete/parser_cocci.mly | 1339 -------------------------------
 parsing_cocci/parse_cocci.ml            |   29 +-
 parsing_cocci/parser_cocci_menhir.mly   |  212 ++++-
 parsing_cocci/pretty_print_cocci.ml     |   30 +-
 parsing_cocci/safe_for_multi_decls.ml   |    2 +-
 parsing_cocci/single_statement.ml       |   10 +-
 parsing_cocci/top_level.ml              |    2 +-
 parsing_cocci/type_infer.ml             |    3 +-
 parsing_cocci/unify_ast.ml              |   27 +-
 parsing_cocci/unparse_ast0.ml           |   25 +-
 parsing_cocci/visitor_ast.ml            |   56 +-
 parsing_cocci/visitor_ast0.ml           |   49 +-
 popl09/popltoctl.ml                     |    2 +-
 python/coccipython.a                    |  Bin 32158 -> 29758 bytes
 python/coccipython.cmxa                 |  Bin 2679 -> 2679 bytes
 python/yes_pycocci.ml                   |    2 +-
 standard.iso                            |    8 +-
 testing.ml                              |  502 ------------
 tests/SCORE_expected.sexp               |  Bin 15339 -> 15283 bytes
 tests/SCORE_expected_orig.sexp          |  Bin 15339 -> 15283 bytes
 tests/fortype.cocci                     |    3 +-
 tests/isotest2.cocci                    |    3 +-
 tests/localglobal.c                     |    7 +
 tests/localglobal.cocci                 |   14 +
 tests/localglobal.res                   |    7 +
 tests/varargs2.c                        |    3 +
 tests/varargs2.cocci                    |    9 +
 tests/varargs2.res                      |    4 +
 tools/gitgrep.ml                        |   10 +-
 tools/sgen/source/generator_types.ml    |   10 +-
 tools/sgen/source/position_generator.ml |   13 +-
 version                                 |    2 +-
 85 files changed, 1287 insertions(+), 2848 deletions(-)
 create mode 100644 debian/patches/no-parmap-subdir.diff
 delete mode 100644 myocamlbuild.ml
 delete mode 100644 parsing_cocci/obsolete/parser_cocci.mly
 delete mode 100644 testing.ml
 create mode 100644 tests/localglobal.c
 create mode 100644 tests/localglobal.cocci
 create mode 100644 tests/localglobal.res
 create mode 100644 tests/varargs2.c
 create mode 100644 tests/varargs2.cocci
 create mode 100644 tests/varargs2.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