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

glondu pushed a change to branch master
in repository findlib.

      from  138cccd   Prepare upload to unstable
       new  92023a8   Imported Upstream version 1.5.1
       new  4c2c82c   Imported Upstream version 1.5.2
       new  6100607   Imported Upstream version 1.5.3
       new  e4dcf2c   Imported Upstream version 1.5.4
       new  e0e36a3   Imported Upstream version 1.5.5
       new  6917886   Merge tag 'upstream/1.5.5'
       new  158ce09   New upstream release
       new  2660ac6   Refresh patches
       new  ca9a7b9   Use OCaml 4.02.1
       new  19557bb   No more camlp4
       new  26f5fed   No more wizard
       new  6603310   Call dh_install with --fail-missing
       new  e2b9d62   Install findlib.cmxs
       new  d7302c4   Bump Standards-Version to 3.9.6 (no changes)
       new  d2aa2de   Update changelog
       new  73337b3   Prepare upload to experimental

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:
 Makefile                                           |  14 +-
 configure                                          |  65 ++-
 debian/changelog                                   |  11 +
 debian/control                                     |  23 +-
 debian/libfindlib-ocaml.install.in                 |   1 +
 debian/ocaml-findlib-wizard.install.in             |   1 -
 debian/ocaml-findlib.install                       |   1 -
 ...dard-directories-to-conform-our-own-polic.patch |   2 +-
 .../0002-Extra-configuration-search-path.patch     |  10 +-
 ...gfix-moved-directory-directive-outside-co.patch |   4 +-
 ...-depends-on-Dynlink-on-every-architecture.patch |  31 --
 ...ble-graphics-and-labltk-when-unavailable.patch} |   4 +-
 ...o-not-use-an-absolute-path-in-META.camlp4.patch |  22 -
 debian/patches/series                              |   4 +-
 debian/rules                                       |   5 +
 doc/README                                         |  27 +
 doc/README.xml                                     |  39 ++
 doc/common.xml                                     |   2 +-
 doc/guide-html/c380.html                           |   7 +-
 doc/guide-html/index.html                          |  13 +-
 doc/guide-html/x412.html                           |   5 +-
 doc/guide-html/x464.html                           |  54 +-
 doc/guide-html/{x464.html => x471.html}            |  18 +-
 doc/guide-html/{x468.html => x475.html}            |   8 +-
 doc/ref-html/{c1024.html => c1054.html}            |  12 +-
 doc/ref-html/index.html                            |  12 +-
 doc/ref-html/lib/Findlib.html                      |  56 ++-
 doc/ref-html/lib/Fl_metascanner.html               |  40 +-
 doc/ref-html/lib/Fl_package_base.html              |  54 +-
 doc/ref-html/lib/Topfind.html                      |  39 +-
 doc/ref-html/lib/type_Findlib.html                 |   2 +-
 doc/ref-html/{p1022.html => p1052.html}            |  16 +-
 doc/ref-html/{p679.html => p698.html}              |  14 +-
 doc/ref-html/r17.html                              | 160 +++---
 doc/ref-html/{r681.html => r700.html}              |  58 ++-
 doc/ref-html/{r775.html => r798.html}              |  50 +-
 doc/ref-html/{r964.html => r994.html}              |  26 +-
 doc/ref-man/META.5                                 |  44 ++
 doc/ref-man/findlib.conf.5                         |  23 +
 doc/ref-man/ocamlfind.1                            |  85 +++-
 doc/src/findlib.sgml                               |  32 +-
 doc/src/findlib_conf.mod                           |  12 +
 doc/src/findlib_meta.mod                           |  25 +
 doc/src/findlib_ocamlfind.mod                      |  30 +-
 doc/src/findlib_reference.xml                      |  65 ++-
 itest-aux/ppx.ml                                   |   1 +
 site-lib-src/bytes/META.in                         |   5 +
 site-lib-src/bytes/interfaces.in                   |   2 +
 site-lib-src/bytes/interfaces.out                  |   2 +
 src/bytes/META                                     |   9 +
 src/bytes/Makefile                                 |  39 ++
 src/bytes/README                                   |   7 +
 src/bytes/bytes.ml                                 |  36 ++
 src/findlib/Makefile                               |  21 +-
 src/findlib/findlib.ml                             |  10 +-
 src/findlib/findlib.mli                            |   6 +-
 src/findlib/fl_topo.ml                             |   6 +-
 src/findlib/frontend.ml                            | 542 ++++++++++++++-------
 src/findlib/{topfind.ml => topfind.ml.in}          |  86 +++-
 59 files changed, 1476 insertions(+), 522 deletions(-)
 delete mode 100644 debian/ocaml-findlib-wizard.install.in
 delete mode 100644 
debian/patches/0004-Camlp4-depends-on-Dynlink-on-every-architecture.patch
 rename debian/patches/{0006-Disable-graphics-and-labltk-when-unavailable.patch 
=> 0004-Disable-graphics-and-labltk-when-unavailable.patch} (93%)
 delete mode 100644 
debian/patches/0005-Do-not-use-an-absolute-path-in-META.camlp4.patch
 copy doc/guide-html/{x464.html => x471.html} (91%)
 rename doc/guide-html/{x468.html => x475.html} (97%)
 rename doc/ref-html/{c1024.html => c1054.html} (93%)
 rename doc/ref-html/{p1022.html => p1052.html} (92%)
 rename doc/ref-html/{p679.html => p698.html} (94%)
 rename doc/ref-html/{r681.html => r700.html} (90%)
 rename doc/ref-html/{r775.html => r798.html} (95%)
 rename doc/ref-html/{r964.html => r994.html} (96%)
 create mode 100644 itest-aux/ppx.ml
 create mode 100644 site-lib-src/bytes/META.in
 create mode 100644 site-lib-src/bytes/interfaces.in
 create mode 100644 site-lib-src/bytes/interfaces.out
 create mode 100644 src/bytes/META
 create mode 100644 src/bytes/Makefile
 create mode 100644 src/bytes/README
 create mode 100644 src/bytes/bytes.ml
 rename src/findlib/{topfind.ml => topfind.ml.in} (66%)

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

_______________________________________________
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits

Reply via email to