Skip to content

Commit a437139

Browse files
authored
Merge pull request #23864 from talex5/release-eio-v0.10
[new release] eio_windows, eio_posix, eio_main, eio_linux and eio (0.10)
2 parents 150139d + 43ab504 commit a437139

File tree

12 files changed

+234
-5
lines changed
  • packages
    • eio-ssl/eio-ssl.0.1.1
    • eio_linux/eio_linux.0.10
    • eio_main/eio_main.0.10
    • eio_posix/eio_posix.0.10
    • eio_windows/eio_windows.0.10
    • eio/eio.0.10
    • geojsone/geojsone.0.1.0
    • lwt_eio/lwt_eio.0.1
    • tls-eio
    • topojsone/topojsone.0.1.0

12 files changed

+234
-5
lines changed

packages/eio-ssl/eio-ssl.0.1.1/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ depends: [
1010
"ocaml" {>= "5.0"}
1111
"ssl" {>= "0.5.13"}
1212
"eio_main" {>= "0.7"}
13+
"eio" {<"0.10"}
1314
"odoc" {with-doc}
1415
]
1516
build: [

packages/eio/eio.0.10/opam

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
opam-version: "2.0"
2+
synopsis: "Effect-based direct-style IO API for OCaml"
3+
description: "An effect-based IO API for multicore OCaml with fibers."
4+
maintainer: ["[email protected]"]
5+
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/eio"
8+
doc: "https://ocaml-multicore.github.io/eio/"
9+
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+
depends: [
11+
"dune" {>= "3.7"}
12+
"ocaml" {>= "5.0.0"}
13+
"bigstringaf" {>= "0.9.0"}
14+
"cstruct" {>= "6.0.1"}
15+
"lwt-dllist"
16+
"optint" {>= "0.1.0"}
17+
"psq" {>= "0.2.0"}
18+
"fmt" {>= "0.8.9"}
19+
"hmap" {>= "0.8.1"}
20+
"domain-local-await" {>= "0.1.0"}
21+
"crowbar" {>= "0.2" & with-test}
22+
"mtime" {>= "2.0.0"}
23+
"mdx" {>= "2.2.0" & with-test}
24+
"alcotest" {>= "1.4.0" & with-test}
25+
"dscheck" {>= "0.1.0" & with-test}
26+
"odoc" {with-doc}
27+
]
28+
conflicts: [
29+
"ocaml-base-compiler" {< "5.0.0~beta1"}
30+
"ocaml-variants" {< "5.0.0~beta1"}
31+
"ocaml-system" {< "5.0.0~beta1"}
32+
"seq" {< "0.3"}
33+
]
34+
build: [
35+
["dune" "subst"] {dev}
36+
[
37+
"dune"
38+
"build"
39+
"-p"
40+
name
41+
"-j"
42+
jobs
43+
"@install"
44+
"@runtest" {with-test}
45+
"@doc" {with-doc}
46+
]
47+
]
48+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
49+
url {
50+
src:
51+
"https://github.com/ocaml-multicore/eio/releases/download/v0.10/eio-0.10.tbz"
52+
checksum: [
53+
"sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
54+
"sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
55+
]
56+
}
57+
x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Eio implementation for Linux using io-uring"
3+
description: "An Eio implementation for Linux using io-uring."
4+
maintainer: ["[email protected]"]
5+
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/eio"
8+
doc: "https://ocaml-multicore.github.io/eio/"
9+
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+
depends: [
11+
"dune" {>= "3.7"}
12+
"alcotest" {>= "1.4.0" & with-test}
13+
"eio" {= version}
14+
"mdx" {>= "2.2.0" & with-test}
15+
"logs" {>= "0.7.0"}
16+
"fmt" {>= "0.8.9"}
17+
"cmdliner" {>= "1.1.0" & with-test}
18+
"uring" {>= "0.5"}
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
36+
url {
37+
src:
38+
"https://github.com/ocaml-multicore/eio/releases/download/v0.10/eio-0.10.tbz"
39+
checksum: [
40+
"sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
41+
"sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
42+
]
43+
}
44+
x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Effect-based direct-style IO mainloop for OCaml"
3+
description: "Selects an appropriate Eio backend for the current platform."
4+
maintainer: ["[email protected]"]
5+
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/eio"
8+
doc: "https://ocaml-multicore.github.io/eio/"
9+
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+
depends: [
11+
"dune" {>= "3.7"}
12+
"mdx" {>= "2.2.0" & with-test}
13+
"kcas" {>= "0.3.0" & with-test}
14+
"yojson" {>= "2.0.2" & with-test}
15+
"eio_linux" {= version & os = "linux"}
16+
"eio_posix" {= version & os-family != "windows"}
17+
"eio_windows" {= version & os-family = "windows"}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
35+
url {
36+
src:
37+
"https://github.com/ocaml-multicore/eio/releases/download/v0.10/eio-0.10.tbz"
38+
checksum: [
39+
"sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
40+
"sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
41+
]
42+
}
43+
x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
44+
x-ci-accept-failures: ["macos-homebrew"]
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Eio implementation for POSIX systems"
3+
description: "An Eio implementation for most Unix-like platforms"
4+
maintainer: ["[email protected]"]
5+
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/eio"
8+
doc: "https://ocaml-multicore.github.io/eio/"
9+
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+
depends: [
11+
"dune" {>= "3.7"}
12+
"eio" {= version}
13+
"iomux" {>= "0.2"}
14+
"mdx" {>= "2.2.0" & with-test}
15+
"fmt" {>= "0.8.9"}
16+
"odoc" {with-doc}
17+
]
18+
build: [
19+
["dune" "subst"] {dev}
20+
[
21+
"dune"
22+
"build"
23+
"-p"
24+
name
25+
"-j"
26+
jobs
27+
"@install"
28+
"@runtest" {with-test}
29+
"@doc" {with-doc}
30+
]
31+
]
32+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
33+
url {
34+
src:
35+
"https://github.com/ocaml-multicore/eio/releases/download/v0.10/eio-0.10.tbz"
36+
checksum: [
37+
"sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
38+
"sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
39+
]
40+
}
41+
x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Eio implementation for Windows"
3+
description: "An Eio implementation using OCaml's Unix.select"
4+
maintainer: ["[email protected]"]
5+
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/eio"
8+
doc: "https://ocaml-multicore.github.io/eio/"
9+
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+
depends: [
11+
"dune" {>= "3.7"}
12+
"eio" {= version}
13+
"kcas" {>= "0.3.0" & with-test}
14+
"alcotest" {>= "1.4.0" & with-test}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
32+
url {
33+
src:
34+
"https://github.com/ocaml-multicore/eio/releases/download/v0.10/eio-0.10.tbz"
35+
checksum: [
36+
"sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
37+
"sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
38+
]
39+
}
40+
x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
41+
available: [os-family = "windows"]

packages/geojsone/geojsone.0.1.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ depends: [
1414
"mdx" {with-test}
1515
"ezjsonm" {with-test}
1616
"eio_main" {>= "0.6" & with-test}
17-
"eio" {>= "0.6"}
17+
"eio" {>= "0.6" & < "0.10"}
1818
"eio" {with-test & < "0.7"}
1919
"hex"
2020
"sexplib0"

packages/lwt_eio/lwt_eio.0.1/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bug-reports: "https://github.com/talex5/lwt_eio/issues"
1010
depends: [
1111
"ocaml"
1212
"dune" {>= "2.9"}
13-
"eio"
13+
"eio" {< "0.10"}
1414
"lwt"
1515
"mdx" {>= "1.10.0" & with-test}
1616
"eio_main" {with-test}

packages/rawlink-eio/rawlink-eio.2.1/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ depends: [
1313
"ocaml" {>= "5.0.0"}
1414
"dune" {>= "3.2"}
1515
"rawlink" {>= "2.1"}
16-
"eio" {>= "0.4"}
16+
"eio" {>= "0.4" & <"0.10"}
1717
]
1818
depexts: [
1919
["linux-headers"] {os-distribution = "alpine"}

packages/tls-eio/tls-eio.0.15.4/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ depends: [
2020
"mirage-crypto-rng" {>= "0.8.0"}
2121
"mirage-crypto-rng-eio" {>= "0.8.0" with-test}
2222
"x509" {>= "0.15.0"}
23-
"eio" {>= "0.5"}
23+
"eio" {>= "0.5" & <"0.10"}
2424
"eio_main" {>= "0.5" with-test}
2525
"mdx" {with-test}
2626
]

0 commit comments

Comments
 (0)