[Pkg-ocaml-maint-commits] [otags] branch master updated (635f74b -> adc0530)

Hendrik Tews hendrik-guest at moszumanska.debian.org
Fri Sep 22 20:50:00 UTC 2017


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

hendrik-guest pushed a change to branch master
in repository otags.

      from  635f74b   fix 3 lintian warnings
       new  39b18b3   New upstream version 4.05.1
       new  e037903   Updated version 4.05.1 from 'upstream/4.05.1'
       new  adc0530   update packageing for new version

The 3 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:
 .cvsignore                                 |   11 -
 .gitignore                                 |   14 +
 ChangeLog                                  |  158 +++-
 INSTALL                                    |   22 +-
 Makefile.in                                |  189 ++---
 README                                     |   61 +-
 add_quotation.ml                           |   44 --
 add_quotation.mli                          |   35 -
 camlp4_names.ml                            |  238 ------
 camlp4_names.mli                           |   72 --
 conf.ml.in                                 |   38 +-
 conf.mli                                   |   22 +-
 configure                                  |  165 +---
 contrib/{.cvsignore => .gitignore}         |    0
 contrib/update-otags                       |    4 +-
 contrib/update-otags.8                     |   34 +-
 debian/changelog                           |   15 +
 debian/compat                              |    2 +-
 debian/control                             |    9 +-
 debian/copyright                           |    2 +-
 debian/patches/disable-sexplib-tests.patch |  102 ---
 debian/patches/series                      |    1 -
 debian/rules                               |   27 +-
 doc/{.cvsignore => .gitignore}             |    0
 doc/changes.html                           |   51 +-
 doc/otags.1                                |  644 +++++-----------
 doc/otags.html                             |  641 ++++------------
 emacs.ml                                   |   61 +-
 emacs.mli                                  |   16 +-
 fix_location.ml                            |   93 +++
 translate_location.mli => fix_location.mli |   21 +-
 global.ml                                  |   31 +-
 global.mli                                 |   28 +-
 make-distribution                          |  248 ------
 monitor_line_directive.ml                  |  129 ----
 monitor_line_directive.mli                 |   54 --
 otags.ml                                   |  347 ++-------
 otags_dump_ast.ml                          |   85 ---
 misc.ml => otags_misc.ml                   |   22 +-
 misc.mli => otags_misc.mli                 |   22 +-
 types.ml => otags_types.ml                 |   28 +-
 types.mli => otags_types.mli               |   27 +-
 parser_factory.ml                          |  254 -------
 parser_factory.mli                         |   41 -
 parser_hints.ml                            |  124 ---
 parser_hints.mli                           |   36 -
 reparse.ml                                 |  327 --------
 reparse.mli                                |   96 ---
 source_channel.ml                          |   47 +-
 source_channel.mli                         |   27 +-
 tags.ml                                    | 1140 ++++++++++------------------
 tags.mli                                   |   29 +-
 test-distribution                          |   63 --
 test/{.cvsignore => .gitignore}            |    2 +-
 test/a.ml                                  |   12 +-
 test/cpp_i.include.ml                      |    5 -
 test/cpp_i.source.ml                       |    4 -
 test/cppo_i.include.ml                     |   12 -
 test/cppo_i.source.ml                      |   23 -
 test/d.ml                                  |   12 +-
 test/err.ml                                |    6 +
 test/f.ml                                  |    5 -
 test/g.mli                                 |    1 -
 test/ocaml-3121-hints                      |  219 ------
 test/test.TAGS                             |  242 +++---
 test/test.tags                             |   28 +-
 test/usr-lib-ocaml-hints                   |   64 --
 translate_location.ml                      |  189 -----
 util/{.cvsignore => .gitignore}            |    1 +
 util/catch_quot_error.ml                   |   43 --
 util/dump-camlp4.ml                        |  144 ----
 util/filter_for_tag.ml                     |  147 ----
 util/ppx_flush_catchall.ml                 |  164 ++++
 util/test_keywords.ml                      |  111 ---
 util/test_loc_name.ml                      |  173 -----
 util/test_qot.ml                           |  145 ----
 vi.ml                                      |   50 +-
 vi.mli                                     |   16 +-
 78 files changed, 1761 insertions(+), 6054 deletions(-)
 delete mode 100644 .cvsignore
 delete mode 100644 add_quotation.ml
 delete mode 100644 add_quotation.mli
 delete mode 100644 camlp4_names.ml
 delete mode 100644 camlp4_names.mli
 rename contrib/{.cvsignore => .gitignore} (100%)
 delete mode 100644 debian/patches/disable-sexplib-tests.patch
 rename doc/{.cvsignore => .gitignore} (100%)
 create mode 100644 fix_location.ml
 rename translate_location.mli => fix_location.mli (53%)
 delete mode 100755 make-distribution
 delete mode 100644 monitor_line_directive.ml
 delete mode 100644 monitor_line_directive.mli
 delete mode 100644 otags_dump_ast.ml
 rename misc.ml => otags_misc.ml (87%)
 rename misc.mli => otags_misc.mli (78%)
 rename types.ml => otags_types.ml (65%)
 rename types.mli => otags_types.mli (72%)
 delete mode 100644 parser_factory.ml
 delete mode 100644 parser_factory.mli
 delete mode 100644 parser_hints.ml
 delete mode 100644 parser_hints.mli
 delete mode 100644 reparse.ml
 delete mode 100644 reparse.mli
 delete mode 100755 test-distribution
 rename test/{.cvsignore => .gitignore} (80%)
 delete mode 100644 test/cpp_i.include.ml
 delete mode 100644 test/cpp_i.source.ml
 delete mode 100644 test/cppo_i.include.ml
 delete mode 100644 test/cppo_i.source.ml
 create mode 100644 test/err.ml
 delete mode 100644 test/f.ml
 delete mode 100644 test/g.mli
 delete mode 100644 test/ocaml-3121-hints
 delete mode 100644 test/usr-lib-ocaml-hints
 delete mode 100644 translate_location.ml
 rename util/{.cvsignore => .gitignore} (75%)
 delete mode 100644 util/catch_quot_error.ml
 delete mode 100644 util/dump-camlp4.ml
 delete mode 100644 util/filter_for_tag.ml
 create mode 100644 util/ppx_flush_catchall.ml
 delete mode 100644 util/test_keywords.ml
 delete mode 100644 util/test_loc_name.ml
 delete mode 100644 util/test_qot.ml

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



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