[Pkg-ocaml-maint-commits] [cmdliner] branch master updated (17387d3 -> 5edcd7d)

Hendrik Tews hendrik-guest at moszumanska.debian.org
Fri Aug 11 21:21:51 UTC 2017


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

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

      from  17387d3   Update changelog and prepare upload to unstable
       new  0f93bb0   New upstream version 1.0.2
       new  12141d6   Merge tag 'upstream/1.0.2'
       new  5edcd7d   update packaging using the upstream Makefile

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:
 .merlin                               |    3 -
 .ocp-indent                           |    1 -
 CHANGES.md                            |  135 ++-
 LICENSE.md                            |   13 +
 Makefile                              |   69 ++
 README.md                             |   24 +-
 TODO.md                               |    1 -
 _tags                                 |    7 +-
 debian/README.Debian                  |   10 +
 debian/changelog                      |   18 +
 debian/compat                         |    2 +-
 debian/control                        |   14 +-
 debian/copyright                      |   42 +-
 debian/libcmdliner-ocaml-dev.doc-base |    9 -
 debian/libcmdliner-ocaml-dev.docs     |    2 -
 debian/patches/install-x.patch        |   34 +
 debian/patches/series                 |    1 +
 debian/rules                          |   32 +-
 doc/Cmdliner.Arg.html                 |  390 --------
 doc/Cmdliner.Manpage.html             |   80 --
 doc/Cmdliner.Term.html                |  216 -----
 doc/Cmdliner.html                     |  797 ----------------
 doc/index.html                        |   27 -
 doc/index_attributes.html             |   18 -
 doc/index_class_types.html            |   18 -
 doc/index_classes.html                |   18 -
 doc/index_exceptions.html             |   18 -
 doc/index_extensions.html             |   18 -
 doc/index_methods.html                |   18 -
 doc/index_module_types.html           |   18 -
 doc/index_modules.html                |   42 -
 doc/index_types.html                  |   90 --
 doc/index_values.html                 |  353 -------
 doc/style.css                         |  109 ---
 doc/type_Cmdliner.Arg.html            |   98 --
 doc/type_Cmdliner.Manpage.html        |   24 -
 doc/type_Cmdliner.Term.html           |   56 --
 doc/type_Cmdliner.html                |  175 ----
 opam                                  |   21 +-
 pkg/META                              |    8 +-
 pkg/build.ml                          |   17 -
 pkg/config.ml                         |   11 -
 pkg/git.ml                            |   14 -
 pkg/pkg.ml                            |   29 +
 pkg/topkg-ext.ml                      |  272 ------
 pkg/topkg.ml                          |  303 ------
 src/cmdliner.ml                       | 1653 +++++----------------------------
 src/cmdliner.mli                      | 1314 ++++++++++++++++----------
 src/cmdliner.mllib                    |   11 +
 src/cmdliner_arg.ml                   |  358 +++++++
 src/cmdliner_arg.mli                  |  113 +++
 src/cmdliner_base.ml                  |  302 ++++++
 src/cmdliner_base.mli                 |   74 ++
 src/cmdliner_cline.ml                 |  194 ++++
 src/cmdliner_cline.mli                |   34 +
 src/cmdliner_docgen.ml                |  352 +++++++
 src/cmdliner_docgen.mli               |   30 +
 src/cmdliner_info.ml                  |  233 +++++
 src/cmdliner_info.mli                 |  140 +++
 src/cmdliner_manpage.ml               |  504 ++++++++++
 src/cmdliner_manpage.mli              |  100 ++
 src/cmdliner_msg.ml                   |  115 +++
 src/cmdliner_msg.mli                  |   54 ++
 src/cmdliner_suggest.ml               |   54 ++
 src/cmdliner_suggest.mli              |   25 +
 src/cmdliner_term.ml                  |   43 +
 src/cmdliner_term.mli                 |   42 +
 src/cmdliner_trie.ml                  |   97 ++
 src/cmdliner_trie.mli                 |   35 +
 test/chorus.ml                        |   11 +-
 test/cp_ex.ml                         |   22 +-
 test/darcs_ex.ml                      |   43 +-
 test/man_test.ml                      |   73 --
 test/revolt.ml                        |    5 +-
 test/rm_ex.ml                         |   12 +-
 test/tail_ex.ml                       |   25 +-
 test/test_man.ml                      |  100 ++
 test/test_man_utf8.ml                 |   11 +
 test/test_opt_req.ml                  |   13 +
 test/test_pos.ml                      |   13 +
 test/test_pos_all.ml                  |   11 +
 test/test_pos_left.ml                 |   11 +
 test/test_pos_req.ml                  |   15 +
 test/test_pos_rev.ml                  |   14 +
 test/test_term_dups.ml                |   19 +
 test/tests.itarget                    |    7 -
 86 files changed, 4636 insertions(+), 5321 deletions(-)
 delete mode 100644 .merlin
 delete mode 100644 .ocp-indent
 create mode 100644 LICENSE.md
 create mode 100644 Makefile
 delete mode 100644 TODO.md
 create mode 100644 debian/README.Debian
 delete mode 100644 debian/libcmdliner-ocaml-dev.doc-base
 create mode 100644 debian/patches/install-x.patch
 create mode 100644 debian/patches/series
 delete mode 100644 doc/Cmdliner.Arg.html
 delete mode 100644 doc/Cmdliner.Manpage.html
 delete mode 100644 doc/Cmdliner.Term.html
 delete mode 100644 doc/Cmdliner.html
 delete mode 100644 doc/index.html
 delete mode 100644 doc/index_attributes.html
 delete mode 100644 doc/index_class_types.html
 delete mode 100644 doc/index_classes.html
 delete mode 100644 doc/index_exceptions.html
 delete mode 100644 doc/index_extensions.html
 delete mode 100644 doc/index_methods.html
 delete mode 100644 doc/index_module_types.html
 delete mode 100644 doc/index_modules.html
 delete mode 100644 doc/index_types.html
 delete mode 100644 doc/index_values.html
 delete mode 100644 doc/style.css
 delete mode 100644 doc/type_Cmdliner.Arg.html
 delete mode 100644 doc/type_Cmdliner.Manpage.html
 delete mode 100644 doc/type_Cmdliner.Term.html
 delete mode 100644 doc/type_Cmdliner.html
 delete mode 100755 pkg/build.ml
 delete mode 100644 pkg/config.ml
 delete mode 100755 pkg/git.ml
 create mode 100755 pkg/pkg.ml
 delete mode 100644 pkg/topkg-ext.ml
 delete mode 100644 pkg/topkg.ml
 create mode 100644 src/cmdliner.mllib
 create mode 100644 src/cmdliner_arg.ml
 create mode 100644 src/cmdliner_arg.mli
 create mode 100644 src/cmdliner_base.ml
 create mode 100644 src/cmdliner_base.mli
 create mode 100644 src/cmdliner_cline.ml
 create mode 100644 src/cmdliner_cline.mli
 create mode 100644 src/cmdliner_docgen.ml
 create mode 100644 src/cmdliner_docgen.mli
 create mode 100644 src/cmdliner_info.ml
 create mode 100644 src/cmdliner_info.mli
 create mode 100644 src/cmdliner_manpage.ml
 create mode 100644 src/cmdliner_manpage.mli
 create mode 100644 src/cmdliner_msg.ml
 create mode 100644 src/cmdliner_msg.mli
 create mode 100644 src/cmdliner_suggest.ml
 create mode 100644 src/cmdliner_suggest.mli
 create mode 100644 src/cmdliner_term.ml
 create mode 100644 src/cmdliner_term.mli
 create mode 100644 src/cmdliner_trie.ml
 create mode 100644 src/cmdliner_trie.mli
 delete mode 100644 test/man_test.ml
 create mode 100644 test/test_man.ml
 create mode 100644 test/test_man_utf8.ml
 create mode 100644 test/test_opt_req.ml
 create mode 100644 test/test_pos.ml
 create mode 100644 test/test_pos_all.ml
 create mode 100644 test/test_pos_left.ml
 create mode 100644 test/test_pos_req.ml
 create mode 100644 test/test_pos_rev.ml
 create mode 100644 test/test_term_dups.ml
 delete mode 100644 test/tests.itarget

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



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