blob: c8fdfaa727bdc45841803e3ab7bcf8d3dfa71cfa (
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
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
|
# file : tests/manifest/testscript
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: packages
:
{
: name
:
{
: valid
:
$* -pp <<EOF >>EOF
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: libfoo.c++-2
version: 2.0.0
summary: Modern C++ parser
license: LGPLv2
url: http://www.example.org/projects/libfoo/
email: libfoo-users@example.org
location: libfoo.c++-2-2.0.0.tar.bz2
sha256sum: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
EOF
: invalid
:
{
: short
:
$* -pp <<EOI 2>'stdin:4:7: error: invalid package name: length is less than two characters' != 0
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: b
EOI
: illegal
:
$* -pp <<EOI 2>'stdin:4:7: error: invalid package name: illegal name' != 0
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: com3
EOI
: first-char
:
$* -pp <<EOI 2>'stdin:4:7: error: invalid package name: illegal first character (must be alphabetic)' != 0
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: 2b
EOI
: last-char
:
$* -pp <<EOI 2>'stdin:4:7: error: invalid package name: illegal last character (must be alphabetic or digit)' != 0
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: foo_
EOI
: char
:
$* -pp <<EOI 2>'stdin:4:7: error: invalid package name: illegal character' != 0
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: foo'bar
EOI
: dependency
:
$* -pp <<EOI 2>'stdin:5:10: error: invalid prerequisite package name: length is less than two characters' != 0
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: foo
depends: b
EOI
}
}
: pkg
:
{
: manifest
:
: Roundtrip the pkg package manifest list.
:
$* -pp <<EOF >>EOF
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: libfoo
version: 1.2.3+2
priority: high; Due to critical bug fix.
summary: Modern XML parser
license: LGPLv2, MIT; Both required.
license: BSD
tags: c++, xml, parser, serializer, pull, streaming, modern
description: libfoo is a very modern C++ XML parser.
changes: 1.2.3+2: applied upstream patch for critical bug bar
changes: 1.2.3+1: applied upstream patch for critical bug foo
url: http://www.example.org/projects/libfoo/; libfoo project page url
doc-url: http://www.example.org/projects/libfoo/man.xhtml; documentation page
src-url: http://scm.example.com/?p=odb/libodb.git\;a=tree; source tree
package-url: http://www.example.org/projects/libfoo/1.2.3+2; package url
email: libfoo-users@example.org; Public mailing list, posts by non-members\
are allowed but moderated.
package-email: libfoo-1.2.3+2@example.org; Bug reports are welcome.
build-email: libfoo-builds@example.org; Mailing list for bbot notification\
emails.
depends: libz ~1.0.0 | libz ^2.0.0
depends: libgnutls <= 1.2.3 | libopenssl >= 2.3.4
depends: ? libboost-regex >= 1.52.0; Only if C++ compiler does not support\
C++11 <regex>.
depends: ? libqtcore >= 5.0.0; Only if GUI is enabled.
requires: linux | windows | macosx; symbian is coming.
requires: c++11
requires: ? ; VC++ 12.0 or later if targeting Windows.
requires: ? ; libc++ standard library if using Clang on Mac OS X.
requires: zlib; Most Linux/UNIX systems already have one; or get it at\
www.zlib.net.
build-include: linux*
build-include: freebsd*
build-exclude: *; Only supports Linux and FreeBSD.
location: libfoo-1.2.3+2.tar.bz2
sha256sum: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: libbar
version: 3.4A.5+6
summary: Modern bar management framework
license: LGPLv2
tags: c++, xml, modern
url: http://www.example.org/projects/libbar/
email: libbar-users@example.org
build-email:
depends: libbaz (1- 2-) | libbaz [3 4-) | libbaz (5 6] | libbaz [7 8]
build-exclude: *-msvc_14*/i?86-*; Linker crash.
location: bar/libbar-3.4A.5+6.tbz
sha256sum: d4b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
:
name: libbaz
version: +2-3.4A.5+3
summary: Modern baz system
license: LGPLv2
url: http://www.example.org/projects/libbar/
email: libbaz-users@example.org
location: libbaz/libbaz-+2-3.4A.5+3.tar.gz
sha256sum: b5b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
EOF
}
: dir
:
{
: empty
:
: Roundtrip an empty dir package manifest list.
:
$* -gp <"" >:""
: non-empty
:
: Roundtrip the dir package manifest list.
:
$* -gp <<EOF >>EOF
: 1
location: hello/
:
location: mhello/
EOF
: duplicate
:
$* -gp <<EOI 2>'stdin:5:1: error: duplicate package manifest' != 0
: 1
location: hello/
:
location: hello/
:
location: mhello/
EOI
}
: git
:
{
: fragment
:
$* -gp <<EOF >>EOF
: 1
location: hello/
fragment: ca602c2d46b0dca7a9ebc856871767b0ba6b74f3
:
location: mhello/
fragment: ca602c2d46b0dca7a9ebc856871767b0ba6b74f3
EOF
}
}
: repositories
:
{
: base-manifest-redefinition
:
$* -pr <<EOI 2>'stdin:3:1: error: base repository manifest redefinition' != 0
: 1
url: http://cppget.org
:
url: http://cppget.org
EOI
: no-base
:
$* -pr <<EOO >>EOO
: 1
location: http://pkg.example.org/1/math
type: pkg
role: prerequisite
:
location: ../stable
type: pkg
role: complement
EOO
: pkg
:
{
: manifest
:
: Roundtrip the pkg repository manifest list.
:
$* -pr <<EOF >>EOF
: 1
location: http://pkg.example.org/1/math
type: pkg
role: prerequisite
:
location: ../stable
type: pkg
role: complement
:
url: http://cppget.org
email: repoman@cppget.org; General mailing list.
summary: General C++ package repository
description: This is the awesome C++ package repository full of exciting\
stuff.
certificate: \
-----BEGIN CERTIFICATE-----
MIIFLzCCAxegAwIBAgIJAJ71rMp8mDy1MA0GCSqGSIb3DQEBCwUAMDMxFzAVBgNV
BAoMDkNvZGUgU3ludGhlc2lzMRgwFgYDVQQDDA9uYW1lOmNwcGdldC5vcmcwHhcN
MTYwNDA4MTc1NTUwWhcNMTcwNDA4MTc1NTUwWjAzMRcwFQYDVQQKDA5Db2RlIFN5
bnRoZXNpczEYMBYGA1UEAwwPbmFtZTpjcHBnZXQub3JnMIICIjANBgkqhkiG9w0B
AQEFAAOCAg8AMIICCgKCAgEAwj7lwxkr19ygfNIzQsiKkmyyRG0c5AwMrwvldEk7
2UIwz5kNb04zveUzQcfNFhau60+xC980Y4TKA4/ScfinyaDfp1I3pmiv4OSDUoBw
9e8a+4Jyo5fuiAXoAYaQyAdwvH1mIbYq1ObRfKW2MTrUXp/HRJAWHHBnv3VmCYBZ
dllY1hasA+SBDMBv6iTXkKUIfEdNDk8cjUR3FjxaefIdip9pHR3G0y4iWctS1drq
AKLE1J0KIJyPsJCvoZnzIeePaCNL/UtRup9mYi2vxHHFD4Ml5Bbp+gE6vq5XhcQz
LeCcGYKB3UjVWuszcpFIoHACw9ja2JUumbTiclUDgLBk8WXJvLjOCNLp9i/MKQws
p5CDfrNe2P6u63ZmtW2v0Qpj/6b6JQmqJaMgHQdDEBUFO3bjwm7yyXyvEjj/EAEJ
pGziWZjan5NKGgKCX1JChQJloMHhzr42YMvceWTMJjAr07Es9vCsCS2KPvAKY7Mv
yewAyK9ucFRDObZVuaFjU+WUTXB1munwO3Jso56EMxeFvu+W1B+m49XS3k/TlBvF
HGnkiSaMwLEJvgFVgQPpG2gD39WDFqX28pWdLL4hM+hXUfdeH0OdXfq66CLu7P8d
cgkZdHRs5UauxLzm1Qo06aLsm2HXrfDnmsd5ENi7RkiFMx1aLh3/cjZD0uHndQUC
LEcCAwEAAaNGMEQwDgYDVR0PAQH/BAQDAgeAMBYGA1UdJQEB/wQMMAoGCCsGAQUF
BwMDMBoGA1UdEQQTMBGBD2luZm9AY3BwZ2V0Lm9yZzANBgkqhkiG9w0BAQsFAAOC
AgEAHLfv2w82bBMgDgsRX8GU/3eK6CnyfRu4Auto1XjyHCrD6qcIdmebC0hihpSg
5xSlfVwjPRWBmg3z5/K8ln5jM6KKiWHd47OCfx+DW7wbesq2+6lS1btXpRR2pv7j
zG+41Cncu/xVNs9F4CQluVn5xyWFVDUxQfkQqAE46EbkjAmq42y+1ZQnq2Zm47Wr
iMRXQtg1yx7Fs2EpVU+sbW4ImuXgv0YbyYbI1lPhvmx8rIL6lybN3evEfIj7crh7
5abWPDZzA+1aNL5tiaSNrn3nS/BfJyEYhGMyy0bsekPZiaqGB1q/mgv2rmR/2SRL
Tx+T7sthy/IHTOUbDTY0lUhjc6thQMncgGTaD4TC3QaXhdLWzO9XTh0K7U8BOMwh
wppr1G5aTXY0PUB0+Hs+IQZ4mVfBvKO0Wn6GgoDAs/mW9qvbWP3ZnpdvhB52a49P
g07JQ+R0QgBNQY7t0lT0mOpAPx79Dwc5R8jQCkx4gTr1bWtgyCvza+gpTgUQDOH5
nawOIIDOnRv4heFdvgfEQs2oKa3X4bM+BsgOx7OTvnWCzJy0IXo0uBbcTrMv9Z62
+KVwnghQdpURRnUpomt03cTwjqVJVrq287owGv8qqnuGcTTi1SgzNNYREFoljY58
CCj4yYvTUzXjcAUXaNC5YNw3JEQp8vmciuJwhyUkbifLrHU=
-----END CERTIFICATE-----
\
EOF
: prerequisite-type
:
$* -pr <<EOI >>EOO
: 1
url: http://cppget.org
:
location: http://example.org/math.git#master
role: prerequisite
:
location: ../stable.git
role: complement
:
location: git://example.org/foo#master
type: git
role: prerequisite
:
location: http://pkg.example.org/1/bar
role: prerequisite
trust: 37:CE:2C:A5:1D:CF:93:81:D7:07:46:AD:66:B3:C3:90:83:B8:96:9E:34:F0:E7:B3:A2:B0:6C:EF:66:A4:BE:65
EOI
: 1
url: http://cppget.org
:
location: http://example.org/math.git#master
type: git
role: prerequisite
:
location: ../stable.git
type: pkg
role: complement
:
location: git://example.org/foo#master
type: git
role: prerequisite
:
location: http://pkg.example.org/1/bar
type: pkg
role: prerequisite
trust: 37:CE:2C:A5:1D:CF:93:81:D7:07:46:AD:66:B3:C3:90:83:B8:96:9E:34:F0:E7:B\
3:A2:B0:6C:EF:66:A4:BE:65
EOO
}
: git
:
{
: manifest
:
: Roundtrip the git repository manifest list.
:
$* -gr <<EOF >>EOF
: 1
location: http://example.org/math.git#master
type: git
role: prerequisite
:
location: ../stable.git#stable
type: git
role: complement
:
url: http://cppget.org
email: repoman@cppget.org; General mailing list.
summary: General C++ package repository
description: This is the awesome C++ package repository full of exciting\
stuff.
EOF
: fragment
:
$* -gr <<EOF >>EOF
: 1
location: http://example.org/math.git#master
type: git
role: prerequisite
fragment: ca602c2d46b0dca7a9ebc856871767b0ba6b74f3
:
location: ../stable.git#stable
type: git
role: complement
fragment: ca602c2d46b0dca7a9ebc856871767b0ba6b74f3
:
location: http://example.org/math.git#master
type: git
role: prerequisite
fragment: abc1232d46b0dca7a9ebc856871767b0ba6b74f3
:
location: ../stable.git#stable
type: git
role: complement
fragment: abc1232d46b0dca7a9ebc856871767b0ba6b74f3
:
url: http://cppget.org
email: repoman@cppget.org; General mailing list.
summary: General C++ package repository
description: This is the awesome C++ package repository full of exciting\
stuff.
EOF
: prerequisite-type
:
$* -gr <<EOI >>EOO
: 1
location: http://example.org/math.git#master
role: prerequisite
:
location: ../stable.git#stable
role: complement
:
location: git://example.org/foo#master
type: git
role: prerequisite
:
location: http://pkg.example.org/1/bar
role: prerequisite
:
url: http://cppget.org
EOI
: 1
location: http://example.org/math.git#master
type: git
role: prerequisite
:
location: ../stable.git#stable
type: git
role: complement
:
location: git://example.org/foo#master
type: git
role: prerequisite
:
location: http://pkg.example.org/1/bar
type: pkg
role: prerequisite
:
url: http://cppget.org
EOO
}
: dir
:
{
: manifest
:
: Roundtrip the dir repository manifest list.
:
$* -dr <<EOF >>EOF
: 1
location: ../stable
type: dir
role: complement
:
EOF
: prerequisite-with-fragment
:
$* -dr <<EOI >>EOO
: 1
location: ../stable.git#stable
role: complement
:
EOI
: 1
location: ../stable.git
type: dir
role: complement
:
EOO
}
}
: signature
:
: Roundtrip the signature manifest.
:
{
: manifest
:
$* -s <<EOF >>EOF
: 1
sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
signature: \
geWdw7Gm+Rt+CLDMBby5Y796E8rxwImb0bmcZwGWar9D3vkFm9Kjh00Buuo1PuU7tP1dV6yvRbH8
NzC0IryEoUJHx9909AJ449ET9Zb+C3ykEeBlKH2wonj7cAVK9ZEDpPEGAtp56XWZQEawl50mwq6t
XkZAABxtOswXiicdh3HK7kaPHp38/9CBMc0rva6wDnkbTigUYA2ULqLtP5a5mLovVc48zI9A/hmb
Qx1/Nr7nzTZNDGK7CwTAb1fPam9rZklTfCTPSPUUjvWjM9XdY8cbRE1FrE14TXdyQPxCLzHO2dUO
YWH5/qMikEoCYhYXQ6KhekoT/MUiVC3PMcYQbYOrOtSxq6RcgnymexBe1XIyld5Rfo1eXu8TK11r
QPULIqAGy6RwEUhGznuEiGHQwb1UymNyJ/qgr4vBPjJtlvptqG5XNmtiJ22f07nmeVRi2Vg2UyOw
HoVpy5t/w0tEnUXPA39Vt0v1bUm7Knhc8qL4JFEqK/j/CzEHzEtAjn0aoGuKubCO0WUa+v6ZlkLU
YrNUIdgT1wgj4yEhLO3g+NsnxFH05D2sfR16rrkI2E6st5crAHR8FOl2FDsWxgKqNbzXZw7rl+Fa
TobGycX7MDf2mbBmR/KmEkMBJ4mziWLAycSAGyE5VRYDwHPJlQE0143wBzT8eNw4VLm/r+88VYw=
\
EOF
}
|