[Pkg-ocaml-maint-commits] [ocaml-debian-formats] 04/06: fix build with Ocaml 4.02+

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a commit to branch master
in repository ocaml-debian-formats.

commit a9f5ae3f0bd53f037cb00764b27c9888209a8226
Author: Török Edwin ed...@etorok.net
Date:   Sun May 10 23:18:08 2015 +0300

fix build with Ocaml 4.02+

modules that are aliases cannot be InternalModules
---
 _oasis |  6 ++
 setup.ml   | 19 ++-
 src/DFChangelog.mli| 30 ++
 src/DFWatch.mli|  4 
 src/debian-formats.mldylib |  6 +++---
 src/debian-formats.mllib   |  6 +++---
 6 files changed, 48 insertions(+), 23 deletions(-)

diff --git a/_oasis b/_oasis
index 433111b..6068db9 100644
--- a/_oasis
+++ b/_oasis
@@ -10,13 +10,11 @@ BuildTools:  ocamlbuild
 Library debian-formats
   Path:src
   BuildTools:  ocamlbuild
-  Modules: DebianFormats
+  Modules: DebianFormats, DFChangelog, DFWatch
   InternalModules: DF822_lexer,
DF822_parser,
DF822,
-   DFUtils,
-   DFChangelog,
-   DFWatch
+   DFUtils
   BuildDepends: extlib, str, mikmatch_pcre
   
 Document api-debian-formats
diff --git a/setup.ml b/setup.ml
index 06f7f88..f30c8fb 100644
--- a/setup.ml
+++ b/setup.ml
@@ -1,7 +1,7 @@
 (* setup.ml generated for the first time by OASIS v0.2.0 *)
 
 (* OASIS_START *)
-(* DO NOT EDIT (digest: 6580cd6ffc2e1967770e303d6dada3cd) *)
+(* DO NOT EDIT (digest: 7e0c548dbe93ae9ff7d2eb58a7fb2cad) *)
 (*
Regenerated by OASIS v0.4.5
Visit http://oasis.forge.ocamlcore.org for more information and
@@ -6987,17 +6987,11 @@ let setup_t =
   bs_nativeopt = [(OASISExpr.EBool true, [])]
},
{
-  lib_modules = [DebianFormats];
+  lib_modules =
+[DebianFormats; DFChangelog; DFWatch];
   lib_pack = false;
   lib_internal_modules =
-[
-   DF822_lexer;
-   DF822_parser;
-   DF822;
-   DFUtils;
-   DFChangelog;
-   DFWatch
-];
+[DF822_lexer; DF822_parser; DF822; DFUtils];
   lib_findlib_parent = None;
   lib_findlib_name = None;
   lib_findlib_containers = []
@@ -7157,8 +7151,7 @@ let setup_t =
};
  oasis_fn = Some _oasis;
  oasis_version = 0.4.5;
