Skip to content

Commit c446348

Browse files
authored
Merge pull request ocaml#21504 from anuragsoni/release-poll-0.3.0
[new release] poll (0.3.0)
2 parents 4323f65 + 3fd6a38 commit c446348

File tree

1 file changed

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

1 file changed

+52
-0
lines changed

packages/poll/poll.0.3.0/opam

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
"ocaml" {>= "4.13"}
21+
"odoc" {with-doc}
22+
]
23+
build: [
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+
]
39+
dev-repo: "git+https://github.com/anuragsoni/poll.git"
40+
conflicts: [
41+
"ppxlib" {< "0.14.0"}
42+
]
43+
available: [ arch != "s390x" ]
44+
url {
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+
}
52+
x-commit-hash: "ca983173a3e95f897cd02998810e6b4718e3c81a"

0 commit comments

Comments
 (0)