forked from xapi-project/stdext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
105 lines (95 loc) · 2.09 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
(lang dune 2.7)
(formatting (enabled_for ocaml))
(name xapi-stdext)
(generate_opam_files true)
(source (github xapi-project/stdext))
(license "LGPL-2.1-only WITH OCaml-LGPL-linking-exception")
(authors "Jonathan Ludlam")
(maintainers "Xapi project maintainers")
(package
(name xapi-stdext)
(synopsis "Xapi's standard library extension")
(description "Dummy package that enables the usage of dune-release")
(depends
(xapi-stdext-date (= :version))
(xapi-stdext-encodings (= :version))
(xapi-stdext-pervasives (= :version))
(xapi-stdext-std (= :version))
(xapi-stdext-threads (= :version))
(xapi-stdext-unix (= :version))
(xapi-stdext-zerocheck (= :version))
)
)
(package
(name xapi-stdext-date)
(synopsis "Xapi's standard library extension, Dates")
(depends
(ocaml (>= 4.12))
(alcotest :with-test)
astring
base-unix
ptime
(odoc :with-doc)
)
)
(package
(name xapi-stdext-encodings)
(synopsis "Xapi's standard library extension, Encodings")
(depends
ocaml
(alcotest (and (>= 0.6.0) :with-test))
(odoc :with-doc)
(bechamel :with-test)
(bechamel-notty :with-test)
(notty :with-test)
)
)
(package
(name xapi-stdext-pervasives)
(synopsis "Xapi's standard library extension, Pervasives")
(depends
(ocaml (>= 4.08))
logs
(odoc :with-doc)
xapi-backtrace
)
)
(package
(name xapi-stdext-std)
(synopsis "Xapi's standard library extension, Stdlib")
(depends
ocaml
(alcotest :with-test)
(odoc :with-doc)
)
)
(package
(name xapi-stdext-threads)
(synopsis "Xapi's standard library extension, Threads")
(depends
ocaml
base-threads
base-unix
(odoc :with-doc)
(xapi-stdext-pervasives (= :version))
)
)
(package
(name xapi-stdext-unix)
(synopsis "Xapi's standard library extension, Unix")
(depends
ocaml
base-unix
(fd-send-recv (>= 2.0.0))
(odoc :with-doc)
(xapi-stdext-pervasives (= :version))
)
)
(package
(name xapi-stdext-zerocheck)
(synopsis "Xapi's standard library extension, Zerocheck")
(depends
ocaml
(odoc :with-doc)
)
)