- oasis_digest =
-   Some N(\220\250\029\011\214\178W\233\172\226\193\003%\137;
+ oasis_digest = Some |v\2401tv\r\198\135\021\155\239\135pD\233;
  oasis_exec = None;
  oasis_setup_args = [];
  setup_update = false
@@ -7166,6 +7159,6 @@ let setup_t =
 
 let setup () = BaseSetup.setup setup_t;;
 
-# 7170 setup.ml
+# 7163 setup.ml
 (* OASIS_STOP *)
 let () = setup ();;
diff --git a/src/DFChangelog.mli b/src/DFChangelog.mli
new file mode 100644
index 000..088c2de
--- /dev/null
+++ b/src/DFChangelog.mli
@@ -0,0 +1,30 @@
+type entry = {
+  source : string;
+  version : string;
+  distributions : string list;
+  optional_fields : (string * string) list;
+  urgency : string;
+  maintainer : string;
+  timestamp : string;
+  changes : string;
+}
+exception Skip_end
+val __mikmatch_regexp_1 : Pcre.regexp
+val __mikmatch_regexp_2 : Pcre.regexp
+val __mikmatch_regexp_3 : Pcre.regexp
+val __mikmatch_regexp_4 : Pcre.regexp
+val __mikmatch_regexp_5 : Pcre.regexp
+val skip_line : ?fst:string - IO.input - int * string option
+val __mikmatch_regexp_6 : Pcre.regexp
+val __mikmatch_regexp_7 : Pcre.regexp
+val __mikmatch_regexp_8 : Pcre.regexp
+val __mikmatch_regexp_9 : Pcre.regexp
+val __mikmatch_regexp_10 : Pcre.regexp
+val __mikmatch_regexp_11 : Pcre.regexp
+val parse_one : IO.input - string - entry
+val head : IO.input - entry
+val parse : IO.input - entry list
+val to_string : entry - string
+val filename : string
+val default : unit - entry list
+val default_head : unit - entry
diff --git a/src/DFWatch.mli b/src/DFWatch.mli
new file mode 100644
index 000..7d2bf3a
--- /dev/null
+++ b/src/DFWatch.mli
@@ -0,0 +1,4 @@
+val __mikmatch_regexp_1 : Pcre.regexp
+val __mikmatch_regexp_2 : Pcre.regexp
+val __mikmatch_regexp_3 : Pcre.regexp
+val parse : IO.input - string list
diff --git a/src/debian-formats.mldylib b/src/debian-formats.mldylib
index 12257a9..b813299 100644
--- a/src/debian-formats.mldylib
+++ b/src/debian-formats.mldylib
@@ -1,10 +1,10 @@
 # OASIS_START
-# DO NOT EDIT (digest: 9bf30c39154519664ef8b355fca992ba)
+# DO NOT EDIT (digest: 5f07f2ed946434ee0d42ebf13155c161)
 DebianFormats
+DFChangelog
+DFWatch
 DF822_lexer
 DF822_parser
 DF822
 DFUtils
-DFChangelog
-DFWatch
 # OASIS_STOP
diff --git a/src/debian-formats.mllib 

[Pkg-ocaml-maint-commits] [ocaml-debian-formats] 03/06: add draft opam file

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a commit to branch master
in repository ocaml-debian-formats.

commit 17c27552fa8155fa93ba74beb5b936c2340ce96d
Author: Török Edwin ed...@etorok.net
Date:   Sun May 10 22:58:48 2015 +0300

add draft opam file
---
 opam/descr   |  1 +
 opam/findlib |  1 +
 opam/opam| 33 +
 3 files changed, 35 insertions(+)

diff --git a/opam/descr b/opam/descr
new file mode 100644
index 000..7bf25c8
--- /dev/null
+++ b/opam/descr
@@ -0,0 +1 @@
+Parse debian files
diff --git a/opam/findlib b/opam/findlib
new file mode 100644
index 000..474e5f0
--- /dev/null
+++ b/opam/findlib
@@ -0,0 +1 @@
+debian-formats
diff --git a/opam/opam b/opam/opam
new file mode 100644
index 000..4dd4db2
--- /dev/null
+++ b/opam/opam
@@ -0,0 +1,33 @@
+opam-version: 1.2
+name: ocaml-debian-formats
+version: 0.1.0
+maintainer: opam-de...@lists.ocaml.org
+authors: [ Sylvain Le Gall ]
+license: LGPL-2.1 with OCaml linking exception
+build: [
+  [ocaml setup.ml -configure --prefix prefix]
+  [ocaml setup.ml -build]
+]
+install: [ocaml setup.ml -install]
+remove: [
+  [ocamlfind remove debian-formats]
+]
+build-doc: [ ocaml setup.ml -doc ]
+depends: [
+  (extlib | extlib-compat)
+  (mikmatch pcre)
+  ocamlfind
+  ounit
+]
+depopts: [
+  archive
+  base-threads
+  camlbz2
+  fileutils
+  lwt
+  lwt-android
+  oasis
+  oasis-mirage
+  ocurl
+  pcre
+]

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

[Pkg-ocaml-maint-commits] [ocaml-debian-formats] branch master updated (c558195 - b260c58)

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a change to branch master
in repository ocaml-debian-formats.

  from  c558195   Add debian/watch parser and a prototype for oasis-db
   new  b368633   Update with oasis v0.3.0~rc3++
   new  a2053c6   Rerun oasis setup.
   new  b4c2443   regenerate with newer oasis
   new  17c2755   add draft opam file
   new  a9f5ae3   fix build with Ocaml 4.02+
   new  b260c58   Merge branch 'build-fix' of 
https://github.com/edwintorok/ocaml-debian-formats

The 6 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:
 AUTHORS.txt|9 +-
 INSTALL.txt|   25 +-
 Makefile   |   11 +-
 README.txt |   14 +-
 _oasis |   12 +-
 _tags  |   67 +-
 configure  |   23 +-
 myocamlbuild.ml|  582 +-
 opam/descr |1 +
 opam/findlib   |1 +
 opam/opam  |   33 +
 setup.ml   | 6912 +---
 src/DFChangelog.mli|   30 +
 src/DFWatch.mli|4 +
 src/META   |4 +-
 ...debian-formats.mllib = debian-formats.mldylib} |6 +-
 src/debian-formats.mllib   |6 +-
 17 files changed, 4965 insertions(+), 2775 deletions(-)
 create mode 100644 opam/descr
 create mode 100644 opam/findlib
 create mode 100644 opam/opam
 create mode 100644 src/DFChangelog.mli
 create mode 100644 src/DFWatch.mli
 copy src/{debian-formats.mllib = debian-formats.mldylib} (54%)

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


