this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Portable OCaml interface to macOS/Linux/Windows native IO event notification mechanisms"
4description:
5 "poll provides a portable OCaml interface to IO event notification mechanisms on macOS, Linux and Windows. It uses kqueue on macOS, epoll on Linux, and uses a vendored copy of wepoll on Windows."
6maintainer: ["Anurag Soni <anurag@sonianurag.com>"]
7authors: ["Anurag Soni"]
8license: "MIT"
9tags: ["epoll" "kqueue" "wepoll"]
10homepage: "https://github.com/anuragsoni/poll"
11doc: "https://anuragsoni.github.io/poll"
12bug-reports: "https://github.com/anuragsoni/poll/issues"
13depends: [
14 "dune" {>= "2.9"}
15 "base-unix"
16 "ppx_optcomp"
17 "kqueue" {>= "0.2.0"}
18 "dune-configurator"
19 "ppx_expect" {with-test}
20 "ocaml" {>= "4.13"}
21 "odoc" {with-doc}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "--promote-install-files=false"
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37 ["dune" "install" "-p" name "--create-install-files" name]
38]
39dev-repo: "git+https://github.com/anuragsoni/poll.git"
40conflicts: [
41 "ppxlib" {< "0.14.0"}
42]
43available: [ arch != "s390x" ]
44url {
45 src:
46 "https://github.com/anuragsoni/poll/releases/download/0.3.1/poll-0.3.1.tbz"
47 checksum: [
48 "sha256=217e928af2bf20c41a1a03205a222c3605123073facf513f4d20749a2690f29c"
49 "sha512=5c47ac2cb4fb52c116a190b323c4e537c8cc1d4d4689653fc1a863cfb19e215468c8c2d93180402fccf83a5e23def540f1f52f2975b7e391155afa593ae5e127"
50 ]
51}
52x-commit-hash: "303cd7b5254b6a7f1557507651d9ae34eecf8f14"