[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


[Pkg-ocaml-maint-commits] [ocamlify] 01/01: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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 ocamlify.

commit 3500d607542bdbd15e0a8c46a4bf5667a4edde7c
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:00:34 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 6 ++
 debian/control   | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9fcc71c..a82a4bc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocamlify (0.0.2-2.1) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from Uploaders.
+
+ -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 14:59:39 +0200
+
 ocamlify (0.0.2-2) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 9b50c41..9bc2e98 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: ocamlify
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
- Sylvain Le Gall gil...@debian.org
 Build-Depends:
  debhelper (= 7.0.50~),
  ocaml-nox (= 4),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlify.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] [oasis] 01/01: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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 oasis.

commit 16cba250553b158ec5a270a1d12bed687b32ec3f
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:12:27 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 44a84c3..64b9855 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+oasis (0.4.4-3) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from Uploaders.
+
+ -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 15:12:15 +0200
+
 oasis (0.4.4-2) unstable; urgency=medium
 
   * Team upload
diff --git a/debian/control b/debian/control
index 96abae2..90d1db6 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
-  Sylvain Le Gall gil...@debian.org,
   Hendrik Tews hend...@askra.de
 Build-Depends:
   debhelper (= 9),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/oasis.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-data-notation] branch master updated (2bb3a3e - 770d460)

2015-05-02 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-data-notation.

  from  2bb3a3e   Prepare upload to unstable
   new  770d460   Remove Sylvain Le Gall from Uploaders.

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:
 debian/changelog | 6 ++
 debian/control   | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-data-notation.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-data-notation] 01/01: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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-data-notation.

commit 770d4606b61a76377ed773387d2884e407f31bd1
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:11:06 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 6 ++
 debian/control   | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ee81beb..23b0399 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-data-notation (0.0.11-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from Uploaders.
+
+ -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 15:10:51 +0200
+
 ocaml-data-notation (0.0.11-1) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 7a4f699..d7d0207 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: ocaml-data-notation
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: 
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-data-notation.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] [oasis] branch master updated (917c35f - 16cba25)

2015-05-02 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 oasis.

  from  917c35f   Update changelog and prepare upload to unstable
   new  16cba25   Remove Sylvain Le Gall from Uploaders.

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:
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/oasis.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] [ocamlmod] 01/01: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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 ocamlmod.

commit 4746d42ac73d18bf15ebaa653f4acb58fed9bffa
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 14:58:48 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 6 ++
 debian/control   | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 05c1e3d..dd873a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocamlmod (0.0.7-1.1) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from Uploaders.
+
+ -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 14:57:42 +0200
+
 ocamlmod (0.0.7-1) unstable; urgency=medium
 
   * Team upload
diff --git a/debian/control b/debian/control
index d6a7139..71fa1fe 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: ocamlmod
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 4.00.1),
   ocaml-findlib (= 1.4),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlmod.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] [ocamlmod] branch master updated (41a0ebd - 4746d42)

2015-05-02 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 ocamlmod.

  from  41a0ebd   Update changelog and prepare upload to unstable
   new  4746d42   Remove Sylvain Le Gall from Uploaders.

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:
 debian/changelog | 6 ++
 debian/control   | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlmod.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] [camlimages] branch master updated (fa6577a - d7b1d76)

2015-05-02 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 camlimages.

  from  fa6577a   Update packaging
   new  d7b1d76   Remove Sylvain Le Gall from Uploaders.

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:
 debian/changelog | 4 
 debian/control   | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/camlimages.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] [camlimages] 01/01: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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 camlimages.

commit d7b1d76373dc782deb309426c3b5503c9f810bb6
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 14:56:37 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 4 
 debian/control   | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 547eab4..c2ced8e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,11 @@
 camlimages (1:4.2.0-1) UNRELEASED; urgency=medium
 
+  [ Stéphane Glondu ]
   * New upstream release
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from Uploaders.
+
  -- Stéphane Glondu glo...@debian.org  Thu, 26 Feb 2015 16:13:35 +0100
 
 camlimages (1:4.0.1-8) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 7304a00..82c3d8c 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,6 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Ralf Treinen trei...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Mehdi Dogguy me...@debian.org
 Build-Depends:
  debhelper (= 8),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/camlimages.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-fileutils] 02/02: Merge remote-tracking branch 'origin/master'

2015-05-02 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-fileutils.

commit 4676daea198dc75153bae5c6bb5b596d783e486d
Merge: aa1cf2e 024ef7e
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:09:24 2015 +0200

Merge remote-tracking branch 'origin/master'

Conflicts:
debian/changelog

 debian/changelog | 18 +++---
 debian/control   |  4 ++--
 2 files changed, 17 insertions(+), 5 deletions(-)

diff --cc debian/changelog
index 0fa0108,9d51794..10d2bd1
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,14 -1,20 +1,26 @@@
- ocaml-fileutils (0.4.5-4) UNRELEASED; urgency=low
++ocaml-fileutils (0.4.5-5) UNRELEASED; urgency=low
 +
 +  * Remove Sylvain Le Gall from Uploaders.
 +
 + -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 15:06:40 +0200
 +
- ocaml-fileutils (0.4.5-3) unstable; urgency=low
+ ocaml-fileutils (0.4.5-4) unstable; urgency=low
  
+   * Team upload
+   * Upload to unstable
+ 
+  -- Stéphane Glondu glo...@debian.org  Tue, 03 Dec 2013 21:21:52 +0100
+ 
+ ocaml-fileutils (0.4.5-3) experimental; urgency=low
+ 
+   [ Stéphane Glondu ]
+   * Team upload
+   * Compile with OCaml = 4
+ 
+   [ Hendrik Tews ]
* enable tests again
  
-  -- Hendrik Tews hend...@askra.de  Wed, 05 Jun 2013 10:22:53 +0200
+  -- Stéphane Glondu glo...@debian.org  Fri, 26 Jul 2013 22:11:05 +0200
  
  ocaml-fileutils (0.4.5-2) unstable; urgency=low
  

-- 
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

[Pkg-ocaml-maint-commits] [ocaml-fileutils] 01/02: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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-fileutils.

commit aa1cf2efb666342de62e88ca497a1c77be3388b8
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:07:21 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index b84c718..0fa0108 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-fileutils (0.4.5-4) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from Uploaders.
+
+ -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 15:06:40 +0200
+
 ocaml-fileutils (0.4.5-3) unstable; urgency=low
 
   * enable tests again
diff --git a/debian/control b/debian/control
index fe28137..9c8c457 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders: 
- Sylvain Le Gall gil...@debian.org,
  Hendrik Tews hend...@askra.de
 Build-Depends: 
  debhelper (= 9),

-- 
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


[Pkg-ocaml-maint-commits] [ocamlify] 01/01: Fix NMU.

2015-05-02 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 ocamlify.

commit 9278e57794c6dd2fbd3adcb3458e0430cf20dd5d
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:04:31 2015 +0200

Fix NMU.
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index a82a4bc..dfbd25b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-ocamlify (0.0.2-2.1) UNRELEASED; urgency=low
+ocamlify (0.0.2-3) UNRELEASED; urgency=low
 
   * Remove Sylvain Le Gall from Uploaders.
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlify.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-fileutils] branch master updated (024ef7e - 4676dae)

2015-05-02 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-fileutils.

  from  024ef7e   Prepare upload to unstable
   new  aa1cf2e   Remove Sylvain Le Gall from Uploaders.
   new  4676dae   Merge remote-tracking branch 'origin/master'

The 2 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:
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

-- 
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


[Pkg-ocaml-maint-commits] [ocaml-gettext] branch master updated (383f46d - 6532af8)

2015-05-02 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-gettext.

  from  383f46d   Update changelog and prepare upload to unstable
   new  6532af8   Remove Sylvain Le Gall from Uploaders.

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:
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-gettext.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] [ocamlmod] branch master updated (4746d42 - e2fa5de)

2015-05-02 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 ocamlmod.

  from  4746d42   Remove Sylvain Le Gall from Uploaders.
   new  e2fa5de   Fix NMU.

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:
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlmod.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] [ocamlify] branch master updated (3500d60 - 9278e57)

2015-05-02 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 ocamlify.

  from  3500d60   Remove Sylvain Le Gall from Uploaders.
   new  9278e57   Fix NMU.

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:
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlify.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-gettext] 01/01: Remove Sylvain Le Gall from Uploaders.

2015-05-02 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-gettext.

commit 6532af833a0c31e73b6e70a76d3932e21e60f754
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:03:32 2015 +0200

Remove Sylvain Le Gall from Uploaders.
---
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 4b323de..8e5bc6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-gettext (0.3.4-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from Uploaders.
+
+ -- Sylvain Le Gall gil...@debian.org  Sat, 02 May 2015 15:01:46 +0200
+
 ocaml-gettext (0.3.4-1) unstable; urgency=low
 
   [ Stéphane Glondu ]
diff --git a/debian/control b/debian/control
index 31e7c03..4c88e9f 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,6 @@ Source: ocaml-gettext
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: Sylvain Le Gall gil...@debian.org
 Build-Depends: cdbs (= 0.4.52~),
   ocaml-nox (= 3.11),
   debhelper (= 8),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-gettext.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] [ocamlmod] 01/01: Fix NMU.

2015-05-02 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 ocamlmod.

commit e2fa5de9c258442f81fb0673a57c3e42236c2de6
Author: Sylvain Le Gall sylv...@le-gall.net
Date:   Sat May 2 15:05:09 2015 +0200

Fix NMU.
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index dd873a0..a67cac3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-ocamlmod (0.0.7-1.1) UNRELEASED; urgency=low
+ocamlmod (0.0.7-2) UNRELEASED; urgency=low
 
   * Remove Sylvain Le Gall from Uploaders.
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocamlmod.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] [oasis] 03/03: Imported Upstream version 0.4.2.

2014-03-05 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 oasis.

commit 7cda0386f9a372ef38561c76dc9a02c5cae7afb4
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:35:56 2014 +

Imported Upstream version 0.4.2.

* Imported Upstream version 0.4.2.
* Remove most of the patches, they have been applied upstream.
---
 debian/changelog   |  7 +
 debian/control | 24 +++
 ...t-set-timeout-to-avoid-error-on-slow-arch.patch | 19 ++--
 debian/patches/0002-lintian-spelling.patch | 36 --
 .../0003-fix-ocamlbuild-plugin-export.patch| 22 -
 debian/patches/0004-fix-ocamlbuild-deps.patch  | 23 --
 debian/patches/0005-fixperms-debian-rules.patch| 18 ---
 .../patches/0006-require-ocamlbuild-for-test.patch | 21 -
 .../0007-fix-testsuite-on-bytecode-archs.patch | 22 -
 ...008-Update-ocamldoc-test-for-OCaml-4.01.0.patch | 23 --
 debian/patches/series  |  7 -
 11 files changed, 27 insertions(+), 195 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5f28543..e9b4da0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+oasis (0.4.2-1) UNRELEASED; urgency=low
+
+  * Imported Upstream version 0.4.2.
+  * Remove most of the patches, they have been applied upstream.
+
+ -- Sylvain Le Gall sylv...@le-gall.net  Thu, 27 Feb 2014 22:12:18 +0100
+
 oasis (0.3.0-4) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 7847634..b125fb6 100644
--- a/debian/control
+++ b/debian/control
@@ -2,25 +2,23 @@ Source: oasis
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: 
+Uploaders:
   Sylvain Le Gall gil...@debian.org,
   Hendrik Tews hend...@askra.de
 Build-Depends:
   debhelper (= 9),
   dh-ocaml (= 0.9~),
-  ocaml-nox (= 3.11.1-3~),
+  ocaml-nox (= 3.11.2),
   ocaml-best-compilers,
-  ocaml-findlib,
+  ocaml-findlib (= 1.3.1),
   ocamlify,
-  ocamlmod,
+  ocamlmod (= 0.0.7),
   libpcre-ocaml-dev,
-  libounit-ocaml-dev (= 1.1.0),
-  libodn-ocaml-dev (= 0.0.3),
-  libocamlgraph-ocaml-dev,
+  libounit-ocaml-dev (= 2.0.0),
+  libodn-ocaml-dev (= 0.0.11),
   libfindlib-ocaml-dev,
-  libfileutils-ocaml-dev,
-  libextlib-ocaml-dev,
-  libexpect-ocaml-dev (= 0.0.2),
+  libfileutils-ocaml-dev (= 0.4.2),
+  libexpect-ocaml-dev (= 0.0.4),
   zlib1g-dev,
   libidn11-dev,
   libbitstring-ocaml-dev
@@ -63,8 +61,8 @@ Description: Build-system generation for OCaml projects -- 
binaries
 Package: liboasis-ocaml-dev
 Architecture: any
 Suggests: liboasis-ocaml-doc
-Depends: 
- ${ocaml:Depends}, 
+Depends:
+ ${ocaml:Depends},
  ${shlibs:Depends},
  ${misc:Depends}
 Provides: ${ocaml:Provides}
@@ -97,7 +95,7 @@ Package: liboasis-ocaml
 Architecture: any
 Suggests: liboasis-ocaml-doc
 Depends:
- ${ocaml:Depends}, 
+ ${ocaml:Depends},
  ${shlibs:Depends},
  ${misc:Depends}
 Provides: ${ocaml:Provides}
diff --git 
a/debian/patches/0001-Don-t-set-timeout-to-avoid-error-on-slow-arch.patch 
b/debian/patches/0001-Don-t-set-timeout-to-avoid-error-on-slow-arch.patch
index 5508781..d161fa9 100644
--- a/debian/patches/0001-Don-t-set-timeout-to-avoid-error-on-slow-arch.patch
+++ b/debian/patches/0001-Don-t-set-timeout-to-avoid-error-on-slow-arch.patch
@@ -6,17 +6,16 @@ Subject: Don't set timeout to avoid error on slow arch
  test/TestQuickstart.ml | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/test/TestQuickstart.ml b/test/TestQuickstart.ml
-index 8c3defa..31dba9f 100644
 a/test/TestQuickstart.ml
-+++ b/test/TestQuickstart.ml
-@@ -74,7 +74,7 @@ let tests =
-   try
+Index: oasis/test/TestQuickstart.ml
+===
+--- oasis.orig/test/TestQuickstart.ml  2014-03-05 00:27:21.194430548 +
 oasis/test/TestQuickstart.ml   2014-03-05 00:27:39.078445104 +
+@@ -70,7 +70,7 @@
  with_spawn
