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.0/poll-0.3.0.tbz"
47 checksum: [
48 "sha256=b82faa90ab9c97fc89124a865bfc54a3820630ae189dadf7aab1b2e16a9b62a5"
49 "sha512=8a4a032b7e605b73b579e8f9de7121333e4380e24b7d8888a5b031b73ec067112a3de9aeb5b7fa8554810d5db0ffdbf779df715655daab497f5e1f7e45e80101"
50 ]
51}
52x-commit-hash: "ca983173a3e95f897cd02998810e6b4718e3c81a"