Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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
2 changes: 1 addition & 1 deletion packages/curl_lwt/curl_lwt.0.10.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depends: [
"ocaml" {>= "4.11"}
"base-unix"
"curl" {= version}
"lwt"
"lwt" {<= "5.999"}
Copy link
Member

@mseri mseri Aug 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"lwt" {<= "5.999"}
"lwt" {<= "6~"}

This would prevent it and not force a 5 bound

"lwt_ppx" {with-dev-setup}
"odoc" {with-doc}
]
Expand Down
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 <[email protected]>" "Anton Bachin <[email protected]>"
]
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 <[email protected]>" "Anton Bachin <[email protected]>"
]
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" {= version}
"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_glib/lwt_glib.1.0.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ remove: [
depends: [
"ocaml" {< "5.0.0"}
"ocamlfind" {build}
"lwt" {>= "3.0.0"}
"lwt" {>= "3.0.0" & <= "5.999"}
"base-unix"
"conf-pkg-config" {build}
"conf-glib-2" {build}
Expand Down
2 changes: 1 addition & 1 deletion packages/lwt_glib/lwt_glib.1.1.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ depends: [
"conf-glib-2" {build}
"conf-pkg-config" {build}
"jbuilder" {>= "1.0+beta10"}
"lwt" {>= "3.0.0"}
"lwt" {>= "3.0.0" & <= "5.999"}
]
synopsis: "GLib integration for Lwt"
url {
Expand Down
2 changes: 1 addition & 1 deletion packages/lwt_glib/lwt_glib.1.1.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ depends: [
"conf-glib-2" {build}
"conf-pkg-config" {build}
"dune"
"lwt" {>= "3.0.0"}
"lwt" {>= "3.0.0" & <= "5.999"}
"ocaml"
]

Expand Down
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" & <= "5.999"}
]
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" & <= "5.999"}
]

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" & <= "5.999"}
]

build: [
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.7.6/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ depends: [
depopts: ["lwt"]
conflicts: [
"ocaml-option-bytecode-only"
"lwt" {> "5.999"}
]
patches: [ "examples.diff" ]
synopsis: "Bindings to libcurl"
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.7.7/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ depends: [
depopts: ["lwt"]
conflicts: [
"ocaml-option-bytecode-only"
"lwt" {> "5.999"}
]
patches: ["fix_depend.diff"]
synopsis: "Bindings to libcurl"
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.7.8/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ depends: [
depopts: ["lwt"]
conflicts: [
"ocaml-option-bytecode-only"
"lwt" {> "5.999"}
]
synopsis: "Bindings to libcurl"
description: """
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.7.9/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ depends: [
depopts: ["lwt"]
conflicts: [
"ocaml-option-bytecode-only"
"lwt" {> "5.999"}
]
synopsis: "Bindings to libcurl"
description: """
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.8.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ depends: [
depopts: ["lwt"]
conflicts: [
"lwt" {with-test & >= "5.0.0"}
"lwt" {> "5.999"}
"ocaml-option-bytecode-only"
]
synopsis: "Bindings to libcurl"
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.8.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ depends: [
depopts: ["lwt"]
conflicts: [
"lwt" {with-test & >= "5.0.0"}
"lwt" {> "5.999"}
"ocaml-option-bytecode-only"
]
synopsis: "Bindings to libcurl"
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.9.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ depends: [
depopts: ["lwt" "lwt_ppx"]
conflicts: [
"lwt" {with-test & >= "5.0.0"}
"lwt" {> "5.999"}
"ocaml-option-bytecode-only"
]
synopsis: "Bindings to libcurl"
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.9.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ depends: [
]
conflicts: [
"ocaml-option-bytecode-only"
"lwt" {> "5.999"}
]
depopts: ["lwt" "lwt_ppx"]
synopsis: "Bindings to libcurl"
Expand Down
1 change: 1 addition & 0 deletions packages/ocurl/ocurl.0.9.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ depends: [
depopts: ["lwt" "lwt_ppx"]
conflicts: [
"ocaml-option-bytecode-only"
"lwt" {> "5.999"}
]
synopsis: "Bindings to libcurl"
description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl), synchronous parallel and generic asynchronous API (Curl.Multi), and provides an Lwt-enabled asynchronous interface (Curl_lwt)."
Expand Down
Loading