summaryrefslogtreecommitdiff
path: root/_oasis
blob: 60752210ddcdde432e882be7a1d114789a18b0be (plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
Name: VyConf
Version: 0.1
Synopsis: Appliance configuration framework
Authors: VyOS maintainers <maintainers@vyos.net>
License: LGPL with OCaml linking exception

Description: VyConf
Homepage: http://vyos.net

OASISFormat: 0.4
BuildTools: ocamlbuild
Plugins: META (0.4), DevFiles (0.4)

Library "vyconf"
  Path: src
  Modules: Vytree, Vylist, Value_checker, Vyconf_config, Util
  Install: false

Library "vytree"
  Path: src
  Modules: Vytree
  FindlibParent: vyconf
  BuildDepends: ppx_deriving_yojson

Library "reference_tree"
  Path: src
  Modules: Reference_tree
  FindlibParent: vyconf
  BuildDepends: xml-light, pcre

Library "config_tree"
  Path: src
  Modules: Config_tree
  FindlibParent: vyconf
  BuildDepends: ppx_deriving_yojson

Library "value_checker"
  Path: src
  Modules: Value_checker
  FindlibParent: vyconf
  BuildDepends: pcre

Library "curly_lexer"
  Path: src
  Modules: Curly_lexer
  FindlibParent: vyconf

Library "curly_parser"
  Path: src
  Modules: Curly_parser
  FindlibParent: vyconf

Library "util"
  Path: src
  Modules: Util
  FindlibParent: vyconf
  BuildDepends: xml-light

Library "vyconf_pb"
  Path: src
  Modules: Vyconf_pb
  FindlibParent: vyconf
  BuildDepends: ocaml-protoc

Library "session"
  Path: src
  Modules: Session
  FindlibParent: vyconf

Library "vyconf_config"
  Path: src
  Modules: Vyconf_config
  FindlibParent: vyconf
  BuildDepends: toml, ppx_deriving.show

Library "directories"
  Path: src
  Modules: Directories
  FindlibParent: vyconf
  BuildDepends: fileutils

Library "startup"
  Path: src
  Modules: Startup
  FindlibParent: vyconf
  BuildDepends: fileutils, lwt, lwt.log

Library "message"
  Path: src
  Modules: Message
  FindlibParent: vyconf
  BuildDepends: lwt, lwt.log, lwt.unix, lwt.ppx, ocplib-endian

Library "vyconf_client"
  Path: src
  Modules: Vyconf_client
  FindlibParent: vyconf
  BuildDepends: lwt, lwt.log, lwt.unix, lwt.ppx, ocplib-endian

Executable "vyconfd"
  Path: src
  MainIs: vyconfd.ml
  CompiledObject: best
  BuildDepends: ppx_deriving.runtime, ppx_deriving_yojson.runtime, lwt, lwt.unix, lwt.ppx, toml, fileutils, ocaml-protoc, ocplib-endian, vyconf

Executable "vytree_test"
  Path: test
  MainIs: vytree_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: oUnit, ppx_deriving.runtime, ppx_deriving_yojson.runtime, vyconf

Executable "reference_tree_test"
  Path: test
  MainIs: reference_tree_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: oUnit, ppx_deriving.runtime, ppx_deriving_yojson.runtime, xml-light, pcre, vyconf

Executable "config_tree_test"
  Path: test
  MainIs: config_tree_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: oUnit, ppx_deriving.runtime, ppx_deriving_yojson.runtime, vyconf

Executable "vylist_test"
  Path: test
  MainIs: vylist_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends:  oUnit, vyconf

Executable "value_checker_test"
  Path: test
  MainIs: value_checker_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends:  oUnit, pcre, vyconf

Executable "util_test"
  Path: test
  MainIs: util_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: oUnit, vyconf, xml-light

Executable "vyconf_config_test"
  Path: test
  MainIs: vyconf_config_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends:  oUnit, toml, ppx_deriving.runtime, vyconf

Executable "curly_parser_test"
  Path: test
  MainIs: curly_parser_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: oUnit, ppx_deriving.runtime, ppx_deriving_yojson.runtime, vyconf

Executable "session_test"
  Path: test
  MainIs: session_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: oUnit, ppx_deriving.runtime, ppx_deriving_yojson.runtime, xml-light, fileutils, pcre, vyconf

Executable "vytree_load_test"
  Path: test
  MainIs: vytree_load_test.ml
  Build$: flag(tests)
  CompiledObject: best
  Install: false
  BuildDepends: ppx_deriving.runtime, ppx_deriving_yojson.runtime, vyconf

Test "vytree_test"
  Run$: flag(tests)
  TestTools: vytree_test
  Command: $vytree_test
  WorkingDirectory: test

Test "reference_tree_test"
  Run$: flag(tests)
  TestTools: reference_tree_test
  Command: $reference_tree_test
  WorkingDirectory: test

Test "config_tree_test"
  Run$: flag(tests)
  TestTools: config_tree_test
  Command: $config_tree_test
  WorkingDirectory: test

Test "vylist_test"
  Run$: flag(tests)
  TestTools: vylist_test
  Command: $vylist_test
  WorkingDirectory: test

Test "value_checker_test"
  Run$: flag(tests)
  TestTools: value_checker_test
  Command: $value_checker_test
  WorkingDirectory: test

Test "vyconf_config_test"
  Run$: flag(tests)
  TestTools: vyconf_config_test
  Command: $vyconf_config_test
  WorkingDirectory: test

Test "curly_parser_test"
  Run$: flag(tests)
  TestTools: curly_parser_test
  Command: $curly_parser_test
  WorkingDirectory: test

Test "util_test"
  Run$: flag(tests)
  TestTools: util_test
  Command: $util_test
  WorkingDirectory: test

Test "session_test"
  Run$: flag(tests)
  TestTools: session_test
  Command: $session_test
  WorkingDirectory: test