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.12"} 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] 43url { 44 src: 45 "https://github.com/anuragsoni/poll/releases/download/0.1.0/poll-0.1.0.tbz" 46 checksum: [ 47 "sha256=96af2adb195aea4dcd6554e6b3f6043852edef7866882f2c0864d3cee811408a" 48 "sha512=0c54f40adec2fe26cb4f0bb9ed4fb8f644ab59a6246be5e7dc75b53f1b6cdddc2aec159400d063c3c92a33ff0c9c063e47016ced1bd5c6715faee13750792c38" 49 ] 50} 51x-commit-hash: "1d506aa9175385ea405617c87c0fa48694b3729f" 52available: [ arch != "s390x" ]