File tree Expand file tree Collapse file tree 10 files changed +434
-0
lines changed
posix-base/posix-base.2.1.0
posix-bindings/posix-bindings.2.1.0
posix-getopt/posix-getopt.2.1.0
posix-math2/posix-math2.2.1.0
posix-signal/posix-signal.2.1.0
posix-socket-unix/posix-socket-unix.2.1.0
posix-socket/posix-socket.2.1.0
posix-time2/posix-time2.2.1.0
posix-types/posix-types.2.1.0
posix-uname/posix-uname.2.1.0 Expand file tree Collapse file tree 10 files changed +434
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Base module for the posix bindings"
4
+ description: "posix-base provides base tools for the posix binding modules."
5
+
6
+ authors: ["Romain Beauxis"]
7
+ license: "MIT"
8
+ homepage: "https://github.com/savonet/ocaml-posix"
9
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
10
+ depends: [
11
+ "dune" {>= "2.9"}
12
+ "ocaml" {>= "4.08"}
13
+ "integers"
14
+ "ctypes" {>= "0.14.0"}
15
+ "odoc" {with-doc}
16
+ ]
17
+ build: [
18
+ ["dune" "subst"] {dev}
19
+ [
20
+ "dune"
21
+ "build"
22
+ "-p"
23
+ name
24
+ "-j"
25
+ jobs
26
+ "--promote-install-files=false"
27
+ "@install"
28
+ "@runtest" {with-test}
29
+ "@doc" {with-doc}
30
+ ]
31
+ ["dune" "install" "-p" name "--create-install-files" name]
32
+ ]
33
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
34
+ url {
35
+ src:
36
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
37
+ checksum: [
38
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
39
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
40
+ ]
41
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "POSIX bindings"
4
+ description: "install all available posix bindings"
5
+
6
+ authors: ["Romain Beauxis"]
7
+ license: "MIT"
8
+ homepage: "https://github.com/savonet/ocaml-posix"
9
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
10
+ depends: [
11
+ "dune" {>= "2.9"}
12
+ "ctypes"
13
+ "posix-base" {= version}
14
+ "posix-types" {= version}
15
+ "posix-socket" {= version}
16
+ "posix-socket-unix" {= version}
17
+ "posix-uname" {= version}
18
+ "posix-math2" {= version}
19
+ "posix-getopt" {= version}
20
+ "odoc" {with-doc}
21
+ ]
22
+ build: [
23
+ ["dune" "subst"] {dev}
24
+ [
25
+ "dune"
26
+ "build"
27
+ "-p"
28
+ name
29
+ "-j"
30
+ jobs
31
+ "--promote-install-files=false"
32
+ "@install"
33
+ "@runtest" {with-test}
34
+ "@doc" {with-doc}
35
+ ]
36
+ ["dune" "install" "-p" name "--create-install-files" name]
37
+ ]
38
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
39
+ url {
40
+ src:
41
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
42
+ checksum: [
43
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
44
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
45
+ ]
46
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Bindings for posix getopt/getopt_long"
4
+ description:
5
+ "posix-getopt provides a simple interface for the POSIX getopt and its extensions, getopt_long and getopt_long_only."
6
+
7
+ authors: ["Romain Beauxis"]
8
+ license: "MIT"
9
+ homepage: "https://github.com/savonet/ocaml-posix"
10
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11
+ depends: [
12
+ "dune" {>= "2.9"}
13
+ "dune-configurator"
14
+ "ounit2" {with-test}
15
+ "process" {with-test}
16
+ "posix-uname" {with-test & = version}
17
+ "ctypes"
18
+ "posix-base" {= version}
19
+ "unix-errno"
20
+ "odoc" {with-doc}
21
+ ]
22
+ build: [
23
+ ["dune" "subst"] {dev}
24
+ [
25
+ "dune"
26
+ "build"
27
+ "-p"
28
+ name
29
+ "-j"
30
+ jobs
31
+ "--promote-install-files=false"
32
+ "@install"
33
+ "@runtest" {with-test}
34
+ "@doc" {with-doc}
35
+ ]
36
+ ["dune" "install" "-p" name "--create-install-files" name]
37
+ ]
38
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
39
+ available: os != "win32" & os != "bsd"
40
+ url {
41
+ src:
42
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
43
+ checksum: [
44
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
45
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
46
+ ]
47
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Bindings for posix math"
4
+ description:
5
+ "posix-math2 provides a simple interface for POSIX math functions."
6
+
7
+ authors: ["Romain Beauxis"]
8
+ license: "MIT"
9
+ homepage: "https://github.com/savonet/ocaml-posix"
10
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11
+ depends: [
12
+ "dune" {>= "2.9"}
13
+ "ctypes"
14
+ "posix-base" {= version}
15
+ "unix-errno"
16
+ "odoc" {with-doc}
17
+ ]
18
+ build: [
19
+ ["dune" "subst"] {dev}
20
+ [
21
+ "dune"
22
+ "build"
23
+ "-p"
24
+ name
25
+ "-j"
26
+ jobs
27
+ "--promote-install-files=false"
28
+ "@install"
29
+ "@runtest" {with-test}
30
+ "@doc" {with-doc}
31
+ ]
32
+ ["dune" "install" "-p" name "--create-install-files" name]
33
+ ]
34
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
35
+ url {
36
+ src:
37
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
38
+ checksum: [
39
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
40
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
41
+ ]
42
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Bindings for the types defined in <signal.h>"
4
+ description:
5
+ "posix-signal provides an API to the types and bindings defined in <signal.h>"
6
+
7
+ authors: ["Romain Beauxis"]
8
+ license: "MIT"
9
+ homepage: "https://github.com/savonet/ocaml-posix"
10
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11
+ depends: [
12
+ "dune" {>= "2.9"}
13
+ "posix-base" {= version}
14
+ "ctypes"
15
+ "unix-errno"
16
+ "odoc" {with-doc}
17
+ ]
18
+ build: [
19
+ ["dune" "subst"] {dev}
20
+ [
21
+ "dune"
22
+ "build"
23
+ "-p"
24
+ name
25
+ "-j"
26
+ jobs
27
+ "--promote-install-files=false"
28
+ "@install"
29
+ "@runtest" {with-test}
30
+ "@doc" {with-doc}
31
+ ]
32
+ ["dune" "install" "-p" name "--create-install-files" name]
33
+ ]
34
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
35
+ available: os != "win32"
36
+ url {
37
+ src:
38
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
39
+ checksum: [
40
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
41
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
42
+ ]
43
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Bindings for posix sockets"
4
+ description:
5
+ "posix-socket-unix provides unix-specific types and bindings for posix sockets."
6
+
7
+ authors: ["Romain Beauxis"]
8
+ license: "MIT"
9
+ homepage: "https://github.com/savonet/ocaml-posix"
10
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11
+ depends: [
12
+ "dune" {>= "2.9"}
13
+ "ctypes"
14
+ "posix-base" {= version}
15
+ "posix-socket" {= version}
16
+ "unix-errno"
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
+ "--promote-install-files=false"
29
+ "@install"
30
+ "@runtest" {with-test}
31
+ "@doc" {with-doc}
32
+ ]
33
+ ["dune" "install" "-p" name "--create-install-files" name]
34
+ ]
35
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
36
+ available: os != "win32"
37
+ url {
38
+ src:
39
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
40
+ checksum: [
41
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
42
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
43
+ ]
44
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Bindings for posix sockets"
4
+ description:
5
+ "posix-socket provides the types and bindings of posix sockets APIs available on both unix and windows."
6
+
7
+ authors: ["Romain Beauxis"]
8
+ license: "MIT"
9
+ homepage: "https://github.com/savonet/ocaml-posix"
10
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11
+ depends: [
12
+ "dune" {>= "2.9"}
13
+ "ocaml" {>= "4.12"}
14
+ "posix-base" {= version}
15
+ "ctypes"
16
+ "odoc" {with-doc}
17
+ ]
18
+ build: [
19
+ ["dune" "subst"] {dev}
20
+ [
21
+ "dune"
22
+ "build"
23
+ "-p"
24
+ name
25
+ "-j"
26
+ jobs
27
+ "--promote-install-files=false"
28
+ "@install"
29
+ "@runtest" {with-test}
30
+ "@doc" {with-doc}
31
+ ]
32
+ ["dune" "install" "-p" name "--create-install-files" name]
33
+ ]
34
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
35
+ url {
36
+ src:
37
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
38
+ checksum: [
39
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
40
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
41
+ ]
42
+ }
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Bindings for posix time functions"
4
+ description:
5
+ "posix-time2 provides the types and bindings for posix time APIs."
6
+
7
+ authors: ["Romain Beauxis"]
8
+ license: "MIT"
9
+ homepage: "https://github.com/savonet/ocaml-posix"
10
+ bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11
+ depends: [
12
+ "dune" {>= "2.9"}
13
+ "ctypes"
14
+ "posix-base" {= version}
15
+ "posix-types" {= version}
16
+ "unix-errno"
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
+ "--promote-install-files=false"
29
+ "@install"
30
+ "@runtest" {with-test}
31
+ "@doc" {with-doc}
32
+ ]
33
+ ["dune" "install" "-p" name "--create-install-files" name]
34
+ ]
35
+ dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
36
+ available: os != "win32"
37
+ url {
38
+ src:
39
+ "https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.1.0.tar.gz"
40
+ checksum: [
41
+ "md5=0c6a8cd7b7f5e163160abb8a62f75a5b"
42
+ "sha512=735c6afd48e36af0a032f51217e7558629a198fd39a0484883831bdbff511b331033696b8ad73c6896fa9df0a0b1fd2f27336c2b0b7447dd10902e6bc64e4886"
43
+ ]
44
+ }
You can’t perform that action at this time.
0 commit comments