Skip to content

Commit 34077bc

Browse files
committed
[new release] poll (0.3.0)
CHANGES: * Make the poller's eventlist length configurable
1 parent 4323f65 commit 34077bc

File tree

1 file changed

+53
-0
lines changed
  • packages/poll/poll.0.3.0

1 file changed

+53
-0
lines changed

packages/poll/poll.0.3.0/opam

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Portable OCaml interface to macOS/Linux/Windows native IO event notification mechanisms"
4+
description:
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."
6+
maintainer: ["Anurag Soni <[email protected]>"]
7+
authors: ["Anurag Soni"]
8+
license: "MIT"
9+
tags: ["epoll" "kqueue" "wepoll"]
10+
homepage: "https://github.com/anuragsoni/poll"
11+
doc: "https://anuragsoni.github.io/poll"
12+
bug-reports: "https://github.com/anuragsoni/poll/issues"
13+
depends: [
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+
]
24+
build: [
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+
]
40+
dev-repo: "git+https://github.com/anuragsoni/poll.git"
41+
conflicts: [
42+
"ppxlib" {< "0.14.0"}
43+
]
44+
available: [ arch != "s390x" ]
45+
url {
46+
src:
47+
"https://github.com/anuragsoni/poll/releases/download/0.3.0/poll-0.3.0.tbz"
48+
checksum: [
49+
"sha256=b82faa90ab9c97fc89124a865bfc54a3820630ae189dadf7aab1b2e16a9b62a5"
50+
"sha512=8a4a032b7e605b73b579e8f9de7121333e4380e24b7d8888a5b031b73ec067112a3de9aeb5b7fa8554810d5db0ffdbf779df715655daab497f5e1f7e45e80101"
51+
]
52+
}
53+
x-commit-hash: "ca983173a3e95f897cd02998810e6b4718e3c81a"

0 commit comments

Comments
 (0)