The following commit has been merged in the upstream branch:
commit 9aaa4ba9a07264f4f65e947788d225adda18c67d
Author: Stephane Glondu <st...@glondu.net>
Date:   Wed May 8 15:10:33 2013 +0200

    Imported Upstream version 2.0.4

diff --git a/.hg_archival.txt b/.hg_archival.txt
index 3240d58..8f7e316 100644
--- a/.hg_archival.txt
+++ b/.hg_archival.txt
@@ -1,4 +1,4 @@
 repo: 42b5d31bc33edcbe8bd08bd924e56244cd453699
-node: b574dea46582a400600b87d5043f64af239060cb
+node: f880b39bb3d91a8c8fb5bc9007145ccfd2ab410a
 branch: default
-tag: release-2.0.3
+tag: release-2.0.4
diff --git a/.hgtags b/.hgtags
index de0aeb3..389de49 100644
--- a/.hgtags
+++ b/.hgtags
@@ -25,3 +25,4 @@ c24545d1a514fa32484b769a655f9779ed9e7c88 release-1.6.3
 bd4bac35acf6ab5515d7a3ef8bacb038e417ae56 release-2.0.0
 a0f0a04508c6b8c42688fd6aa4557a03f420eae5 release-2.0.1
 31b3731fa002bfab22bc49a368b2b14b47927db8 release-2.0.2
+b574dea46582a400600b87d5043f64af239060cb release-2.0.3
diff --git a/CHANGES.txt b/CHANGES.txt
index c2dab34..0e391ac 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,12 @@
+2012-12-02: Added new functions
+
+              * sleep
+              * clear_bindings
+
+            Really old operating system distributions may have had problems
+            linking these functions, but it seems that reasonably recent
+            ones support them.
+
 2012-11-19: Added missing .mldylib file for shared library support.
 
             Thanks to Hugo Heuzard for the bug report!
diff --git a/_oasis b/_oasis
index f56cf7f..6a41535 100644
--- a/_oasis
+++ b/_oasis
@@ -1,6 +1,6 @@
 OASISFormat:      0.3
 Name:             sqlite3-ocaml
-Version:          2.0.3
+Version:          2.0.4
 Synopsis:         sqlite3-ocaml - bindings to the SQLite3 library
 Description:      sqlite3-ocaml offers library functions for accessing SQLite3 
database
 Authors:          Markus Mottl <markus.mo...@gmail.com>,
diff --git a/lib/META b/lib/META
index f127b49..2c75ad2 100644
--- a/lib/META
+++ b/lib/META
@@ -1,6 +1,6 @@
 # OASIS_START
-# DO NOT EDIT (digest: 27324187102378b24fdc95dc4761e05e)
-version = "2.0.3"
+# DO NOT EDIT (digest: cb012c6e65adca8fbd893b29be5522d8)
+version = "2.0.4"
 description = "sqlite3-ocaml - bindings to the SQLite3 library"
 archive(byte) = "sqlite3.cma"
 archive(byte, plugin) = "sqlite3.cma"
diff --git a/lib/sqlite3.ml b/lib/sqlite3.ml
index cc28125..3c2c53d 100644
--- a/lib/sqlite3.ml
+++ b/lib/sqlite3.ml
@@ -195,6 +195,7 @@ external recompile : stmt -> unit = "caml_sqlite3_recompile"
 
 external step : stmt -> Rc.t = "caml_sqlite3_step"
 external reset : stmt -> Rc.t = "caml_sqlite3_stmt_reset"
+external sleep : int -> int = "caml_sqlite3_sleep"
 external finalize : stmt -> Rc.t = "caml_sqlite3_stmt_finalize"
 
 external data_count : stmt -> int = "caml_sqlite3_data_count"
@@ -216,15 +217,13 @@ external bind_parameter_name :
 external bind_parameter_index :
   stmt -> string -> int = "caml_sqlite3_bind_parameter_index"
 
+external clear_bindings : stmt -> Rc.t = "caml_sqlite3_clear_bindings"
+
 external busy_timeout : db -> int -> unit = "caml_sqlite3_busy_timeout"
 
 external enable_load_extension :
   db -> bool -> bool = "caml_sqlite3_enable_load_extension" "noalloc"
 
