-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 #22353 from mseri/release-http-v6.0.0_alpha0
[new release] http, cohttp, cohttp-top, cohttp-server-lwt-unix, cohttp-mirage, cohttp-lwt, cohttp-lwt-unix, cohttp-lwt-jsoo, cohttp-eio, cohttp-curl, cohttp-curl-lwt, cohttp-curl-async and cohttp-async (6.0.0~alpha0)
- Loading branch information
Showing
13 changed files
with
854 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,76 @@ | ||
opam-version: "2.0" | ||
synopsis: "CoHTTP implementation for the Async concurrency library" | ||
description: """ | ||
An implementation of an HTTP client and server using the Async | ||
concurrency library. See the `Cohttp_async` module for information | ||
on how to use this. The package also installs `cohttp-curl-async` | ||
and a `cohttp-server-async` binaries for quick uses of a HTTP(S) | ||
client and server respectively. | ||
""" | ||
maintainer: ["Anil Madhavapeddy <[email protected]>"] | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Stefano Zacchiroli" | ||
"David Sheets" | ||
"Thomas Gazagnaire" | ||
"David Scott" | ||
"Rudi Grinberg" | ||
"Andy Ray" | ||
"Anurag Soni" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-cohttp" | ||
doc: "https://mirage.github.io/ocaml-cohttp/" | ||
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml" {>= "4.08"} | ||
"http" {= version} | ||
"cohttp" {= version} | ||
"async_kernel" {>= "v0.14.0"} | ||
"async_unix" {>= "v0.14.0"} | ||
"async" {>= "v0.14.0"} | ||
"base" {>= "v0.11.0"} | ||
"core" {with-test} | ||
"core_unix" {>= "v0.14.0"} | ||
"conduit-async" {>= "1.2.0"} | ||
"magic-mime" | ||
"mirage-crypto" {with-test} | ||
"logs" | ||
"fmt" {>= "0.8.2"} | ||
"sexplib0" | ||
"ppx_sexp_conv" {>= "v0.13.0"} | ||
"ounit" {with-test} | ||
"uri" {>= "2.0.0"} | ||
"uri-sexp" | ||
"ipaddr" | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@cohttp-async/runtest" {with-test & os != "macos"} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
available: opam-version >= "2.1.0" & arch != "s390x" | ||
flags: [ avoid-version ] | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" | ||
checksum: [ | ||
"sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" | ||
"sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" | ||
] | ||
} | ||
x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089" |
65 changes: 65 additions & 0 deletions
65
packages/cohttp-curl-async/cohttp-curl-async.6.0.0~alpha0/opam
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,65 @@ | ||
opam-version: "2.0" | ||
synopsis: "Cohttp client using Curl & Async as the backend" | ||
description: """ | ||
An HTTP client that relies on Curl + Async for the backend. Does not require | ||
conduit for SSL.""" | ||
maintainer: ["Anil Madhavapeddy <[email protected]>"] | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Stefano Zacchiroli" | ||
"David Sheets" | ||
"Thomas Gazagnaire" | ||
"David Scott" | ||
"Rudi Grinberg" | ||
"Andy Ray" | ||
"Anurag Soni" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-cohttp" | ||
doc: "https://mirage.github.io/ocaml-cohttp/" | ||
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocurl" | ||
"http" {= version} | ||
"stringext" | ||
"cohttp-curl" {= version} | ||
"core" | ||
"core_unix" {>= "v0.14.0"} | ||
"async_kernel" | ||
"async_unix" | ||
"cohttp-async" {with-test & =version} | ||
"uri" {with-test & >= "4.2.0"} | ||
"fmt" {with-test} | ||
"ounit" {with-test} | ||
"alcotest" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@cohttp-curl-async/runtest" {with-test & os != "macos"} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
available: opam-version >= "2.1.0" | ||
flags: [ avoid-version ] | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" | ||
checksum: [ | ||
"sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" | ||
"sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" | ||
] | ||
} | ||
x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089" |
65 changes: 65 additions & 0 deletions
65
packages/cohttp-curl-lwt/cohttp-curl-lwt.6.0.0~alpha0/opam
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,65 @@ | ||
opam-version: "2.0" | ||
synopsis: "Cohttp client using Curl & Lwt as the backend" | ||
description: """ | ||
An HTTP client that relies on Curl + Lwt for the backend. Does not require | ||
conduit for SSL.""" | ||
maintainer: ["Anil Madhavapeddy <[email protected]>"] | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Stefano Zacchiroli" | ||
"David Sheets" | ||
"Thomas Gazagnaire" | ||
"David Scott" | ||
"Rudi Grinberg" | ||
"Andy Ray" | ||
"Anurag Soni" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-cohttp" | ||
doc: "https://mirage.github.io/ocaml-cohttp/" | ||
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml" {>= "4.08"} | ||
"ocurl" | ||
"http" {= version} | ||
"cohttp-curl" {= version} | ||
"stringext" | ||
"lwt" {>= "5.3.0"} | ||
"uri" {with-test & >= "4.2.0"} | ||
"alcotest" {with-test} | ||
"cohttp-lwt-unix" {with-test & =version} | ||
"cohttp" {with-test & =version} | ||
"cohttp-lwt" {with-test & =version} | ||
"conduit-lwt" {with-test} | ||
"ounit" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@cohttp-curl-lwt/runtest" {with-test & os != "macos"} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
available: opam-version >= "2.1.0" | ||
flags: [ avoid-version ] | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" | ||
checksum: [ | ||
"sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" | ||
"sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" | ||
] | ||
} | ||
x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089" |
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,54 @@ | ||
opam-version: "2.0" | ||
synopsis: "Shared code between the individual cohttp-curl clients" | ||
description: "Use cohttp-curl-lwt or cohttp-curl-async" | ||
maintainer: ["Anil Madhavapeddy <[email protected]>"] | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Stefano Zacchiroli" | ||
"David Sheets" | ||
"Thomas Gazagnaire" | ||
"David Scott" | ||
"Rudi Grinberg" | ||
"Andy Ray" | ||
"Anurag Soni" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-cohttp" | ||
doc: "https://mirage.github.io/ocaml-cohttp/" | ||
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml" {>= "4.08"} | ||
"ocurl" | ||
"http" {= version} | ||
"stringext" | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@cohttp-curl/runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
available: opam-version >= "2.1.0" | ||
flags: [ avoid-version ] | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" | ||
checksum: [ | ||
"sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" | ||
"sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" | ||
] | ||
} | ||
x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089" |
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,58 @@ | ||
opam-version: "2.0" | ||
synopsis: "CoHTTP implementation with eio backend" | ||
description: | ||
"A CoHTTP server and client implementation based on `eio` library. `cohttp-eio`features a multicore capable HTTP 1.1 server. The library promotes and is built with direct style of coding as opposed to a monadic." | ||
maintainer: ["Anil Madhavapeddy <[email protected]>"] | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Stefano Zacchiroli" | ||
"David Sheets" | ||
"Thomas Gazagnaire" | ||
"David Scott" | ||
"Rudi Grinberg" | ||
"Andy Ray" | ||
"Anurag Soni" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-cohttp" | ||
doc: "https://mirage.github.io/ocaml-cohttp/" | ||
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"base-domains" | ||
"eio" {>= "0.6"} | ||
"eio_main" {with-test} | ||
"mdx" {with-test} | ||
"uri" {with-test} | ||
"fmt" | ||
"http" {= version} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@cohttp-eio/runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
available: opam-version >= "2.1.0" | ||
flags: [ avoid-version ] | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" | ||
checksum: [ | ||
"sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" | ||
"sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" | ||
] | ||
} | ||
x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089" |
66 changes: 66 additions & 0 deletions
66
packages/cohttp-lwt-jsoo/cohttp-lwt-jsoo.6.0.0~alpha0/opam
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,66 @@ | ||
opam-version: "2.0" | ||
synopsis: "CoHTTP implementation for the Js_of_ocaml JavaScript compiler" | ||
description: """ | ||
An implementation of an HTTP client for JavaScript, but using the | ||
CoHTTP types. This lets you build HTTP clients that can compile | ||
natively (using one of the other Cohttp backends such as `cohttp-lwt-unix`) | ||
and also to native JavaScript via js_of_ocaml. | ||
""" | ||
maintainer: ["Anil Madhavapeddy <[email protected]>"] | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Stefano Zacchiroli" | ||
"David Sheets" | ||
"Thomas Gazagnaire" | ||
"David Scott" | ||
"Rudi Grinberg" | ||
"Andy Ray" | ||
"Anurag Soni" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-cohttp" | ||
doc: "https://mirage.github.io/ocaml-cohttp/" | ||
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml" {>= "4.08"} | ||
"http" {= version} | ||
"cohttp" {= version} | ||
"cohttp-lwt" {= version} | ||
"logs" | ||
"lwt" {>= "3.0.0"} | ||
"lwt_ppx" {with-test} | ||
"conf-npm" {with-test} | ||
"js_of_ocaml" {>= "3.3.0"} | ||
"js_of_ocaml-ppx" {>= "3.3.0"} | ||
"js_of_ocaml-lwt" {>= "3.5.0"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@cohttp-lwt-jsoo/runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
available: opam-version >= "2.1.0" | ||
flags: [ avoid-version ] | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" | ||
checksum: [ | ||
"sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" | ||
"sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" | ||
] | ||
} | ||
x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089" |
Oops, something went wrong.