[Pkg-ocaml-maint-commits] [sexplib310] branch master updated (76a66e4 -> 41a0b6a)

Stéphane Glondu glondu at moszumanska.debian.org
Tue Dec 3 21:19:24 UTC 2013


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

glondu pushed a change to branch master
in repository sexplib310.

      from  76a66e4   Update changelog and prepare upload to unstable
      adds  9aca055   debian/gbp.conf: experimental branches.
      adds  ebef438   Add myself to Uploaders.
      adds  91fbf46   Imported Upstream version 109.20.00
      adds  7ca91a1   Merge branch 'experimental/upstream' into experimental/master
      adds  e527f28   debian/docs: replace README.txt with README.md.
      adds  2ae244f   Update debian/watch.
      adds  a20fa03   debian/control: bump versions of build-dep packages.
      adds  ead7278   Update changelog and prepare to upload to experimental.
       new  41a0b6a   Prepare upload to unstable

The 1 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                              |    8 +-
 .hg_archival.txt                        |    4 -
 .hgignore                               |    3 -
 .hgtags                                 |   47 -
 Changelog => CHANGES.txt                |   17 +-
 COPYRIGHT => COPYRIGHT.txt              |    4 +-
 INRIA-DISCLAIMER.txt                    |   12 +
 INSTALL => INSTALL.txt                  |    8 +-
 LICENSE                                 |  520 -----
 LICENSE.Tywith => LICENSE-Tywith.txt    |    0
 LICENSE.txt                             |  202 ++
 Makefile                                |   65 +-
 README.md                               |  478 +++++
 README.txt                              |  457 -----
 THIRD-PARTY.txt                         |   18 +
 _oasis                                  |   63 +-
 _tags                                   |   66 +-
 debian/changelog                        |   15 +
 debian/control                          |    7 +-
 debian/docs                             |    2 +-
 debian/watch                            |    2 +-
 doc/Makefile                            |    9 -
 doc/OMakefile                           |    8 -
 doc/README.tex                          |  473 -----
 doc/custom.hva                          |    9 -
 doc/hevea.sty                           |   78 -
 lib/META                                |   17 +-
 lib/conv.ml                             |   28 +-
 lib/conv.mli                            |   32 +-
 lib/conv_error.ml                       |   28 +-
 lib/exn_magic.ml                        |   24 -
 lib/exn_magic.mli                       |   24 -
 lib/intro.txt                           |  326 +++
 lib/lexer.mli                           |    2 +
 lib/lexer.mll                           |  361 +++-
 lib/parser.mly                          |   56 +-
 lib/parser_with_layout.mly              |  118 ++
 lib/path.ml                             |   24 -
 lib/path.mli                            |   24 -
 lib/pre_sexp.ml                         |  463 +++--
 lib/sexp.ml                             |   25 +-
 lib/sexp.mli                            |   24 -
 lib/sexp_intf.ml                        |  139 +-
 lib/sexp_with_layout.ml                 |  182 ++
 lib/sexplib.mlpack                      |   20 +-
 lib/sexplib.odocl                       |   20 +-
 lib/src_pos.ml                          |   51 +
 lib/src_pos.mli                         |   28 +
 lib/std.ml                              |   46 +-
 lib/type.ml                             |   24 -
 lib/type_with_layout.ml                 |   96 +
 lib/type_with_layout.mli                |   27 +
 lib_test/Makefile                       |   27 -
 lib_test/OMakefile                      |    7 -
 lib_test/conv_test.ml                   |   40 +-
 lib_test/nonrec_test.ml                 |   29 +
 lib_test/pa_sexp_test.ml                |  155 ++
 lib_test/parser_test.ml                 |  253 +++
 lib_test/printer_test.ml                |  195 ++
 lib_test/sexp_test.ml                   |   24 -
 lib_test/test.sexp                      |   20 +
 lib_test/test_common.ml                 |   42 +
 lib_test_ounit/test_sexp_with_layout.ml |   58 +
 myocamlbuild.ml                         |  226 ++-
 setup.ml                                | 3373 ++++++++++++++++++-------------
 syntax/pa_sexp_conv.ml                  |  468 +++--
 syntax/pa_sexp_conv.mli                 |   32 -
 top/install_printers.ml                 |   41 -
 top/sexplib_install_printers.ml         |   17 +
 top/sexplib_top.mllib                   |    4 +-
 vim/syntax/sexplib.vim                  |   88 +
 71 files changed, 5700 insertions(+), 4183 deletions(-)
 delete mode 100644 .hg_archival.txt
 delete mode 100644 .hgignore
 delete mode 100644 .hgtags
 rename Changelog => CHANGES.txt (94%)
 rename COPYRIGHT => COPYRIGHT.txt (72%)
 create mode 100644 INRIA-DISCLAIMER.txt
 rename INSTALL => INSTALL.txt (79%)
 delete mode 100644 LICENSE
 rename LICENSE.Tywith => LICENSE-Tywith.txt (100%)
 create mode 100644 LICENSE.txt
 create mode 100644 README.md
 delete mode 100644 README.txt
 create mode 100644 THIRD-PARTY.txt
 delete mode 100644 doc/Makefile
 delete mode 100644 doc/OMakefile
 delete mode 100644 doc/README.tex
 delete mode 100644 doc/custom.hva
 delete mode 100644 doc/hevea.sty
 create mode 100644 lib/intro.txt
 create mode 100644 lib/lexer.mli
 create mode 100644 lib/parser_with_layout.mly
 create mode 100644 lib/sexp_with_layout.ml
 create mode 100644 lib/src_pos.ml
 create mode 100644 lib/src_pos.mli
 create mode 100644 lib/type_with_layout.ml
 create mode 100644 lib/type_with_layout.mli
 delete mode 100644 lib_test/Makefile
 delete mode 100644 lib_test/OMakefile
 create mode 100644 lib_test/nonrec_test.ml
 create mode 100644 lib_test/pa_sexp_test.ml
 create mode 100644 lib_test/parser_test.ml
 create mode 100644 lib_test/printer_test.ml
 create mode 100644 lib_test/test_common.ml
 create mode 100644 lib_test_ounit/test_sexp_with_layout.ml
 delete mode 100644 top/install_printers.ml
 create mode 100644 top/sexplib_install_printers.ml
 create mode 100644 vim/syntax/sexplib.vim

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



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