-(* TODO: these give linking errors on some platforms *)
-(* external sleep : int -> int = "caml_sqlite3_sleep" *)
-(* external clear_bindings : stmt -> Rc.t = "caml_sqlite3_clear_bindings" *)
-
 let row_data stmt = Array.init (data_count stmt) (column stmt)
 let row_names stmt = Array.init (data_count stmt) (column_name stmt)
 let row_decltypes stmt = Array.init (data_count stmt) (column_decltype stmt)
diff --git a/lib/sqlite3.mli b/lib/sqlite3.mli
index 8fc05cb..21682cd 100644
--- a/lib/sqlite3.mli
+++ b/lib/sqlite3.mli
@@ -351,6 +351,10 @@ external reset : stmt -> Rc.t = "caml_sqlite3_stmt_reset"
     @raise SqliteError if the statement could not be reset.
 *)
 
+external sleep : int -> int = "caml_sqlite3_sleep"
+(** [sleep ms] sleeps at least [ms] milliseconds.  @return the number of
+    milliseconds of sleep actually requested from the operating system. *)
+
 
 (** {2 Data query} *)
 
@@ -434,9 +438,14 @@ external bind_parameter_index :
     @raise SqliteError if the statement is invalid.
 *)
 
-(* TODO: these give linking errors on some platforms *)
-(* external sleep : int -> int = "caml_sqlite3_sleep" *)
-(* external clear_bindings : stmt -> Rc.t = "caml_sqlite3_clear_bindings" *)
+external clear_bindings : stmt -> Rc.t = "caml_sqlite3_clear_bindings"
+(** [clear_bindings stmt] resets all bindings associated with prepared
+    statement [stmt].
+
+    @return the return code of this operation.
+
+    @raise SqliteError if the statement is invalid.
+*)
 
 
 (** {2 Stepwise query convenience functions} *)
diff --git a/lib/sqlite3_stubs.c b/lib/sqlite3_stubs.c
index 2c94ea5..a42087d 100644
--- a/lib/sqlite3_stubs.c
+++ b/lib/sqlite3_stubs.c
@@ -843,16 +843,11 @@ CAMLprim value caml_sqlite3_bind(value v_stmt, value 
v_index, value v_data)
   return Val_rc(SQLITE_ERROR);
 }
 
-/* FIXME */
-
-/* Sorry this gives a linking error! */
-#if 0
 CAMLprim value caml_sqlite3_clear_bindings(value v_stmt)
 {
   sqlite3_stmt *stmt = safe_get_stmtw("clear_bindings", v_stmt)->stmt;
   return Val_rc(sqlite3_clear_bindings(stmt));
 }
-#endif
 
 CAMLprim value caml_sqlite3_column_name(value v_stmt, value v_index)
 {
@@ -937,19 +932,14 @@ CAMLprim value caml_sqlite3_column(value v_stmt, value 
v_index)
   CAMLreturn(v_res);
 }
 
-/* FIXME */
-
-/* Sorry, this gives a linking error! */
-#if 0
 CAMLprim value caml_sqlite3_sleep(value v_duration)
 {
   int res;
   caml_enter_blocking_section();
     res = sqlite3_sleep(Int_val(v_duration));
   caml_leave_blocking_section();
-  return (Int_val(res));
+  return Val_int(res);
 }
-#endif
 
 
 /* User-defined functions */
diff --git a/myocamlbuild.ml b/myocamlbuild.ml
index 0d83d9d..ad2df24 100644
--- a/myocamlbuild.ml
+++ b/myocamlbuild.ml
@@ -1,7 +1,7 @@
 (* OASIS_START *)
-(* DO NOT EDIT (digest: 3b119367c38709b17bd258c9a0f91d16) *)
+(* DO NOT EDIT (digest: 9a337fa52252ce01e8b76167e4be67ae) *)
 module OASISGettext = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISGettext.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISGettext.ml" *)
 
   let ns_ str =
     str
