this repo has no description

Merge pull request #23652 from aantron/luv.0.5.12

Luv 0.5.12: binding to libuv, the I/O library

Kate e9207245 12a9420e

Changed files
+69
packages
luv
luv.0.5.12
luv_unix
luv_unix.0.5.1
+40
packages/luv/luv.0.5.12/opam
···
+
opam-version: "2.0"
+
+
synopsis: "Binding to libuv: cross-platform asynchronous I/O"
+
+
license: "MIT"
+
homepage: "https://github.com/aantron/luv"
+
doc: "https://aantron.github.io/luv"
+
bug-reports: "https://github.com/aantron/luv/issues"
+
+
authors: "Anton Bachin <antonbachin@yahoo.com>"
+
maintainer: "Anton Bachin <antonbachin@yahoo.com>"
+
dev-repo: "git+https://github.com/aantron/luv.git"
+
+
depends: [
+
"base-unix" {build}
+
"ctypes" {>= "0.14.0"}
+
"dune" {>= "2.0.0"}
+
"ocaml" {>= "4.03.0"}
+
+
"alcotest" {with-test & >= "0.8.1"}
+
"base-unix" {with-test}
+
"odoc" {with-doc & = "2.2.0"}
+
]
+
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
+
description: "Luv is a binding to libuv, the cross-platform C library that does
+
asynchronous I/O in Node.js and runs its main loop.
+
+
Besides asynchronous I/O, libuv also supports multiprocessing and
+
multithreading. Multiple event loops can be run in different threads. libuv also
+
exposes a lot of other functionality, amounting to a full OS API, and an
+
alternative to the standard module Unix."
+
+
url {
+
src: "https://github.com/aantron/luv/releases/download/0.5.12/luv-0.5.12.tar.gz"
+
checksum: "md5=57b2063e489cbbcfea3a238ced0dd297"
+
}
+29
packages/luv_unix/luv_unix.0.5.1/opam
···
+
opam-version: "2.0"
+
+
synopsis: "Helpers for interfacing Luv and Unix"
+
+
license: "MIT"
+
homepage: "https://github.com/aantron/luv"
+
doc: "https://aantron.github.io/luv"
+
bug-reports: "https://github.com/aantron/luv/issues"
+
+
authors: "Anton Bachin <antonbachin@yahoo.com>"
+
maintainer: "Anton Bachin <antonbachin@yahoo.com>"
+
dev-repo: "git+https://github.com/aantron/luv.git"
+
+
depends: [
+
"base-unix"
+
"ctypes" {>= "0.14.0"} # Ctypes.CArray.of_string.
+
"dune" {>= "2.0.0"}
+
"luv" {>= "0.5.8"} # uv.h.
+
"ocaml" {>= "4.03.0"}
+
]
+
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
+
url {
+
src: "https://github.com/aantron/luv/releases/download/0.5.12/luv-0.5.12.tar.gz"
+
checksum: "md5=57b2063e489cbbcfea3a238ced0dd297"
+
}