Skip to content

Commit d596196

Browse files
authored
Merge pull request ocaml#22515 from c-cube/opam-publish-containers-containers-data-containers-thread.3.10
3 packages from c-cube/ocaml-containers at 3.10
2 parents d0f88d1 + 6d67e88 commit d596196

File tree

3 files changed

+109
-0
lines changed
  • packages
    • containers-data/containers-data.3.10
    • containers-thread/containers-thread.3.10
    • containers/containers.3.10

3 files changed

+109
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
synopsis: "A set of advanced datatypes for containers"
4+
license: "BSD-2-Clause"
5+
build: [
6+
["dune" "build" "-p" name "-j" jobs]
7+
["dune" "build" "@doc" "-p" name ] {with-doc}
8+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
9+
]
10+
depends: [
11+
"ocaml" { >= "4.03.0" }
12+
"dune" { >= "2.0" }
13+
"containers" { = version }
14+
"seq"
15+
(("ocaml" {with-test & < "4.08"} & "qcheck-core" {>= "0.17" & with-test})
16+
| ("ocaml" {with-test & >= "4.08"} & "qcheck-core" {>= "0.18" & with-test}))
17+
"iter" { with-test }
18+
"gen" { with-test }
19+
#"mdx" { with-test & >= "1.5.0" & < "2.0.0" }
20+
"odoc" { with-doc }
21+
]
22+
tags: [ "containers" "RAL" "functional" "vector" "okasaki" ]
23+
homepage: "https://github.com/c-cube/ocaml-containers/"
24+
doc: "https://c-cube.github.io/ocaml-containers"
25+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
26+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues/"
27+
authors: "Simon Cruanes"
28+
url {
29+
src: "https://github.com/c-cube/ocaml-containers/archive/v3.10.tar.gz"
30+
checksum: [
31+
"md5=050afc34c00ee0ffb1bf545c52d3880f"
32+
"sha512=ef4c9c27f6e535df070f2ee9e6357f6f9bf4a8a196e3f274bec00d931bbd775f939a7e8b144accc8c4568df6c25b820aaebad6e12b1d444bccb7c8f7b7989bf0"
33+
]
34+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
license: "BSD-2-Clause"
4+
synopsis: "An extension of containers for threading"
5+
build: [
6+
["dune" "build" "-p" name "-j" jobs]
7+
["dune" "build" "@doc" "-p" name ] {with-doc}
8+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
9+
]
10+
depends: [
11+
"ocaml" { >= "4.03.0" }
12+
"dune" { >= "2.0" }
13+
"base-threads"
14+
"dune-configurator"
15+
"containers" { = version }
16+
"iter" { with-test }
17+
(("ocaml" {with-test & < "4.08"} & "qcheck-core" {>= "0.17" & with-test})
18+
| ("ocaml" {with-test & >= "4.08"} & "qcheck-core" {>= "0.18" & with-test}))
19+
"uutf" { with-test }
20+
"odoc" { with-doc }
21+
]
22+
tags: [ "containers" "thread" "semaphore" "blocking queue" ]
23+
homepage: "https://github.com/c-cube/ocaml-containers/"
24+
doc: "https://c-cube.github.io/ocaml-containers"
25+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
26+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues/"
27+
authors: "Simon Cruanes"
28+
url {
29+
src: "https://github.com/c-cube/ocaml-containers/archive/v3.10.tar.gz"
30+
checksum: [
31+
"md5=050afc34c00ee0ffb1bf545c52d3880f"
32+
"sha512=ef4c9c27f6e535df070f2ee9e6357f6f9bf4a8a196e3f274bec00d931bbd775f939a7e8b144accc8c4568df6c25b820aaebad6e12b1d444bccb7c8f7b7989bf0"
33+
]
34+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
license: "BSD-2-Clause"
4+
synopsis: "A modular, clean and powerful extension of the OCaml standard library"
5+
build: [
6+
["dune" "build" "-p" name "-j" jobs]
7+
["dune" "build" "@doc" "-p" name ] {with-doc}
8+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
9+
]
10+
depends: [
11+
"ocaml" { >= "4.03.0" }
12+
"dune" { >= "2.0" }
13+
"dune-configurator"
14+
"seq" # compat
15+
"either" # compat
16+
(("ocaml" {with-test & < "4.08"} & "qcheck-core" {>= "0.17" & with-test})
17+
| ("ocaml" {with-test & >= "4.08"} & "qcheck-core" {>= "0.18" & with-test}))
18+
"yojson" { with-test }
19+
"iter" { with-test }
20+
"gen" { with-test }
21+
"csexp" { with-test }
22+
"uutf" { with-test }
23+
"odoc" { with-doc }
24+
]
25+
depopts: [
26+
"base-unix"
27+
"base-threads"
28+
]
29+
tags: [ "stdlib" "containers" "iterators" "list" "heap" "queue" ]
30+
homepage: "https://github.com/c-cube/ocaml-containers/"
31+
doc: "https://c-cube.github.io/ocaml-containers"
32+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
33+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues/"
34+
authors: "Simon Cruanes"
35+
url {
36+
src: "https://github.com/c-cube/ocaml-containers/archive/v3.10.tar.gz"
37+
checksum: [
38+
"md5=050afc34c00ee0ffb1bf545c52d3880f"
39+
"sha512=ef4c9c27f6e535df070f2ee9e6357f6f9bf4a8a196e3f274bec00d931bbd775f939a7e8b144accc8c4568df6c25b820aaebad6e12b1d444bccb7c8f7b7989bf0"
40+
]
41+
}

0 commit comments

Comments
 (0)