@@ -24,7 +24,7 @@ module OASISGettext = struct
 end
 
 module OASISExpr = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExpr.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExpr.ml" *)
 
 
 
@@ -116,7 +116,7 @@ end
 
 # 117 "myocamlbuild.ml"
 module BaseEnvLight = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnvLight.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnvLight.ml" 
*)
 
   module MapString = Map.Make(String)
 
@@ -214,7 +214,7 @@ end
 
 # 215 "myocamlbuild.ml"
 module MyOCamlbuildFindlib = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildFindlib.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildFindlib.ml"
 *)
 
   (** OCamlbuild extension, copied from 
     * http://brion.inria.fr/gallium/index.php/Using_ocamlfind_with_ocamlbuild
@@ -323,7 +323,7 @@ module MyOCamlbuildFindlib = struct
 end
 
 module MyOCamlbuildBase = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildBase.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildBase.ml"
 *)
 
   (** Base functions for writing myocamlbuild.ml
       @author Sylvain Le Gall
@@ -339,7 +339,7 @@ module MyOCamlbuildBase = struct
   type name = string 
   type tag = string 
 
-# 56 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildBase.ml"
+(* # 56 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildBase.ml"
 *)
 
   type t =
       {
diff --git a/setup.ml b/setup.ml
index 595c5d1..3c8ad3f 100644
--- a/setup.ml
+++ b/setup.ml
@@ -1,14 +1,14 @@
 (* setup.ml generated for the first time by OASIS v0.3.0 *)
 
 (* OASIS_START *)
-(* DO NOT EDIT (digest: d4734f495392b555e2cc8dc3c74dca93) *)
+(* DO NOT EDIT (digest: 90d2519ca831cf1fa39beacadfd8b1c1) *)
 (*
    Regenerated by OASIS v0.3.0
    Visit http://oasis.forge.ocamlcore.org for more information and
    documentation about functions used in this file.
 *)
 module OASISGettext = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISGettext.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISGettext.ml" *)
 
   let ns_ str =
     str
@@ -31,7 +31,7 @@ module OASISGettext = struct
 end
 
 module OASISContext = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISContext.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISContext.ml" *)
 
   open OASISGettext
 
@@ -92,7 +92,7 @@ module OASISContext = struct
 end
 
 module OASISString = struct
-# 1 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISString.ml"
+(* # 1 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISString.ml" 
*)
 
 
 
@@ -217,7 +217,7 @@ module OASISString = struct
 end
 
 module OASISUtils = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISUtils.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISUtils.ml" 
*)
 
   open OASISGettext
 
@@ -312,7 +312,7 @@ module OASISUtils = struct
 end
 
 module PropList = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/PropList.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/PropList.ml" *)
 
   open OASISGettext
 
@@ -352,7 +352,7 @@ module PropList = struct
     let clear t =
       Hashtbl.clear t
 
-# 71 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/PropList.ml"
+(* # 71 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/PropList.ml" *)
   end
 
   module Schema =
@@ -593,7 +593,7 @@ module PropList = struct
 end
 
 module OASISMessage = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISMessage.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISMessage.ml" *)
 
 
   open OASISGettext
@@ -632,7 +632,7 @@ module OASISMessage = struct
 end
 
 module OASISVersion = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISVersion.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISVersion.ml" *)
 
   open OASISGettext
 
@@ -811,7 +811,7 @@ module OASISVersion = struct
 end
 
 module OASISLicense = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISLicense.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISLicense.ml" *)
 
   (** License for _oasis fields
       @author Sylvain Le Gall
@@ -851,7 +851,7 @@ module OASISLicense = struct
 end
 
 module OASISExpr = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExpr.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExpr.ml" *)
 
 
 
@@ -941,7 +941,7 @@ module OASISExpr = struct
 end
 
 module OASISTypes = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISTypes.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISTypes.ml" 
*)
 
 
 
@@ -1018,7 +1018,7 @@ module OASISTypes = struct
 
   type plugin_data = (all_plugin * plugin_data_purpose * (unit -> unit)) list
 
-# 102 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISTypes.ml"
+(* # 102 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISTypes.ml" 
*)
 
   type 'a conditional = 'a OASISExpr.choices 
 
@@ -1176,7 +1176,7 @@ module OASISTypes = struct
 end
 
 module OASISUnixPath = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISUnixPath.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISUnixPath.ml" *)
 
   type unix_filename = string
   type unix_dirname = string
@@ -1260,7 +1260,7 @@ module OASISUnixPath = struct
 end
 
 module OASISHostPath = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISHostPath.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISHostPath.ml" *)
 
 
   open Filename
@@ -1293,7 +1293,7 @@ module OASISHostPath = struct
 end
 
 module OASISSection = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISSection.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISSection.ml" *)
 
   open OASISTypes
 
@@ -1372,12 +1372,12 @@ module OASISSection = struct
 end
 
 module OASISBuildSection = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISBuildSection.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISBuildSection.ml" *)
 
 end
 
 module OASISExecutable = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExecutable.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExecutable.ml" *)
 
   open OASISTypes
 
@@ -1408,7 +1408,7 @@ module OASISExecutable = struct
 end
 
 module OASISLibrary = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISLibrary.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISLibrary.ml" *)
 
   open OASISTypes
   open OASISUtils
@@ -1841,32 +1841,32 @@ module OASISLibrary = struct
 end
 
 module OASISFlag = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISFlag.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISFlag.ml" *)
 
 end
 
 module OASISPackage = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISPackage.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISPackage.ml" *)
 
 end
 
 module OASISSourceRepository = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISSourceRepository.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISSourceRepository.ml"
 *)
 
 end
 
 module OASISTest = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISTest.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISTest.ml" *)
 
 end
 
 module OASISDocument = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISDocument.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISDocument.ml" *)
 
 end
 
 module OASISExec = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExec.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExec.ml" *)
 
   open OASISGettext
   open OASISUtils
@@ -1944,7 +1944,7 @@ module OASISExec = struct
 end
 
 module OASISFileUtil = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISFileUtil.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISFileUtil.ml" *)
 
   open OASISGettext
 
@@ -2141,7 +2141,7 @@ end
 
 # 2142 "setup.ml"
 module BaseEnvLight = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnvLight.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnvLight.ml" 
*)
 
   module MapString = Map.Make(String)
 