-   ~verbose:!dbug
+   ~verbose:true
+   ~verbose_output:(logf test_ctxt `Info expect: %s)
 -  ~timeout:(Some 0.1)
 +  ~timeout:None
-   (oasis ())
+   (oasis_exec test_ctxt)
(Array.of_list args)
-   (fun t () - f t) 
--- 
+   (fun t () - f t)
diff --git a/debian/patches/0002-lintian-spelling.patch 
b/debian/patches/0002-lintian-spelling.patch
deleted file mode 100644
index b4497c7..000
--- a/debian/patches/0002-lintian-spelling.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From: Hendrik Tews hend...@askra.de
-Date: Sun, 8 Dec 2013 10:48:42 +0100
-Subject: lintian-spelling
-

- src/oasis/MANUAL-template.mkd   | 2 +-
- src/oasis/OASISRecDescParser.ml | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/oasis

[Pkg-ocaml-maint-commits] [oasis] branch pristine-tar updated (4aa570b - 8f8dc2d)

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

gildor pushed a change to branch pristine-tar
in repository oasis.

  from  4aa570b   pristine-tar data for oasis_0.3.0.orig.tar.gz
   new  8f8dc2d   pristine-tar data for oasis_0.4.2.orig.tar.gz

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:
 oasis_0.4.2.orig.tar.gz.delta | Bin 0 - 15956 bytes
 oasis_0.4.2.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 oasis_0.4.2.orig.tar.gz.delta
 create mode 100644 oasis_0.4.2.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/oasis.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] [oasis] 02/03: Merge tag 'upstream/0.4.2'

2014-03-05 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 oasis.

commit 9dcb81a1cf41b9119f15fe22a7d24fc3d7159061
Merge: aaec231 c5dd37a
Author: Sylvain Le Gall gil...@debian.org
Date:   Thu Feb 27 22:11:51 2014 +0100

Merge tag 'upstream/0.4.2'

Upstream version 0.4.2

 .boring|   90 -
 .gitignore |   15 +
 AUTHORS.txt|5 +-
 CHANGES.txt|  243 +-
 COPYING.txt|6 +-
 HACKING.md |   64 +
 INSTALL.txt|   20 +-
 Makefile   |  160 +-
 TODO.txt   |5 +
 _fixperms  |   10 -
 _headache.config   |   23 +-
 _header|3 +-
 _oasis |   62 +-
 _tags  |   35 +-
 ardivink.lua   |   20 +
 bootstrap.lua  |   38 -
 ci-main.lua|   29 -
 configure  |4 +-
 deps.ml|   85 +-
 dist.ml|  199 ++
 test/data/bug982/test-setup-data.sh = doc-dist.sh |   31 +-
 doc/ANALYSIS.mkd   |   10 +-
 doc/ext/README.txt |2 +-
 doc/ext/fetch-doc.sh   |3 +-
 examples/custom/LICENSE|3 +-
 examples/custom/TopMakefile|3 +-
 examples/custom/_oasis |6 +-
 examples/custom/myconfigure|3 +-
 examples/custom/myconfigure.bat|   41 +-
 examples/custom/src/META   |3 +-
 examples/custom/src/bar.ml |5 +-
 examples/custom/src/bar.mli|8 +-
 examples/custom/src/foo.ml |5 +-
 examples/custom/src/foo.mli|8 +-
 examples/findlib/LICENSE   |3 +-
 examples/findlib/src/META  |3 +-
 examples/findlib/src/bar.ml|5 +-
 examples/findlib/src/bar.mli   |8 +-
 examples/findlib/src/foo.ml|5 +-
 examples/findlib/src/foo.mli   |8 +-
 examples/flags/LICENSE |3 +-
 examples/flags/_oasis  |2 +-
 examples/flags/src/simplelib/Bar.ml|3 +-
 examples/flags/src/simplelib/Conf.ml.ab|3 +-
 examples/flags/src/simplelib/Foo.ml|3 +-
 examples/flags/src/simplelib/META  |3 +-
 examples/flags/src/simplelibext/BarExt.ml  |3 +-
 examples/flags/src/simplelibext/FooExt.ml  |3 +-
 examples/flags/src/simplelibext/META   |3 +-
 examples/interdepend-libraries/_oasis  |6 +-
 examples/interdepend-libraries/src/execa/Main.ml   |7 +-
 examples/interdepend-libraries/src/liba/A.ml   |7 +-
 .../interdepend-libraries/src/liba/intern/A2.ml|7 +-
 .../src/liba/intern/A_lexer.mll|3 +-
 .../src/liba/intern/A_parser.mly   |3 +-
 examples/interdepend-libraries/src/libb/B.ml   |7 +-
 examples/interdepend-libraries/src/libc/C.ml   |7 +-
 examples/interdepend-libraries/src/libd/D.ml   |6 +-
 examples/interdepend-libraries/src/libe/E.ml   |6 +-
 examples/oasis/cryptokit.oasis |   16 +-
 examples/object/_oasis |   21 +
 .../{custom/src/bar.ml = object/src1/single.ml}   |7 +-
 .../{custom/src/bar.ml = object/src1/single.mli}  |7 +-
 examples/{custom/src/bar.ml = object/src2/m1.ml}  |7 +-
 examples/{custom/src/bar.ml = object/src2/m2.ml}  |7 +-
 examples/{custom/src/bar.ml = object/src2/m2.mli} |7 +-
 examples/ocamlbuild/_oasis |   15 +
 .../src/test.ml = ocamlbuild/myocamlbuild.ml} |   16 +-
 .../bug588 = examples/ocamlbuild/src}/test.ml |7 +-
 examples/order-matter/_oasis   |6 +-
 examples/order-matter/src/bar/Bar.ml   |6 +-
 examples/order-matter/src/baz/Baz.ml   |4 +-
 examples/order-matter/src/foo/Foo.ml   |4 +-
 examples/packedlib/LICENSE |3 +-
 examples/packedlib/src/Baz.ml  |   22 +
 examples/packedlib

[Pkg-ocaml-maint-commits] [oasis] 01/01: pristine-tar data for oasis_0.4.2.orig.tar.gz

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

gildor pushed a commit to branch pristine-tar
in repository oasis.

commit 8f8dc2d84684641263ccee8cc53d9929f13a122e
Author: Sylvain Le Gall gil...@debian.org
Date:   Thu Feb 27 22:11:51 2014 +0100

pristine-tar data for oasis_0.4.2.orig.tar.gz
---
 oasis_0.4.2.orig.tar.gz.delta | Bin 0 - 15956 bytes
 oasis_0.4.2.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/oasis_0.4.2.orig.tar.gz.delta b/oasis_0.4.2.orig.tar.gz.delta
new file mode 100644
index 000..897fc08
Binary files /dev/null and b/oasis_0.4.2.orig.tar.gz.delta differ
diff --git a/oasis_0.4.2.orig.tar.gz.id b/oasis_0.4.2.orig.tar.gz.id
new file mode 100644
index 000..418a9ae
--- /dev/null
+++ b/oasis_0.4.2.orig.tar.gz.id
@@ -0,0 +1 @@
+3d9f93a31a5c1a641ae29f8d79acf9de54e6b3e9

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/oasis.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] [ounit] branch master updated (a806060 - 06dfb13)

2014-03-05 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 ounit.

  from  a806060   Prepare upload to unstable
   new  a5e667b   Imported Upstream version 2.0.0
   new  1b6c24a   Merge tag 'upstream/2.0.0'
   new  06dfb13   New upstream release.

The 3 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:
 .boring  |4 +
 INSTALL.txt  |5 +-
 LICENSE.txt  |1 +
 Makefile |   88 ++-
 _headache.config |   78 +++
 LICENSE.txt = _header   |   12 +-
 _oasis   |  104 +++-
 _tags|   38 +-
 ardivink.lua |   19 +
 bootstrap.lua|   38 --
 changelog|   47 +-
 ci-main.lua  |   24 -
 debian/changelog |8 +
 debian/control   |9 +-
 debian/libounit-ocaml-dev.install.in |3 +-
 doc-dist.sh  |   50 ++
 doc/manual.txt   |  137 ++---
 examples/Makefile|   35 +-
 examples/example.ml  |   34 +-
 examples/test_list.ml|   38 +-
 examples/test_list2.ml   |   34 +-
 examples/test_stack.ml   |   42 +-
 examples/test_suite.ml   |   36 +-
 myocamlbuild.ml  |  166 ++
 setup.ml |  859 +++
 src/META |   26 +-
 src/api-ounit.odocl  |   26 +-
 src/oUnit.css|  145 +
 src/oUnit.js |   97 +++
 src/oUnit.ml | 1080 +++---
 src/oUnit.mli|  170 +++---
 src/oUnit.mllib  |4 +-
 src/oUnit2.ml|   98 +++
 src/oUnit2.mli   |  304 ++
 src/oUnitAdvanced.mllib  |   26 +
 src/oUnitAssert.ml   |  321 ++
 src/oUnitBracket.ml  |  143 +
 src/oUnitCache.ml|   89 +++
 src/oUnitCheckEnv.ml |   81 +++
 src/oUnitChooser.ml  |  136 +
 src/oUnitConf.ml |  414 +
 src/oUnitCore.ml |  176 ++
 src/oUnitDiff.ml |   91 +--
 src/oUnitDiff.mli|   62 +-
 src/oUnitLogger.ml   |  235 
 src/oUnitLoggerHTML.ml   |  256 
 src/oUnitLoggerJUnit.ml  |  149 +
 src/oUnitLoggerStd.ml|  325 ++
 src/oUnitPlugin.ml   |   70 +++
 src/oUnitPropList.ml |   59 ++
 src/oUnitResultSummary.ml|  322 ++
 src/oUnitRunner.ml   |  524 +
 src/oUnitRunnerProcesses.ml  |  244 
 src/oUnitRunnerThreads.ml|  222 +++
 src/oUnitShared.ml   |  159 +
 src/oUnitState.ml|  282 +
 src/oUnitTest.ml |  411 +
 src/oUnitTestData.ml |   64 ++
 src/oUnitThreads.ml  |   44 ++
 src/oUnitThreads.mllib   |5 +
 src/oUnitUtils.ml|  243 
 test/JUnit.xsd   |  206 +++
 test/test.ml |  270 ++---
 test/testCommon.ml   |   96 +++
 test/testConf.ml |  104 
 test/testFakeHTML.ml |   68 +++
 test/testFakeRunner.ml   |   84 +++
 test/testFakeShared.ml   |   66 +++
 test/{test.ml = testOUnit1.ml}  |  191 +++---
 test/testOUnit2.ml   |  103 
 test/testOUnitAssert.ml  |   97 +++
 test/testOUnitBracket.ml |   97 +++
 test/testOUnitChooser.ml |  147 +
 test/testOUnitDiff.ml|   74 +++
 test/testOUnitTest.ml|  197 +++
 test/testOtherTests.ml   |  172 ++
 test/testRunner.ml   |  216 +++
 test/testShared.ml   |   60 ++
 78 files changed, 9657 insertions(+), 1603 deletions(-)
 create mode 100644 _headache.config
 copy LICENSE.txt = _header (79%)
 create mode 100644 ardivink.lua
 delete mode 100644 bootstrap.lua
 delete mode 100644 ci-main.lua
 create mode 100644 doc-dist.sh
 create mode 100644 src/oUnit.css
 create mode 100644 src/oUnit.js
 create mode 100644 src/oUnit2.ml
 create mode 100644 src/oUnit2.mli
 create mode 100644 src/oUnitAdvanced.mllib
 

[Pkg-ocaml-maint-commits] [ounit] 01/01: pristine-tar data for ounit_2.0.0.orig.tar.gz

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

gildor pushed a commit to branch pristine-tar
in repository ounit.

commit f7577d3749973e018ad915b73c0d2c2ebcfc1b4e
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:56:35 2014 +

pristine-tar data for ounit_2.0.0.orig.tar.gz
---
 ounit_2.0.0.orig.tar.gz.delta | Bin 0 - 2644 bytes
 ounit_2.0.0.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/ounit_2.0.0.orig.tar.gz.delta b/ounit_2.0.0.orig.tar.gz.delta
new file mode 100644
index 000..74468fa
Binary files /dev/null and b/ounit_2.0.0.orig.tar.gz.delta differ
diff --git a/ounit_2.0.0.orig.tar.gz.id b/ounit_2.0.0.orig.tar.gz.id
new file mode 100644
index 000..797c538
--- /dev/null
+++ b/ounit_2.0.0.orig.tar.gz.id
@@ -0,0 +1 @@
+edb16adfb2632f47d62a4f09e30c9d3e49fc1380

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ounit.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] [ounit] 03/03: New upstream release.

2014-03-05 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 ounit.

commit 06dfb13b4c3f1a34ae63805725a00e1975386557
Author: Sylvain Le Gall gil...@debian.org
Date:   Thu Mar 6 00:26:31 2014 +

New upstream release.

* New upstream release.
* Standards-Version 3.9.5 (no change)
* Distribute some .ml files that have no matching .mli.
---
 debian/changelog | 8 
 debian/control   | 9 +
 debian/libounit-ocaml-dev.install.in | 3 ++-
 3 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0215136..947d2da 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+ounit (2.0.0-1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+  * Standards-Version 3.9.5 (no change)
+  * Distribute some .ml files that have no matching .mli.
+
+ -- Sylvain Le Gall sylv...@le-gall.net  Wed, 05 Mar 2014 23:57:08 +
+
 ounit (1.1.2-3) unstable; urgency=low
 
   * Upload to unstable
diff --git a/debian/control b/debian/control
index 3e66acc..ed6d60d 100644
--- a/debian/control
+++ b/debian/control
@@ -6,14 +6,15 @@ Uploaders:
  Stéphane Glondu glo...@debian.org,
  Hendrik Tews hend...@askra.de,
  Lifeng Sun lifong...@gmail.com
-Build-Depends: 
+Build-Depends:
  debhelper (= 9),
  ocaml-nox (= 4.00.1),
  ocaml-best-compilers,
  ocaml-findlib (= 1.3.2),
  dh-ocaml (= 0.9.1),
- camlp4
-Standards-Version: 3.9.4
+ camlp4,
+ libxml2-utils
+Standards-Version: 3.9.5
 Homepage: http://ounit.forge.ocamlcore.org
 Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ounit.git
 Vcs-Browser: 
http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ounit.git
@@ -28,7 +29,7 @@ Provides: ${ocaml:Provides}
 Suggests: ocaml-findlib
 Description: Unit testing framework for OCaml
  OUnit is a unit testing framework for OCaml, imspired
- by the JUnit tool for JAva and the HUnit tool for Haskell.
+ by the JUnit tool for Java and the HUnit tool for Haskell.
  .
  OUnit is designed to provide a convenient way for you to write tests
  for your OCaml code.  Tests can be aggregated into test suites, making
diff --git a/debian/libounit-ocaml-dev.install.in 
b/debian/libounit-ocaml-dev.install.in
index 142ef7e..063cfde 100644
--- a/debian/libounit-ocaml-dev.install.in
+++ b/debian/libounit-ocaml-dev.install.in
@@ -1,8 +1,9 @@
 usr/share/doc/ounit/* /usr/share/doc/libounit-ocaml-dev/html/api
 @OCamlStdlibDir@/oUnit/*.cma
-@OCamlStdlibDir@/oUnit/*.cmi 
+@OCamlStdlibDir@/oUnit/*.cmi
 @OCamlStdlibDir@/oUnit/META
 @OCamlStdlibDir@/oUnit/*.mli
+@OCamlStdlibDir@/oUnit/*.ml
 OPT: debian/tmp/usr/lib/ocaml/oUnit/*.a
 DYN: debian/tmp/usr/lib/ocaml/oUnit/*.cmxs
 OPT: debian/tmp/usr/lib/ocaml/oUnit/*.cmx

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ounit.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] [ounit] branch pristine-tar updated (d62322a - f7577d3)

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

gildor pushed a change to branch pristine-tar
in repository ounit.

  from  d62322a   pristine-tar data for ounit_1.1.2.orig.tar.gz
   new  f7577d3   pristine-tar data for ounit_2.0.0.orig.tar.gz

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:
 ounit_2.0.0.orig.tar.gz.delta | Bin 0 - 2644 bytes
 ounit_2.0.0.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 ounit_2.0.0.orig.tar.gz.delta
 create mode 100644 ounit_2.0.0.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ounit.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] [ounit] 02/03: Merge tag 'upstream/2.0.0'

2014-03-05 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 ounit.

commit 1b6c24afa3972b70fb4576f87ffdb6810fdc1a09
Merge: a806060 a5e667b
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:56:35 2014 +

Merge tag 'upstream/2.0.0'

Upstream version 2.0.0

 .boring |4 +
 INSTALL.txt |5 +-
 LICENSE.txt |1 +
 Makefile|   88 +++-
 _headache.config|   78 +++
 LICENSE.txt = _header  |   12 +-
 _oasis  |  104 +++-
 _tags   |   38 +-
 ardivink.lua|   19 +
 bootstrap.lua   |   38 --
 changelog   |   47 +-
 ci-main.lua |   24 -
 doc-dist.sh |   50 ++
 doc/manual.txt  |  137 +++--
 examples/Makefile   |   35 +-
 examples/example.ml |   34 +-
 examples/test_list.ml   |   38 +-
 examples/test_list2.ml  |   34 +-
 examples/test_stack.ml  |   42 +-
 examples/test_suite.ml  |   36 +-
 myocamlbuild.ml |  166 ++
 setup.ml|  859 ++-
 src/META|   26 +-
 src/api-ounit.odocl |   26 +-
 src/oUnit.css   |  145 ++
 src/oUnit.js|   97 
 src/oUnit.ml| 1080 ---
 src/oUnit.mli   |  170 +++---
 src/oUnit.mllib |4 +-
 src/oUnit2.ml   |   98 
 src/oUnit2.mli  |  304 +++
 src/oUnitAdvanced.mllib |   26 +
 src/oUnitAssert.ml  |  321 
 src/oUnitBracket.ml |  143 ++
 src/oUnitCache.ml   |   89 
 src/oUnitCheckEnv.ml|   81 +++
 src/oUnitChooser.ml |  136 +
 src/oUnitConf.ml|  414 +++
 src/oUnitCore.ml|  176 +++
 src/oUnitDiff.ml|   91 ++--
 src/oUnitDiff.mli   |   62 ++-
 src/oUnitLogger.ml  |  235 +
 src/oUnitLoggerHTML.ml  |  256 ++
 src/oUnitLoggerJUnit.ml |  149 ++
 src/oUnitLoggerStd.ml   |  325 
 src/oUnitPlugin.ml  |   70 +++
 src/oUnitPropList.ml|   59 +++
 src/oUnitResultSummary.ml   |  322 
 src/oUnitRunner.ml  |  524 +++
 src/oUnitRunnerProcesses.ml |  244 +
 src/oUnitRunnerThreads.ml   |  222 
 src/oUnitShared.ml  |  159 ++
 src/oUnitState.ml   |  282 ++
 src/oUnitTest.ml|  411 +++
 src/oUnitTestData.ml|   64 +++
 src/oUnitThreads.ml |   44 ++
 src/oUnitThreads.mllib  |5 +
 src/oUnitUtils.ml   |  243 +
 test/JUnit.xsd  |  206 
 test/test.ml|  270 ++
 test/testCommon.ml  |   96 
 test/testConf.ml|  104 
 test/testFakeHTML.ml|   68 +++
 test/testFakeRunner.ml  |   84 +++
 test/testFakeShared.ml  |   66 +++
 test/{test.ml = testOUnit1.ml} |  191 ---
 test/testOUnit2.ml  |  103 
 test/testOUnitAssert.ml |   97 
 test/testOUnitBracket.ml|   97 
 test/testOUnitChooser.ml|  147 ++
 test/testOUnitDiff.ml   |   74 +++
 test/testOUnitTest.ml   |  197 +++
 test/testOtherTests.ml  |  172 +++
 test/testRunner.ml  |  216 
 test/testShared.ml  |   60 +++
 75 files changed, 9642 insertions(+), 1598 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ounit.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] [ounit] branch upstream updated (255824c - a5e667b)

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

gildor pushed a change to branch upstream
in repository ounit.

  from  255824c   Imported Upstream version 1.1.2
   new  a5e667b   Imported Upstream version 2.0.0

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:
 .boring |4 +
 INSTALL.txt |5 +-
 LICENSE.txt |1 +
 Makefile|   88 +++-
 _headache.config|   78 +++
 LICENSE.txt = _header  |   12 +-
 _oasis  |  104 +++-
 _tags   |   38 +-
 ardivink.lua|   19 +
 bootstrap.lua   |   38 --
 changelog   |   47 +-
 ci-main.lua |   24 -
 doc-dist.sh |   50 ++
 doc/manual.txt  |  137 +++--
 examples/Makefile   |   35 +-
 examples/example.ml |   34 +-
 examples/test_list.ml   |   38 +-
 examples/test_list2.ml  |   34 +-
 examples/test_stack.ml  |   42 +-
 examples/test_suite.ml  |   36 +-
 myocamlbuild.ml |  166 ++
 setup.ml|  859 ++-
 src/META|   26 +-
 src/api-ounit.odocl |   26 +-
 src/oUnit.css   |  145 ++
 src/oUnit.js|   97 
 src/oUnit.ml| 1080 ---
 src/oUnit.mli   |  170 +++---
 src/oUnit.mllib |4 +-
 src/oUnit2.ml   |   98 
 src/oUnit2.mli  |  304 +++
 src/oUnitAdvanced.mllib |   26 +
 src/oUnitAssert.ml  |  321 
 src/oUnitBracket.ml |  143 ++
 src/oUnitCache.ml   |   89 
 src/oUnitCheckEnv.ml|   81 +++
 src/oUnitChooser.ml |  136 +
 src/oUnitConf.ml|  414 +++
 src/oUnitCore.ml|  176 +++
 src/oUnitDiff.ml|   91 ++--
 src/oUnitDiff.mli   |   62 ++-
 src/oUnitLogger.ml  |  235 +
 src/oUnitLoggerHTML.ml  |  256 ++
 src/oUnitLoggerJUnit.ml |  149 ++
 src/oUnitLoggerStd.ml   |  325 
 src/oUnitPlugin.ml  |   70 +++
 src/oUnitPropList.ml|   59 +++
 src/oUnitResultSummary.ml   |  322 
 src/oUnitRunner.ml  |  524 +++
 src/oUnitRunnerProcesses.ml |  244 +
 src/oUnitRunnerThreads.ml   |  222 
 src/oUnitShared.ml  |  159 ++
 src/oUnitState.ml   |  282 ++
 src/oUnitTest.ml|  411 +++
 src/oUnitTestData.ml|   64 +++
 src/oUnitThreads.ml |   44 ++
 src/oUnitThreads.mllib  |5 +
 src/oUnitUtils.ml   |  243 +
 test/JUnit.xsd  |  206 
 test/test.ml|  270 ++
 test/testCommon.ml  |   96 
 test/testConf.ml|  104 
 test/testFakeHTML.ml|   68 +++
 test/testFakeRunner.ml  |   84 +++
 test/testFakeShared.ml  |   66 +++
 test/{test.ml = testOUnit1.ml} |  191 ---
 test/testOUnit2.ml  |  103 
 test/testOUnitAssert.ml |   97 
 test/testOUnitBracket.ml|   97 
 test/testOUnitChooser.ml|  147 ++
 test/testOUnitDiff.ml   |   74 +++
 test/testOUnitTest.ml   |  197 +++
 test/testOtherTests.ml  |  172 +++
 test/testRunner.ml  |  216 
 test/testShared.ml  |   60 +++
 75 files changed, 9642 insertions(+), 1598 deletions(-)
 create mode 100644 _headache.config
 copy LICENSE.txt = _header (79%)
 create mode 100644 ardivink.lua
 delete mode 100644 bootstrap.lua
 delete mode 100644 ci-main.lua
 create mode 100644 doc-dist.sh
 create mode 100644 src/oUnit.css
 create mode 100644 src/oUnit.js
 create mode 100644 src/oUnit2.ml
 create mode 100644 src/oUnit2.mli
 create mode 100644 src/oUnitAdvanced.mllib
 create mode 100644 src/oUnitAssert.ml
 create mode 100644 src/oUnitBracket.ml
 create mode 100644 src/oUnitCache.ml
 create mode 100644 src/oUnitCheckEnv.ml
 create mode 100644 src/oUnitChooser.ml
 create mode 100644 src/oUnitConf.ml
 create mode 100644 src/oUnitCore.ml
 create mode 100644 src/oUnitLogger.ml
 create mode 100644 src/oUnitLoggerHTML.ml
 create mode 100644 src/oUnitLoggerJUnit.ml
 create mode 100644 src/oUnitLoggerStd.ml
 create mode 100644 src/oUnitPlugin.ml
 create mode 100644 src/oUnitPropList.ml
 create mode 100644 

[Pkg-ocaml-maint-commits] [ounit] branch experimental/upstream created (now 9f8996b)

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

gildor pushed a change to branch experimental/upstream
in repository ounit.

at  9f8996b   Imported Upstream version 1.1.0

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ounit.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] [ounit] branch experimental/master created (now 8bf995e)

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

gildor pushed a change to branch experimental/master
in repository ounit.

at  8bf995e   Fix FTBFS: sh: camlp4: not found, add camlp4 to build 
depends  (Closes: #610040)

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ounit.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-expect] branch master updated (d3cfd8c - e5d6e40)

2014-03-05 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-expect.

  from  d3cfd8c   Bump Standards-Version to 3.9.5.
   new  3d4c2ed   Imported Upstream version 0.0.5
   new  e09624a   Merge tag 'upstream/0.0.5'
   new  03f8096   Upgrade version in debian/changelog.
   new  e5d6e40   Depends on batteries and OUnit = 2.0.0.

The 4 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:
 CHANGES.txt  |   12 +
 INSTALL.txt  |4 +-
 Makefile |8 +-
 _oasis   |2 +-
 _tags|6 +-
 configure|4 +-
 debian/changelog |   10 +-
 debian/control   |4 +-
 myocamlbuild.ml  |  238 ++
 setup.ml | 1398 +-
 src/META |8 +-
 src/expect.ml|  242 +-
 test/qa.ml   |1 +
 test/test.ml |   26 +
 14 files changed, 1399 insertions(+), 564 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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-expect] 02/04: Merge tag 'upstream/0.0.5'

2014-03-05 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-expect.

commit e09624a0e95662b11fa1a0de1f328bed5c8503a7
Merge: d3cfd8c 3d4c2ed
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:50:31 2014 +

Merge tag 'upstream/0.0.5'

Upstream version 0.0.5

Conflicts:
CHANGES.txt
INSTALL.txt
_oasis
_tags
myocamlbuild.ml
setup.ml
src/META
src/expect.ml
test/test.ml

 CHANGES.txt |   12 +
 INSTALL.txt |4 +-
 Makefile|8 +-
 _oasis  |2 +-
 _tags   |6 +-
 configure   |4 +-
 myocamlbuild.ml |  238 ++
 setup.ml| 1398 ++-
 src/META|8 +-
 src/expect.ml   |  242 +-
 test/qa.ml  |1 +
 test/test.ml|   26 ++
 12 files changed, 1390 insertions(+), 559 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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-expect] branch upstream updated (f1d95b1 - 3d4c2ed)

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

gildor pushed a change to branch upstream
in repository ocaml-expect.

  from  f1d95b1   Imported Upstream version 0.0.3
   new  3d4c2ed   Imported Upstream version 0.0.5

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:
 .boring  |  121 
 CHANGES.txt  |   16 +-
 COPYING.txt  |2 +-
 INSTALL.txt  |8 +-
 Makefile |   78 ++-
 _boring  |  109 ---
 _headache.config |   77 ++-
 _header  |3 +-
 _oasis   |   24 +-
 _tags|   35 +-
 ardivink.lua |   19 +
 bootstrap.lua|   38 -
 ci-main.lua  |   27 -
 configure|4 +-
 myocamlbuild.ml  |  353 +-
 setup.ml | 1886 --
 src/META |   31 +-
 src/api-expect.odocl |   21 -
 src/expect.ml|  379 +-
 src/expect.mli   |  103 +--
 src/expect.mllib |   21 -
 src/expectPcre.ml|   49 +-
 src/expectPcre.mli   |   54 +-
 src/expectStr.ml |   53 +-
 src/expectStr.mli|   51 +-
 test/TestCommon.ml   |   41 +-
 test/qa.ml   |   53 +-
 test/test.ml |  338 -
 28 files changed, 2551 insertions(+), 1443 deletions(-)
 create mode 100644 .boring
 delete mode 100644 _boring
 create mode 100644 ardivink.lua
 delete mode 100644 bootstrap.lua
 delete mode 100644 ci-main.lua

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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-expect] 01/01: pristine-tar data for ocaml-expect_0.0.5.orig.tar.gz

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

gildor pushed a commit to branch pristine-tar
in repository ocaml-expect.

commit 688f8829f8e7621cac77c3e7dae61984ee346863
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:45:17 2014 +

pristine-tar data for ocaml-expect_0.0.5.orig.tar.gz
---
 ocaml-expect_0.0.5.orig.tar.gz.delta | Bin 0 - 1508 bytes
 ocaml-expect_0.0.5.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/ocaml-expect_0.0.5.orig.tar.gz.delta 
b/ocaml-expect_0.0.5.orig.tar.gz.delta
new file mode 100644
index 000..dfac388
Binary files /dev/null and b/ocaml-expect_0.0.5.orig.tar.gz.delta differ
diff --git a/ocaml-expect_0.0.5.orig.tar.gz.id 
b/ocaml-expect_0.0.5.orig.tar.gz.id
new file mode 100644
index 000..f6fc1c0
--- /dev/null
+++ b/ocaml-expect_0.0.5.orig.tar.gz.id
@@ -0,0 +1 @@
+e60c3570719f7d59dca8a93455ce1b97680148ff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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-expect] branch pristine-tar updated (cf272ba - 688f882)

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

gildor pushed a change to branch pristine-tar
in repository ocaml-expect.

  from  cf272ba   pristine-tar data for ocaml-expect_0.0.3.orig.tar.gz
   new  688f882   pristine-tar data for ocaml-expect_0.0.5.orig.tar.gz

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:
 ocaml-expect_0.0.5.orig.tar.gz.delta | Bin 0 - 1508 bytes
 ocaml-expect_0.0.5.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 ocaml-expect_0.0.5.orig.tar.gz.delta
 create mode 100644 ocaml-expect_0.0.5.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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-expect] 03/04: Upgrade version in debian/changelog.

2014-03-05 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-expect.

commit 03f80968743b074d7576eba10879c5068ceba916
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:52:24 2014 +

Upgrade version in debian/changelog.
---
 debian/changelog | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7f71ad1..be70281 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,12 @@
-ocaml-expect (0.0.4-1) UNRELEASED; urgency=medium
+ocaml-expect (0.0.5-1) UNRELEASED; urgency=medium
 
-  * New upstream release.
+  [ Lifeng Sun ]
   * Bump Standards-Version to 3.9.5.
 
- -- Lifeng Sun lifong...@gmail.com  Sat, 11 Jan 2014 15:17:40 +0800
+  [ Sylvain Le Gall ]
+  * New upstream release.
+
+ -- Sylvain Le Gall sylv...@le-gall.net  Wed, 05 Mar 2014 23:51:26 +
 
 ocaml-expect (0.0.3-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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-expect] 04/04: Depends on batteries and OUnit = 2.0.0.

2014-03-05 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-expect.

commit e5d6e400081ea88ac5eebd4cc40f28a926751104
Author: Sylvain Le Gall gil...@debian.org
Date:   Wed Mar 5 23:54:52 2014 +

Depends on batteries and OUnit = 2.0.0.
---
 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index be70281..757b43a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ ocaml-expect (0.0.5-1) UNRELEASED; urgency=medium
 
   [ Sylvain Le Gall ]
   * New upstream release.
+  * Depends on batteries and OUnit = 2.0.0.
 
  -- Sylvain Le Gall sylv...@le-gall.net  Wed, 05 Mar 2014 23:51:26 +
 
diff --git a/debian/control b/debian/control
index 2437ac8..de352a4 100644
--- a/debian/control
+++ b/debian/control
@@ -8,8 +8,8 @@ Build-Depends:
   ocaml-findlib,
   ocaml-base-nox,
   libpcre-ocaml-dev,
-  libounit-ocaml-dev,
-  libextlib-ocaml-dev,
+  libounit-ocaml-dev (= 2.0.0),
+  libbatteries-ocaml-dev,
   dh-ocaml (= 0.9~),
   debhelper (= 9)
 Standards-Version: 3.9.5

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/ocaml-expect.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] [SCM] ocamlmod packaging branch, experimental/upstream, created. upstream/0.0.2-1-ga267af6

2013-07-28 Thread Sylvain Le Gall
The branch, experimental/upstream has been created
at  a267af63a66a97a6831e6dcafdbeb97b302e93b8 (commit)

- Shortlog 
---

-- 
ocamlmod packaging

___
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] [SCM] ocamlmod packaging branch, pristine-tar, updated. 34645e9ef9fd34b74e26035ff1ff443e779f5dc2

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the pristine-tar branch:
commit 34645e9ef9fd34b74e26035ff1ff443e779f5dc2
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 23:14:05 2013 +0200

pristine-tar data for ocamlmod_0.0.4.orig.tar.gz

diff --git a/ocamlmod_0.0.4.orig.tar.gz.delta b/ocamlmod_0.0.4.orig.tar.gz.delta
new file mode 100644
index 000..5a0270f
Binary files /dev/null and b/ocamlmod_0.0.4.orig.tar.gz.delta differ
diff --git a/ocamlmod_0.0.4.orig.tar.gz.id b/ocamlmod_0.0.4.orig.tar.gz.id
new file mode 100644
index 000..778a0ae
--- /dev/null
+++ b/ocamlmod_0.0.4.orig.tar.gz.id
@@ -0,0 +1 @@
+a267af63a66a97a6831e6dcafdbeb97b302e93b8

-- 
ocamlmod packaging

___
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] [SCM] ocamlmod packaging branch, master, updated. debian/0.0.2-3-3-g72c04bc

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 179909b3def0663c883caa3d54d5daa0e5b47198
Merge: cb6d93fd7c5b392eabdace6b5f60299cf9d5fb8e 
a267af63a66a97a6831e6dcafdbeb97b302e93b8
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 23:14:05 2013 +0200

Merge commit 'upstream/0.0.4'


-- 
ocamlmod packaging

___
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] [SCM] ocamlmod packaging branch, master, updated. debian/0.0.2-3-3-g72c04bc

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 72c04bc2502e761ec8a8dc9961bce77652ad3222
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 21:24:52 2013 +

Upgrade to 0.0.4.

diff --git a/debian/changelog b/debian/changelog
index a01eae0..b5acfec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocamlmod (0.0.4-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Sylvain Le Gall gil...@debian.org  Tue, 25 Jun 2013 23:14:15 +0200
+
 ocamlmod (0.0.2-3) unstable; urgency=low
 
   * Change to arch:any to avoid problematic computed dependencies on
diff --git a/debian/control b/debian/control
index eef5810..bef4611 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: ocamlmod
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: 
+Uploaders:
   Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
@@ -11,7 +11,7 @@ Build-Depends:
   libfileutils-ocaml-dev,
   dh-ocaml (= 0.9~),
   debhelper (= 7.0.50~)
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 Homepage: http://forge.ocamlcore.org/projects/ocamlmod
 Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocamlmod.git
 Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/ocamlmod.git

-- 
ocamlmod packaging

___
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] [SCM] ocamlify packaging branch, master, updated. debian/0.0.1-3-3-g4ff2d80

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 99f0b6c99c5ecd85b34d1f00d0261bf5de5e68cf
Merge: b1df528cf9d6ab3e29035ba4398a642296de3f27 
41823bcc5dcbaee58abe32d2890313b973271497
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 22:11:24 2013 +

Merge tag 'upstream/0.0.2'

Upstream version 0.0.2


-- 
ocamlify packaging

___
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] [SCM] ocamlify packaging branch, pristine-tar, updated. 269555db1d61325be2865f4e254c4e3d2ef9213d

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the pristine-tar branch:
commit 269555db1d61325be2865f4e254c4e3d2ef9213d
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 22:11:23 2013 +

pristine-tar data for ocamlify_0.0.2.orig.tar.gz

diff --git a/ocamlify_0.0.2.orig.tar.gz.delta b/ocamlify_0.0.2.orig.tar.gz.delta
new file mode 100644
index 000..b7b13ab
Binary files /dev/null and b/ocamlify_0.0.2.orig.tar.gz.delta differ
diff --git a/ocamlify_0.0.2.orig.tar.gz.id b/ocamlify_0.0.2.orig.tar.gz.id
new file mode 100644
index 000..241e5d0
--- /dev/null
+++ b/ocamlify_0.0.2.orig.tar.gz.id
@@ -0,0 +1 @@
+ad46a8b7b512fb7ad761db1df80db61d8d63648c

-- 
ocamlify packaging

___
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] [SCM] ocamlify packaging branch, master, updated. debian/0.0.1-3-3-g4ff2d80

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 4ff2d804d48f1987d907be533426fc6b4bd405ab
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 22:14:45 2013 +

Prepare new upstream release.

diff --git a/debian/changelog b/debian/changelog
index 8685c62..dac63d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocamlify (0.0.2-1) UNRELEASED; urgency=low
+
+   * New upstream version.
+
+ -- Sylvain Le Gall gil...@debian.org  Tue, 25 Jun 2013 22:11:36 +
+
 ocamlify (0.0.1-3) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index d3d49f4..c7950c3 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends:
  ocaml-nox (= 3.11.1-3~),
  dh-ocaml (= 0.9.0~),
  ocaml-findlib
-Standards-Version: 3.9.1
+Standards-Version: 3.9.4
 Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/ocamlify.git
 Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocamlify.git
 Homepage: http://ocamlify.forge.ocamlcore.org/
@@ -18,7 +18,7 @@ Package: ocamlify
 Architecture: all
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${ocaml:Depends}
 Description: include files in OCaml code
- This program allows to copy files inside OCaml code. It uses a first file that
- describes the other files that must be included and the type of OCaml variable
- it should create. It can also describe dependencies to other files, in order
- to generate .depends files for make.
+ This program allows one to copy files inside OCaml code. It uses a first file
+ that describes the other files that must be included and the type of OCaml
+ variable it should create. It can also describe dependencies to other files,
+ in order to generate .depends files for make.

-- 
ocamlify packaging

___
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] [SCM] ocamlmod packaging branch, master, updated. debian/0.0.2-3-4-g69ae4f9

2013-06-25 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 69ae4f9a915a0dc0caab6f196d5cbdd1cfca4d5e
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Jun 25 23:25:51 2013 +

Take into account H. Tews remarks.

diff --git a/debian/changelog b/debian/changelog
index b5acfec..b2f274b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,12 @@
 ocamlmod (0.0.4-1) unstable; urgency=low
 
   * New upstream version
+  * Upgrade to debhelper 9
+  * Remove cleaner line in gbp.conf
+  * Don't try to create the documentation (none available)
+  * Fix VCS field
+  * Add a watch file
+  * Remove empty /usr/lib/ocaml
 
  -- Sylvain Le Gall gil...@debian.org  Tue, 25 Jun 2013 23:14:15 +0200
 
diff --git a/debian/compat b/debian/compat
index 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index bef4611..10d15d1 100644
--- a/debian/control
+++ b/debian/control
@@ -10,11 +10,11 @@ Build-Depends:
   libpcre-ocaml-dev,
   libfileutils-ocaml-dev,
   dh-ocaml (= 0.9~),
-  debhelper (= 7.0.50~)
+  debhelper (= 9)
 Standards-Version: 3.9.4
 Homepage: http://forge.ocamlcore.org/projects/ocamlmod
-Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocamlmod.git
-Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/ocamlmod.git
+Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ocamlmod.git
+Vcs-Browser: 
http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ocamlmod.git
 
 Package: ocamlmod
 Architecture: any
diff --git a/debian/copyright b/debian/copyright
index e142748..a0cd970 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,13 +1,14 @@
-Format-Specification: 
http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=filerev=135
-Name: ocamlmod
-Maintainer: Sylvain Le Gall gil...@debian.org
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ocamlmod
+Upstream-Contact: Sylvain Le Gall sylv...@le-gall.net
+Source: http://forge.ocamlcore.org/projects/ocamlmod/
 
 Files: *
 Copyright: (C) 2011 OCamlCore SARL
 License: LGPL-2.1 with OCaml linking exception
-
+ .
  See '/usr/share/common-licenses/LGPL-2.1' for full text.
-
+ .
  As a special exception to the GNU Library General Public License, you may
  link, statically or dynamically, a work that uses the Library with a
  publicly distributed version of the Library to produce an executable file
@@ -24,6 +25,5 @@ License: LGPL-2.1 with OCaml linking exception
 Files: debian/*
 Copyright: (C) 2012 Sylvain Le Gall gil...@debian.org
 License: GPL-3+
-
  See '/usr/share/common-licenses/GPL-3' for full text.
 
diff --git a/debian/gbp.conf b/debian/gbp.conf
index 6c7ed3b..cec628c 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -1,3 +1,2 @@
 [DEFAULT]
 pristine-tar = True
-cleaner = debuild clean  dh_quilt_unpatch  dh_clean
diff --git a/debian/ocamlmod.mkd b/debian/ocamlmod.mkd
index 4bf41a8..dc19228 100644
--- a/debian/ocamlmod.mkd
+++ b/debian/ocamlmod.mkd
@@ -12,8 +12,8 @@ ocamlmod [-help|--help] file.mod
 
 # DESCRIPTION
 
-This program allows to generate a single module files from a bunch of 
-OCaml source file.
+This program allows one to generate a single module files from a bunch of OCaml
+source file.
 
 # FILE SYNTAX
 
diff --git a/debian/rules b/debian/rules
index 3598088..bb67fd9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,13 +8,8 @@ DESTDIR=$(CURDIR)/debian/ocamlmod
 
 include /usr/share/ocaml/ocamlvars.mk
 
-OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR)
-export OCAMLFIND_DESTDIR
-OCAMLFIND_LDCONF=ignore
-export OCAMLFIND_LDCONF
-
 %:
-   dh --with ocaml $@
+   dh $@ --with ocaml
 
 .PHONY: override_dh_auto_configure
 override_dh_auto_configure:
@@ -23,7 +18,6 @@ override_dh_auto_configure:
 .PHONY: override_dh_auto_build
 override_dh_auto_build:
ocaml setup.ml -build
-   ocaml setup.ml -doc
 
 .PHONY: override_dh_auto_test
 override_dh_auto_test:
@@ -32,8 +26,7 @@ override_dh_auto_test:
 .PHONY: override_dh_auto_install
 override_dh_auto_install:
mkdir -p '$(DESTDIR)/usr/bin'
-   mkdir -p '$(OCAMLFIND_DESTDIR)'
-   ocaml setup.ml -install 
+   ocaml setup.ml -install
 
 .PHONY: override_dh_install
 override_dh_install:
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 000..125f3bb
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://forge.ocamlcore.org/frs/?group_id=244 .*/ocamlmod-([0-9\.]*)\.tar\.gz

-- 
ocamlmod packaging

___
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] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 6672fcebcc25a6b1ef78e73f370420a0c0082a73
Author: Sylvain Le Gall gil...@debian.org
Date:   Sun Mar 24 13:06:08 2013 +0100

Fix missing debhelper token.

diff --git a/src/DhFiles.ml b/src/DhFiles.ml
index 9332cd2..5d5716a 100644
--- a/src/DhFiles.ml
+++ b/src/DhFiles.ml
@@ -411,6 +411,8 @@ let dh_script_split fn =
 
 set -e
 
+#DEBHELPER#
+
 $insertion_point));
 split (lines_of_file (debian_fn fn))
 

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 99688cbf3cfd9d995a56f851279432a39fcabdce
Author: Sylvain Le Gall gil...@debian.org
Date:   Sun Mar 24 23:33:26 2013 +0100

Add adduser if using --group.

diff --git a/src/ActInit.ml b/src/ActInit.ml
index e2976ec..188e1e0 100644
--- a/src/ActInit.ml
+++ b/src/ActInit.ml
@@ -112,7 +112,7 @@ let run ~ctxt args =
   in
 
   let () = 
-Control.create t;
+Control.create ~ctxt t;
 Copyright.create ~ctxt t;
 Rules.create t;
 DhFiles.create ~ctxt t;
diff --git a/src/Control.ml b/src/Control.ml
index bf85c8c..512b675 100644
--- a/src/Control.ml
+++ b/src/Control.ml
@@ -23,7 +23,7 @@ open OASISTypes
 open Common
 open ExtString
 
-let create t = 
+let create ~ctxt t = 
   let sep = 
 ,\n  
   in
@@ -39,6 +39,13 @@ let create t =
 t.deb_name
   in
 
+  let exec_depends =
+if Conf.get ~ctxt Group.group  None then
+  adduser, 
+else
+  
+  in
+
   let description = 
 let lst = 
   List.map 
@@ -101,7 +108,7 @@ Vcs-Browser: 
http://git.debian.org/?p=pkg-ocaml-maint/packages/${src_name}.git;)
output_intro deb_pkg;
output_content 
  (interpolate \
-Depends: \${misc:Depends}, \${ocaml:Depends}
+Depends: $exec_depends\${misc:Depends}, \${ocaml:Depends}
 Description: $t.pkg.synopsis
  $description);
if t.deb_dev  None then

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit a1a4769068e0f7dfb39ee5caee282b7020757a07
Author: Sylvain Le Gall gil...@debian.org
Date:   Sun Mar 24 23:53:31 2013 +0100

Allow to ignore lintian warnings.

diff --git a/src/ActInit.ml b/src/ActInit.ml
index 188e1e0..87d1a77 100644
--- a/src/ActInit.ml
+++ b/src/ActInit.ml
@@ -119,6 +119,6 @@ let run ~ctxt args =
 Group.create ~ctxt t;
 DpkgStatOverride.create ~ctxt t;
 DhDirs.create ~ctxt t;
+LintianOverrides.create ~ctxt t;
   in 
-
 ()
diff --git a/src/LintianOverrides.ml b/src/LintianOverrides.ml
new file mode 100644
index 000..d15b704
--- /dev/null
+++ b/src/LintianOverrides.ml
@@ -0,0 +1,18 @@
+
+open Common
+
+let no_manpage = 
+  let lst = ref [] in
+Conf.create_full
+  ~cli:--no-manpage
+  (fun s - lst := s :: !lst; !lst)
+  exec Disable lintian warning for the given exec without a manpage.
+  (Conf.Value !lst)
+
+let add lintian_id arg = 
+  debian_with_append_fn
+lintian-overrides
+(output_content (Printf.sprintf %s %s lintian_id arg))
+
+let create ~ctxt t =
+  List.iter (add binary-without-manpage) (Conf.get ~ctxt no_manpage)
diff --git a/test/test.ml b/test/test.ml
index 2698598..e6fabf7 100644
--- a/test/test.ml
+++ b/test/test.ml
@@ -28,7 +28,8 @@ let oasis2debian =
 
 let args_for_tarball =
   [ocamlify-0.0.1.tar.gz, 
-   [--homepage; http://forge.ocamlcore.org/projects/ocamlify;];
+   [--homepage; http://forge.ocamlcore.org/projects/ocamlify;;
+--no-manpage; usr/bin/ocamlify];
   
ocamlmod-0.0.3.tar.gz,
[--homepage; http://forge.ocamlcore.org/projects/ocamlmod;];
@@ -38,7 +39,8 @@ let args_for_tarball =
--group; sekred,/var/lib/sekred;
--dh-dirs; sekred,var/lib/sekred/domains;
--dpkg-statoverride; /usr/bin/sekred,root,sekred,2755;
-   --dpkg-statoverride; 
/var/lib/sekred/domains,root,sekred,1730];
+   --dpkg-statoverride; 
/var/lib/sekred/domains,root,sekred,1730;
+--no-manpage; usr/bin/sekred];
   ]
 
 let tests = 

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 3685d29d603e8c441c84a8980db34f8cee5345f2
Author: Sylvain Le Gall gil...@debian.org
Date:   Mon Mar 25 01:16:36 2013 +0100

Don't use dch for changelog, override warnings when no ITP set for new 
package.

diff --git a/INSTALL.txt b/INSTALL.txt
index 2b72919..a5cfa12 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -1,5 +1,5 @@
 (* OASIS_START *)
-(* DO NOT EDIT (digest: b83bfe827d8d8aad6e30959d0c601d33) *)
+(* DO NOT EDIT (digest: 22e1a572dc120ddf5d09e000ae553339) *)
 This is the INSTALL file for the oasis2debian distribution.
 
 This package uses OASIS to generate its build system. See section OASIS for
@@ -18,6 +18,7 @@ In order to compile this package, you will need:
 * debian-formats (= 0.0.1) for executable oasis2debian
 * xdg-basedir (= 0.0.1) for executable oasis2debian
 * inifiles (= 1.2) for executable oasis2debian
+* calendar for executable oasis2debian
 * oUnit (= 2.0.0) for executable test
 * tar for test main
 * ocamlmod for test main
diff --git a/_oasis b/_oasis
index fc604f6..befe9a9 100644
--- a/_oasis
+++ b/_oasis
@@ -18,7 +18,8 @@ Executable oasis2debian
 pcre, 
 debian-formats (= 0.0.1), 
 xdg-basedir (= 0.0.1), 
-inifiles (= 1.2)
+inifiles (= 1.2),
+calendar 
   
 Executable test
   Path: test
diff --git a/_tags b/_tags
index 51e7d7a..7c8b2e1 100644
--- a/_tags
+++ b/_tags
@@ -20,7 +20,7 @@
 

 
 # OASIS_START
-# DO NOT EDIT (digest: d161ee651e970b488f7fbdded448d3cb)
+# DO NOT EDIT (digest: c932dfb6daa5bda5609b5c58855b5e6e)
 # Ignore VCS directories, you can use the same kind of rule outside 
 # OASIS_START/STOP if you want to exclude directories that contains 
 # useless stuff for the build process
@@ -43,6 +43,7 @@
 src/Main.byte: pkg_debian-formats
 src/Main.byte: pkg_xdg-basedir
 src/Main.byte: pkg_inifiles
+src/Main.byte: pkg_calendar
 src/*.ml{,i}: pkg_fileutils
 src/*.ml{,i}: pkg_oasis
 src/*.ml{,i}: pkg_oasis.base
@@ -51,6 +52,7 @@
 src/*.ml{,i}: pkg_debian-formats
 src/*.ml{,i}: pkg_xdg-basedir
 src/*.ml{,i}: pkg_inifiles
+src/*.ml{,i}: pkg_calendar
 # Executable test
 test/test.byte: pkg_oUnit
 test/test.byte: pkg_fileutils
@@ -64,6 +66,7 @@
 
 src/ActInit.ml: syntax_camlp4o
 src/Control.ml: syntax_camlp4o
+src/Changelog.ml: syntax_camlp4o
 src/Copyright.ml: syntax_camlp4o
 src/Rules.ml: syntax_camlp4o
 src/DhFiles.ml: syntax_camlp4o
diff --git a/setup.ml b/setup.ml
index 10f535f..bc5aa6d 100644
--- a/setup.ml
+++ b/setup.ml
@@ -22,7 +22,7 @@
 (* setup.ml generated for the first time by OASIS v0.2.0 *)
 
 (* OASIS_START *)
-(* DO NOT EDIT (digest: 462168c2fc1d5b1fe5aa9f976b82e9c4) *)
+(* DO NOT EDIT (digest: 17801e9964c4ceb7fb46226b5d4cb080) *)
 (*
Regenerated by OASIS v0.3.1
Visit http://oasis.forge.ocamlcore.org for more information and
@@ -6109,7 +6109,8 @@ let setup_t =
Some (OASISVersion.VGreaterEqual 0.0.1));
FindlibPackage
  (inifiles,
-   Some (OASISVersion.VGreaterEqual 1.2))
+   Some (OASISVersion.VGreaterEqual 1.2));
+   FindlibPackage (calendar, None)
 ];
   bs_build_tools = [ExternalTool ocamlbuild];
   bs_c_sources = [];
@@ -6200,7 +6201,7 @@ let setup_t =
   };
  oasis_fn = Some _oasis;
  oasis_version = 0.3.1;
- oasis_digest = Some \141�Y�\129��=��ծ%\026�\031;
+ oasis_digest = Some ��FD�\026�\145Kz�!;
  oasis_exec = None;
  oasis_setup_args = [-setup-update; weak];
  setup_update = true;
@@ -6208,6 +6209,6 @@ let setup_t =
 
 let setup () = BaseSetup.setup setup_t;;
 
-# 6191 setup.ml
+# 6192 setup.ml
 (* OASIS_STOP *)
 let () = setup ();;
diff --git a/src/ActInit.ml b/src/ActInit.ml
index 87d1a77..096103b 100644
--- a/src/ActInit.ml
+++ b/src/ActInit.ml
@@ -27,25 +27,6 @@ open OASISMessage
 open FileUtil
 open Common
 
-let itp =
-  Conf.create
-~cli:--itp
-int Bug number of the ITP for the package.
-Conf.ShortInput
-
-let bts_query =
-  Conf.create_full 
-~cli:--bts-query
-bool_of_string
-bool Query the BTS for ITP (true/false).
-(Conf.Value true)
-
-let distribution =
-  Conf.create
-~cli:--distribution
-str Distribution for the package.
-Conf.ShortInput
-
 let dh_compat = 7
 
 let run ~ctxt args = 
@@ -76,42 +57,8 @@ let run ~ctxt args =
   (output_content 3.0 (quilt))
   in
 
-  (* Create debian/changelog *)
-  let () = 
-let pkg_version = 
-  OASISVersion.string_of_version t.pkg.version
-in
-
-if debian_not_exist changelog then
-  begin
-let opts =
-  
-in
-let opts = 
-  if Conf.is_set itp then
-opts^ --closes

[Pkg-ocaml-maint-commits] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit e4b433010fd297f19fb02e6deca06a3ee0dac3a1
Author: Sylvain Le Gall gil...@debian.org
Date:   Mon Mar 25 01:25:43 2013 +0100

Improve display of --help.

diff --git a/src/Copyright.ml b/src/Copyright.ml
index b22aa05..b5a8c41 100644
--- a/src/Copyright.ml
+++ b/src/Copyright.ml
@@ -27,7 +27,7 @@ open Common
 let copyrights = 
   Conf.create 
 ~cli:--copyrights
-Copyright holds of the package
+str Copyright holders of the package.
 Conf.ShortInput
 
 let todo ~ctxt msg = 
diff --git a/src/GenPkg.ml b/src/GenPkg.ml
index 5ea6871..91964bb 100644
--- a/src/GenPkg.ml
+++ b/src/GenPkg.ml
@@ -28,7 +28,7 @@ open Common
 let library_name = 
   Conf.create 
 ~cli:--library-name
-Short name of the library (XXX in libXXX-ocaml-dev)
+pkg_name Short name of the library (XXX in libXXX-ocaml-dev).
 (Conf.Fun
(fun () -
   failwith Not set))
@@ -36,7 +36,7 @@ let library_name =
 let executable_name = 
   Conf.create 
 ~cli:--executable-name
-Full name of the package that contains executables
+pkg_name Full name of the package that contains executables.
 (Conf.Fun
(fun () -
   failwith Not set))
diff --git a/src/Load.ml b/src/Load.ml
index b547d47..851c704 100644
--- a/src/Load.ml
+++ b/src/Load.ml
@@ -31,19 +31,19 @@ open FileUtil
 let description = 
   Conf.create 
 ~cli:--description
-Long description of the package
+str Long description of the package
 Conf.LongInput
 
 let homepage =
   Conf.create 
 ~cli:--homepage
-Homepage of the package
+url Homepage of the package
 Conf.ShortInput
 
 let uploader =
   Conf.create 
 ~cli:--uploader
-Uploader of the package
+email Uploader of the package
 (Conf.Fun
(fun () -
   try 
@@ -59,7 +59,7 @@ let uploader =
 let deb_name =
   Conf.create 
 ~cli:--debian-name
-Source package name in Debian (e.g. extunix becomes ocaml-extunix)
+str Source package name in Debian (e.g. extunix becomes ocaml-extunix)
 Conf.ShortInput
 
 

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 65a9efbb95deb22e7f4663f3423732578ccc7ebe
Author: Sylvain Le Gall gil...@debian.org
Date:   Sun Mar 24 01:22:31 2013 +0100

Create a more precise test suite.

Use tarballs to test, build the results and run lintian over it.

diff --git a/INSTALL.txt b/INSTALL.txt
index 357d694..2b72919 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -1,5 +1,5 @@
 (* OASIS_START *)
-(* DO NOT EDIT (digest: 96893f4af218c48c9d244581d361e83f) *)
+(* DO NOT EDIT (digest: b83bfe827d8d8aad6e30959d0c601d33) *)
 This is the INSTALL file for the oasis2debian distribution.
 
 This package uses OASIS to generate its build system. See section OASIS for
@@ -9,16 +9,18 @@ Dependencies
 
 
 In order to compile this package, you will need:
-* ocaml for all, test main, test ocaml-sqlexpr
+* ocaml for all, test main
 * findlib
-* oasis (= 0.3.1) for executable oasis2debian
+* oasis (= 0.3.1)
 * xstrp4 (= 1.8) for executable oasis2debian
 * fileutils (= 0.4.2)
 * pcre for executable oasis2debian
 * debian-formats (= 0.0.1) for executable oasis2debian
 * xdg-basedir (= 0.0.1) for executable oasis2debian
 * inifiles (= 1.2) for executable oasis2debian
-* oUnit (= 1.1.0) for executable test
+* oUnit (= 2.0.0) for executable test
+* tar for test main
+* ocamlmod for test main
 
 Installing
 ==
diff --git a/Makefile b/Makefile
index 8c9c3a3..12dfef1 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,6 @@ default: test reinstall
 #default: reinstall
 reinstall: build
 
-
 # OASIS_START
 # DO NOT EDIT (digest: bc1e05bfc8b39b664f29dae8dbd3ebbb)
 
diff --git a/_oasis b/_oasis
index 2950d5f..fc604f6 100644
--- a/_oasis
+++ b/_oasis
@@ -1,4 +1,4 @@
-OASISFormat: 0.2
+OASISFormat: 0.3
 Name:oasis2debian
 Version: 0.1.0
 Synopsis:Create and maintain Debian package for an OASIS package
@@ -24,14 +24,8 @@ Executable test
   Path: test
   MainIs:   test.ml
   Install:  false
-  BuildDepends: oUnit (= 1.1.0), fileutils (= 0.4.2), unix
+  BuildDepends: oUnit (= 2.0.0), fileutils (= 0.4.2), unix, oasis
 
 Test main
   Command: $test -exec $oasis2debian
-  TestTools: oasis2debian, test
-  Run: false
-
-Test ocaml-sqlexpr
-  Command: $oasis2debian update
-  TestTools: oasis2debian
-  WorkingDirectory: /home/gildor/debian/pkg-ocaml-maint/packages/ocaml-sqlexpr
+  TestTools: oasis2debian, test, tar, ocamlmod
diff --git a/_tags b/_tags
index 560c39b..51e7d7a 100644
--- a/_tags
+++ b/_tags
@@ -20,7 +20,7 @@
 

 
 # OASIS_START
-# DO NOT EDIT (digest: 263ff8c84033e5bb80f738b31f25aa1e)
+# DO NOT EDIT (digest: d161ee651e970b488f7fbdded448d3cb)
 # Ignore VCS directories, you can use the same kind of rule outside 
 # OASIS_START/STOP if you want to exclude directories that contains 
 # useless stuff for the build process
@@ -55,9 +55,11 @@
 test/test.byte: pkg_oUnit
 test/test.byte: pkg_fileutils
 test/test.byte: pkg_unix
+test/test.byte: pkg_oasis
 test/*.ml{,i}: pkg_oUnit
 test/*.ml{,i}: pkg_fileutils
 test/*.ml{,i}: pkg_unix
+test/*.ml{,i}: pkg_oasis
 # OASIS_STOP
 
 src/ActInit.ml: syntax_camlp4o
diff --git a/setup.ml b/setup.ml
index 9b146a4..10f535f 100644
--- a/setup.ml
+++ b/setup.ml
@@ -22,7 +22,7 @@
 (* setup.ml generated for the first time by OASIS v0.2.0 *)
 
 (* OASIS_START *)
-(* DO NOT EDIT (digest: cfc30cfd0f049b7818469a97793a903b) *)
+(* DO NOT EDIT (digest: 462168c2fc1d5b1fe5aa9f976b82e9c4) *)
 (*
Regenerated by OASIS v0.3.1
Visit http://oasis.forge.ocamlcore.org for more information and
@@ -5980,14 +5980,6 @@ let setup_t =
];
  cmd_clean = [(OASISExpr.EBool true, None)];
  cmd_distclean = [(OASISExpr.EBool true, None)];
- });
-  (ocaml-sqlexpr,
-CustomPlugin.Test.main
-  {
- CustomPlugin.cmd_main =
-   [(OASISExpr.EBool true, ($oasis2debian, [update]))];
- cmd_clean = [(OASISExpr.EBool true, None)];
- cmd_distclean = [(OASISExpr.EBool true, None)];
  })
];
  doc = [];
@@ -6006,14 +5998,6 @@ let setup_t =
];
  cmd_clean = [(OASISExpr.EBool true, None)];
  cmd_distclean = [(OASISExpr.EBool true, None)];
- });
-  (ocaml-sqlexpr,
-CustomPlugin.Test.clean
-  {
- CustomPlugin.cmd_main =
-   [(OASISExpr.EBool true, ($oasis2debian, [update]))];
- cmd_clean = [(OASISExpr.EBool true, None)];
- cmd_distclean = [(OASISExpr.EBool true, None)];
  })
];
  clean_doc = [];
@@ -6030,20 +6014,12 @@ let setup_t =
];
  cmd_clean = [(OASISExpr.EBool true, None)];
  cmd_distclean = [(OASISExpr.EBool true, None

[Pkg-ocaml-maint-commits] [SCM] oasis2debian project branch, master, updated. e4b433010fd297f19fb02e6deca06a3ee0dac3a1

2013-03-24 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 8013f77de308b64893b659301423f7da7e334c5b
Author: Sylvain Le Gall gil...@debian.org
Date:   Mon Mar 25 01:22:19 2013 +0100

Use t.uploader rather than doing the same guess for author in Changelog.

diff --git a/src/Changelog.ml b/src/Changelog.ml
index 10a619d..c0eff8d 100644
--- a/src/Changelog.ml
+++ b/src/Changelog.ml
@@ -28,15 +28,6 @@ let create ~ctxt t =
 else
   
   in
-  let author =
-try
-  Printf.sprintf %s %s
-(Sys.getenv DEBFULLNAME)
-(Sys.getenv DEBEMAIL)
-with Not_found -
-  failwith 
-Set author using DEBFULLNAME and DEBEMAIL environment variables.
-  in
 debian_with_fn 
   changelog
   (output_content
@@ -46,6 +37,6 @@ $t.pkg.name ($pkg_version-1) $distribution; urgency=low
   * Initial release.$closes
   * Generated with oasis2debian v${Version.ver}.
 
- -- $author  ${date}))
+ -- $t.uploader  ${date}))
 
 

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. 00150476a93db9c60b8a3bde96766a3bba2fb9a2

2013-03-16 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 00150476a93db9c60b8a3bde96766a3bba2fb9a2
Author: Sylvain Le Gall gil...@debian.org
Date:   Sun Mar 17 01:27:45 2013 +0100

Avoid generating .cmxs install when not available.

diff --git a/INSTALL.txt b/INSTALL.txt
index 05e7826..357d694 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -1,5 +1,5 @@
 (* OASIS_START *)
-(* DO NOT EDIT (digest: c0deed2e3849bcbb630b6c2be2fcfbbb) *)
+(* DO NOT EDIT (digest: 96893f4af218c48c9d244581d361e83f) *)
 This is the INSTALL file for the oasis2debian distribution.
 
 This package uses OASIS to generate its build system. See section OASIS for
@@ -11,7 +11,7 @@ Dependencies
 In order to compile this package, you will need:
 * ocaml for all, test main, test ocaml-sqlexpr
 * findlib
-* oasis (= 0.2.0) for executable oasis2debian
+* oasis (= 0.3.1) for executable oasis2debian
 * xstrp4 (= 1.8) for executable oasis2debian
 * fileutils (= 0.4.2)
 * pcre for executable oasis2debian
diff --git a/_oasis b/_oasis
index 682629a..2950d5f 100644
--- a/_oasis
+++ b/_oasis
@@ -12,7 +12,7 @@ FilesAB: src/Version.ml.ab
 Executable oasis2debian
   Path: src
   MainIs:   Main.ml
-  BuildDepends: oasis (= 0.2.0), oasis.base, 
+  BuildDepends: oasis (= 0.3.1), oasis.base, 
 xstrp4 (= 1.8), 
 fileutils (= 0.4.2), 
 pcre, 
diff --git a/setup.ml b/setup.ml
index 9f796bc..9b146a4 100644
--- a/setup.ml
+++ b/setup.ml
@@ -22,7 +22,7 @@
 (* setup.ml generated for the first time by OASIS v0.2.0 *)
 
 (* OASIS_START *)
-(* DO NOT EDIT (digest: df22b09b59ae960206ea17721a124c09) *)
+(* DO NOT EDIT (digest: cfc30cfd0f049b7818469a97793a903b) *)
 (*
Regenerated by OASIS v0.3.1
Visit http://oasis.forge.ocamlcore.org for more information and
@@ -6116,7 +6116,7 @@ let setup_t =
 [
FindlibPackage
  (oasis,
-   Some (OASISVersion.VGreaterEqual 0.2.0));
+   Some (OASISVersion.VGreaterEqual 0.3.1));
FindlibPackage (oasis.base, None);
FindlibPackage
  (xstrp4,
@@ -6245,7 +6245,7 @@ let setup_t =
   };
  oasis_fn = Some _oasis;
  oasis_version = 0.3.1;
- oasis_digest = Some \173|\251M\182\020H\240\221\187\161gSp;
+ oasis_digest = Some ���7���vM[\153~r�j�;
  oasis_exec = None;
  oasis_setup_args = [-setup-update; weak];
  setup_update = true;
diff --git a/src/DhFiles.ml b/src/DhFiles.ml
index 7bcb256..f23ea90 100644
--- a/src/DhFiles.ml
+++ b/src/DhFiles.ml
@@ -34,7 +34,7 @@ type t =
 has_native:   bool;
 has_dll:  bool;
 has_cmi:  bool;
-(* TODO: dynlink *)
+has_cmxs: bool;
   }
 
 let create ~ctxt t = 
@@ -79,7 +79,9 @@ let create ~ctxt t =
~ctxt
~source_file_exists:Sys.file_exists
~is_native:true
-   ~has_native_dynlink:true
+   ~has_native_dynlink:
+   (bool_of_string 
+  (BaseStandardVar.native_dynlink ()))
~ext_lib:.a
~ext_dll:.so
(cs, bs, lib)
@@ -115,6 +117,7 @@ let create ~ctxt t =
  has_native   = has_extensions [.cmxa; .cmx];
  has_byte = has_extensions [.cma; .cmo];
  has_cmi  = has_extensions [.cmi];
+ has_cmxs = has_extensions [.cmxs];
})
 
   findlib_roots
@@ -326,7 +329,7 @@ Section: Programming/OCaml);
 (interpolate
@OCamlStdlibDir@/$e.findlib_name/*.cm[ao])
 chn;
-if e.has_native then
+if e.has_cmxs then
   output_content
 (interpolate 
@OCamlStdlibDir@/$e.findlib_name/*.cmxs)

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. bc9e1c496c65a65508359c9fe211ec8b27eb7b03

2013-03-11 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit bc9e1c496c65a65508359c9fe211ec8b27eb7b03
Author: Sylvain Le Gall gil...@debian.org
Date:   Tue Mar 12 00:42:39 2013 +

Allow to edit .postinst/.postrm: add user, chown/chmod files.

diff --git a/_tags b/_tags
index 5deb5f4..560c39b 100644
--- a/_tags
+++ b/_tags
@@ -65,3 +65,5 @@
 src/Copyright.ml: syntax_camlp4o
 src/Rules.ml: syntax_camlp4o
 src/DhFiles.ml: syntax_camlp4o
+src/Group.ml: syntax_camlp4o
+src/DpkgStatOverride.ml: syntax_camlp4o
diff --git a/src/ActInit.ml b/src/ActInit.ml
index 1154ebd..e2976ec 100644
--- a/src/ActInit.ml
+++ b/src/ActInit.ml
@@ -30,16 +30,22 @@ open Common
 let itp =
   Conf.create
 ~cli:--itp
-Bug number of the ITP for the package
+int Bug number of the ITP for the package.
 Conf.ShortInput
 
 let bts_query =
   Conf.create_full 
 ~cli:--bts-query
 bool_of_string
-Query the BTS for ITP (true/false)
+bool Query the BTS for ITP (true/false).
 (Conf.Value true)
 
+let distribution =
+  Conf.create
+~cli:--distribution
+str Distribution for the package.
+Conf.ShortInput
+
 let dh_compat = 7
 
 let run ~ctxt args = 
@@ -78,21 +84,30 @@ let run ~ctxt args =
 
 if debian_not_exist changelog then
   begin
-let itp = 
-  Conf.get ~ctxt itp 
-in
 let opts =
   
 in
+let opts = 
+  if Conf.is_set itp then
+opts^ --closes ^(Conf.get ~ctxt itp)
+  else
+opts^ 'Initial release.'
+in
 let opts =
   if Conf.get ~ctxt bts_query then
 opts
   else
 opts^ --no-query
 in
+let opts =
+  if Conf.is_set distribution then
+opts^ --distribution ^(Conf.get ~ctxt distribution)
+  else 
+opts
+in
   assert_command ~ctxt  
 (interpolate 
-   dch --create --package $t.deb_name --newversion $pkg_version-1 
--closes $itp $opts)
+   dch --create --package $t.deb_name --newversion $pkg_version-1 
$opts)
   end
   in
 
@@ -100,7 +115,10 @@ let run ~ctxt args =
 Control.create t;
 Copyright.create ~ctxt t;
 Rules.create t;
-DhFiles.create ~ctxt t
+DhFiles.create ~ctxt t;
+Group.create ~ctxt t;
+DpkgStatOverride.create ~ctxt t;
+DhDirs.create ~ctxt t;
   in 
 
 ()
diff --git a/src/Common.ml b/src/Common.ml
index e0ca6c2..6b62d80 100644
--- a/src/Common.ml
+++ b/src/Common.ml
@@ -73,22 +73,28 @@ let debian_fn =
 let debian_not_exist fn =
   not (test Exists (debian_fn fn))
 
+(** Execute [f] on a file inside debian/, in append mode. *)
+let debian_with_append_fn fn f =
+  let real_fn = 
+debian_fn fn 
+  in
+  let () = 
+mkdir ~parent:true (FilePath.dirname real_fn)
+  in
+  let chn = 
+open_out_gen 
+  [Open_wronly; Open_append; Open_creat; Open_text]
+  0o666
+  real_fn
+  in
+f chn;
+close_out chn
+
 (** Only execute [f] if the file doesn't exist 
   *)
 let debian_with_fn fn f = 
   if debian_not_exist fn then
-begin
-  let real_fn = 
-debian_fn fn
-  in
-  let () = 
-mkdir ~parent:true (FilePath.dirname real_fn)
-  in
-  let chn = open_out real_fn
-  in
-f chn;
-close_out chn
-end
+debian_with_append_fn fn f
 
 (** Run a command and file if exit code is non-zero
   *)
@@ -130,6 +136,24 @@ let assert_command_output ~ctxt cmd =
 let output_content str chn = 
   output_string chn (str^\n)
 
+let lines_of_file fn =
+  let chn = open_in fn in
+  let lst = ref [] in
+  let () =
+try 
+  while true do
+lst := (input_line chn) :: !lst
+  done;
+with End_of_file -
+  close_in chn
+  in
+List.rev !lst
+
+let file_of_lines fn lst =
+  let chn = open_out fn in
+output_string chn (String.concat \n lst);
+output_string chn \n;
+close_out chn
 
 module MapString = Map.Make(String)
 
diff --git a/src/Copyright.ml b/src/Copyright.ml
index 2744dfb..b22aa05 100644
--- a/src/Copyright.ml
+++ b/src/Copyright.ml
@@ -238,6 +238,6 @@ License: $license
 Files: debian/*
 Copyright: (C) ${year,%d} $t.uploader
 License: GPL-3+
-
+
  See '/usr/share/common-licenses/GPL-3' for full text.
 ))
diff --git a/src/DhDirs.ml b/src/DhDirs.ml
new file mode 100644
index 000..6c1f292
--- /dev/null
+++ b/src/DhDirs.ml
@@ -0,0 +1,32 @@
+
+open Common
+
+let dirs = 
+  let lst = ref [] in
+Conf.create_full
+  ~cli:--dh-dirs
+  (fun s -
+ Scanf.sscanf 
+   s %s@,%s
+   (fun pkg fn -
+  let lst' = 
+(pkg, fn) :: !lst
+  in
+lst := lst';
+lst'))
+  pkg,fn Add an entry in pkg.dirs.
+  (Conf.Value !lst)
+
+let create ~ctxt t =
+  let pkg_check pkg =
+(* TODO *)
+()
+  in
+List.iter
+  (fun (pkg, fn) -
+ pkg_check pkg

[Pkg-ocaml-maint-commits] [SCM] oasis2debian project branch, master, updated. 997c03825f19116afc2b13537c75fe54aa52604f

2013-03-07 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 2f89fbcc729e637d14300283db713b0414716a6a
Author: Sylvain Le Gall gil...@debian.org
Date:   Thu Mar 7 23:26:55 2013 +

re-enable reinstall target.

diff --git a/Makefile b/Makefile
index 47f28a2..8c9c3a3 100644
--- a/Makefile
+++ b/Makefile
@@ -23,8 +23,9 @@ OCAMLRUNPARAM=b
 export OCAMLRUNPARAM
 
 #TESTFLAGS=-verbose
+default: test reinstall
 #default: reinstall
-#reinstall: build
+reinstall: build
 
 
 # OASIS_START

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. 997c03825f19116afc2b13537c75fe54aa52604f

2013-03-07 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit c1e9250ae98baa8b879bbbc91b6d84f37d202d3d
Author: Christophe Troestler christophe.troest...@umons.ac.be
Date:   Sun Nov 18 14:03:56 2012 +0100

Slightly improve the help action.

diff --git a/src/ActHelp.ml b/src/ActHelp.ml
index b88516a..be6546d 100644
--- a/src/ActHelp.ml
+++ b/src/ActHelp.ml
@@ -1,9 +1,13 @@
+open Printf
 
-(** Display help 
-  *)
+(** Display help *)
+let run ~ctxt args =
+  eprintf %s command where command is one of\n
+  (Filename.basename Sys.argv.(0));
+  eprintf   init\n;
+  eprintf   get\n;
+  eprintf   update  update the Debian files for a new version of _oasis.\n;
+  eprintf   helpdisplay this help.\n
 
-let run ~ctxt args = 
-  prerr_endline Help
-
-let display ~ctxt _ = 
-  prerr_endline Coucou
+let display ~ctxt _ =
+  prerr_endline (Filename.basename Sys.argv.(0))
diff --git a/src/Main.ml b/src/Main.ml
index 684fdb7..6949ce4 100644
--- a/src/Main.ml
+++ b/src/Main.ml
@@ -51,7 +51,7 @@ let () =
 ActHelp.run
 | str -
 ActHelp.display ~ctxt stderr;
-error ~ctxt No action %s defined str;
+error ~ctxt No action %s defined.  Try \help\. str;
 exit 2
 in
   run ~ctxt args

-- 
oasis2debian project

___
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] [SCM] oasis2debian project branch, master, updated. 997c03825f19116afc2b13537c75fe54aa52604f

2013-03-07 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 997c03825f19116afc2b13537c75fe54aa52604f
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Mar 8 00:11:25 2013 +

Use not-yet release oasis 0.3.1 API.

diff --git a/src/BuildDepends.ml b/src/BuildDepends.ml
index 0cae5b7..8bb34ed 100644
--- a/src/BuildDepends.ml
+++ b/src/BuildDepends.ml
@@ -175,7 +175,8 @@ let get ~ctxt pkg =
 (fun ((exec, fndlb) as acc) -
function
  | Library (_, bs, _) 
- | Executable (_, bs, _) -
+ | Executable (_, bs, _)
+ | Object (_, bs, _) -
  depends_of_bs bs acc
 
  | Test (_, test) -
diff --git a/src/DhFiles.ml b/src/DhFiles.ml
index b6eb37b..183c96f 100644
--- a/src/DhFiles.ml
+++ b/src/DhFiles.ml
@@ -23,7 +23,7 @@
   *)
 
 open OASISTypes
-open OASISLibrary 
+open OASISFindlib
 open ExtString
 open Common
 
@@ -42,15 +42,15 @@ let create ~ctxt t =
 debian_with_fn (deb_pkg.name^.^ext)
   in
 
-  let findlib_roots = 
-OASISLibrary.group_libs t.pkg_generic 
+  let findlib_roots, _, _ = 
+OASISFindlib.findlib_mapping t.pkg_generic 
   in
 
   let roots = 
 List.rev_map 
   (fun grp -
  let findlib_name = 
-   OASISLibrary.findlib_of_group grp 
+   OASISFindlib.findlib_of_group grp 
  in
 
  let libs = 
@@ -58,8 +58,8 @@ let create ~ctxt t =
  function
| Container (_, lst) -
List.fold_left fold acc lst
-   | Package (_, cs, bs, lib, lst) -
-   List.fold_left fold ((cs, bs, lib) :: acc) lst
+   | Package (_, cs, bs, a, lst) -
+   List.fold_left fold ((cs, bs, a) :: acc) lst
in
  fold [] grp
  in
@@ -71,18 +71,29 @@ let create ~ctxt t =
List.flatten
  (List.flatten 
 (List.fold_left
-  (fun acc e - 
- let fns = 
-   OASISLibrary.generated_unix_files
- ~ctxt
- ~source_file_exists:Sys.file_exists
- ~is_native:true
- ~has_native_dynlink:true
- ~ext_lib:.a
- ~ext_dll:.so
- e
- in
-   fns :: acc) 
+  (fun acc - 
+ function
+   | cs, bs, `Library lib -
+   let fns = 
+ OASISLibrary.generated_unix_files
+   ~ctxt
+   ~source_file_exists:Sys.file_exists
+   ~is_native:true
+   ~has_native_dynlink:true
+   ~ext_lib:.a
+   ~ext_dll:.so
+   (cs, bs, lib)
+   in
+ fns :: acc
+   | cs, bs, `Object obj -
+   let fns = 
+ OASISObject.generated_unix_files
+   ~ctxt 
+   ~source_file_exists:Sys.file_exists
+   ~is_native:true
+   (cs, bs, obj)
+   in
+ fns :: acc) 
   []
   libs))
  in
@@ -120,7 +131,7 @@ let create ~ctxt t =
(ExternalTool ocamldoc) 
doc.doc_build_tools
 
- | Flag _ | Library _ | Executable _ | SrcRepo _ | Test _ -
+ | Flag _ | Object _ | Library _ | Executable _ | SrcRepo _ | Test _ -
  false)
   t.pkg_generic.sections
   in
@@ -214,8 +225,8 @@ Section: Programming/OCaml);
(mk_doc_base docdir cs doc);
  n + 1
 
- | Library _ | Executable _ | Flag _ 
- | Test _ | SrcRepo _ -
+ | Object _ | Library _ | Executable _ 
+ | Flag _ | Test _ | SrcRepo _ -
  n)
 1
 t.pkg_generic.sections
diff --git a/src/Expr.ml b/src/Expr.ml
index 5fa36d8..5645273 100644
--- a/src/Expr.ml
+++ b/src/Expr.ml
@@ -61,7 +61,7 @@ let create ~ctxt pkg =
(string_of_bool 
   (choose_simple ~ctxt conf flag.flag_default))
conf
- | Library _ | Executable _ | Doc _ | Test _ | SrcRepo _ -
+ | Object _ | Library _ | Executable _ | Doc _ | Test _ | SrcRepo 
_ - 
  conf)
 conf
 pkg.sections
diff --git a/src/GenPkg.ml b/src/GenPkg.ml
index 460b01a..5ea6871 100644
--- a/src/GenPkg.ml
+++ b/src/GenPkg.ml
@@ -43,22 +43,25 @@ let executable_name =
 
 let set ~ctxt t = 
 
-  let lib, doc, bin =
+  let obj, lib, doc, bin =
 List.fold_left

[Pkg-ocaml-maint-commits] [SCM] advi packaging branch, master, updated. debian/1.10.2-1-11-gaf1df60

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 62c54be6253ce93fb12a000c847f418b00bfcdfc
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 00:57:41 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 11ccafb..033f94b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-advi (1.10.2-2) UNRELEASED; urgency=low
+advi (1.10.2-2.1) UNRELEASED; urgency=low
 
+  [ Ralf Treinen ]
   * Fix mode of /usr/share/doc/advi-examples/examples/basics/alltt.sty
   * debian/rules: use $(OCAML_HAVE_OCAMLOPT) to distinguish native
 from non-native architectures.
@@ -13,7 +14,10 @@ advi (1.10.2-2) UNRELEASED; urgency=low
 - debian/rules: remove top-level /advi file created by a buggy
   installation script
 
- -- Ralf Treinen trei...@debian.org  Sat, 07 Jul 2012 19:28:38 +0200
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 00:57:41 +
 
 advi (1.10.2-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 2ad308c..68fa3c8 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,6 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders: Ralf Treinen trei...@debian.org,
  Remi Vanicat vani...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Samuel Mimram smim...@debian.org,
  Stéphane Glondu glo...@debian.org
 Build-Depends: debhelper (= 7.0.50~), dh-ocaml (= 0.9~),

-- 
advi packaging

___
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] [SCM] approx upstream and debian packaging branch, master, updated. debian/5.3-1-1-g004c01f

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 004c01f87b4ba6d699d8e7b40907dd9297db0cc6
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 00:59:32 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 6420b6c..09cf2f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+approx (5.3-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 00:58:29 +
+
 approx (5.3-1) unstable; urgency=low
 
   * New upstream version
diff --git a/debian/control b/debian/control
index 6e0eadb..197bfef 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: approx
 Section: admin
 Priority: optional
 Maintainer: Eric Cooper e...@cmu.edu
-Uploaders: Sylvain Le Gall gil...@debian.org, Ralf Treinen 
trei...@debian.org
+Uploaders: Ralf Treinen trei...@debian.org
 DM-Upload-Allowed: yes
 Build-Depends:
  debhelper (= 8.0),

-- 
approx upstream and debian packaging

___
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] [SCM] atdgen packaging branch, master, updated. debian/1.2.2-1-1-ge38ae79

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit e38ae792c6077105b6bb7257eedf1aa59371b5e5
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:00:58 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 60044e3..7463a52 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+atdgen (1.2.2-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:00:29 +
+
 atdgen (1.2.2-1) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index ab1053e..110096a 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: atdgen
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
atdgen packaging

___
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] [SCM] bibtex2html packaging branch, master, updated. debian/1.97-2-2-gf038e01

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 330de4b4dd0715904549aeb695975e85193f9496
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:01:42 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 66d23b9..63fffab 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+bibtex2html (1.97-2.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:01:21 +
+
 bibtex2html (1.97-2) unstable; urgency=medium
 
   * patch paranoid-bibtex: run bibtex in the directory where the .aux file
diff --git a/debian/control b/debian/control
index 86446dd..14863ac 100644
--- a/debian/control
+++ b/debian/control
@@ -5,8 +5,7 @@ Maintainer: Debian OCaml Maintainers 
debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Ralf Treinen trei...@debian.org,
  Remi Vanicat vani...@debian.org,
- Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org
+ Samuel Mimram smim...@debian.org
 Standards-Version: 3.9.3
 Build-Depends: debhelper (= 7.0.50~), dh-ocaml (= 0.9~),
   ocaml-nox (= 3.11.1-3~), hevea

-- 
bibtex2html packaging

___
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] [SCM] bibtex2html packaging branch, master, updated. debian/1.97-2-2-gf038e01

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit f038e0191a07b675519e682f7291d57af168b573
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:29:35 2012 +

Fix version.

diff --git a/debian/changelog b/debian/changelog
index 63fffab..c18b5f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,5 @@
-bibtex2html (1.97-2.1) UNRELEASED; urgency=low
+bibtex2html (1.97-3) UNRELEASED; urgency=low
 
-  * Non-maintainer upload.
   * Remove Sylvain Le Gall from uploaders
 
  -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:01:21 +

-- 
bibtex2html packaging

___
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] [SCM] bin-prot packaging branch, master, updated. debian/2.0.7-1-1-g8f3cb7e

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 8f3cb7e47eec3364c6eb88cb8482894b71304094
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:05:19 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 4ea2098..e34f4cc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+bin-prot (2.0.7-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:05:19 +
+
 bin-prot (2.0.7-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/control b/debian/control
index 075948f..d76a6ef 100644
--- a/debian/control
+++ b/debian/control
@@ -3,8 +3,7 @@ Section: ocaml
 Priority: extra
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
- Stéphane Glondu glo...@debian.org,
- Sylvain Le Gall gil...@debian.org
+ Stéphane Glondu glo...@debian.org
 Build-Depends:
  debhelper (= 8),
  dh-ocaml (= 0.9~),

-- 
bin-prot packaging

___
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] [SCM] biniou packaging branch, master, updated. debian/1.0.0-1-1-g43024d4

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 43024d425ffe32c3515293f214318befb544c662
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:03:44 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index a5a219c..f8af5e1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+biniou (1.0.0-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:03:26 +
+
 biniou (1.0.0-1) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 4109c64..9b52da8 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: biniou
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
biniou packaging

___
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] [SCM] cameleon packaging branch, master, updated. debian/1.9.21-2-1-g8583c6a

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 8583c6a170cd3ef9f140230407a70c80018a934a
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:07:25 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index f41024e..a162f14 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+cameleon (1.9.21-3) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:07:06 +
+
 cameleon (1.9.21-2) unstable; urgency=low
 
   * Team upload.
diff --git a/debian/control b/debian/control
index be3a947..6490d04 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,6 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Stéphane Glondu glo...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Samuel Mimram smim...@debian.org
 Build-Depends:
  patchutils (= 0.2.25),

-- 
cameleon packaging

___
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] [SCM] camlbz2 packaging branch, master, updated. debian/0.6.0-6-7-g02be683

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 02be6838a7f392c48480ebf28270ddbc9c74cf52
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:30:50 2012 +

Fix version.

diff --git a/debian/changelog b/debian/changelog
index ecb7161..8810884 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-camlbz2 (0.6.0-8) UNRELEASED; urgency=low
+camlbz2 (0.6.0-7) UNRELEASED; urgency=low
 
   [ Stéphane Glondu ]
   * Switch source package format to 3.0 (quilt)

-- 
camlbz2 packaging

___
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] [SCM] camlidl packaging branch, master, updated. debian/1.05-14-1-g6aa4754

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 6aa4754fa77b793ccd869eedd4b73ad87641
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:10:18 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index b743dea..a026889 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+camlidl (1.05-15) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:10:08 +
+
 camlidl (1.05-14) unstable; urgency=low
 
   * debian/mk/docbook-manpage.mk: build-arch, not build, must depend on
diff --git a/debian/control b/debian/control
index 7be7d77..b262d4d 100644
--- a/debian/control
+++ b/debian/control
@@ -5,8 +5,7 @@ Maintainer: Debian OCaml Maintainers 
debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Stéphane Glondu glo...@debian.org,
  Ralf Treinen trei...@debian.org,
- Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org
+ Samuel Mimram smim...@debian.org
 Build-Depends:
  cdbs (= 0.4.23-1.1),
  ocaml-nox (= 3.11),

-- 
camlidl packaging

___
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] [SCM] camlmix packaging branch, master, updated. debian/1.3.0-3-1-g64a9700

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 64a97003f0ec6416e19c9830fb48c05270fe8bea
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:11:44 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 041939a..44b1b95 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+camlmix (1.3.0-4) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:11:30 +
+
 camlmix (1.3.0-3) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 37492a0..5466067 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: camlmix
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends-Indep:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
camlmix packaging

___
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] [SCM] camltemplate packaging branch, master, updated. debian/1.0.2-1-1-g16c9a47

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 16c9a47d59eea8ae12eb56c4a154100b1dda0fc1
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:12:10 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 29d110b..0945b44 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+camltemplate (1.0.2-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:12:04 +
+
 camltemplate (1.0.2-1) unstable; urgency=low
 
   * Initial release. (Closes: #605675)
diff --git a/debian/control b/debian/control
index b4c9b59..013959e 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: camltemplate
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
camltemplate packaging

___
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] [SCM] camlzip packaging branch, master, updated. debian/1.04-6-3-g4f9c8f7

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 4f9c8f77d48fd2fea700ae0c8f48d1740245aa29
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:12:27 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index aff18da..3862c48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,9 @@ camlzip (1.04-7) UNRELEASED; urgency=low
   [ Stéphane Glondu ]
   * Fix generation of documentation by dh_ocamldoc
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
  -- Stéphane Glondu glo...@debian.org  Tue, 06 Oct 2009 01:16:25 +0200
 
 camlzip (1.04-6) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 44651a5..8048e3e 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,6 @@ Maintainer: Debian OCaml Maintainers 
debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Sven Luther lut...@debian.org,
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Ralf Treinen trei...@debian.org,
  Stéphane Glondu glo...@debian.org
 Build-Depends:

-- 
camlzip packaging

___
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] [SCM] camomile packaging branch, master, updated. debian/0.8.4-2-1-gf25f244

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit f25f24402305dc94fab9c9a209b82c084c8d40e7
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:12:43 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index c0b6cb3..929a7a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+camomile (0.8.4-3) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:12:35 +
+
 camomile (0.8.4-2) unstable; urgency=high
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 68aa604..2f1a3ce 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,6 @@ Source: camomile
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: Sylvain Le Gall gil...@debian.org
 Build-Depends: cdbs (= 0.4.23-1.1),
  debhelper (= 7),
  ocaml-nox (= 3.11.1),

-- 
camomile packaging

___
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] [SCM] confluence packaging branch, master, updated. debian/0.10.6-6-4-gd005861

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit d005861c411a060ceba20a529a16109bb009ef3e
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:12:58 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 2cf989a..3364491 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,9 @@ confluence (0.10.6-7) UNRELEASED; urgency=low
   [ Stefano Zacchiroli ]
   * remove myself from Uploaders
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
  -- Stephane Glondu st...@glondu.net  Mon, 15 Jun 2009 20:46:13 +0200
 
 confluence (0.10.6-6) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 15e34cc..83ba4b5 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,6 @@ Uploaders:
  Ralf Treinen trei...@debian.org,
  Remi Vanicat vani...@debian.org,
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Mike Furr mf...@debian.org
 Build-Depends: debhelper (= 5), dpatch, txt2man, ocaml-nox (= 3.10)
 Standards-Version: 3.8.1

-- 
confluence packaging

___
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] [SCM] cothreads packaging branch, master, updated. debian/0.10-3-1-gedaa47b

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit edaa47b841a95feee28697632f5cf19d26a42a1f
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:13:14 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 01db7f0..150bcb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+cothreads (0.10-4) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:13:03 +
+
 cothreads (0.10-3) unstable; urgency=low
 
   [ Sylvain Le Gall ]
diff --git a/debian/control b/debian/control
index 01bf68e..ce76d43 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
- Sylvain Le Gall gil...@debian.org,
  Mehdi Dogguy me...@debian.org,
  Erik de Castro Lopo er...@mega-nerd.com
 Build-Depends:

-- 
cothreads packaging

___
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] [SCM] cppo packaging branch, master, updated. debian/0.9.2-1-1-g811b11a

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 811b11ac9c0d0d8f3677c28c90aaa121fef65208
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:13:25 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 73be557..5730a61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+cppo (0.9.2-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:13:20 +
+
 cppo (0.9.2-1) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 9ad9677..c72d1a0 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: cppo
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
cppo packaging

___
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] [SCM] cryptokit packaging branch, master, updated. debian/1.5-1-1-g67d04a3

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 67d04a3282edb176a6e4212668ae3c71df906efc
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:13:34 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 3d393b0..ce5c412 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+cryptokit (1.5-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:13:31 +
+
 cryptokit (1.5-1) unstable; urgency=low
 
   [ Stéphane Glondu ]
diff --git a/debian/control b/debian/control
index 033e4e4..4832c4a 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,6 @@ Maintainer: Debian OCaml Maintainers 
debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Ralf Treinen trei...@debian.org,
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Stéphane Glondu glo...@debian.org,
  Mehdi Dogguy me...@debian.org
 Build-Depends:

-- 
cryptokit packaging

___
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] [SCM] dh-ocaml packaging branch, master, updated. debian/1.0.5-1-g56d398e

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 56d398e2c834d4342883ad74f209154c8ab71c6a
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:13:46 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 0a1a578..a7ca71e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dh-ocaml (1.0.6) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:13:39 +
+
 dh-ocaml (1.0.5) unstable; urgency=low
 
   [ Ralf Treinen ]
diff --git a/debian/control b/debian/control
index 68c8e5d..2d7156b 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,6 @@ Uploaders:
  Mehdi Dogguy me...@debian.org,
  Samuel Mimram smim...@debian.org,
  Stéphane Glondu glo...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Ralf Treinen trei...@debian.org,
  Romain Beauxis to...@rastageeks.org
 Build-Depends:

-- 
dh-ocaml packaging

___
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] [SCM] gmetadom packaging branch, master, updated. debian/0.2.6-6-1-g18f1fab

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 18f1fab523d05e24e68b1e1a5dbeb8a1738a7408
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:14:44 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index a35e7db..a0df68c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gmetadom (0.2.6-7) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:14:36 +
+
 gmetadom (0.2.6-6) unstable; urgency=low
 
   [ Stéphane Glondu ]
diff --git a/debian/control b/debian/control
index 9b1a13d..051925e 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,6 @@ Source: gmetadom
 Section: devel
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: Sylvain Le Gall gil...@debian.org
 Build-Depends:
  debhelper (= 7),
  ocaml-nox (= 3.11),

-- 
gmetadom packaging

___
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] [SCM] headache packaging branch, master, updated. debian/1.03-22-1-g85361d0

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 85361d0a73b4846c77f71dbcdff56c82672a5c8d
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:14:58 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 44dc408..a682482 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+headache (1.03-23) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:14:49 +
+
 headache (1.03-22) unstable; urgency=low
 
   [ Mehdi Dogguy ]
diff --git a/debian/control b/debian/control
index 6d499f0..3a97273 100644
--- a/debian/control
+++ b/debian/control
@@ -4,8 +4,7 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org 
 Uploaders:
  Ralf Treinen trei...@debian.org,
- Mehdi Dogguy me...@debian.org,
- Sylvain Le Gall gil...@debian.org
+ Mehdi Dogguy me...@debian.org
 Build-Depends-Indep: po-debconf,
  xsltproc, libxml2-utils, docbook-xsl, docbook-xml
 Build-Depends: cdbs (= 0.4.23-1.1), debhelper (= 5),

-- 
headache packaging

___
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] [SCM] hevea packaging branch, master, updated. debian/1.10-14-1-gcf4049a

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit cf4049a5d5cf184f28e0f49248a3b82ae979b617
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:15:25 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 941324b..0398fb9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+hevea (1.10-15) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:15:18 +
+
 hevea (1.10-14) unstable; urgency=low
 
   * Rebuild with ocaml 3.12.1 (no source changes)
diff --git a/debian/control b/debian/control
index 389c6c6..e4315b5 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,6 @@ Uploaders:
  Ralf Treinen trei...@debian.org,
  Remi Vanicat vani...@debian.org,
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Stéphane Glondu glo...@debian.org
 Build-Depends-Indep: ocaml-nox (= 3.07)
 Build-Depends: debhelper (= 7.0.50~), tex-common, dh-ocaml (= 0.9)

-- 
hevea packaging

___
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] [SCM] hevea-doc packaging branch, master, updated. debian/1.10-2-9-g6946667

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 69466677888e8d2e9158c8c93d4794e8019d5a3a
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:15:12 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 738273f..b7427ed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,9 @@ hevea-doc (1.10-4) UNRELEASED; urgency=low
   [ Stefano Zacchiroli ]
   * removes myself from Uploaders
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
  -- Stefano Zacchiroli z...@debian.org  Sat, 08 Oct 2011 19:39:10 +0200
 
 hevea-doc (1.10-3) unstable; urgency=low
diff --git a/debian/control b/debian/control
index ccc36b8..671054d 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders: Ralf Treinen trei...@debian.org, 
  Remi Vanicat vani...@debian.org,
- Samuel Mimram smim...@debian.org, Sylvain Le Gall gil...@debian.org
+ Samuel Mimram smim...@debian.org
 Build-Depends: debhelper (= 7.0)
 Standards-Version: 3.8.3
 Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/hevea-doc.git

-- 
hevea-doc packaging

___
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] [SCM] lablgl packaging branch, master, updated. debian/1.04-5-5-g4206f57

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 4206f57db902e9bd840fae2f16866e02bdaa63f2
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:15:41 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index b45e49f..c28d10b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,9 @@ lablgl (1.04-6) UNRELEASED; urgency=low
   * Fix version number in META
   * Add myself to uploaders
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
  -- Mehdi Dogguy me...@debian.org  Mon, 22 Feb 2010 21:07:43 +0100
 
 lablgl (1.04-5) unstable; urgency=low
diff --git a/debian/control b/debian/control
index e3089f3..8498c78 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,6 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Stéphane Glondu glo...@debian.org,
  Mehdi Dogguy me...@debian.org,
  Ralf Treinen trei...@debian.org

-- 
lablgl packaging

___
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] [SCM] lablgtk2 packaging branch, master, updated. debian/2.14.2+dfsg-3-1-gb4732fa

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit b4732fa83a3b99106d1c5091aafcf39a333f2755
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:15:50 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index cd1f6b6..7eee313 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+lablgtk2 (2.14.2+dfsg-4) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:15:45 +
+
 lablgtk2 (2.14.2+dfsg-3) unstable; urgency=low
 
   * Update version in META files (Closes: #673835)
diff --git a/debian/control b/debian/control
index 5802abb..a2a3d4a 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,6 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Ralf Treinen trei...@debian.org,
  Stéphane Glondu glo...@debian.org
 Build-Depends:

-- 
lablgtk2 packaging

___
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] [SCM] ledit packaging branch, master, updated. debian/2.03-1-3-g43ebdf8

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 43ebdf81eb16b8f8e1a133b7b9c2a9bb4bf09f0c
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:16:08 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 49d00d5..030f0fb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,14 @@
 ledit (2.03-2) UNRELEASED; urgency=low
 
+  [ Ralf Treinen ]
   * new patch manpage-typos: fix some typos in ledit.1 manpage. Thanks a 
 lot to A. Costa! (closes: #672479)
   * debian/copyright header paragraph: add format, field names as required
 by format 1.0, drop fields not allowd in format 1.0
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
  -- Ralf Treinen trei...@debian.org  Tue, 12 Jun 2012 20:58:45 +0200
 
 ledit (2.03-1) unstable; urgency=low
diff --git a/debian/control b/debian/control
index ffcdde2..6a4a958 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,6 @@ Uploaders:
  Samuel Mimram smim...@debian.org,
  Stéphane Glondu glo...@debian.org,
  Mehdi Dogguy me...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Ralf Treinen trei...@debian.org
 Build-Depends:
  debhelper ( 7.0.0),

-- 
ledit packaging

___
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] [SCM] mikmatch packaging branch, master, updated. debian/1.0.4-1-1-g9f70a23

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 9f70a230305a8bbad5d6d6066797c27b731aeb1c
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:16:15 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 5da3639..fe9486c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mikmatch (1.0.4-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:16:13 +
+
 mikmatch (1.0.4-1) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 4aaa234..19f9a21 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: mikmatch
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders:
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.12),
   ocaml-findlib,

-- 
mikmatch packaging

___
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] [SCM] mldonkey packaging branch, master, updated. debian/3.1.2-1-2-gaaa559c

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit aaa559c92b39d04ef7618e5e20812bdff2921115
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:16:27 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 43f7085..7c5ac54 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,11 @@
 mldonkey (3.1.2-2) UNRELEASED; urgency=low
 
+  [ Mehdi Dogguy ]
   * Set filter-pristine-tar=True in debian/gbp.conf
 
+  [ Sylvain Le Gall ]
+  * Remove Sylvain Le Gall from uploaders
+
  -- Mehdi Dogguy me...@debian.org  Wed, 06 Jun 2012 14:44:50 +0200
 
 mldonkey (3.1.2-1) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 524c0ec..e7f412d 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,6 @@ Maintainer: Debian OCaml Maintainers 
debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Stéphane Glondu glo...@debian.org,
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Mehdi Dogguy me...@debian.org
 Homepage: http://mldonkey.sourceforge.net/
 Build-Depends: autoconf, autotools-dev,

-- 
mldonkey packaging

___
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] [SCM] mlgmp packaging branch, master, updated. debian/20021123-17-1-g1908c7a

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 1908c7af8f1c3df8368687ecde6508e0db96d6dc
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:16:37 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index b802313..a51fb53 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mlgmp (20021123-18) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:16:32 +
+
 mlgmp (20021123-17) unstable; urgency=low
 
   * debian/patches/20_mlgmp_z.dpatch: fix wrong conversion from int on
diff --git a/debian/control b/debian/control
index 14b5f04..28b58f2 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,6 @@ Uploaders:
   Ralf Treinen trei...@debian.org, 
   Sven Luther lut...@debian.org, 
   Remi Vanicat vani...@debian.org, 
-  Sylvain Le Gall gil...@debian.org, 
   Mehdi Dogguy me...@debian.org,
   Mike Furr mf...@debian.org
 Build-Depends: 

-- 
mlgmp packaging

___
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] [SCM] mlpcap packaging branch, master, updated. debian/0.9-16-1-g62b1c92

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 62b1c92cc6db9e814fba8e6c757c753cfd7f9f0c
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:16:46 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index de25bac..7ba0307 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mlpcap (0.9-17) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:16:43 +
+
 mlpcap (0.9-16) unstable; urgency=low
 
   * Convert to 3.0 (quilt) source format
diff --git a/debian/control b/debian/control
index 63f1ef6..2c0f5e0 100644
--- a/debian/control
+++ b/debian/control
@@ -3,8 +3,7 @@ Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
- Mehdi Dogguy me...@debian.org,
- Sylvain Le Gall gil...@debian.org
+ Mehdi Dogguy me...@debian.org
 Build-Depends: cdbs (= 0.4.23-1.1), 
  debhelper (= 7), 
  ocaml-nox (= 3.10.0-9), 

-- 
mlpcap packaging

___
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] [SCM] numerix packaging branch, master, updated. debian/0.22-6-1-gfeef987

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit feef987663bd39faa99ff48ab87499370161dfdd
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:16:56 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 5beacbf..822595b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+numerix (0.22-7) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:16:51 +
+
 numerix (0.22-6) unstable; urgency=low
 
   * Use dh-ocaml 0.9.1 features
diff --git a/debian/control b/debian/control
index 34d73a3..23fba53 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,6 @@ Maintainer: Debian OCaml Maintainers 
debian-ocaml-ma...@lists.debian.org
 Uploaders: 
  Ralf Treinen trei...@debian.org, 
  Stefano Zacchiroli z...@debian.org, 
- Sylvain Le Gall gil...@debian.org, 
  Mike Furr mf...@debian.org, 
  Samuel Mimram smim...@debian.org
 Build-Depends: dh-ocaml (= 0.9.1), ocaml-nox (= 3.11), libgmp3-dev, 
debhelper (= 7), dpatch, autotools-dev

-- 
numerix packaging

___
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] [SCM] OCaml packaging branch, master, updated. debian/3.12.1-4-1-ga50273c

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit a50273c9ad832ab166f60b96ab3675900282386d
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:20:17 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 24fb792..28b6043 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml (3.12.1-5) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:20:13 +
+
 ocaml (3.12.1-4) unstable; urgency=low
 
   * Change the Debian-specific behaviour of -custom (Closes: #678577)
diff --git a/debian/control b/debian/control
index d914977..d3497a5 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,6 @@ Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
  Samuel Mimram smim...@debian.org,
- Sylvain Le Gall gil...@debian.org,
  Ralf Treinen trei...@debian.org,
  Stéphane Glondu glo...@debian.org,
  Mehdi Dogguy me...@debian.org

-- 
OCaml packaging

___
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] [SCM] ocaml-atd packaging branch, master, updated. debian/1.0.1-1-1-g0fc1ad1

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 0fc1ad1f7c88f5b3a1ae5c5ce1abda117f4140bd
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:17:27 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index bf1317c..b87dbd7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-atd (1.0.1-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:17:16 +
+
 ocaml-atd (1.0.1-1) unstable; urgency=low
 
   * Team upload
diff --git a/debian/control b/debian/control
index 90e303e..7f4c459 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,6 @@ Source: ocaml-atd
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: 
-  Sylvain Le Gall gil...@debian.org
 Build-Depends:
   ocaml-nox (= 3.11.1-3~),
   ocaml-findlib,

-- 
ocaml-atd packaging

___
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] [SCM] ocaml-benchmark packaging branch, master, updated. debian/0.9-2-1-g4d2d150

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 4d2d15076a939a4ea3023805a73edf50ec8a1516
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:17:35 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index febe92e..8ba0d3f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-benchmark (0.9-3) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:17:33 +
+
 ocaml-benchmark (0.9-2) unstable; urgency=low
 
   * Use dh-ocaml 0.9.1 features
diff --git a/debian/control b/debian/control
index 8682486..6832da7 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,6 @@ Source: ocaml-benchmark
 Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
-Uploaders: Sylvain Le Gall gil...@debian.org
 Build-Depends: cdbs (= 0.4.23-1.1), 
  debhelper (= 7), 
  dpatch, 

-- 
ocaml-benchmark packaging

___
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] [SCM] ocaml-bitstring packaging branch, master, updated. debian/2.0.2-3-1-gd102fa4

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit d102fa4b7b57cca39990d59d616a770f885095ba
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:17:45 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index 838ea62..e791b94 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-bitstring (2.0.2-4) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:17:40 +
+
 ocaml-bitstring (2.0.2-3) unstable; urgency=low
 
   * Fix preprocessor options in META (Closes: #623230)
diff --git a/debian/control b/debian/control
index b5cee47..057d83b 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
- Sylvain Le Gall gil...@debian.org,
  Stéphane Glondu glo...@debian.org,
  Mehdi Dogguy me...@debian.org
 Build-Depends:

-- 
ocaml-bitstring packaging

___
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] [SCM] ocaml-csv packaging branch, master, updated. debian/1.2.2-1-1-g72041bb

2012-09-20 Thread Sylvain Le Gall
The following commit has been merged in the master branch:
commit 72041bb981fb2f473e2ac504f78f386fbe72846a
Author: Sylvain Le Gall gil...@debian.org
Date:   Fri Sep 21 01:18:12 2012 +

Remove Sylvain Le Gall from uploaders

diff --git a/debian/changelog b/debian/changelog
index ce57af8..c03de97 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-csv (1.2.2-2) UNRELEASED; urgency=low
+
+  * Remove Sylvain Le Gall from uploaders
+
+ -- Sylvain Le Gall gil...@debian.org  Fri, 21 Sep 2012 01:18:10 +
+
 ocaml-csv (1.2.2-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/control b/debian/control
index 079215d..c61faad 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,7 @@ Source: ocaml-csv
 Priority: optional
 Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
 Uploaders:
- Stéphane Glondu glo...@debian.org,
- Sylvain Le Gall gil...@debian.org
+ Stéphane Glondu glo...@debian.org
 Build-Depends:
  debhelper (= 7.0.50~),
  dh-ocaml (= 0.9),

-- 
ocaml-csv packaging

___
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

  1   2   3   4   5   6   7   8   9   >