forked from mirage/ocaml-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_oasis
95 lines (84 loc) · 2.89 KB
/
_oasis
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
OASISFormat: 0.4
Name: git
Version: 1.8.0
Synopsis: A low-level interface to Git in pure OCaml
Authors: Thomas Gazagnaire
License: ISC
Plugins: META (0.3), DevFiles (0.3)
BuildTools: ocamlbuild
Flag unix
Description: build the Unix library
Default: true
Flag mirage
Description: build the Mirage library
Default: true
Library git
Pack: true
Path: lib/
Findlibname: git
InternalModules: LRU
Modules: Misc, Hash, Inflate, Object, Object_type,
Blob, Tree, Commit, Tag, Reference, Value,
Pack, Pack_index, Packed_value, Packed_refs, Index,
Sync, Gri, Search, Global_graph, User, Store,
Memory, FS, Version
BuildDepends: mstruct, logs, ocamlgraph, uri, lwt, hex, astring,
crc, fmt, decompress
Library git_top
Path: lib/top
Findlibname: top
FindlibParent: git
Modules: Git_top
BuildDepends: compiler-libs.toplevel
XMETARequires: git
XMETADescription: Toplevel printers for Git values
Library "git-http"
Build$: flag(unix) || flag(mirage)
Path: lib/http/
FindlibParent: git
Findlibname: http
Modules: Git_http
BuildDepends: git, lwt, cohttp.lwt, uri.services
Library "git-unix"
Build$: flag(unix)
Path: lib/unix/
FindlibParent: git
Findlibname: unix
Modules: Git_unix
BuildDepends: git, git.http, lwt, cohttp.lwt, lwt.unix, conduit.lwt-unix,
zip, nocrypto
Library "git-mirage"
Build$: flag(mirage)
Path: lib/mirage/
FindlibParent: git
Findlibname: mirage
Modules: Git_mirage
BuildDepends: git, git.http, mirage-types.lwt, io-page, conduit.mirage,
dns.mirage, mirage-http, mirage-flow, channel
Executable ogit
Build$: flag(unix)
Path: bin/
MainIs: ogit.ml
CompiledObject: best
Install: true
BuildDepends: git, git.unix,
cmdliner, fmt.cli, fmt.tty, logs.cli, logs.fmt, mtime.os
Executable test_git
Build$: flag(tests) && flag(unix) && flag(mirage)
Path: lib_test
MainIs: test.ml
CompiledObject: best
Install: false
BuildDepends: alcotest, git, git.unix, git.mirage,
io-page.unix, mirage-fs-unix, logs.fmt, fmt.tty, mtime.os
Test test_git
Run$: flag(tests) && flag(unix) && flag(mirage)
Command: $test_git -q
WorkingDirectory: lib_test/
Document git
Title: Git docs
Type: OCamlbuild (0.4)
BuildTools+: ocamldoc
Install: true
XOCamlbuildPath: lib
XOCamlbuildLibraries: git, git.unix, git.mirage