Skip to content

Commit

Permalink
remove extlib from deps
Browse files Browse the repository at this point in the history
  • Loading branch information
little-arhat committed Apr 2, 2011
1 parent 8138df9 commit 41c9230
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions _oasis
Expand Up @@ -13,14 +13,14 @@ Library cobson
BuildTools: ocamlbuild
Modules: Bson
InternalModules: Util, Binary
BuildDepends: extlib, calendar, camlp4
BuildDepends: calendar, camlp4

Executable test
Path: tests/
Install: false
CompiledObject: best
MainIs: test.ml
BuildDepends: extlib, calendar
BuildDepends: calendar

SourceRepository github
Type: git
Expand Down
9 changes: 6 additions & 3 deletions _tags
@@ -1,11 +1,14 @@
# OASIS_START
# DO NOT EDIT (digest: 12f7c36a78ae3ec255a47b60fba2d3b8)
# Executable test
<tests/test.{native,byte}>: pkg_unix
<tests/*.ml{,i}>: pkg_unix
<tests/test.{native,byte}>: pkg_calendar
<tests/*.ml{,i}>: pkg_calendar
# Library cobson
"src": include
<src/*.ml{,i}>: pkg_extlib
<src/cobson.{cma,cmxa}>: oasis_library_cobson_byte
<src/*.ml{,i}>: oasis_library_cobson_byte
<src/cobson.{cma,cmxa}>: oasis_library_cobson_native
<src/*.ml{,i}>: oasis_library_cobson_native
<src/*.ml{,i}>: pkg_camlp4
<src/*.ml{,i}>: pkg_calendar
# OASIS_STOP
Expand Down
4 changes: 2 additions & 2 deletions src/META
@@ -1,8 +1,8 @@
# OASIS_START
# DO NOT EDIT (digest: 9db975c3c4b1adec216570616bd057e6)
# DO NOT EDIT (digest: 3826b0448015685996f18135698ab0e8)
version = "0.0.1"
description = "BSON codec for OCaml"
requires = "extlib calendar camlp4"
requires = "calendar camlp4"
archive(byte) = "cobson.cma"
archive(native) = "cobson.cmxa"
exists_if = "cobson.cma"
Expand Down
5 changes: 2 additions & 3 deletions src/bson.ml
Expand Up @@ -31,9 +31,8 @@ type element =
| Int64 of int64
| Minkey
| Maxkey
and cstring = UTF8.t
and string = UTF8.t
and objectid = UTF8.t
and cstring = string
and objectid = string
and binary =
| Generic of string
| Function of string
Expand Down
5 changes: 2 additions & 3 deletions src/bson.mli
Expand Up @@ -21,9 +21,8 @@ type element =
| Int64 of int64
| Minkey
| Maxkey
and cstring = UTF8.t
and string = UTF8.t
and objectid = UTF8.t
and cstring = string
and objectid = string
and binary =
| Generic of string
| Function of string
Expand Down

0 comments on commit 41c9230

Please sign in to comment.