-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathinit.test
305 lines (286 loc) · 11.5 KB
/
init.test
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
N0REP0
### OPAMYES=1
### opam option opam-root-version --global | '"' -> '' >$ OPAMROOTVERSION
### : Init with invariant :
### :---:
### <pkg:ocaml.4.02.3>
opam-version: "2.0"
depends: [ "ocaml-system" {= "4.02.3"} | "ocaml-base-compiler" {= "4.02.3"} ]
flags: conf
### <pkg:ocaml-system.4.02.3>
opam-version: "2.0"
depends: [ "ocaml" {post} ]
available: sys-ocaml-version = "4.02.3"
flags: compiler
conflict-class: "ocaml-core-compiler"
### <pkg:ocaml-base-compiler.4.02.3>
opam-version: "2.0"
depends: [ "ocaml" {= "4.02.3" & post} ]
flags: compiler
conflict-class: "ocaml-core-compiler"
### :---:
### <pkg:ocaml.4.05.0>
opam-version: "2.0"
depends: [ "ocaml-system" {= "4.05.0"} | "ocaml-base-compiler" {= "4.05.0"} ]
flags: conf
### <pkg:ocaml-system.4.05.0>
opam-version: "2.0"
depends: [ "ocaml" {post} ]
available: sys-ocaml-version = "4.05.0"
flags: compiler
conflict-class: "ocaml-core-compiler"
### <pkg:ocaml-base-compiler.4.05.0>
opam-version: "2.0"
depends: [ "ocaml" {= "4.05.0" & post} ]
flags: compiler
conflict-class: "ocaml-core-compiler"
### :---:
### <pkg:ocaml.4.07.0>
opam-version: "2.0"
depends: [ "ocaml-system" {= "4.07.0"} | "ocaml-base-compiler" {= "4.07.0"} ]
flags: conf
### <pkg:ocaml-system.4.07.0>
opam-version: "2.0"
depends: [ "ocaml" {post} ]
available: sys-ocaml-version = "4.07.0"
flags: compiler
conflict-class: "ocaml-core-compiler"
### <pkg:ocaml-base-compiler.4.07.0>
opam-version: "2.0"
depends: [ "ocaml" {= "4.07.0" & post} ]
flags: compiler
conflict-class: "ocaml-core-compiler"
### :---:
### <pkg:ocaml.4.10.0>
opam-version: "2.0"
depends: [ "ocaml-system" {= "4.10.0"} | "ocaml-base-compiler" {= "4.10.0"} ]
flags: conf
### <pkg:ocaml-system.4.10.0>
depends: [ "ocaml" {post} ]
opam-version: "2.0"
available: sys-ocaml-version = "4.10.0"
flags: compiler
conflict-class: "ocaml-core-compiler"
### <pkg:ocaml-base-compiler.4.10.0>
opam-version: "2.0"
depends: [ "ocaml" {= "4.10.0" & post} ]
flags: compiler
conflict-class: "ocaml-core-compiler"
### :---:
### :I: Default compiler selection
### :I:1: No system compiler
### rm -rf ${OPAMROOT}
### <opamrc>
eval-variables: [ sys-ocaml-version ["false"] "no system compiler" ]
### opam init --no-setup --bypass-checks default REPO/ --config opamrc | grep -v Cygwin
Configuring from ${BASEDIR}/opamrc and then from built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
<><> Creating initial switch 'default' (invariant ["ocaml" {>= "4.05.0"}] - initially with ocaml-base-compiler)
<><> Installing new switch packages <><><><><><><><><><><><><><><><><><><><><><>
Switch invariant: ["ocaml" {>= "4.05.0"}]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed ocaml-base-compiler.4.10.0
-> installed ocaml.4.10.0
Done.
### opam switch invariant
["ocaml" {>= "4.05.0"}]
### :I:2: system compiler not compliant with default invariant
### rm -rf ${OPAMROOT}
### <opamrc>
eval-variables: [ sys-ocaml-version ["echo" "4.02.3"] "old system compiler" ]
### opam init --no-setup --bypass-checks default REPO/ --config opamrc | grep -v Cygwin
Configuring from ${BASEDIR}/opamrc and then from built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
<><> Creating initial switch 'default' (invariant ["ocaml" {>= "4.05.0"}] - initially with ocaml-base-compiler)
<><> Installing new switch packages <><><><><><><><><><><><><><><><><><><><><><>
Switch invariant: ["ocaml" {>= "4.05.0"}]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed ocaml-base-compiler.4.10.0
-> installed ocaml.4.10.0
Done.
### opam switch invariant
["ocaml" {>= "4.05.0"}]
### :I:3: Base compiler should be selected default
### rm -rf ${OPAMROOT}
### <opamrc>
eval-variables: [ sys-ocaml-version ["echo" "4.07.0"] "new system compiler" ]
### opam init --no-setup --bypass-checks default REPO/ --config opamrc | grep -v Cygwin
Configuring from ${BASEDIR}/opamrc and then from built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
<><> Creating initial switch 'default' (invariant ["ocaml" {>= "4.05.0"}] - initially with ocaml-base-compiler)
<><> Installing new switch packages <><><><><><><><><><><><><><><><><><><><><><>
Switch invariant: ["ocaml" {>= "4.05.0"}]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed ocaml-base-compiler.4.10.0
-> installed ocaml.4.10.0
Done.
### opam switch invariant
["ocaml" {>= "4.05.0"}]
### :I:4: ocaml-system explicit selection
### rm -rf $OPAMROOT
### <opamrc>
eval-variables: [ sys-ocaml-version ["echo" "4.07.0"] "new system compiler" ]
### opam init --no-setup --bypass-checks default REPO/ --config opamrc -c ocaml-system | grep -v Cygwin
Configuring from ${BASEDIR}/opamrc and then from built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
<><> Creating initial switch 'ocaml-system' (invariant ["ocaml-system"]) ><><><>
<><> Installing new switch packages <><><><><><><><><><><><><><><><><><><><><><>
Switch invariant: ["ocaml-system"]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed ocaml-system.4.07.0
-> installed ocaml.4.07.0
Done.
### opam switch invariant
["ocaml-system"]
### :II: Init with config file :
### :II:a: default setup ::
### rm -rf $OPAMROOT
### opam init --bypass-checks --bare --no-setup default REPO/ | grep -v Cygwin
No configuration file found, using built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
### opam-cat $OPAMROOT/config | 'opam-root-version: "${OPAMROOTVERSION}"' -> 'opam-root-version: current' | grep -v sys-pkg-manager-cmd | grep -v global-variables | grep -v eval-variables:
default-compiler: ["ocaml-base-compiler"]
default-invariant: ["ocaml" {>= "4.05.0"}]
depext: true
depext-cannot-install: false
depext-run-installs: true
download-jobs: 3
opam-root-version: current
opam-version: "2.0"
repositories: "default"
swh-fallback: false
wrap-build-commands: ["%{hooks}%/sandbox.sh" "build"] {os = "linux" | os = "macos"}
wrap-install-commands: ["%{hooks}%/sandbox.sh" "install"] {os = "linux" | os = "macos"}
wrap-remove-commands: ["%{hooks}%/sandbox.sh" "remove"] {os = "linux" | os = "macos"}
### :II:b: full configured opamrc ::
### rm -rf $OPAMROOT
### <opamrc>
opam-version: "2.0"
repositories: "norepo" {"REPO/"}
default-compiler: "ocaml"
default-invariant: "ocaml" { = "4.10.0"}
jobs: 9
download-command: "dl-tool"
download-jobs: 8
archive-mirrors: "REPO/cache"
solver-criteria: "solver-criteri"
solver-upgrade-criteria: "upgrade-criteri"
solver-fixup-criteria: "fixup-criteri"
solver: "a-solver"
global-variables: [ GLOB "glob" "Set throught opamrc" ]
eval-variables: [ var-to-eval ["true"] "tautology" ]
recommended-tools: [ "recommended" ]
required-tools: [ "required" { "tautology" } ]
init-scripts:
[ "a-script.sh"
"""\
#!/usr/bin/env bash
echo "script $1 launched STOP i repeat STOP script $1 launched"
""" ]
pre-build-commands: ["%{hooks}%/a-script.sh" "pre-build" ]
pre-install-commands: ["%{hooks}%/a-script.sh" "pre-install" ]
pre-remove-commands: ["%{hooks}%/a-script.sh" "pre-remove" ]
pre-session-commands: ["%{hooks}%/a-script.sh" "pre-session" ]
wrap-build-commands: ["%{hooks}%/a-script.sh" "wrap-build" ]
wrap-install-commands: ["%{hooks}%/a-script.sh" "wrap-install" ]
wrap-remove-commands: ["%{hooks}%/a-script.sh" "wrap-remove" ]
post-build-commands: ["%{hooks}%/a-script.sh" "post-build" ]
post-install-commands: ["%{hooks}%/a-script.sh" "post-install" ]
post-remove-commands: ["%{hooks}%/a-script.sh" "post-remove" ]
post-session-commands: ["%{hooks}%/a-script.sh" "post-session" ]
### opam init --bypass-checks --bare --no-setup --config opamrc | grep -v Cygwin
Configuring from ${BASEDIR}/opamrc and then from built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[norepo] Initialised
### opam-cat $OPAMROOT/config | 'opam-root-version: "${OPAMROOTVERSION}"' -> 'opam-root-version: current' | grep -v sys-pkg-manager-cmd | '\[\[os-distribution "cygwin" "Set by opam init"] ' -> '' | ']]' -> ']'
archive-mirrors: "file://${BASEDIR}/REPO/cache"
default-compiler: ["ocaml"]
default-invariant: ["ocaml" {= "4.10.0"}]
depext: true
depext-cannot-install: false
depext-run-installs: true
download-command: "dl-tool"
download-jobs: 8
eval-variables: [var-to-eval ["true"] "tautology"]
global-variables: [GLOB "glob" "Set throught opamrc"]
jobs: 9
opam-root-version: current
opam-version: "2.0"
post-build-commands: ["%{hooks}%/a-script.sh" "post-build"]
post-install-commands: ["%{hooks}%/a-script.sh" "post-install"]
post-remove-commands: ["%{hooks}%/a-script.sh" "post-remove"]
post-session-commands: ["%{hooks}%/a-script.sh" "post-session"]
pre-build-commands: ["%{hooks}%/a-script.sh" "pre-build"]
pre-install-commands: ["%{hooks}%/a-script.sh" "pre-install"]
pre-remove-commands: ["%{hooks}%/a-script.sh" "pre-remove"]
pre-session-commands: ["%{hooks}%/a-script.sh" "pre-session"]
repositories: "norepo"
solver: "a-solver"
solver-criteria: "solver-criteri"
solver-fixup-criteria: "fixup-criteri"
solver-upgrade-criteria: "upgrade-criteri"
swh-fallback: false
wrap-build-commands: ["%{hooks}%/a-script.sh" "wrap-build"]
wrap-install-commands: ["%{hooks}%/a-script.sh" "wrap-install"]
wrap-remove-commands: ["%{hooks}%/a-script.sh" "wrap-remove"]
### opam-cat $OPAMROOT/repo/repos-config
opam-version: "2.0"
repositories: "norepo" {"file://${BASEDIR}/REPO"}
### sh $OPAMROOT/opam-init/hooks/a-script.sh test
script test launched STOP i repeat STOP script test launched
### :: partially configured opamrc ::
### rm -rf $OPAMROOT
### <opamrc>
opam-version: "2.0"
repositories: "norepo" {"REPO/"}
default-compiler: "ocaml"
download-jobs: 8
archive-mirrors: "REPO/cache"
eval-variables: [ var-to-eval ["true"] "tautology" ]
required-tools: [ "required" { "tautology" } ]
# As fields are overriden, it is needed to recreate sandbox script
init-scripts: [
[ "a-script.sh"
"""\
#!/usr/bin/env bash
echo "script $1 launched STOP i repeat STOP script $1 launched"
""" ]
[ "sandbox.sh"
"""\
#!/usr/bin/env bash
echo "SUCCESS"
""" ]
]
pre-build-commands: ["%{hooks}%/a-script.sh" "pre-build" ]
wrap-install-commands: ["%{hooks}%/a-script.sh" "wrap-install" ]
post-session-commands: ["%{hooks}%/a-script.sh" "post-session" ]
### opam init --bypass-checks --bare --no-setup --config opamrc | grep -v Cygwin
Configuring from ${BASEDIR}/opamrc and then from built-in defaults.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[norepo] Initialised
### opam-cat $OPAMROOT/config | 'opam-root-version: "${OPAMROOTVERSION}"' -> 'opam-root-version: current' | grep -v sys-pkg-manager-cmd | grep -v global-variables
archive-mirrors: "file://${BASEDIR}/REPO/cache"
default-compiler: ["ocaml"]
default-invariant: ["ocaml" {>= "4.05.0"}]
depext: true
depext-cannot-install: false
depext-run-installs: true
download-jobs: 8
eval-variables: [var-to-eval ["true"] "tautology"]
opam-root-version: current
opam-version: "2.0"
post-session-commands: ["%{hooks}%/a-script.sh" "post-session"]
pre-build-commands: ["%{hooks}%/a-script.sh" "pre-build"]
repositories: "norepo"
swh-fallback: false
wrap-build-commands: ["%{hooks}%/sandbox.sh" "build"] {os = "linux" | os = "macos"}
wrap-install-commands: ["%{hooks}%/a-script.sh" "wrap-install"]
wrap-remove-commands: ["%{hooks}%/sandbox.sh" "remove"] {os = "linux" | os = "macos"}
### opam-cat $OPAMROOT/repo/repos-config
opam-version: "2.0"
repositories: "norepo" {"file://${BASEDIR}/REPO"}