Skip to content

Commit 4ef6168

Browse files
authored
Merge pull request #24036 from gares/release-sel-v0.3.0
[new release] sel (0.3.0)
2 parents 07a5b12 + 5c9b64c commit 4ef6168

File tree

1 file changed

+41
-0
lines changed
  • packages/sel/sel.0.3.0

1 file changed

+41
-0
lines changed

packages/sel/sel.0.3.0/opam

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Simple Event Library"
3+
description: "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"
4+
maintainer: ["Enrico Tassi <[email protected]>"]
5+
authors: ["Enrico Tassi"]
6+
license: "MIT"
7+
tags: ["event" "input" "output"]
8+
homepage: "https://github.com/gares/sel"
9+
bug-reports: "https://github.com/gares/sel/issues"
10+
depends: [
11+
"ocaml" {>= "4.08"}
12+
"dune" {>= "3.5"}
13+
"ppx_deriving"
14+
"ppx_sexp_conv" {with-test}
15+
"ppx_inline_test" {with-test}
16+
"ppx_assert" {with-test}
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
]
33+
dev-repo: "git+https://github.com/gares/sel.git"
34+
url {
35+
src: "https://github.com/gares/sel/releases/download/v0.3.0/sel-0.3.0.tbz"
36+
checksum: [
37+
"sha256=afa7e074fbafa8318f05ebba5cfbabd1dcb804b33bce2675d80f1988d353bd1e"
38+
"sha512=f571a9fc4ebca05203a6b72c4847ceb0826eee9e90615db479670a4198798ceea180026842aac6c90a7d85eb1dbd117c36c2a69b320fbe4963a84c386354ebb7"
39+
]
40+
}
41+
x-commit-hash: "8ce4012cf535feb311203a5ccc0f993b27ac4581"

0 commit comments

Comments
 (0)