-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #629 from psafont/private/paus/yangtze
- Loading branch information
Showing
241 changed files
with
3,814 additions
and
3,503 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
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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: "Thomas Gazagnaire" | ||
homepage: "https://github.com/mirage/alcotest/" | ||
dev-repo: "git+https://github.com/mirage/alcotest.git" | ||
name: "alcotest-lwt" | ||
version: "0.8.5" | ||
synopsis: "Lwt-based helpers for Alcotest" | ||
maintainer: "[email protected]" | ||
authors: "Thomas Gazagnaire" | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/alcotest/" | ||
doc: "https://mirage.github.io/alcotest/" | ||
bug-reports: "https://github.com/mirage/alcotest/issues/" | ||
license: "ISC" | ||
doc: "https://mirage.github.io/alcotest/" | ||
|
||
depends: [ | ||
"dune" | ||
"ocaml" {>= "4.02.3"} | ||
"alcotest" {>= "0.8.0"} | ||
"lwt" | ||
"logs" | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
|
||
depends: [ | ||
"dune" {build} | ||
"ocaml" {>= "4.02.3"} | ||
"alcotest" | ||
"lwt" "logs" | ||
] | ||
|
||
synopsis: "Lwt-based helpers for Alcotest" | ||
dev-repo: "git+https://github.com/mirage/alcotest.git" | ||
url { | ||
src: | ||
"https://github.com/mirage/alcotest/releases/download/0.8.5/alcotest-0.8.5.tbz" | ||
|
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 |
---|---|---|
@@ -1,31 +1,8 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: "Thomas Gazagnaire" | ||
homepage: "https://github.com/mirage/alcotest/" | ||
dev-repo: "git+https://github.com/mirage/alcotest.git" | ||
bug-reports: "https://github.com/mirage/alcotest/issues/" | ||
license: "ISC" | ||
doc: "https://mirage.github.io/alcotest/" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
|
||
depends: [ | ||
"dune" {build & >= "1.1.0"} | ||
"ocaml" {>= "4.02.3"} | ||
"fmt" {>= "0.8.0"} | ||
"astring" | ||
"result" | ||
"cmdliner" | ||
"uuidm" | ||
] | ||
|
||
name: "alcotest" | ||
version: "0.8.5" | ||
synopsis: "Alcotest is a lightweight and colourful test framework" | ||
|
||
description: """ | ||
description: """\ | ||
Alcotest exposes simple interface to perform unit tests. It exposes | ||
a simple TESTABLE module type, a check function to assert test | ||
predicates and a run function to perform a list of unit -> unit | ||
|
@@ -34,8 +11,28 @@ test callbacks. | |
Alcotest provides a quiet and colorful output where only faulty runs | ||
are fully displayed at the end of the run (with the full logs ready to | ||
inspect), with a simple (yet expressive) query language to select the | ||
tests to run. | ||
""" | ||
tests to run.""" | ||
maintainer: "[email protected]" | ||
authors: "Thomas Gazagnaire" | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/alcotest/" | ||
doc: "https://mirage.github.io/alcotest/" | ||
bug-reports: "https://github.com/mirage/alcotest/issues/" | ||
depends: [ | ||
"dune" {>= "1.1.0"} | ||
"ocaml" {>= "4.02.3"} | ||
"fmt" {>= "0.8.0"} | ||
"astring" | ||
"result" {< "1.5"} | ||
"cmdliner" | ||
"uuidm" | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/mirage/alcotest.git" | ||
url { | ||
src: | ||
"https://github.com/mirage/alcotest/releases/download/0.8.5/alcotest-0.8.5.tbz" | ||
|
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 |
---|---|---|
@@ -1,31 +1,33 @@ | ||
opam-version: "2.0" | ||
name: "angstrom" | ||
version: "0.12.1" | ||
synopsis: "Parser combinators built for speed and memory-efficiency" | ||
description: """\ | ||
Angstrom is a parser-combinator library that makes it easy to write efficient, | ||
expressive, and reusable parsers suitable for high-performance applications. It | ||
exposes monadic and applicative interfaces for composition, and supports | ||
incremental input through buffered and unbuffered interfaces. Both interfaces | ||
give the user total control over the blocking behavior of their application, | ||
with the unbuffered interface enabling zero-copy IO. Parsers are backtracking by | ||
default and support unbounded lookahead.""" | ||
maintainer: "Spiros Eliopoulos <[email protected]>" | ||
authors: [ "Spiros Eliopoulos <[email protected]>" ] | ||
license: "BSD-3-clause" | ||
authors: "Spiros Eliopoulos <[email protected]>" | ||
license: "BSD-3-Clause" | ||
homepage: "https://github.com/inhabitedtype/angstrom" | ||
bug-reports: "https://github.com/inhabitedtype/angstrom/issues" | ||
dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {>= "1.0"} | ||
"alcotest" {with-test & >= "0.8.1"} | ||
"bigstringaf" | ||
"result" | ||
] | ||
synopsis: "Parser combinators built for speed and memory-efficiency" | ||
description: """ | ||
Angstrom is a parser-combinator library that makes it easy to write efficient, | ||
expressive, and reusable parsers suitable for high-performance applications. It | ||
exposes monadic and applicative interfaces for composition, and supports | ||
incremental input through buffered and unbuffered interfaces. Both interfaces | ||
give the user total control over the blocking behavior of their application, | ||
with the unbuffered interface enabling zero-copy IO. Parsers are backtracking by | ||
default and support unbounded lookahead.""" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" | ||
url { | ||
src: "https://github.com/inhabitedtype/angstrom/archive/0.12.1.tar.gz" | ||
checksum: "md5=b253d5bf5468a19408689523458cfe81" | ||
|
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 |
---|---|---|
@@ -1,33 +1,36 @@ | ||
opam-version: "2.0" | ||
authors: "David Kaloper Meršinjak" | ||
name: "asn1-combinators" | ||
version: "0.2.2" | ||
synopsis: "Embed typed ASN.1 grammars in OCaml" | ||
description: """\ | ||
asn1-combinators is a library for expressing ASN.1 in OCaml. Skip the notation | ||
part of ASN.1, and embed the abstract syntax directly in the language. These | ||
abstract syntax representations can be used for parsing, serialization, or | ||
random testing. | ||
|
||
The only ASN.1 encodings currently supported are BER and DER.""" | ||
maintainer: "David Kaloper Meršinjak <[email protected]>" | ||
authors: "David Kaloper Meršinjak" | ||
license: "ISC" | ||
homepage: "https://github.com/mirleft/ocaml-asn1-combinators" | ||
doc: "https://mirleft.github.io/ocaml-asn1-combinators/doc" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirleft/ocaml-asn1-combinators.git" | ||
bug-reports: "https://github.com/mirleft/ocaml-asn1-combinators/issues" | ||
synopsis: "Embed typed ASN.1 grammars in OCaml" | ||
build: [ ["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs ] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} ] | ||
depends: [ | ||
"ocaml" {>="4.05.0"} | ||
"ocaml" {>= "4.05.0" & < "4.12.0"} | ||
"dune" {>= "1.2.0"} | ||
"cstruct" {>= "1.6.0"} | ||
"cstruct" {>= "1.6.0" & < "6.0.0"} | ||
"zarith" | ||
"bigarray-compat" | ||
"stdlib-shims" | ||
"ptime" | ||
"ptime" {< "0.8.6"} | ||
"alcotest" {with-test} | ||
] | ||
description: """ | ||
asn1-combinators is a library for expressing ASN.1 in OCaml. Skip the notation | ||
part of ASN.1, and embed the abstract syntax directly in the language. These | ||
abstract syntax representations can be used for parsing, serialization, or | ||
random testing. | ||
|
||
The only ASN.1 encodings currently supported are BER and DER. | ||
""" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/mirleft/ocaml-asn1-combinators.git" | ||
url { | ||
src: | ||
"https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v0.2.2/asn1-combinators-v0.2.2.tbz" | ||
|
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 |
---|---|---|
@@ -1,24 +1,8 @@ | ||
opam-version: "2.0" | ||
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>" | ||
authors: ["Daniel Bünzli <daniel.buenzl [email protected]>"] | ||
homepage: "http://erratique.ch/software/astring" | ||
doc: "http://erratique.ch/software/astring/doc" | ||
dev-repo: "git+http://erratique.ch/repos/astring.git" | ||
bug-reports: "https://github.com/dbuenzli/astring/issues" | ||
tags: [ "string" "org:erratique" ] | ||
license: "ISC" | ||
depends: [ | ||
"ocaml" {>= "4.01.0"} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build} | ||
"base-bytes" | ||
] | ||
build: [[ | ||
"ocaml" "pkg/pkg.ml" "build" | ||
"--pinned" "%{pinned}%" ]] | ||
name: "astring" | ||
version: "0.8.3" | ||
synopsis: "Alternative String module for OCaml" | ||
description: """ | ||
description: """\ | ||
Astring exposes an alternative `String` module for OCaml. This module | ||
tries to balance minimality and expressiveness for basic, index-free, | ||
string processing and provides types and functions for substrings, | ||
|
@@ -32,6 +16,22 @@ newfound string immutability. | |
|
||
Astring depends only on the OCaml standard library. It is distributed | ||
under the ISC license.""" | ||
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>" | ||
authors: "Daniel Bünzli <daniel.buenzl [email protected]>" | ||
license: "ISC" | ||
tags: ["string" "org:erratique"] | ||
homepage: "http://erratique.ch/software/astring" | ||
doc: "http://erratique.ch/software/astring/doc" | ||
bug-reports: "https://github.com/dbuenzli/astring/issues" | ||
depends: [ | ||
"ocaml" {>= "4.01.0" & < "4.12.0"} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build} | ||
"base-bytes" | ||
] | ||
build: ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] | ||
dev-repo: "git+http://erratique.ch/repos/astring.git" | ||
url { | ||
src: "http://erratique.ch/software/astring/releases/astring-0.8.3.tbz" | ||
checksum: "md5=c5bf6352b9ac27fbeab342740f4fa870" | ||
|
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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
name: "async" | ||
version: "v0.14.0" | ||
synopsis: "Monadic concurrency library" | ||
description: """\ | ||
Part of Jane Street's Core library | ||
The Core suite of libraries is an industrial strength alternative to | ||
OCaml's standard library that was developed by Jane Street, the | ||
largest industrial user of OCaml.""" | ||
maintainer: "Jane Street developers" | ||
authors: "Jane Street Group, LLC" | ||
license: "MIT" | ||
homepage: "https://github.com/janestreet/async" | ||
bug-reports: "https://github.com/janestreet/async/issues" | ||
dev-repo: "git+https://github.com/janestreet/async.git" | ||
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async/index.html" | ||
license: "MIT" | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
bug-reports: "https://github.com/janestreet/async/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"async_kernel" {>= "v0.14" & < "v0.15"} | ||
"ocaml" {>= "4.08.0"} | ||
"async_kernel" {>= "v0.14" & < "v0.15"} | ||
"async_rpc_kernel" {>= "v0.14" & < "v0.15"} | ||
"async_unix" {>= "v0.14" & < "v0.15"} | ||
"core" {>= "v0.14" & < "v0.15"} | ||
"core_kernel" {>= "v0.14" & < "v0.15"} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"textutils" {>= "v0.14" & < "v0.15"} | ||
"dune" {>= "2.0.0"} | ||
"async_unix" {>= "v0.14" & < "v0.15"} | ||
"core" {>= "v0.14" & < "v0.15"} | ||
"core_kernel" {>= "v0.14" & < "v0.15"} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"textutils" {>= "v0.14" & < "v0.15"} | ||
"dune" {>= "2.0.0"} | ||
] | ||
synopsis: "Monadic concurrency library" | ||
description: " | ||
Part of Jane Street's Core library | ||
The Core suite of libraries is an industrial strength alternative to | ||
OCaml's standard library that was developed by Jane Street, the | ||
largest industrial user of OCaml. | ||
" | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
dev-repo: "git+https://github.com/janestreet/async.git" | ||
url { | ||
src: "https://ocaml.janestreet.com/ocaml-core/v0.14/files/async-v0.14.0.tar.gz" | ||
src: | ||
"https://ocaml.janestreet.com/ocaml-core/v0.14/files/async-v0.14.0.tar.gz" | ||
checksum: "md5=9f80cfb72e3defcc9fca50f67e23e93c" | ||
} |
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 |
---|---|---|
@@ -1,29 +1,30 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
name: "async_extra" | ||
version: "v0.14.0" | ||
synopsis: "Monadic concurrency library" | ||
description: """\ | ||
Part of Jane Street's Core library | ||
The Core suite of libraries is an industrial strength alternative to | ||
OCaml's standard library that was developed by Jane Street, the | ||
largest industrial user of OCaml.""" | ||
maintainer: "Jane Street developers" | ||
authors: "Jane Street Group, LLC" | ||
license: "MIT" | ||
homepage: "https://github.com/janestreet/async_extra" | ||
doc: | ||
"https://ocaml.janestreet.com/ocaml-core/latest/doc/async_extra/index.html" | ||
bug-reports: "https://github.com/janestreet/async_extra/issues" | ||
dev-repo: "git+https://github.com/janestreet/async_extra.git" | ||
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_extra/index.html" | ||
license: "MIT" | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"ocaml" {>= "4.08.0"} | ||
"async_kernel" {>= "v0.14" & < "v0.15"} | ||
"core_kernel" {>= "v0.14" & < "v0.15"} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"dune" {>= "2.0.0"} | ||
"core_kernel" {>= "v0.14" & < "v0.15"} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"dune" {>= "2.0.0"} | ||
] | ||
synopsis: "Monadic concurrency library" | ||
description: " | ||
Part of Jane Street's Core library | ||
The Core suite of libraries is an industrial strength alternative to | ||
OCaml's standard library that was developed by Jane Street, the | ||
largest industrial user of OCaml. | ||
" | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
dev-repo: "git+https://github.com/janestreet/async_extra.git" | ||
url { | ||
src: "https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_extra-v0.14.0.tar.gz" | ||
src: | ||
"https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_extra-v0.14.0.tar.gz" | ||
checksum: "md5=e645c6df8dff3da2e56205b3c95f920c" | ||
} |
Oops, something went wrong.