Skip to content

Commit a3be538

Browse files
committed
[new release] unix-errno (0.6.2)
CHANGES: * Fix compatibility with future ctype releases
1 parent a937a5e commit a3be538

File tree

1 file changed

+44
-0
lines changed
  • packages/unix-errno/unix-errno.0.6.2

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Unix errno types, maps, and support"
3+
description: """\
4+
unix-errno can be used with or without ctypes and OCaml's Unix
5+
module. Without ctypes and Unix, the basic types and functions are
6+
provided as well as Errno_host containing errno maps for popular
7+
operating systems. The errno-srcgen tool for generating OCaml source
8+
representing Errno.Host.t values will also be built. With ctypes and
9+
Unix, you'll also receive the errno-map tool for outputting the current
10+
host's errno map and the Errno_unix module containing an errno global
11+
variable checking function and Unix.error type converters."""
12+
maintainer: "Xapi Project"
13+
authors: "David Sheets <[email protected]>"
14+
license: "ISC"
15+
tags: ["errno" "errno.h" "errors" "unix" "syscall"]
16+
homepage: "https://github.com/xapi-project/ocaml-unix-errno"
17+
bug-reports: "https://github.com/xapi-project/ocaml-unix-errno/issues"
18+
depends: [
19+
"ocaml" {>= "4.01.0"}
20+
"dune" {>= "2.0"}
21+
"alcotest" {with-test}
22+
"base-bytes"
23+
"result"
24+
"ctypes"
25+
]
26+
depopts: ["base-unix"]
27+
conflicts: [
28+
"ctypes" {< "0.7.0"}
29+
]
30+
build: [
31+
["dune" "subst"] {dev}
32+
["dune" "build" "-p" name "-j" jobs]
33+
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
34+
]
35+
dev-repo: "git+https://github.com/xapi-project/ocaml-unix-errno.git"
36+
url {
37+
src:
38+
"https://github.com/xapi-project/ocaml-unix-errno/releases/download/0.6.2/unix-errno-0.6.2.tbz"
39+
checksum: [
40+
"sha256=2d6a9bc86731b3a7ff15c38fa3725847753e00bd091de5828868ee621c71ad65"
41+
"sha512=3f820834fe4dcc246e777a3e4b9d19c85dcccf87aa77b7b9e3a59e5080f6094dc059d5d035831e82cc3efc4c20065422e3299cb44ff49674b7b0a3139fd15ba7"
42+
]
43+
}
44+
x-commit-hash: "c91d9ac97e33f7df0d63f95110130130d040c6ce"

0 commit comments

Comments
 (0)