[Pkg-ocaml-maint-commits] [atdgen] branch master updated (c12225b -> 1e25f62)

Stéphane Glondu glondu at moszumanska.debian.org
Thu Jan 28 10:29:22 UTC 2016


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

glondu pushed a change to branch master
in repository atdgen.

      from  c12225b   Update changelog and prepare upload to unstable
       new  3fc03c4   Update debian/watch
       new  87bfc7c   Imported Upstream version 1.4.0
       new  5ff4559   Imported Upstream version 1.4.1
       new  6d35e38   Imported Upstream version 1.5.0
       new  21dfdf3   Imported Upstream version 1.6.0
       new  7137770   Imported Upstream version 1.6.1
       new  f856aea   Imported Upstream version 1.7.0
       new  7f4ba0f   Imported Upstream version 1.7.1
       new  7c22d50   Imported Upstream version 1.7.2
       new  7062929   Merge tag 'upstream/1.7.2'
       new  fd04bbd   New upstream release
       new  bf89afd   Remove obsolete patch
       new  95db44c   Update Vcs-*
       new  1cba630   Update packaging
       new  d63e7f2   Bump Standards-Version to 3.9.6
       new  1e25f62   Update changelog and prepare upload to unstable

The 16 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:
 .gitignore                                         |   54 +-
 .merlin                                            |    4 +
 META                                               |    9 +
 Makefile                                           |  297 +---
 README.md                                          |   18 +-
 TODO.md                                            |   12 +-
 ag_oj_emit.ml                                      | 1404 ----------------
 atdgen.install                                     |    4 +
 debian/changelog                                   |   10 +
 debian/control                                     |   10 +-
 debian/libatdgen-ocaml-dev.doc-base.manual         |   11 -
 debian/libatdgen-ocaml-dev.docs                    |    3 -
 debian/libatdgen-ocaml-dev.install.in              |    3 +-
 debian/libatdgen-ocaml-dev.ocamldoc                |    1 -
 ...ix-installation-on-bytecode-architectures.patch |   24 +
 .../0001-Install-ml-files-for-dangling-cmi-s.patch |   40 -
 debian/patches/series                              |    2 +-
 debian/rules                                       |    7 +-
 debian/watch                                       |    3 +-
 manual/Makefile                                    |   47 -
 manual/atd-annot.tex                               |   11 -
 manual/atdgen-body.mlx                             |  986 -----------
 manual/atdgen-manual.mlx                           |  174 --
 manual/hevea-insert1.html                          |    9 -
 manual/hevea-insert2.html                          |    1 -
 manual/hevea-insert3.html                          |    1 -
 manual/macros.ml                                   |  204 ---
 opam                                               |   26 +
 .gitignore => src/.gitignore                       |   24 -
 META.in => src/META.in                             |    0
 src/Makefile                                       |  191 +++
 ag_biniou.ml => src/ag_biniou.ml                   |    1 -
 ag_doc.ml => src/ag_doc.ml                         |    0
 ag_doc.mli => src/ag_doc.mli                       |    0
 ag_doc_lexer.mll => src/ag_doc_lexer.mll           |    0
 ag_error.ml => src/ag_error.ml                     |    0
 ag_indent.ml => src/ag_indent.ml                   |    0
 ag_json.ml => src/ag_json.ml                       |    6 +-
 ag_main.ml => src/ag_main.ml                       |   56 +-
 ag_mapping.ml => src/ag_mapping.ml                 |   43 +-
 ag_ob_emit.ml => src/ag_ob_emit.ml                 | 1147 ++++++-------
 ag_ob_mapping.ml => src/ag_ob_mapping.ml           |  144 +-
 ag_ob_run.ml => src/ag_ob_run.ml                   |   47 +-
 ag_ob_spe.ml => src/ag_ob_spe.ml                   |    2 +-
 ag_ocaml.ml => src/ag_ocaml.ml                     |  240 ++-
 src/ag_oj_emit.ml                                  | 1777 ++++++++++++++++++++
 ag_oj_mapping.ml => src/ag_oj_mapping.ml           |  132 +-
 ag_oj_run.ml => src/ag_oj_run.ml                   |   79 +-
 ag_ov_emit.ml => src/ag_ov_emit.ml                 |  218 ++-
 ag_ov_mapping.ml => src/ag_ov_mapping.ml           |  125 +-
 ag_ov_run.ml => src/ag_ov_run.ml                   |    0
 ag_ox_emit.ml => src/ag_ox_emit.ml                 |    8 +-
 ag_string_match.ml => src/ag_string_match.ml       |   90 +-
 ag_string_match.mli => src/ag_string_match.mli     |    0
 ag_util.ml => src/ag_util.ml                       |   41 +-
 ag_util.mli => src/ag_util.mli                     |   34 +-
 ag_validate.ml => src/ag_validate.ml               |   26 +-
 ag_xb_emit.ml => src/ag_xb_emit.ml                 |    1 -
 .gitignore => test/.gitignore                      |   53 +-
 test/Makefile                                      |  128 ++
 benchmark.ml => test/benchmark.ml                  |   42 +-
 test.atd => test/test.atd                          |   13 +
 test2.atd => test/test2.atd                        |    0
 test/test3j.atd                                    |  108 ++
 test4.atd => test/test4.atd                        |    0
 test5.atd => test/test5.atd                        |    0
 test_atdgen_main.ml => test/test_atdgen_main.ml    |  423 ++++-
 test/test_atdgen_type_conv.ml                      |   19 +
 test_lib.ml => test/test_lib.ml                    |    0
 test/test_type_conv.atd                            |   13 +
 test3b.atd                                         |   16 -
 test3j.atd                                         |   12 -
 util/recompile-deps                                |   16 +
 73 files changed, 3979 insertions(+), 4671 deletions(-)
 create mode 100644 .merlin
 create mode 100644 META
 delete mode 100644 ag_oj_emit.ml
 create mode 100644 atdgen.install
 delete mode 100644 debian/libatdgen-ocaml-dev.doc-base.manual
 delete mode 100644 debian/libatdgen-ocaml-dev.ocamldoc
 create mode 100644 debian/patches/0001-Fix-installation-on-bytecode-architectures.patch
 delete mode 100644 debian/patches/0001-Install-ml-files-for-dangling-cmi-s.patch
 delete mode 100644 manual/Makefile
 delete mode 100644 manual/atd-annot.tex
 delete mode 100644 manual/atdgen-body.mlx
 delete mode 100644 manual/atdgen-manual.mlx
 delete mode 100644 manual/hevea-insert1.html
 delete mode 100644 manual/hevea-insert2.html
 delete mode 100644 manual/hevea-insert3.html
 delete mode 100644 manual/macros.ml
 create mode 100644 opam
 copy .gitignore => src/.gitignore (68%)
 rename META.in => src/META.in (100%)
 create mode 100644 src/Makefile
 rename ag_biniou.ml => src/ag_biniou.ml (99%)
 rename ag_doc.ml => src/ag_doc.ml (100%)
 rename ag_doc.mli => src/ag_doc.mli (100%)
 rename ag_doc_lexer.mll => src/ag_doc_lexer.mll (100%)
 rename ag_error.ml => src/ag_error.ml (100%)
 rename ag_indent.ml => src/ag_indent.ml (100%)
 rename ag_json.ml => src/ag_json.ml (87%)
 rename ag_main.ml => src/ag_main.ml (88%)
 rename ag_mapping.ml => src/ag_mapping.ml (82%)
 rename ag_ob_emit.ml => src/ag_ob_emit.ml (61%)
 rename ag_ob_mapping.ml => src/ag_ob_mapping.ml (56%)
 rename ag_ob_run.ml => src/ag_ob_run.ml (84%)
 rename ag_ob_spe.ml => src/ag_ob_spe.ml (70%)
 rename ag_ocaml.ml => src/ag_ocaml.ml (82%)
 create mode 100644 src/ag_oj_emit.ml
 rename ag_oj_mapping.ml => src/ag_oj_mapping.ml (62%)
 rename ag_oj_run.ml => src/ag_oj_run.ml (74%)
 rename ag_ov_emit.ml => src/ag_ov_emit.ml (77%)
 rename ag_ov_mapping.ml => src/ag_ov_mapping.ml (78%)
 rename ag_ov_run.ml => src/ag_ov_run.ml (100%)
 rename ag_ox_emit.ml => src/ag_ox_emit.ml (98%)
 rename ag_string_match.ml => src/ag_string_match.ml (77%)
 rename ag_string_match.mli => src/ag_string_match.mli (100%)
 rename ag_util.ml => src/ag_util.ml (84%)
 rename ag_util.mli => src/ag_util.mli (91%)
 rename ag_validate.ml => src/ag_validate.ml (64%)
 rename ag_xb_emit.ml => src/ag_xb_emit.ml (99%)
 copy .gitignore => test/.gitignore (56%)
 create mode 100644 test/Makefile
 rename benchmark.ml => test/benchmark.ml (84%)
 rename test.atd => test/test.atd (94%)
 rename test2.atd => test/test2.atd (100%)
 create mode 100644 test/test3j.atd
 rename test4.atd => test/test4.atd (100%)
 rename test5.atd => test/test5.atd (100%)
 rename test_atdgen_main.ml => test/test_atdgen_main.ml (52%)
 create mode 100644 test/test_atdgen_type_conv.ml
 rename test_lib.ml => test/test_lib.ml (100%)
 create mode 100644 test/test_type_conv.atd
 delete mode 100644 test3b.atd
 delete mode 100644 test3j.atd
 create mode 100755 util/recompile-deps

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



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