-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathdune-project
95 lines (89 loc) · 2.22 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
(lang dune 2.9)
(name tar)
(cram enable)
(formatting disabled)
(generate_opam_files true)
(source (github mirage/ocaml-tar))
(license ISC)
(authors
"Dave Scott"
"Thomas Gazagnaire"
"David Allsopp"
"Antonin Décimo"
"Reynir Björnsson"
"Hannes Mehnert"
)
(maintainers
"Reynir Björnsson <[email protected]>"
(documentation "https://mirage.github.io/ocaml-tar/")
(package
(name tar)
(synopsis "Decode and encode tar format files in pure OCaml")
(description
"\| tar is a library to read and write tar files with an emphasis on
"\| streaming.
"\|
"\| This is pure OCaml code, no C bindings.
)
(tags ("org:xapi-project" "org:mirage"))
(depends
(ocaml (>= 4.08.0))
(decompress (>= 1.5.1))
)
)
(package
(name tar-unix)
(synopsis "Decode and encode tar format files from Unix")
(description
"\| tar is a library to read and write tar files with an emphasis on
"\| streaming. This library provides a Unix or Windows compatible interface.
)
(tags ("org:xapi-project" "org:mirage"))
(depends
(ocaml (>= 4.08.0))
(lwt (>= 5.7.0))
(tar (= :version))
)
)
(package
(name tar-mirage)
(synopsis "Read and write tar format files via MirageOS interfaces")
(description
"\| tar is a library to read and write tar files with an emphasis on
"\| streaming. This library is functorised over external OS dependencies
"\| to facilitate embedding within MirageOS.
)
(tags ("org:xapi-project" "org:mirage"))
(conflicts (result (< 1.5)))
(depends
(ocaml (>= 4.08.0))
(cstruct (>= 6.0.0))
(lwt (>= 5.6.0))
(mirage-block (>= 2.0.0))
(mirage-clock (>= 4.0.0))
(mirage-kv (>= 6.0.0))
optint
ptime
(tar (= :version))
(mirage-block-unix (and :with-test (>= 2.13.0)))
(mirage-clock-unix (and :with-test (>= 4.0.0)))
(alcotest (and (>= 1.7.0) :with-test))
(alcotest-lwt (and (>= 1.7.0) :with-test))
(tar-unix (and :with-test (= :version)))
)
)
(package
(name tar-eio)
(synopsis "Decode and encode tar format files using Eio")
(description
"\| tar is a library to read and write tar files with an emphasis on
"\| streaming. This library uses Eio to provide a portable tar library.
)
(tags ("org:xapi-project" "org:mirage"))
(depends
(ocaml (>= 5.00.0))
(eio (and (>= 1.1)))
(tar (= :version))
)
)