Skip to content

Commit 1c7495d

Browse files
committed
[new release] eio (5 packages) (0.13)
CHANGES: New features / API changes: - Add `Flow.read_all` (@SGrondin ocaml-multicore/eio#596, reviewed by @talex5 @rbjorklin). - Add `Path.stat` (@patricoferris @talex5 @avsm ocaml-multicore/eio#617 ocaml-multicore/eio#618 ocaml-multicore/eio#624 ocaml-multicore/eio#620, reviewed by @SGrondin). - Add `Path.rmtree` (@talex5 ocaml-multicore/eio#627 ocaml-multicore/eio#628, reviewed by @SGrondin). - Add `Path.mkdirs` and `Path.split` (@patricoferris @talex5 ocaml-multicore/eio#625). - Add `Eio.File.{seek,sync,truncate}` (@talex5 ocaml-multicore/eio#626). - Add `Eio.Path.{kind,is_file,is_directory}` (@patricoferris @talex5 ocaml-multicore/eio#623, reviewed by @avsm). - Switch from CTF to OCaml 5.1 runtime events (@TheLortex @patricoferris @talex5 ocaml-multicore/eio#634 ocaml-multicore/eio#635, reviewed by @avsm). This is a minimal initial version. Documentation: - Document `File.Stat` record fields (@avsm @talex5 ocaml-multicore/eio#621). - Update README section about `env` (@talex5 ocaml-multicore/eio#614, reported by @jonsterling). Build and test changes: - Add `File.stat` benchmark (@talex5 ocaml-multicore/eio#616). - Add `Path.stat` benchmark (@patricoferris @talex5 ocaml-multicore/eio#630). - eio_linux: mark as only available on Linux (@talex5 ocaml-multicore/eio#629). - Make MDX tests idempotent (@SGrondin ocaml-multicore/eio#601, reviewed by @talex5). - Allow trailing whitespace in CHANGES.md (@talex5 ocaml-multicore/eio#632). - Update minimum OCaml version to 5.1 (@talex5 ocaml-multicore/eio#631). - Generate prototypes for C stubs from ml files (@talex5 ocaml-multicore/eio#615). - Don't try to compile uring support on centos 7 (@talex5 ocaml-multicore/eio#638, reported by @zenfey).
1 parent b079ad0 commit 1c7495d

File tree

5 files changed

+226
-0
lines changed
  • packages
    • eio_linux/eio_linux.0.13
    • eio_main/eio_main.0.13
    • eio_posix/eio_posix.0.13
    • eio_windows/eio_windows.0.13
    • eio/eio.0.13

5 files changed

+226
-0
lines changed

packages/eio/eio.0.13/opam

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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.9"}
12+
"ocaml" {>= "5.1.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+
"dscheck" {>= "0.1.0" & with-test}
25+
"odoc" {with-doc}
26+
]
27+
conflicts: [
28+
"seq" {< "0.3"}
29+
]
30+
build: [
31+
["dune" "subst"] {dev}
32+
[
33+
"dune"
34+
"build"
35+
"-p"
36+
name
37+
"-j"
38+
jobs
39+
"@install"
40+
"@runtest" {with-test}
41+
"@doc" {with-doc}
42+
]
43+
]
44+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
45+
url {
46+
src:
47+
"https://github.com/ocaml-multicore/eio/releases/download/v0.13/eio-0.13.tbz"
48+
checksum: [
49+
"sha256=82537ee1c5b1829fde8207614a4e39f560bd582332841290ed5ef76691f3af70"
50+
"sha512=69fc509e5ed34da64c3c26fa22558ce7f0cb42afa65c864c57dbb05948e12c0f4f6ab7b77a07f8b292ea3a18748ed46deb9da6af74852115da5e938177b3bf18"
51+
]
52+
}
53+
x-commit-hash: "bc1e231b64a69af5226d998d3286d235b61b0f5f"
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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.9"}
12+
"alcotest" {>= "1.7.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.7"}
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+
available: [os = "linux"]
37+
url {
38+
src:
39+
"https://github.com/ocaml-multicore/eio/releases/download/v0.13/eio-0.13.tbz"
40+
checksum: [
41+
"sha256=82537ee1c5b1829fde8207614a4e39f560bd582332841290ed5ef76691f3af70"
42+
"sha512=69fc509e5ed34da64c3c26fa22558ce7f0cb42afa65c864c57dbb05948e12c0f4f6ab7b77a07f8b292ea3a18748ed46deb9da6af74852115da5e938177b3bf18"
43+
]
44+
}
45+
x-commit-hash: "bc1e231b64a69af5226d998d3286d235b61b0f5f"
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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.9"}
12+
"mdx" {>= "2.2.0" & with-test}
13+
"kcas" {>= "0.3.0" & with-test}
14+
"yojson" {>= "2.0.2" & with-test}
15+
"eio_linux"
16+
{= version & os = "linux" &
17+
(os-distribution != "centos" | os-version > "7")}
18+
"eio_posix" {= version & os != "win32"}
19+
"eio_windows" {= version & os = "win32"}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
37+
url {
38+
src:
39+
"https://github.com/ocaml-multicore/eio/releases/download/v0.13/eio-0.13.tbz"
40+
checksum: [
41+
"sha256=82537ee1c5b1829fde8207614a4e39f560bd582332841290ed5ef76691f3af70"
42+
"sha512=69fc509e5ed34da64c3c26fa22558ce7f0cb42afa65c864c57dbb05948e12c0f4f6ab7b77a07f8b292ea3a18748ed46deb9da6af74852115da5e938177b3bf18"
43+
]
44+
}
45+
x-commit-hash: "bc1e231b64a69af5226d998d3286d235b61b0f5f"
46+
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.9"}
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.13/eio-0.13.tbz"
36+
checksum: [
37+
"sha256=82537ee1c5b1829fde8207614a4e39f560bd582332841290ed5ef76691f3af70"
38+
"sha512=69fc509e5ed34da64c3c26fa22558ce7f0cb42afa65c864c57dbb05948e12c0f4f6ab7b77a07f8b292ea3a18748ed46deb9da6af74852115da5e938177b3bf18"
39+
]
40+
}
41+
x-commit-hash: "bc1e231b64a69af5226d998d3286d235b61b0f5f"
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.9"}
12+
"eio" {= version}
13+
"kcas" {>= "0.3.0" & with-test}
14+
"alcotest" {>= "1.7.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.13/eio-0.13.tbz"
35+
checksum: [
36+
"sha256=82537ee1c5b1829fde8207614a4e39f560bd582332841290ed5ef76691f3af70"
37+
"sha512=69fc509e5ed34da64c3c26fa22558ce7f0cb42afa65c864c57dbb05948e12c0f4f6ab7b77a07f8b292ea3a18748ed46deb9da6af74852115da5e938177b3bf18"
38+
]
39+
}
40+
x-commit-hash: "bc1e231b64a69af5226d998d3286d235b61b0f5f"
41+
available: [os = "win32"]

0 commit comments

Comments
 (0)