@@ -2239,7 +2239,7 @@ end
 
 # 2240 "setup.ml"
 module BaseContext = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseContext.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseContext.ml" 
*)
 
   open OASISContext
 
@@ -2250,7 +2250,7 @@ module BaseContext = struct
 end
 
 module BaseMessage = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseMessage.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseMessage.ml" 
*)
 
   (** Message to user, overrid for Base
       @author Sylvain Le Gall
@@ -2269,7 +2269,7 @@ module BaseMessage = struct
 end
 
 module BaseEnv = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnv.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnv.ml" *)
 
   open OASISGettext
   open OASISUtils
@@ -2729,7 +2729,7 @@ module BaseEnv = struct
 end
 
 module BaseArgExt = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseArgExt.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseArgExt.ml" *)
 
   open OASISUtils
   open OASISGettext
@@ -2757,7 +2757,7 @@ module BaseArgExt = struct
 end
 
 module BaseCheck = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseCheck.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseCheck.ml" *)
 
   open BaseEnv
   open BaseMessage
@@ -2883,7 +2883,7 @@ module BaseCheck = struct
 end
 
 module BaseOCamlcConfig = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseOCamlcConfig.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseOCamlcConfig.ml" *)
 
 
   open BaseEnv
@@ -2999,7 +2999,7 @@ module BaseOCamlcConfig = struct
 end
 
 module BaseStandardVar = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseStandardVar.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseStandardVar.ml" *)
 
 
   open OASISGettext
@@ -3363,7 +3363,7 @@ module BaseStandardVar = struct
 end
 
 module BaseFileAB = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseFileAB.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseFileAB.ml" *)
 
   open BaseEnv
   open OASISGettext
@@ -3411,7 +3411,7 @@ module BaseFileAB = struct
 end
 
 module BaseLog = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseLog.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseLog.ml" *)
 
   open OASISUtils
 
@@ -3530,7 +3530,7 @@ module BaseLog = struct
 end
 
 module BaseBuilt = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseBuilt.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseBuilt.ml" *)
 
   open OASISTypes
   open OASISGettext
@@ -3677,7 +3677,7 @@ module BaseBuilt = struct
 end
 
 module BaseCustom = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseCustom.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseCustom.ml" *)
 
   open BaseEnv
   open BaseMessage
@@ -3727,7 +3727,7 @@ module BaseCustom = struct
 end
 
 module BaseDynVar = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseDynVar.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseDynVar.ml" *)
 
 
   open OASISTypes
@@ -3774,7 +3774,7 @@ module BaseDynVar = struct
 end
 
 module BaseTest = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseTest.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseTest.ml" *)
 
   open BaseEnv
   open BaseMessage
@@ -3864,7 +3864,7 @@ module BaseTest = struct
 end
 
 module BaseDoc = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseDoc.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseDoc.ml" *)
 
   open BaseEnv
   open BaseMessage
@@ -3899,7 +3899,7 @@ module BaseDoc = struct
 end
 
 module BaseSetup = struct
-# 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseSetup.ml"
+(* # 21 "/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseSetup.ml" *)
 
   open BaseEnv
   open BaseMessage
@@ -4479,7 +4479,7 @@ end
 
 # 4480 "setup.ml"
 module InternalConfigurePlugin = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/internal/InternalConfigurePlugin.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/internal/InternalConfigurePlugin.ml"
 *)
 
   (** Configure using internal scheme
       @author Sylvain Le Gall
@@ -4721,7 +4721,7 @@ module InternalConfigurePlugin = struct
 end
 
 module InternalInstallPlugin = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/internal/InternalInstallPlugin.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/internal/InternalInstallPlugin.ml"
 *)
 
   (** Install using internal scheme
       @author Sylvain Le Gall
@@ -5232,7 +5232,7 @@ end
 
 # 5233 "setup.ml"
 module OCamlbuildCommon = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/OCamlbuildCommon.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/OCamlbuildCommon.ml"
 *)
 
   (** Functions common to OCamlbuild build and doc plugin
     *)
@@ -5334,7 +5334,7 @@ module OCamlbuildCommon = struct
 end
 
 module OCamlbuildPlugin = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/OCamlbuildPlugin.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/OCamlbuildPlugin.ml"
 *)
 
   (** Build using ocamlbuild
       @author Sylvain Le Gall
@@ -5507,7 +5507,7 @@ module OCamlbuildPlugin = struct
 end
 
 module OCamlbuildDocPlugin = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/OCamlbuildDocPlugin.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/OCamlbuildDocPlugin.ml"
 *)
 
   (* Create documentation using ocamlbuild .odocl files
      @author Sylvain Le Gall
@@ -5557,7 +5557,7 @@ end
 
 # 5558 "setup.ml"
 module CustomPlugin = struct
-# 21 
"/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/custom/CustomPlugin.ml"
+(* # 21 
"/home/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/custom/CustomPlugin.ml"
 *)
 
   (** Generate custom configure/build/doc/test/install system
       @author
@@ -5840,7 +5840,7 @@ let setup_t =
           ocaml_version = Some (OASISVersion.VGreaterEqual "3.12");
           findlib_version = Some (OASISVersion.VGreaterEqual "1.3.1");
           name = "sqlite3-ocaml";
-          version = "2.0.3";
+          version = "2.0.4";
           license =
             OASISLicense.DEP5License
               (OASISLicense.DEP5Unit
@@ -6309,7 +6309,7 @@ let setup_t =
           };
      oasis_fn = Some "_oasis";
      oasis_version = "0.3.0";
-     oasis_digest = Some "t�\159~\r���?�\002W�\147�\146";
+     oasis_digest = Some "\011s\019\227\137\253!\247\153\137~\213+x<\000";
      oasis_exec = None;
      oasis_setup_args = [];
      setup_update = false;

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

Reply via email to