forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] containers (2 packages) (3.14)
CHANGES: - predicate combinators: `and_pred` and `or_pred` - feat `pp`: add a bunch of extensions - Kleisli Composition Operator and Apply_or for option/result/fun (c-cube/ocaml-containers#455) - add `CCByte_buffer.to_slice` - add a byte slice type `CCByte_slice` - add `cons_when` to `CCListLabels` - add `(|||>)` and `||>` to `CCFun` - `CCVector`: Add function foldi - add `containers.pvec`, a persistent vector type. - perf: use a monomorphic impl for `CCMonomorphic.{min,max}`
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
opam-version: "2.0" | ||
synopsis: "A set of advanced datatypes for containers" | ||
maintainer: ["c-cube"] | ||
authors: ["c-cube"] | ||
license: "BSD-2-Clause" | ||
tags: ["containers" "RAL" "function" "vector" "okasaki"] | ||
homepage: "https://github.com/c-cube/ocaml-containers/" | ||
bug-reports: "https://github.com/c-cube/ocaml-containers/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"ocaml" {>= "4.08"} | ||
"containers" {= version} | ||
"qcheck-core" {>= "0.18" & with-test} | ||
"iter" {with-test} | ||
"gen" {with-test} | ||
"mdx" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git" | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "build" "@doc" "-p" name ] {with-doc} | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"} | ||
] | ||
url { | ||
src: | ||
"https://github.com/c-cube/ocaml-containers/releases/download/v3.14/containers-3.14.tbz" | ||
checksum: [ | ||
"sha256=c94fba0c7c54349b7021c31f85120495197ddde438c574d48362ec669bf7e564" | ||
"sha512=b33588d9df66a858083616cc70cd82822cecc2dcec8902759e72648e5c41c887556da0a28317f388d34afe319309c20dd8baa7508d003dddff00e83869fad861" | ||
] | ||
} | ||
x-commit-hash: "6ab811f79b82eb691dc09955a96c7b8d3d9e8141" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
opam-version: "2.0" | ||
synopsis: | ||
"A modular, clean and powerful extension of the OCaml standard library" | ||
maintainer: ["c-cube"] | ||
authors: ["c-cube"] | ||
license: "BSD-2-Clause" | ||
tags: ["stdlib" "containers" "iterators" "list" "heap" "queue"] | ||
homepage: "https://github.com/c-cube/ocaml-containers/" | ||
bug-reports: "https://github.com/c-cube/ocaml-containers/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"ocaml" {>= "4.08"} | ||
"either" | ||
"dune-configurator" | ||
"qcheck-core" {>= "0.18" & with-test} | ||
"yojson" {with-test} | ||
"iter" {with-test} | ||
"gen" {with-test} | ||
"csexp" {with-test} | ||
"uutf" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
depopts: ["base-unix" "base-threads"] | ||
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git" | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "build" "@doc" "-p" name ] {with-doc} | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"} | ||
] | ||
url { | ||
src: | ||
"https://github.com/c-cube/ocaml-containers/releases/download/v3.14/containers-3.14.tbz" | ||
checksum: [ | ||
"sha256=c94fba0c7c54349b7021c31f85120495197ddde438c574d48362ec669bf7e564" | ||
"sha512=b33588d9df66a858083616cc70cd82822cecc2dcec8902759e72648e5c41c887556da0a28317f388d34afe319309c20dd8baa7508d003dddff00e83869fad861" | ||
] | ||
} | ||
x-commit-hash: "6ab811f79b82eb691dc09955a96c7b8d3d9e8141" |