Skip to content

2 packages from ocsigen/lwt at 6.0.0~alpha01 #28222

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
69 changes: 69 additions & 0 deletions packages/lwt/lwt.6.0.0~alpha01/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Promises and event-driven I/O"
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.
"""
maintainer: [
"Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>"
]
authors: ["Jérôme Vouillon" "Jérémie Dimino"]
license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.14"}
"domain_shims"
"cppo" {build & >= "1.1.0"}
"ocamlfind" {dev & >= "1.7.3-1"}
"odoc" {with-doc & >= "2.3.0"}
"bisect_ppx" {with-test}
"dune-configurator"
"ocplib-endian"
]
depopts: ["base-threads" "base-unix" "conf-libev"]
dev-repo: "git+https://github.com/ocsigen/lwt.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"exec"
"-p"
name
"src/unix/config/discover.exe"
"--"
"--save"
"--use-libev" "%{conf-libev:installed}%"
]
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
x-maintenance-intent:[ "(latest)" ]
available: opam-version >= "2.1.0"
flags: avoid-version
url {
src:
"https://github.com/ocsigen/lwt/archive/refs/tags/6.0.0-alpha01.tar.gz"
checksum: [
"md5=33a91da42f38f86555d633bf847fdb19"
"sha512=1c6c5784d0cdbdd265ef71d3b64dd16f5d5ec68d98227154d6301d15fde7d16e273d83819028747762fb4ba3c3ae8833ce308e581b6be8447f8775982c9f6be9"
]
}
44 changes: 44 additions & 0 deletions packages/lwt_direct/lwt_direct.6.0.0~alpha01/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Direct-style control-flow and `await` for Lwt"
maintainer: [
"Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>"
]
authors: ["Simon Cruanes"]
license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "5.0"}
"base-unix"
"lwt" {>= "6"}
"bisect_ppx" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocsigen/lwt.git"
available: opam-version >= "2.1.0"
flags: avoid-version
url {
src:
"https://github.com/ocsigen/lwt/archive/refs/tags/6.0.0-alpha01.tar.gz"
checksum: [
"md5=33a91da42f38f86555d633bf847fdb19"
"sha512=1c6c5784d0cdbdd265ef71d3b64dd16f5d5ec68d98227154d6301d15fde7d16e273d83819028747762fb4ba3c3ae8833ce308e581b6be8447f8775982c9f6be9"
]
}
2 changes: 1 addition & 1 deletion packages/lwt_log/lwt_log.1.1.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dev-repo: "git+https://github.com/aantron/lwt_log.git"
depends: [
"ocaml" {< "5.0"}
"jbuilder" {>= "1.0+beta10"}
"lwt" {>= "4.0.0"}
"lwt" {>= "4.0.0" & < "6"}
]
build: [
["jbuilder" "build" "-p" name "-j" jobs]
Expand Down
2 changes: 1 addition & 1 deletion packages/lwt_log/lwt_log.1.1.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dev-repo: "git+https://github.com/ocsigen/lwt_log.git"
depends: [
"ocaml" {< "5.0"}
"dune" {>= "1.0"}
"lwt" {>= "4.0.0"}
"lwt" {>= "4.0.0" & < "6"}
]

build: [
Expand Down
2 changes: 1 addition & 1 deletion packages/lwt_log/lwt_log.1.1.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dev-repo: "git+https://github.com/ocsigen/lwt_log.git"
depends: [
"dune" {>= "1.0"}
"lwt" {>= "4.0.0"}
"ocaml" {>= "4.03"}
"ocaml" {>= "4.03" & < "6"}
]

build: [
Expand Down