Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lwt 4.3.0 - concurrency library #14711

Merged
merged 3 commits into from
Aug 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions packages/lwt/lwt.4.3.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
opam-version: "2.0"

synopsis: "Promises and event-driven I/O"

version: "4.3.0"
license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/manual/"
bug-reports: "https://github.com/ocsigen/lwt/issues"

authors: [
"Jérôme Vouillon"
"Jérémie Dimino"
]
maintainer: [
"Anton Bachin <[email protected]>"
]
dev-repo: "git+https://github.com/ocsigen/lwt.git"

depends: [
"cppo" {build & >= "1.1.0"}
"dune" {>= "1.7.0"}
"mmap" {>= "1.1.0"} # mmap is needed as long as Lwt supports OCaml < 4.06.0.
"ocaml" {>= "4.02.0"}
"ocplib-endian"
"result" # result is needed as long as Lwt supports OCaml 4.02.
"seq" # seq is needed as long as Lwt supports OCaml < 4.07.0.

"bisect_ppx" {dev & >= "1.3.0"}
"ocamlfind" {dev & >= "1.7.3-1"}
]

depopts: [
"base-threads"
"base-unix"
"conf-libev"
]

conflicts: [
"ocaml-variants" {= "4.02.1+BER"}
]

post-messages: [
"Lwt 5.0.0 will make some breaking changes in November 2019. See
https://github.com/ocsigen/lwt/issues/584"
]

build: [
["dune" "build" "-p" name "-j" jobs]
]

description: "A promise is a value that may become determined in the future.

Lwt provides typed, composable promises. Promises that are resolved by I/O are
resolved by Lwt in parallel.

Meanwhile, OCaml code, including code creating and waiting on promises, runs in
a single thread by default. This reduces the need for locks or other
synchronization primitives. Code can be run in parallel on an opt-in basis."

url {
src: "https://github.com/ocsigen/lwt/archive/4.3.0.tar.gz"
checksum: "md5=1a72b5ae4245707c12656632a25fc18c"
}
34 changes: 34 additions & 0 deletions packages/lwt_ppx/lwt_ppx.1.2.3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
opam-version: "2.0"

synopsis: "PPX syntax for Lwt, providing something similar to async/await from JavaScript"

version: "1.2.3"
license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/api/Ppx_lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"

authors: [
"Gabriel Radanne"
]
maintainer: [
"Anton Bachin <[email protected]>"
]
dev-repo: "git+https://github.com/ocsigen/lwt.git"

depends: [
"dune"
"lwt"
"ocaml" {>= "4.02.0"}
"ocaml-migrate-parsetree" {>= "1.3.0"}
"ppx_tools_versioned" {>= "5.2.3"}
]

build: [
["dune" "build" "-p" name "-j" jobs]
]

url {
src: "https://github.com/ocsigen/lwt/archive/4.3.0.tar.gz"
checksum: "md5=1a72b5ae4245707c12656632a25fc18c"
}
33 changes: 33 additions & 0 deletions packages/lwt_react/lwt_react.1.1.3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
opam-version: "2.0"

synopsis: "Helpers for using React with Lwt"

version: "1.1.3"
license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/api/Lwt_react"
bug-reports: "https://github.com/ocsigen/lwt/issues"

authors: [
"Jérémie Dimino"
]
maintainer: [
"Anton Bachin <[email protected]>"
]
dev-repo: "git+https://github.com/ocsigen/lwt.git"

depends: [
"dune"
"lwt" {>= "3.0.0"}
"ocaml"
"react" {>= "1.0.0"}
]

build: [
["dune" "build" "-p" name "-j" jobs]
]

url {
src: "https://github.com/ocsigen/lwt/archive/4.3.0.tar.gz"
checksum: "md5=1a72b5ae4245707c12656632a25fc18c"
}
4 changes: 4 additions & 0 deletions packages/ocurl/ocurl.0.7.10/opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ depends: [
"ocaml"
"ocamlfind" {build}
"base-unix"
"base-unsafe-string"
"conf-libcurl"
]
depopts: ["lwt"]
conflicts: [
"lwt" {>= "4.0.0"}
]
synopsis: "Bindings to libcurl"
description: """
Client-side URL transfer library, supporting HTTP and a multitude of
Expand Down
3 changes: 3 additions & 0 deletions packages/ocurl/ocurl.0.8.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ depends: [
"conf-libcurl"
]
depopts: ["lwt"]
conflicts: [
"lwt" {>= "4.0.0"}
]
synopsis: "Bindings to libcurl"
description: """
Client-side URL transfer library, supporting HTTP and a multitude of
Expand Down