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

glondu pushed a change to branch master
in repository ocaml-fileutils.

      from  4676dae   Merge remote-tracking branch 'origin/master'
       new  77a387f   Imported Upstream version 0.5.0
       new  29e1ed6   Merge tag 'upstream/0.5.0'
       new  ea2a288   New upstream release
       new  62861f5   Update Vcs-*
       new  5c2fb83   Bump Standards-Version to 3.9.8
       new  da22810   Recommend ocaml-findlib
       new  8933a95   Update changelog

The 7 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:
 .announce                                          |    2 +-
 .boring                                            |    2 +
 AUTHORS.txt                                        |    9 +-
 CHANGELOG.txt                                      |   66 +-
 INSTALL.txt                                        |   10 +-
 Makefile                                           |  119 +-
 README.txt                                         |   19 +-
 TODO.txt                                           |    2 +-
 _headache.config                                   |   65 +-
 _header                                            |    8 +-
 _oasis                                             |   34 +-
 _tags                                              |   43 +-
 ardivink.lua                                       |    3 +
 configure                                          |    4 +-
 debian/changelog                                   |   11 +-
 debian/control                                     |    7 +-
 src/fileutils.mllib => doc-dist.sh                 |   70 +-
 myocamlbuild.ml                                    |  338 ++--
 setup.ml                                           | 1788 +++++++++++++-----
 src/CommonPath.ml                                  |   72 +-
 src/ExtensionPath.ml                               |   57 +-
 src/FilePath.ml                                    |  344 ++--
 src/FilePath.mli                                   |  132 +-
 src/FilePath_type.ml                               |   72 +-
 src/FileStringExt.ml                               |  104 +-
 src/FileUtil.ml                                    | 1272 +------------
 src/FileUtil.mli                                   |  536 ++++++
 src/FileUtilCHMOD.ml                               |   63 +
 src/FileUtilCMP.ml                                 |   79 +
 src/FileUtilCP.ml                                  |  291 +++
 src/FileUtilDU.ml                                  |   37 +
 src/FileUtilFIND.ml                                |  123 ++
 src/FileUtilLS.ml                                  |   30 +
 src/FileUtilMKDIR.ml                               |   92 +
 src/FileUtilMV.ml                                  |   87 +
 src/FileUtilMisc.ml                                |   79 +
 src/FileUtilMode.ml                                |  239 +++
 src/FileUtilPWD.ml                                 |   26 +
 src/FileUtilPermission.ml                          |   75 +
 src/FileUtilREADLINK.ml                            |   58 +
 src/FileUtilRM.ml                                  |   84 +
 src/FileUtilSTAT.ml                                |   61 +
 src/FileUtilSize.ml                                |  150 ++
 src/FileUtilStr.ml                                 |   47 +-
 src/FileUtilTEST.ml                                |  222 +++
 src/FileUtilTOUCH.ml                               |   65 +
 src/FileUtilTypes.ml                               |  145 ++
 src/FileUtilUMASK.ml                               |   77 +
 src/FileUtilWHICH.ml                               |  105 ++
 src/META                                           |   27 +-
 src/MacOSPath.ml                                   |   74 +-
 src/UnixPath.ml                                    |  121 +-
 src/Win32Path.ml                                   |   81 +-
 src/api-fileutils.odocl                            |   21 -
 src/fileutils-str.mldylib                          |    4 +
 src/fileutils-str.mllib                            |   21 -
 src/fileutils.mldylib                              |   33 +
 src/fileutils.mllib                                |   44 +-
 test/BenchFind.ml                                  |   96 +-
 test/test.ml                                       | 1891 +++++++++++---------
 website/Makefile                                   |  119 +-
 .../Makefile.scrape.tmpl                           |   59 +-
 website/fabfile.py                                 |   14 +
 website/html/caml.ico                              |  Bin 0 -> 3262 bytes
 website/html/default.css                           |  229 +++
 website/html/download.png                          |  Bin 0 -> 961 bytes
 website/images/logo.svg                            |  178 ++
 website/layout.xml                                 |   48 -
 website/mkd/contribute.mkd                         |   40 +
 website/mkd/index.mkd.tmpl                         |   40 +
 website/mkd/part-after-body.html                   |   25 +
 website/mkd/part-before-body.html                  |   25 +
 website/mkd/part-header.html                       |    1 +
 website/ocaml-fileutils.xml                        |  153 --
 website/website.xml                                |   30 -
 75 files changed, 6960 insertions(+), 3838 deletions(-)
 copy src/fileutils.mllib => doc-dist.sh (51%)
 create mode 100644 src/FileUtil.mli
 create mode 100644 src/FileUtilCHMOD.ml
 create mode 100644 src/FileUtilCMP.ml
 create mode 100644 src/FileUtilCP.ml
 create mode 100644 src/FileUtilDU.ml
 create mode 100644 src/FileUtilFIND.ml
 create mode 100644 src/FileUtilLS.ml
 create mode 100644 src/FileUtilMKDIR.ml
 create mode 100644 src/FileUtilMV.ml
 create mode 100644 src/FileUtilMisc.ml
 create mode 100644 src/FileUtilMode.ml
 create mode 100644 src/FileUtilPWD.ml
 create mode 100644 src/FileUtilPermission.ml
 create mode 100644 src/FileUtilREADLINK.ml
 create mode 100644 src/FileUtilRM.ml
 create mode 100644 src/FileUtilSTAT.ml
 create mode 100644 src/FileUtilSize.ml
 create mode 100644 src/FileUtilTEST.ml
 create mode 100644 src/FileUtilTOUCH.ml
 create mode 100644 src/FileUtilTypes.ml
 create mode 100644 src/FileUtilUMASK.ml
 create mode 100644 src/FileUtilWHICH.ml
 create mode 100644 src/fileutils-str.mldylib
 create mode 100644 src/fileutils.mldylib
 copy src/fileutils.mllib => website/Makefile.scrape.tmpl (52%)
 create mode 100644 website/fabfile.py
 create mode 100644 website/html/caml.ico
 create mode 100644 website/html/default.css
 create mode 100644 website/html/download.png
 create mode 100644 website/images/logo.svg
 delete mode 100644 website/layout.xml
 create mode 100644 website/mkd/contribute.mkd
 create mode 100644 website/mkd/index.mkd.tmpl
 create mode 100644 website/mkd/part-after-body.html
 create mode 100644 website/mkd/part-before-body.html
 create mode 100644 website/mkd/part-header.html
 delete mode 100644 website/ocaml-fileutils.xml
 delete mode 100644 website/website.xml

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-fileutils.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