[Pkg-ocaml-maint-commits] [coinst] branch master updated (c16f211 -> af3194a)

Mehdi Dogguy mehdi at moszumanska.debian.org
Thu Jan 16 22:51:25 UTC 2014


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

mehdi pushed a change to branch master
in repository coinst.

      from  c16f211   include ocamlvars.m
       new  f219aa2   Update debian/gbp.conf to automatically filter "migration-reports" and "snapshots" directories upon import using git-import-orig.
       new  55da541   Imported Upstream version 1.9.0
       new  112c499   Merge tag 'upstream/1.9.0'
       new  92846e6   Import new upstream release
       new  8a98ecc   Install comigrate and coinst-upgrades utilities.
       new  a0a7d68   Install coinst_converter and jsviewer.js
       new  ecde15f   Stupid dh_ocamlinit
       new  f8c8595   Add myself to Uploaders.
       new  bf0d1a0   Bump Standards-Version to 3.9.4, no changes needed.
       new  6e1ce64   Add libcudf-ocaml-dev to Build-Depends.
       new  310bdad   Add Fixed-to-compile-with-OCaml-4.01.patch
       new  af3194a   Release to unstable

The 12 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:
 .depend                                            |   185 +-
 .gitignore                                         |    12 +
 BUGS.txt                                           |    22 +
 CHANGES                                            |    10 +
 COPYING                                            |     4 +-
 Makefile                                           |    38 +-
 README.md                                          |     8 +
 TODO.txt                                           |    50 +
 api.ml                                             |    18 +
 api.mli                                            |    18 +
 bytearray.ml                                       |    97 +
 bytearray.mli                                      |    27 +
 bytearray_stubs.c                                  |    52 +
 cache.ml                                           |    93 +
 cache.mli                                          |    25 +
 main.ml => coinst.ml                               |    68 +-
 coinst_common.ml                                   |   393 +
 coinst_common.mli                                  |    35 +
 common.ml                                          |    18 +
 common.mli                                         |    18 +
 conflicts.ml                                       |    19 +
 cudf_lib.ml                                        |    37 +-
 cudf_lib.mli                                       |    18 +
 deb_lib.ml                                         |  1448 ++-
 deb_lib.mli                                        |   123 +-
 debian/changelog                                   |    23 +-
 debian/coinst-viewer.dirs                          |     1 +
 debian/coinst-viewer.install                       |     4 +-
 debian/coinst.install                              |     1 -
 debian/coinst.install.in                           |     5 +
 debian/coinst.manpages                             |     2 +
 debian/control                                     |     7 +-
 debian/gbp.conf                                    |     2 +
 .../0001-Fixed-to-compile-with-OCaml-4.01.patch    |    54 +
 debian/patches/make_byte                           |    47 +
 debian/patches/make_clean                          |    20 +-
 debian/patches/make_viewer_byte                    |    29 +-
 debian/patches/series                              |     2 +
 debian/rules                                       |    13 +-
 debug.ml                                           |    53 +
 debug.mli                                          |    22 +
 dgraph.ml                                          |   100 -
 dgraph.mli                                         |    37 -
 file.ml                                            |   125 +
 file.mli                                           |    28 +
 graph.ml                                           |    92 +-
 graph.mli                                          |    23 +-
 horn.ml                                            |   323 +
 horn.mli                                           |    48 +
 layout.ml                                          |   398 +
 layout.mli                                         |    91 +
 man/coinst-upgrades.1                              |    94 +
 man/comigrate.1                                    |   345 +
 ptset.ml                                           |   686 ++
 ptset.mli                                          |   109 +
 quotient.ml                                        |    62 +
 quotient.mli                                       |    46 +
 repository.ml                                      |    67 +-
 repository.mli                                     |    31 +-
 rpm_lib.ml                                         |    57 +-
 rpm_lib.mli                                        |    18 +
 solver.ml                                          |    59 +-
 solver.mli                                         |    19 +
 task.ml                                            |   237 +
 task.mli                                           |    42 +
 task_stubs.c                                       |    12 +
 transition.ml                                      |  3643 +++++++
 update_data.ml                                     |   178 +
 update_data.mli                                    |    20 +
 upgrade.ml                                         |   611 ++
 upgrade.mli                                        |    19 +
 upgrade_common.ml                                  |  1888 ++++
 upgrade_common.mli                                 |    76 +
 upgrade_main.ml                                    |    80 +
 util.ml                                            |   287 +-
 util.mli                                           |    92 +
 viewer/.depend                                     |    76 +-
 viewer/converter.ml                                |    13 +-
 viewer/dot_file.ml                                 |    96 +
 viewer/dot_file.mli                                |     6 +
 viewer/dot_graph.ml                                |     5 +
 viewer/dot_graph.mli                               |     2 +
 viewer/dot_parser.mly                              |    17 +-
 viewer/dot_render.ml                               |    34 +-
 viewer/index.html                                  |     1 +
 viewer/scene.js                                    | 10468 +++++++++++++++++++
 viewer/scene.ml                                    |    11 +-
 viewer/scene.mli                                   |     9 +-
 viewer/scene_extents.ml                            |     6 +-
 viewer/scene_json.ml                               |    15 +-
 viewer/scene_svg.ml                                |    59 +
 viewer/scene_svg.mli                               |     5 +
 viewer/viewer.ml                                   |    12 +-
 viewer/viewer_common.ml                            |    11 +-
 viewer/viewer_common.mli                           |     2 +
 viewer/viewer_js.ml                                |    34 +-
 96 files changed, 23186 insertions(+), 860 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 BUGS.txt
 create mode 100644 README.md
 create mode 100644 TODO.txt
 create mode 100644 bytearray.ml
 create mode 100644 bytearray.mli
 create mode 100644 bytearray_stubs.c
 create mode 100644 cache.ml
 create mode 100644 cache.mli
 rename main.ml => coinst.ml (93%)
 create mode 100644 coinst_common.ml
 create mode 100644 coinst_common.mli
 create mode 100644 debian/coinst-viewer.dirs
 delete mode 100644 debian/coinst.install
 create mode 100644 debian/coinst.install.in
 create mode 100644 debian/patches/0001-Fixed-to-compile-with-OCaml-4.01.patch
 create mode 100644 debian/patches/make_byte
 create mode 100644 debug.ml
 create mode 100644 debug.mli
 delete mode 100644 dgraph.ml
 delete mode 100644 dgraph.mli
 create mode 100644 file.ml
 create mode 100644 file.mli
 create mode 100644 horn.ml
 create mode 100644 horn.mli
 create mode 100644 layout.ml
 create mode 100644 layout.mli
 create mode 100644 man/coinst-upgrades.1
 create mode 100644 man/comigrate.1
 create mode 100644 ptset.ml
 create mode 100644 ptset.mli
 create mode 100644 task.ml
 create mode 100644 task.mli
 create mode 100644 task_stubs.c
 create mode 100644 transition.ml
 create mode 100644 update_data.ml
 create mode 100644 update_data.mli
 create mode 100644 upgrade.ml
 create mode 100644 upgrade.mli
 create mode 100644 upgrade_common.ml
 create mode 100644 upgrade_common.mli
 create mode 100644 upgrade_main.ml
 create mode 100644 viewer/scene.js
 create mode 100644 viewer/scene_svg.ml
 create mode 100644 viewer/scene_svg.mli

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



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