re-generate oasis files; remove dep on oasis in opam

This commit is contained in:
Simon Cruanes 2016-03-09 10:13:30 +01:00
parent c16af69fb3
commit d541de5d03
10 changed files with 7763 additions and 52 deletions

View file

@ -1,5 +1,5 @@
# OASIS_START # OASIS_START
# DO NOT EDIT (digest: e5c366e1cd8e09a92eff04bbdc3ad4f9) # DO NOT EDIT (digest: 0670f1d87f40756af3f470a0fbb07a1b)
src/core/CCVector src/core/CCVector
src/core/CCPrint src/core/CCPrint
src/core/CCError src/core/CCError
@ -24,6 +24,7 @@ src/core/CCFormat
src/core/CCIO src/core/CCIO
src/core/CCInt64 src/core/CCInt64
src/core/CCChar src/core/CCChar
src/core/CCResult
src/core/Containers src/core/Containers
src/iter/CCKTree src/iter/CCKTree
src/iter/CCKList src/iter/CCKList
@ -58,10 +59,12 @@ src/string/CCApp_parse
src/string/CCParse src/string/CCParse
src/bigarray/CCBigstring src/bigarray/CCBigstring
src/bigarray/CCArray1 src/bigarray/CCArray1
src/threads/CCFuture src/threads/CCPool
src/threads/CCLock src/threads/CCLock
src/threads/CCSemaphore src/threads/CCSemaphore
src/threads/CCThread src/threads/CCThread
src/threads/CCBlockingQueue
src/threads/CCTimer
src/advanced/Containers_advanced src/advanced/Containers_advanced
src/advanced/CCLinq src/advanced/CCLinq
src/advanced/CCBatch src/advanced/CCBatch

1
opam
View file

@ -29,7 +29,6 @@ depends: [
"base-bytes" "base-bytes"
"result" "result"
"cppo" {build} "cppo" {build}
"oasis" {build}
"ocamlbuild" {build} "ocamlbuild" {build}
] ]
depopts: [ "sequence" "base-bigarray" "base-unix" "base-threads" ] depopts: [ "sequence" "base-bigarray" "base-unix" "base-threads" ]

7753
setup.ml

File diff suppressed because it is too large Load diff

View file

