[Pkg-ocaml-maint-commits] [ocaml-deriving-ocsigen] branch master updated (d66eae5 -> 16fab7d)

Stéphane Glondu glondu at moszumanska.debian.org
Sat Jun 14 13:19:59 UTC 2014


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

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

      from  d66eae5   Update changelog and prepare upload to unstable
       new  8537302   Update debian/watch
       new  7f5dd42   Imported Upstream version 0.5+1
       new  5694b44   Imported Upstream version 0.6
       new  1b27fba   Imported Upstream version 0.6.1
       new  7ab67a2   Imported Upstream version 0.6.2
       new  cebceac   Merge tag 'upstream/0.6.2'
       new  1c618eb   New upstream release
       new  e6ed490   New upstream URL
       new  29b496c   New upstream name
       new  f2128c3   Update packaging
       new  16fab7d   Update changelog and prepare upload to unstable

The 11 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                                        |  30 ++--
 CHANGES                                           |   6 +
 Makefile                                          | 135 +++++++++--------
 Makefile.config                                   |  27 ----
 Makefile.dist                                     |  40 +++++
 Makefile.filelist                                 |  51 -------
 README.md                                         |  24 ++-
 VERSION                                           |   1 -
 _oasis                                            |  90 ++++++++++++
 _tags                                             |   9 ++
 configure                                         |  22 +++
 debian/changelog                                  |   8 +
 debian/control                                    |   5 +-
 debian/copyright                                  |   4 +-
 debian/libderiving-ocsigen-ocaml-dev.install.in   |  16 +-
 debian/libderiving-ocsigen-ocaml-dev.ocamldoc     |   1 -
 debian/libderiving-ocsigen-ocaml.install.in       |  10 +-
 debian/rules                                      |  43 +++---
 debian/watch                                      |   2 +-
 files/META.in                                     |  48 ------
 lib/.depend                                       |  46 ------
 lib/META.ab                                       |  96 ++++++++++++
 lib/Makefile                                      |  79 ----------
 lib/deriving_Default.ml                           |  65 +++++++++
 lib/deriving_Default.mli                          |  18 +++
 lib/deriving_Functor.ml                           |   2 +-
 myocamlbuild.ml                                   |  30 ++++
 opam/descr                                        |   1 +
 opam/opam                                         |  16 ++
 opam/url                                          |   1 +
 setup.ml                                          |  37 +++++
 syntax/.depend                                    |  42 ------
 syntax/Makefile                                   | 170 ----------------------
 syntax/classes/default_class.ml                   |  94 ++++++++++++
 syntax/classes/functor_class.ml                   |   2 +-
 syntax/{ => common}/base.ml                       |  15 +-
 syntax/{ => common}/base.mli                      |   0
 syntax/{ => common}/clusters.ml                   |   0
 syntax/{ => common}/clusters.mli                  |   0
 syntax/common/defs.ml                             |   1 +
 syntax/{ => common}/defs.mli                      |   0
 syntax/{ => common}/extend.ml                     |   0
 syntax/{ => common}/extend.mli                    |   0
 syntax/common/id.ml.ab                            |   2 +
 syntax/{ => common}/type.ml                       |  37 +++--
 syntax/{ => common}/type.mli                      |   2 +-
 syntax/{ => common}/utils.ml                      |   0
 syntax/{ => common}/utils.mli                     |   0
 syntax/id.mlp                                     |   2 -
 syntax/{pa_deriving.ml => std/pa_deriving_std.ml} |   0
 syntax/{ => tc}/pa_deriving_tc.ml                 |   0
 tests/.depend                                     |  26 ----
 tests/Makefile                                    |  65 ---------
 tests/show_tests.ml                               |   0
 tests/{ => std}/bimap.ml                          |   0
 tests/{ => std}/bounded_tests.ml                  |   0
 tests/{ => std}/dump_tests.ml                     |   0
 tests/{ => std}/enum_tests.ml                     |   0
 tests/{ => std}/eq_tests.ml                       |   0
 tests/{ => std}/exp.ml                            |   0
 tests/{ => std}/functor_tests.ml                  |   0
 tests/{ => std}/inline.ml                         |   0
 tests/std/notc.ml                                 |  12 ++
 tests/{ => std}/pickle_tests.ml                   |   0
 tests/std/show_tests.ml                           |  20 +++
 tests/{ => std}/sigs.ml                           |   0
 tests/{ => std}/tests_defs.ml                     |   0
 tests/{ => std}/typeable_tests.ml                 |   0
 tests/{ => tc}/tc.ml                              |   0
 69 files changed, 734 insertions(+), 719 deletions(-)
 delete mode 100644 Makefile.config
 create mode 100644 Makefile.dist
 delete mode 100644 Makefile.filelist
 delete mode 100644 VERSION
 create mode 100644 _oasis
 create mode 100644 _tags
 create mode 100755 configure
 delete mode 100644 debian/libderiving-ocsigen-ocaml-dev.ocamldoc
 delete mode 100644 files/META.in
 delete mode 100644 lib/.depend
 create mode 100644 lib/META.ab
 delete mode 100644 lib/Makefile
 create mode 100644 lib/deriving_Default.ml
 create mode 100644 lib/deriving_Default.mli
 create mode 100644 myocamlbuild.ml
 create mode 100644 opam/descr
 create mode 100644 opam/opam
 create mode 100644 opam/url
 create mode 100644 setup.ml
 delete mode 100644 syntax/.depend
 delete mode 100644 syntax/Makefile
 create mode 100644 syntax/classes/default_class.ml
 rename syntax/{ => common}/base.ml (97%)
 rename syntax/{ => common}/base.mli (100%)
 rename syntax/{ => common}/clusters.ml (100%)
 rename syntax/{ => common}/clusters.mli (100%)
 create mode 120000 syntax/common/defs.ml
 rename syntax/{ => common}/defs.mli (100%)
 rename syntax/{ => common}/extend.ml (100%)
 rename syntax/{ => common}/extend.mli (100%)
 create mode 100644 syntax/common/id.ml.ab
 rename syntax/{ => common}/type.ml (93%)
 rename syntax/{ => common}/type.mli (99%)
 rename syntax/{ => common}/utils.ml (100%)
 rename syntax/{ => common}/utils.mli (100%)
 delete mode 100644 syntax/id.mlp
 rename syntax/{pa_deriving.ml => std/pa_deriving_std.ml} (100%)
 rename syntax/{ => tc}/pa_deriving_tc.ml (100%)
 delete mode 100644 tests/.depend
 delete mode 100644 tests/Makefile
 delete mode 100644 tests/show_tests.ml
 rename tests/{ => std}/bimap.ml (100%)
 rename tests/{ => std}/bounded_tests.ml (100%)
 rename tests/{ => std}/dump_tests.ml (100%)
 rename tests/{ => std}/enum_tests.ml (100%)
 rename tests/{ => std}/eq_tests.ml (100%)
 rename tests/{ => std}/exp.ml (100%)
 rename tests/{ => std}/functor_tests.ml (100%)
 rename tests/{ => std}/inline.ml (100%)
 create mode 100644 tests/std/notc.ml
 rename tests/{ => std}/pickle_tests.ml (100%)
 create mode 100644 tests/std/show_tests.ml
 rename tests/{ => std}/sigs.ml (100%)
 rename tests/{ => std}/tests_defs.ml (100%)
 rename tests/{ => std}/typeable_tests.ml (100%)
 rename tests/{ => tc}/tc.ml (100%)

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



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