[Pkg-ocaml-maint-commits] [ocaml-debian-formats] branch old-alioth created (now 5b6ba33)

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a change to branch old-alioth
in repository ocaml-debian-formats.

at  5b6ba33   .

This branch includes the following new commits:

   new  5b6ba33   .

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.


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


[Pkg-ocaml-maint-commits] [ocaml-debian-formats] branch master updated (7f57a0e - 5b6ba33)

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a change to branch master
in repository ocaml-debian-formats.

  from  7f57a0e   Update README.txt to point to github.
  adds  5b6ba33   .

No new revisions were added by this update.

Summary of changes:
 .gitignore  |6 -
 AUTHORS.txt |8 -
 INSTALL.txt |   48 -
 Makefile|   46 -
 README.txt  |   15 -
 _oasis  |   54 -
 _tags   |   61 -
 configure   |   27 -
 examples/proto_oasis/proto_oasis.ml |  493 ---
 myocamlbuild.ml |  623 ---
 opam/descr  |1 -
 opam/findlib|1 -
 opam/opam   |   33 -
 setup.ml| 7164 ---
 src/DF822.ml|  365 --
 src/DF822_lexer.mll |   50 -
 src/DF822_parser.mly|  101 -
 src/DFChangelog.ml  |  248 --
 src/DFChangelog.mli |   30 -
 src/DFUtils.ml  |   18 -
 src/DFWatch.ml  |   37 -
 src/DFWatch.mli |4 -
 src/DebianFormats.ml|  515 ---
 src/META|   12 -
 src/debian-formats.mldylib  |   10 -
 src/debian-formats.mllib|   10 -
 test/data/changelog.ocaml-data-notation |   17 -
 test/data/control.ocaml-data-notation   |   41 -
 test/data/watch.oasis   |5 -
 test/data/watch.obus|6 -
 test/test.ml|   73 -
 31 files changed, 10122 deletions(-)
 delete mode 100644 .gitignore
 delete mode 100644 AUTHORS.txt
 delete mode 100644 INSTALL.txt
 delete mode 100644 Makefile
 delete mode 100644 _oasis
 delete mode 100644 _tags
 delete mode 100755 configure
 delete mode 100644 examples/proto_oasis/proto_oasis.ml
 delete mode 100644 myocamlbuild.ml
 delete mode 100644 opam/descr
 delete mode 100644 opam/findlib
 delete mode 100644 opam/opam
 delete mode 100644 setup.ml
 delete mode 100644 src/DF822.ml
 delete mode 100644 src/DF822_lexer.mll
 delete mode 100644 src/DF822_parser.mly
 delete mode 100644 src/DFChangelog.ml
 delete mode 100644 src/DFChangelog.mli
 delete mode 100644 src/DFUtils.ml
 delete mode 100644 src/DFWatch.ml
 delete mode 100644 src/DFWatch.mli
 delete mode 100644 src/DebianFormats.ml
 delete mode 100644 src/META
 delete mode 100644 src/debian-formats.mldylib
 delete mode 100644 src/debian-formats.mllib
 delete mode 100644 test/data/changelog.ocaml-data-notation
 delete mode 100644 test/data/control.ocaml-data-notation
 delete mode 100644 test/data/watch.oasis
 delete mode 100644 test/data/watch.obus
 delete mode 100644 test/test.ml

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


[Pkg-ocaml-maint-commits] [ocaml-debian-formats] 01/01: Update README.txt to point to github.

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a commit to branch master
in repository ocaml-debian-formats.

commit 7f57a0e6a17dba60027d9e317a7b30966aadfc14
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Mon May 11 02:34:08 2015 +0200

Update README.txt to point to github.
---
 README.txt | 4 
 1 file changed, 4 insertions(+)

diff --git a/README.txt b/README.txt
index e6c4a5e..538fe8f 100644
--- a/README.txt
+++ b/README.txt
@@ -14,3 +14,7 @@ ocaml-debian-formats is distributed under the terms of the 
GNU Lesser General
 Public License version 2.1 with OCaml linking exception.
 
 (* OASIS_STOP *)
+
+
+The main repository for developping this library can be found on
+[github](https://github.com/gildor478/ocaml-debian-formats).

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


[Pkg-ocaml-maint-commits] [ocaml-debian-formats] branch master updated (b260c58 - 7f57a0e)

2015-05-10 Thread Sylvain LE GALL
This is an automated email from the git hooks/post-receive script.

gildor pushed a change to branch master
in repository ocaml-debian-formats.

  from  b260c58   Merge branch 'build-fix' of 
https://github.com/edwintorok/ocaml-debian-formats
   new  7f57a0e   Update README.txt to point to github.

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:
 README.txt | 4 
 1 file changed, 4 insertions(+)

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