@ -1,15 +1,15 @@
# OASIS_START # OASIS_START
# DO NOT EDIT (digest: c783171c5b71c6a746d5d622c2f8b012) # DO NOT EDIT (digest: 6791ff3a69a4e02811e4c0d33830d0e7)
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "bytes" requires = "bytes result"
archive(byte) = "containers.cma" archive(byte) = "containers.cma"
archive(byte, plugin) = "containers.cma" archive(byte, plugin) = "containers.cma"
archive(native) = "containers.cmxa" archive(native) = "containers.cmxa"
archive(native, plugin) = "containers.cmxs" archive(native, plugin) = "containers.cmxs"
exists_if = "containers.cma" exists_if = "containers.cma"
package "unix" ( package "unix" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "bytes unix" requires = "bytes unix"
archive(byte) = "containers_unix.cma" archive(byte) = "containers_unix.cma"
@ -20,7 +20,7 @@ package "unix" (
) )
package "top" ( package "top" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = requires =
"compiler-libs.common containers containers.data containers.bigarray containers.string containers.unix containers.sexp containers.iter" "compiler-libs.common containers containers.data containers.bigarray containers.string containers.unix containers.sexp containers.iter"
@ -32,7 +32,7 @@ package "top" (
) )
package "thread" ( package "thread" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "containers threads" requires = "containers threads"
archive(byte) = "containers_thread.cma" archive(byte) = "containers_thread.cma"
@ -43,7 +43,7 @@ package "thread" (
) )
package "string" ( package "string" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "bytes" requires = "bytes"
archive(byte) = "containers_string.cma" archive(byte) = "containers_string.cma"
@ -54,7 +54,7 @@ package "string" (
) )
package "sexp" ( package "sexp" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "bytes" requires = "bytes"
archive(byte) = "containers_sexp.cma" archive(byte) = "containers_sexp.cma"
@ -65,7 +65,7 @@ package "sexp" (
) )
package "iter" ( package "iter" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
archive(byte) = "containers_iter.cma" archive(byte) = "containers_iter.cma"
archive(byte, plugin) = "containers_iter.cma" archive(byte, plugin) = "containers_iter.cma"
@ -75,7 +75,7 @@ package "iter" (
) )
package "io" ( package "io" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "bytes" requires = "bytes"
archive(byte) = "containers_io.cma" archive(byte) = "containers_io.cma"
@ -86,7 +86,7 @@ package "io" (
) )
package "data" ( package "data" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "bytes" requires = "bytes"
archive(byte) = "containers_data.cma" archive(byte) = "containers_data.cma"
@ -97,7 +97,7 @@ package "data" (
) )
package "bigarray" ( package "bigarray" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "containers bigarray bytes" requires = "containers bigarray bytes"
archive(byte) = "containers_bigarray.cma" archive(byte) = "containers_bigarray.cma"
@ -108,7 +108,7 @@ package "bigarray" (
) )
package "advanced" ( package "advanced" (
version = "0.15" version = "0.16"
description = "A modular standard library focused on data structures." description = "A modular standard library focused on data structures."
requires = "containers sequence" requires = "containers sequence"
archive(byte) = "containers_advanced.cma" archive(byte) = "containers_advanced.cma"

View file

@ -1,5 +1,5 @@
# OASIS_START # OASIS_START
# DO NOT EDIT (digest: be2123bb1eb73a2b66dfe501caffd4a2) # DO NOT EDIT (digest: bf6db1e8114e0b3136182bb22642e863)
CCVector CCVector
CCPrint CCPrint
CCError CCError
@ -24,5 +24,6 @@ CCFormat
CCIO CCIO
CCInt64 CCInt64
CCChar CCChar
CCResult
Containers Containers
# OASIS_STOP # OASIS_STOP

View file

@ -1,5 +1,5 @@
# OASIS_START # OASIS_START
# DO NOT EDIT (digest: be2123bb1eb73a2b66dfe501caffd4a2) # DO NOT EDIT (digest: bf6db1e8114e0b3136182bb22642e863)
CCVector CCVector
CCPrint CCPrint
CCError CCError
@ -24,5 +24,6 @@ CCFormat
CCIO CCIO
CCInt64 CCInt64
CCChar CCChar
CCResult
Containers Containers
# OASIS_STOP # OASIS_STOP

View file

@ -1,7 +1,9 @@
# OASIS_START # OASIS_START
# DO NOT EDIT (digest: 5a6b0b500f96e1bf483c59a5b5b8c034) # DO NOT EDIT (digest: 5cf3cd134d141ea5acafb464c2b3e927)
CCFuture CCPool
CCLock CCLock
CCSemaphore CCSemaphore
CCThread CCThread
CCBlockingQueue
CCTimer
# OASIS_STOP # OASIS_STOP

View file

@ -1,7 +1,9 @@
# OASIS_START # OASIS_START
# DO NOT EDIT (digest: 5a6b0b500f96e1bf483c59a5b5b8c034) # DO NOT EDIT (digest: 5cf3cd134d141ea5acafb464c2b3e927)
CCFuture CCPool
CCLock CCLock
CCSemaphore CCSemaphore
CCThread CCThread
CCBlockingQueue
CCTimer
# OASIS_STOP # OASIS_STOP

View file

@ -0,0 +1,4 @@
# OASIS_START
# DO NOT EDIT (digest: 06c9d81e0a532aa96d3f60ef4ed7045d)
Containers_top
# OASIS_STOP

View file

@ -0,0 +1,4 @@
# OASIS_START
# DO NOT EDIT (digest: 06c9d81e0a532aa96d3f60ef4ed7045d)
Containers_top
# OASIS_STOP