Skip to content

Commit d8b8cea

Browse files
authored
Merge pull request #26845 from gares/release-sel-v0.5.0
[new release] sel (0.5.0)
2 parents a420fd7 + fa773a5 commit d8b8cea

File tree

1 file changed

+42
-0
lines changed
  • packages/sel/sel.0.5.0

1 file changed

+42
-0
lines changed

packages/sel/sel.0.5.0/opam

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Simple Event Library"
3+
description:
4+
"This library is the result of our experience in using threads and the Lwt async monad to tame the problem of writing a server which has to listen and react to multiple sources of events. The library itself is just sugar atop Unix.select. You can read more about the library on https://github.com/gares/sel"
5+
maintainer: ["Enrico Tassi <[email protected]>"]
6+
authors: ["Enrico Tassi"]
7+
license: "MIT"
8+
tags: ["event" "input" "output"]
9+
homepage: "https://github.com/gares/sel"
10+
bug-reports: "https://github.com/gares/sel/issues"
11+
depends: [
12+
"ocaml" {>= "4.08"}
13+
"dune" {>= "3.5"}
14+
"ppx_deriving"
15+
"ppx_sexp_conv" {with-test}
16+
"ppx_inline_test" {with-test}
17+
"ppx_assert" {with-test}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/gares/sel.git"
35+
url {
36+
src: "https://github.com/gares/sel/releases/download/v0.5.0/sel-0.5.0.tbz"
37+
checksum: [
38+
"sha256=9f867e3def5f9072e7473c02af2c5835ed7ae50d9576cf7e09db916d1263a88d"
39+
"sha512=0901bcc17498f0cfeb2aa88d3e1e6c77b508d6f05e635146fffc3859ba353eaf9b8cfae9b6fe3e78af84e1c731bf612706ed53bf0ee4f516e3c27bf12889d45d"
40+
]
41+
}
42+
x-commit-hash: "4707d3c27fc74ef572311ede6a5c9f06ae8ceaf4"

0 commit comments

Comments
 (0)