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 "ppx_optcomp" {with-test} 21 "ocaml" {>= "4.13"} 22 "odoc" {with-doc} 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "--promote-install-files=false" 34 "@install" 35 "@runtest" {with-test} 36 "@doc" {with-doc} 37 ] 38 ["dune" "install" "-p" name "--create-install-files" name] 39] 40dev-repo: "git+https://github.com/anuragsoni/poll.git" 41conflicts: [ 42 "ppxlib" {< "0.14.0"} 43] 44url { 45 src: 46 "https://github.com/anuragsoni/poll/releases/download/0.2.0/poll-0.2.0.tbz" 47 checksum: [ 48 "sha256=3d23be996b9992d8f8de44bf23da268a89ab02fbc7595df02b572d2deafe9145" 49 "sha512=c0f71c88bdc8c03e35032561fa9236d64af546783f0ac2f58aaad030bfa5a6219029d57ae8b893fb65c57ff608aa6b1267ca49b96857e974ee67e940670d648b" 50 ] 51} 52x-commit-hash: "241194faf1affd7469b75f16561799a1d3ae3f11" 53available: [ arch != "s390x" ]