forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew.ts
463 lines (445 loc) · 12.5 KB
/
brew.ts
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
const generators: Record<string, Fig.Generator> = {
servicesgenerators: {
script: "brew services list | sed -e 's/ .*//' | tail -n +2",
postProcess: function (out) {
return out
.split("\n")
.filter((line) => !line.includes("unbound"))
.map((line) => ({
name: line,
type: "option",
}));
},
},
};
// brew info is equiv to brew abv. Everything but 'name' is shared.
const brewInfo = (name: string): Fig.Subcommand => ({
name,
description: "Display brief statistics for your Homebrew installation",
args: {
isVariadic: true,
isOptional: true,
name: "formula",
description: "Formula or cask to summarize",
generators: {
script:
"HBPATH=$(brew --repository); ls -1 $HBPATH/Library/Taps/homebrew/homebrew-core/Formula $HBPATH/Library/Taps/homebrew/homebrew-cask/Casks",
postProcess: function (out) {
return out.split("\n").map((formula) => {
return {
name: formula.replace(".rb", ""),
description: "Formula",
icon: "🍺",
priority:
(formula[0] >= "0" && formula[0] <= "9") || formula[0] == "/"
? 0
: 51,
};
});
},
},
},
options: [
{
name: "--analytics",
description:
"List global Homebrew analytics data or, if specified, installation and build error data for formula",
},
{
name: "--days",
description: "How many days of analytics data to retrieve",
exclusiveOn: ["--analytics"],
args: {
name: "days",
description: "Number of days of data to retrieve",
},
},
{
name: "--category",
description: "Which type of analytics data to retrieve",
exclusiveOn: ["--analytics"],
args: {
generators: {
custom: async (ctx) => {
// if anything provided after the subcommand does not begin with '-'
// then a formula has been provided and we should provide info on it
if (
ctx.slice(2, ctx.length - 1).some((token) => token[0] !== "-")
) {
return ["install", "install-on-request", "build-error"].map(
(sugg) => ({
name: sugg,
})
);
}
// if no formulas are specified, then we should provide system info
return ["cask-install", "os-version"].map((sugg) => ({
name: sugg,
}));
},
},
},
},
{
name: "--github",
description: "Open the GitHub source page for formula in a browser",
},
{
name: "--json",
description: "Print a JSON representation",
},
{
name: "--installed",
exclusiveOn: ["--json"],
description: "Print JSON of formulae that are currently installed",
},
{
name: "--all",
exclusiveOn: ["--json"],
description: "Print JSON of all available formulae",
},
{
name: ["-v", "--verbose"],
description: "Show more verbose analytics data for formulae",
},
{
name: "--formula",
description: "Treat all named arguments as formulae",
},
{
name: "--cash",
description: "Treat all named arguments as casks",
},
],
});
const completionSpec: Fig.Spec = {
name: "brew",
description: "Package manager for macOS",
subcommands: [
{ name: "list", description: "List all installed formulae" },
{
name: "leaves",
description:
"List installed formulae that are not dependencies of another installed formula",
options: [
{
name: ["-r", "--installed-on-request"],
description: "Show manually installed formula",
},
{
name: ["-p", "--installed-as-dependency"],
description: "Show installed formula as dependencies",
},
],
},
{
name: "doctor",
description: "Check your system for potential problems",
options: [
{
name: "--list-checks",
description: "List all audit methods",
},
{
name: ["-D", "--audit-debug"],
description: "Enable debugging and profiling of audit methods",
},
],
},
brewInfo("info"),
brewInfo("abv"),
{
name: "update",
description: "Fetch the newest version of Homebrew and all formulae",
},
{
name: "outdated",
description:
"List installed casks and formulae that have an updated version available",
options: [
{
name: ["-d", "--debug"],
description: "Display any debugging information",
},
{
name: ["-q", "--quiet"],
description: "List only the names of outdated kegs",
},
{
name: ["-v", "--verbose"],
description: "Include detailed version information",
},
{
name: ["-h", "--help"],
description: "Show help message for the outdated command",
},
{ name: "--cask", description: "List only outdated casks" },
{
name: "--fetch-HEAD",
description:
"Fetch the upstream repository to detect if the HEAD installation of the formula is outdated",
},
{ name: "--formula", description: "List only outdated formulae" },
{
name: "--greedy",
description:
"Print outdated casks with auto_updates or version :latest",
},
{ name: "--json", description: "Print output in JSON format" },
],
},
{ name: "upgrade", description: "Upgrade outdated casks and outdated" },
{
name: "search",
description:
"Perform a substring search of cask tokens and formula names",
},
{
name: "config",
description: "Show Homebrew and system configuration info",
},
{
name: "install",
description: "Install <formula>",
args: {
isVariadic: true,
name: "formula",
description: "Formula or cask to install",
generators: {
script:
"HBPATH=$(brew --repository); ls -1 $HBPATH/Library/Taps/homebrew/homebrew-core/Formula $HBPATH/Library/Taps/homebrew/homebrew-cask/Casks",
postProcess: function (out) {
return out.split("\n").map((formula) => {
return {
name: formula.replace(".rb", ""),
description: "Formula",
icon: "🍺",
priority:
(formula[0] >= "0" && formula[0] <= "9") || formula[0] == "/"
? 0
: 51,
};
});
},
},
},
},
{
name: "uninstall",
description: "Uninstall <formula>",
args: {
isVariadic: true,
name: "formula",
generators: {
script: "brew list -1",
postProcess: function (out) {
return out
.split("\n")
.filter((line) => !line.includes("="))
.map((formula) => {
return {
name: formula,
icon: "🍺",
description: "Installed formula",
};
});
},
},
},
},
{
name: "cask",
description:
"Homebrew Cask provides a friendly CLI workflow for the administration of macOS applications distributed as binaries",
subcommands: [
{
name: "install",
description: "Installs the given cask",
args: {
name: "cask",
description: "Cask to install",
},
},
{
name: "uninstall",
description: "Uninstalls the given cask",
args: {
isVariadic: true,
generators: {
script: "brew list -1 --cask",
postProcess: function (out) {
return out.split("\n").map((formula) => {
return {
name: formula,
icon: "🍺",
description: "Installed formula",
};
});
},
},
},
},
],
},
{
name: "cleanup",
description:
"Remove stale lock files and outdated downloads for all formulae and casks and remove old versions of installed formulae",
options: [
{
name: ["--prune", "--prune=all"],
description: "Remove all cache files older than specified days",
},
{
name: ["-n", "--dry-run"],
description:
"Show what would be removed, but do not actually remove anything",
},
{
name: "-s",
description:
"Scrub the cache, including downloads for even the latest versions",
},
{
name: "--prune-prefix",
description:
"Only prune the symlinks and directories from the prefix and remove no other files",
},
],
args: {
isVariadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "services",
description:
"Manage background services with macOS' launchctl(1) daemon manager",
options: [
{
name: ["-d", "--debug"],
description: "Display any debugging information",
},
{
name: ["-q", "--quiet"],
description: "Suppress any warnings",
},
{
name: ["-v", "--verbose"],
description: "Make some output more verbose",
},
{
name: ["-h", "--help"],
description: "Get help with services command",
},
],
subcommands: [
{
name: "cleanup",
description: "Remove all unused services",
},
{
name: "list",
description: "List all services",
},
{
name: "run",
description:
"Run the service formula without registering to launch at login (or boot)",
options: [
{
name: "--all",
description: "Start all services",
},
],
args: {
isVariadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "start",
description:
"Start the service formula immediately and register it to launch at login",
options: [
{
name: "--all",
description: "Start all services",
},
],
args: {
isVariadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "stop",
description:
"Stop the service formula immediately and unregister it from launching at",
options: [
{
name: "--all",
description: "Start all services",
},
],
args: {
isVariadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "restart",
description:
"Stop (if necessary) and start the service formula immediately and register it to launch at login (or boot)",
options: [
{
name: "--all",
description: "Start all services",
},
],
args: {
isVariadic: true,
generators: generators.servicesGenerator,
},
},
],
},
{
name: "analytics",
description: "Manages analytics preferences",
subcommands: [
{
name: "on",
description: "Turns on analytics",
},
{
name: "off",
description: "Turns off analytics",
},
{
name: "regenerate-uuid",
description: "Regenerate the UUID used for analytics",
},
],
},
{
name: "autoremove",
description:
"Uninstall formulae that were only installed as a dependency of another formula and are now no longer needed",
options: [
{
name: ["-n", "--dry-run"],
description:
"List what would be uninstalled, but do not actually uninstall anything",
},
],
},
],
options: [
{
name: "--version",
description: "The current Homebrew version",
},
],
};
export default completionSpec;