npm-pkgbuild 20.6.4 → 20.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,460 +0,0 @@
1
- /**
2
- * @type {Object} KeyValueTransformOptions
3
- * Options to describe key value pair separated by an equal sign '='
4
- */
5
- export const pkgKeyValuePairOptions: any;
6
- export class ARCH extends Packager {
7
- static get alias(): string;
8
- static get description(): string;
9
- static get fileNameExtension(): string;
10
- /**
11
- * well known package properties
12
- * https://www.archlinux.org/pacman/PKGBUILD.5.html
13
- */
14
- static attributes: {
15
- Maintainer: {
16
- alias: string;
17
- prefix: string;
18
- type: object;
19
- isKey: boolean;
20
- writable: boolean;
21
- mandatory: boolean;
22
- collection: boolean;
23
- constructor?: Function;
24
- private?: boolean;
25
- credential?: boolean;
26
- persistent?: boolean;
27
- depends?: string;
28
- description?: string;
29
- default?: any;
30
- set?: Function;
31
- get?: Function;
32
- toInternal?: Function;
33
- toExternal?: Function;
34
- values?: Set<any>;
35
- externalName?: string;
36
- env?: string[] | string;
37
- additionalValues?: object;
38
- };
39
- packager: {
40
- alias: string;
41
- type: object;
42
- isKey: boolean;
43
- writable: boolean;
44
- mandatory: boolean;
45
- collection: boolean;
46
- constructor?: Function;
47
- private?: boolean;
48
- credential?: boolean;
49
- persistent?: boolean;
50
- depends?: string;
51
- description?: string;
52
- default?: any;
53
- set?: Function;
54
- get?: Function;
55
- toInternal?: Function;
56
- toExternal?: Function;
57
- values?: Set<any>;
58
- externalName?: string;
59
- env?: string[] | string;
60
- additionalValues?: object;
61
- };
62
- pkgname: {
63
- collection: boolean;
64
- alias: string;
65
- mandatory: boolean;
66
- pattern: RegExp;
67
- type: object;
68
- isKey: boolean;
69
- writable: boolean;
70
- constructor?: Function;
71
- private?: boolean;
72
- credential?: boolean;
73
- persistent?: boolean;
74
- depends?: string;
75
- description?: string;
76
- default?: any;
77
- set?: Function;
78
- get?: Function;
79
- toInternal?: Function;
80
- toExternal?: Function;
81
- values?: Set<any>;
82
- externalName?: string;
83
- env?: string[] | string;
84
- additionalValues?: object;
85
- };
86
- pkgver: {
87
- alias: string;
88
- mandatory: boolean;
89
- set: (v: any) => any;
90
- type: object;
91
- isKey: boolean;
92
- writable: boolean;
93
- collection: boolean;
94
- constructor?: Function;
95
- private?: boolean;
96
- credential?: boolean;
97
- persistent?: boolean;
98
- depends?: string;
99
- description?: string;
100
- default?: any;
101
- get?: Function;
102
- toInternal?: Function;
103
- toExternal?: Function;
104
- values?: Set<any>;
105
- externalName?: string;
106
- env?: string[] | string;
107
- additionalValues?: object;
108
- };
109
- pkgrel: {
110
- alias: string;
111
- default: number;
112
- mandatory: boolean;
113
- type: object;
114
- isKey: boolean;
115
- writable: boolean;
116
- collection: boolean;
117
- constructor?: Function;
118
- private?: boolean;
119
- credential?: boolean;
120
- persistent?: boolean;
121
- depends?: string;
122
- description?: string;
123
- set?: Function;
124
- get?: Function;
125
- toInternal?: Function;
126
- toExternal?: Function;
127
- values?: Set<any>;
128
- externalName?: string;
129
- env?: string[] | string;
130
- additionalValues?: object;
131
- };
132
- epoch: {
133
- default: number;
134
- type: object;
135
- isKey: boolean;
136
- writable: boolean;
137
- mandatory: boolean;
138
- collection: boolean;
139
- constructor?: Function;
140
- private?: boolean;
141
- credential?: boolean;
142
- persistent?: boolean;
143
- depends?: string;
144
- description?: string;
145
- set?: Function;
146
- get?: Function;
147
- toInternal?: Function;
148
- toExternal?: Function;
149
- values?: Set<any>;
150
- externalName?: string;
151
- env?: string[] | string;
152
- additionalValues?: object;
153
- };
154
- pkgdesc: {
155
- alias: string;
156
- mandatory: boolean;
157
- type: object;
158
- isKey: boolean;
159
- writable: boolean;
160
- collection: boolean;
161
- constructor?: Function;
162
- private?: boolean;
163
- credential?: boolean;
164
- persistent?: boolean;
165
- depends?: string;
166
- description?: string;
167
- default?: any;
168
- set?: Function;
169
- get?: Function;
170
- toInternal?: Function;
171
- toExternal?: Function;
172
- values?: Set<any>;
173
- externalName?: string;
174
- env?: string[] | string;
175
- additionalValues?: object;
176
- };
177
- url: {
178
- alias: string;
179
- type: object;
180
- isKey: boolean;
181
- writable: boolean;
182
- mandatory: boolean;
183
- collection: boolean;
184
- constructor?: Function;
185
- private?: boolean;
186
- credential?: boolean;
187
- persistent?: boolean;
188
- depends?: string;
189
- description?: string;
190
- default?: any;
191
- set?: Function;
192
- get?: Function;
193
- toInternal?: Function;
194
- toExternal?: Function;
195
- values?: Set<any>;
196
- externalName?: string;
197
- env?: string[] | string;
198
- additionalValues?: object;
199
- };
200
- license: {
201
- mandatory: boolean;
202
- type: object;
203
- isKey: boolean;
204
- writable: boolean;
205
- collection: boolean;
206
- constructor?: Function;
207
- private?: boolean;
208
- credential?: boolean;
209
- persistent?: boolean;
210
- depends?: string;
211
- description?: string;
212
- default?: any;
213
- set?: Function;
214
- get?: Function;
215
- toInternal?: Function;
216
- toExternal?: Function;
217
- values?: Set<any>;
218
- externalName?: string;
219
- env?: string[] | string;
220
- additionalValues?: object;
221
- };
222
- install: import("pacc").AttributeDefinition;
223
- changelog: import("pacc").AttributeDefinition;
224
- source: import("pacc").AttributeDefinition;
225
- validpgpkeys: import("pacc").AttributeDefinition;
226
- noextract: import("pacc").AttributeDefinition;
227
- cksums: import("pacc").AttributeDefinition;
228
- md5sums: import("pacc").AttributeDefinition;
229
- sha1sums: import("pacc").AttributeDefinition;
230
- sha256sums: import("pacc").AttributeDefinition;
231
- sha384sums: import("pacc").AttributeDefinition;
232
- sha512sums: import("pacc").AttributeDefinition;
233
- groups: import("pacc").AttributeDefinition;
234
- arch: {
235
- default: string[];
236
- mandatory: boolean;
237
- type: object;
238
- isKey: boolean;
239
- writable: boolean;
240
- collection: boolean;
241
- constructor?: Function;
242
- private?: boolean;
243
- credential?: boolean;
244
- persistent?: boolean;
245
- depends?: string;
246
- description?: string;
247
- set?: Function;
248
- get?: Function;
249
- toInternal?: Function;
250
- toExternal?: Function;
251
- values?: Set<any>;
252
- externalName?: string;
253
- env?: string[] | string;
254
- additionalValues?: object;
255
- };
256
- backup: import("pacc").AttributeDefinition;
257
- depends: {
258
- type: {
259
- name: string;
260
- primitive: boolean;
261
- toExternal: (value: any, attribute: any) => string | any[];
262
- };
263
- writable: boolean;
264
- collection: boolean;
265
- separator: string;
266
- pattern: RegExp;
267
- isKey: boolean;
268
- mandatory: boolean;
269
- constructor?: Function;
270
- private?: boolean;
271
- credential?: boolean;
272
- persistent?: boolean;
273
- depends?: string;
274
- description?: string;
275
- default?: any;
276
- set?: Function;
277
- get?: Function;
278
- toInternal?: Function;
279
- toExternal?: Function;
280
- values?: Set<any>;
281
- externalName?: string;
282
- env?: string[] | string;
283
- additionalValues?: object;
284
- };
285
- makedepends: {
286
- type: {
287
- name: string;
288
- primitive: boolean;
289
- toExternal: (value: any, attribute: any) => string | any[];
290
- };
291
- writable: boolean;
292
- collection: boolean;
293
- separator: string;
294
- pattern: RegExp;
295
- isKey: boolean;
296
- mandatory: boolean;
297
- constructor?: Function;
298
- private?: boolean;
299
- credential?: boolean;
300
- persistent?: boolean;
301
- depends?: string;
302
- description?: string;
303
- default?: any;
304
- set?: Function;
305
- get?: Function;
306
- toInternal?: Function;
307
- toExternal?: Function;
308
- values?: Set<any>;
309
- externalName?: string;
310
- env?: string[] | string;
311
- additionalValues?: object;
312
- };
313
- checkdepends: {
314
- type: {
315
- name: string;
316
- primitive: boolean;
317
- toExternal: (value: any, attribute: any) => string | any[];
318
- };
319
- writable: boolean;
320
- collection: boolean;
321
- separator: string;
322
- pattern: RegExp;
323
- isKey: boolean;
324
- mandatory: boolean;
325
- constructor?: Function;
326
- private?: boolean;
327
- credential?: boolean;
328
- persistent?: boolean;
329
- depends?: string;
330
- description?: string;
331
- default?: any;
332
- set?: Function;
333
- get?: Function;
334
- toInternal?: Function;
335
- toExternal?: Function;
336
- values?: Set<any>;
337
- externalName?: string;
338
- env?: string[] | string;
339
- additionalValues?: object;
340
- };
341
- optdepends: {
342
- type: {
343
- name: string;
344
- primitive: boolean;
345
- toExternal: (value: any, attribute: any) => string | any[];
346
- };
347
- writable: boolean;
348
- collection: boolean;
349
- separator: string;
350
- pattern: RegExp;
351
- isKey: boolean;
352
- mandatory: boolean;
353
- constructor?: Function;
354
- private?: boolean;
355
- credential?: boolean;
356
- persistent?: boolean;
357
- depends?: string;
358
- description?: string;
359
- default?: any;
360
- set?: Function;
361
- get?: Function;
362
- toInternal?: Function;
363
- toExternal?: Function;
364
- values?: Set<any>;
365
- externalName?: string;
366
- env?: string[] | string;
367
- additionalValues?: object;
368
- };
369
- conflicts: {
370
- type: {
371
- name: string;
372
- primitive: boolean;
373
- toExternal: (value: any, attribute: any) => string | any[];
374
- };
375
- writable: boolean;
376
- collection: boolean;
377
- separator: string;
378
- pattern: RegExp;
379
- isKey: boolean;
380
- mandatory: boolean;
381
- constructor?: Function;
382
- private?: boolean;
383
- credential?: boolean;
384
- persistent?: boolean;
385
- depends?: string;
386
- description?: string;
387
- default?: any;
388
- set?: Function;
389
- get?: Function;
390
- toInternal?: Function;
391
- toExternal?: Function;
392
- values?: Set<any>;
393
- externalName?: string;
394
- env?: string[] | string;
395
- additionalValues?: object;
396
- };
397
- provides: {
398
- type: {
399
- name: string;
400
- primitive: boolean;
401
- toExternal: (value: any, attribute: any) => string | any[];
402
- };
403
- writable: boolean;
404
- collection: boolean;
405
- separator: string;
406
- pattern: RegExp;
407
- isKey: boolean;
408
- mandatory: boolean;
409
- constructor?: Function;
410
- private?: boolean;
411
- credential?: boolean;
412
- persistent?: boolean;
413
- depends?: string;
414
- description?: string;
415
- default?: any;
416
- set?: Function;
417
- get?: Function;
418
- toInternal?: Function;
419
- toExternal?: Function;
420
- values?: Set<any>;
421
- externalName?: string;
422
- env?: string[] | string;
423
- additionalValues?: object;
424
- };
425
- replaces: {
426
- type: {
427
- name: string;
428
- primitive: boolean;
429
- toExternal: (value: any, attribute: any) => string | any[];
430
- };
431
- writable: boolean;
432
- collection: boolean;
433
- separator: string;
434
- pattern: RegExp;
435
- isKey: boolean;
436
- mandatory: boolean;
437
- constructor?: Function;
438
- private?: boolean;
439
- credential?: boolean;
440
- persistent?: boolean;
441
- depends?: string;
442
- description?: string;
443
- default?: any;
444
- set?: Function;
445
- get?: Function;
446
- toInternal?: Function;
447
- toExternal?: Function;
448
- values?: Set<any>;
449
- externalName?: string;
450
- env?: string[] | string;
451
- additionalValues?: object;
452
- };
453
- options: import("pacc").AttributeDefinition;
454
- };
455
- static prepare(options?: {}, variant?: {}): Promise<boolean>;
456
- get packageFileName(): string;
457
- dependencyExpression(name: any, expression: any): any;
458
- create(sources: any, transformer: any, publishingDetails: any, options: any, expander: any): Promise<string>;
459
- }
460
- import { Packager } from "./packager.mjs";
@@ -1,6 +0,0 @@
1
- /**
2
- * Use buildah @see https://buildah.io
3
- */
4
- export class BUILDAH extends DOCKER {
5
- }
6
- import { DOCKER } from "./docker.mjs";