forked from rmarquis/pacaur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zsh.completion
618 lines (571 loc) · 20.3 KB
/
zsh.completion
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
#compdef pacaur
#
# /usr/share/zsh/site-functions/_pacaur
#
typeset -A opt_args
setopt extendedglob
# we use zstat to check ctime quickly because pacman doesn't always set
# mtime and `test 'file' -nt 'file'` uses mtime
if zmodload -F zsh/stat b:zstat 2>/dev/null; then
# check all databases against the cache file
function _pacaur_all_packages_caching_policy() {
[[ ! -f "$1" ]] && return 0
for file in /var/lib/pacman/sync/*.db; do
if [[ "$(zstat +ctime "$file")" -gt "$(zstat +ctime "$1")" ]]; then
return 0
fi
done
return 1
}
# check the database being completed against it's cache file
function _pacaur_repo_packages_caching_policy() {
[[ ! -f "$1" ]] && return 0
local file="/var/lib/pacman/sync/${words[CURRENT]%/*}.db"
if [[ "$(zstat +ctime "$file")" -gt "$(zstat +ctime "$1")" ]]; then
return 0
fi
return 1
}
else
# return 0 is implicit
function _pacaur_all_packages_caching_policy() {}
function _pacaur_repo_packages_caching_policy() {}
fi
# options for passing to _arguments: main pacaur commands
_pacaur_opts_commands=(
":pacaur_commands:((
{-D,--database}\:'Modify database'
{-Q,--query}\:'Query the package database'
{-R,--remove}\:'Remove a package from the system'
{-S,--sync}\:'Synchronize packages'
{-T,--deptest}\:'Check if dependencies are installed'
{-U,--upgrade}\:'Upgrade a package'
sync\:'Clone, build and install target(s)'
search\:'Search AUR package names and descriptions'
info\:'Show info for target(s)'
buildonly\:'Clone and build target(s)'
upgrade\:'Upgrade AUR package(s)'
check\:'Check for AUR upgrade(s)'
clean\:'Clean AUR package(s) and clone(s)'
cleanall\:'Clean all AUR packages and clones'
{-h,--help}\:'Display usage'
'-V\:Display pacman version'
{-v,--version}\:'Display pacaur version'
))"
)
_pacaur_opts_extended=(
{-a,--aur}'[Only search, build, install or clean target(s) from the AUR]'
{-e,--edit}'[Edit target(s) PKGBUILD and view install script]'
{-r,--repo}'[Only search, build, install or clean target(s) from the repositories]'
'--domain[Point at another domain]'
'--foreign[Consider already installed foreign dependencies]'
'--noedit[Do not prompt to edit files]'
'--rebuild[Always rebuild package(s)]'
'--silent[Silence output]'
)
# options for passing to _arguments: options common to all commands
_pacaur_opts_common=(
{-b,--dbpath}'[Alternate database location]:database_location:_files -/'
'--color[colorize the output]:color options:(always never auto)'
{-h,--help}'[Display syntax for the given operation]'
'--root[Set alternate installation root]:installation root:_files -/'
{-v,--verbose}'[Be more verbose]'
'--cachedir[Alternate package cache location]:cache_location:_files -/'
'--config[An alternate configuration file]:config file:_files'
'--logfile[An alternate log file]:config file:_files'
'--noconfirm[Do not ask for confirmation]'
'--noprogressbar[Do not show a progress bar when downloading files]'
'--noscriptlet[Do not execute the install scriptlet if one exists]'
'--print[Only print the targets instead of performing the operation]'
)
# options for passing to _arguments: options for --upgrade commands
_pacaur_opts_pkgfile=(
'*-d[Skip dependency checks]'
'*--nodeps[Skip dependency checks]'
'--dbonly[Only remove database entry, do not remove files]'
'--force[Overwrite conflicting files]'
'--needed[Do not reinstall up to date packages]'
'*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"'
)
# options for passing to _arguments: subactions for --query command
_pacaur_opts_query_actions=(
'(-Q --query)'{-Q,--query}
{-g,--groups}'[View all members of a package group]:*:package groups:->query_group'
{-o,--owns}'[Query the package that owns a file]:file:_files'
{-p,--file}'[Package file to query]:*:package file:->query_file'
{-s,--search}'[Search package names and descriptions]:*:search text:->query_search'
)
# options for passing to _arguments: options for --query and subcommands
_pacaur_opts_query_modifiers=(
{-c,--changelog}'[List package changelog]'
{-d,--deps}'[List packages installed as dependencies]'
{-e,--explicit}'[List packages explicitly installed]'
{\*-i,\*--info}'[View package information]'
{\*-k,\*--check}'[Check package files]'
{-l,--list}'[List package contents]'
{-m,--foreign}'[List installed packages not found in sync db(s)]'
{-n,--native}'[List installed packages found in sync db(s)]'
{-t,--unrequired}'[List packages not required by any package]'
{-u,--upgrades}'[List packages that can be upgraded]'
{-q,--quiet}'[Show less information]'
)
# options for passing to _arguments: options for --remove command
_pacaur_opts_remove=(
{-c,--cascade}'[Remove all dependent packages]'
{*-d,*--nodeps}'[Skip dependency checks]'
{-n,--nosave}'[Remove protected configuration files]'
{\*-s,\*--recursive}'[Remove dependencies not required by other packages]'
'--dbonly[Only remove database entry, do not remove files]'
'*:installed package:_pacaur_completions_installed_packages'
)
_pacaur_opts_database=(
'--asdeps[mark packages as non-explicitly installed]'
'--asexplicit[mark packages as explicitly installed]'
'*:installed package:_pacaur_completions_installed_packages'
)
# options for passing to _arguments: options for --sync command
_pacaur_opts_sync_actions=(
'(-S --sync)'{-S,--sync}
{\*-c,\*--clean}'[Remove old packages from cache]:\*:clean:->sync_clean'
{-g,--groups}'[View all members of a package group]:*:package groups:->sync_group'
{-s,--search}'[Search package names and descriptions]:*:search text:->sync_search'
'--dbonly[Only remove database entry, do not remove files]'
'--needed[Do not reinstall up to date packages]'
'--recursive[Reinstall all dependencies of target packages]'
)
# options for passing to _arguments: options for --sync command
_pacaur_opts_sync_modifiers=(
{\*-d,\*--nodeps}'[Skip dependency checks]'
{\*-i,\*--info}'[View package information]'
{-l,--list}'[List all packages in a repository]'
{-p,--print}'[Print download URIs for each package to be installed]'
{\*-u,\*--sysupgrade}'[Upgrade all out-of-date packages]'
{-w,--downloadonly}'[Download packages only]'
{\*-y,\*--refresh}'[Download fresh package databases]'
{-q,--quiet}'[Show less information]'
'*--ignore[Ignore a package upgrade]:package: _pacaur_all_packages'
'*--ignoregroup[Ignore a group upgrade]:package group:_pacaur_completions_all_groups'
'--asdeps[Install packages as non-explicitly installed]'
'--asexplicit[Install packages as explicitly installed]'
'--force[Overwrite conflicting files]'
)
# handles check subcommand
_pacaur_action_check() {
_arguments -s : \
"*:check:(( --devel\:'Consider AUR development packages upgrade' ))"
}
# handles info subcommand
_pacaur_action_info() {
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_extended[@]" \
"$_pacaur_opts_sync_actions[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:info:_pacaur_completions_aur_packages'
}
# handles clean subcommand
_pacaur_action_clean() {
if [[ $AURDEST ]] then;
CLONEDIR=$AURDEST
elif [[ $XDG_CACHE_HOME && -a $XDG_CACHE_HOME/pacaur ]]; then
CLONEDIR=$XDG_CACHE_HOME/pacaur
else
CLONEDIR=$HOME/.cache/pacaur
fi
_arguments -s : \
"*:clean:($(ls $CLONEDIR))" \
"$_pacaur_opts_common[@]"
}
# handles --help subcommand
_pacaur_action_help() {
_arguments -s : \
"$_pacaur_opts_commands[@]"
}
# handles cases where no subcommand has yet been given
_pacaur_action_none() {
_arguments -s : \
"$_pacaur_opts_commands[@]"
}
# handles --query subcommand
_pacaur_action_query() {
local context state line
typeset -A opt_args
case $state in
query_file)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"'
;;
query_group)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:groups:_pacaur_completions_installed_groups'
;;
query_owner)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:file:_files'
;;
query_search)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:search text: '
;;
*)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_actions[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:package:_pacaur_completions_installed_packages'
;;
esac
}
# handles --remove subcommand
_pacaur_action_remove() {
_arguments -s : \
'(--remove -R)'{-R,--remove} \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_remove[@]"
}
# handles --database subcommand
_pacaur_action_database() {
_arguments -s : \
'(--database -D)'{-D,--database} \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_database[@]"
}
_pacaur_action_deptest () {
_arguments -s : \
'(--deptest)-T' \
"$_pacaur_opts_common[@]" \
":packages:_pacaur_all_packages"
}
# handles --sync subcommand
_pacaur_action_sync() {
local context state line
typeset -A opt_args
if (( $+words[(r)--clean] )); then
state=sync_clean
elif (( $+words[(r)--groups] )); then
state=sync_group
elif (( $+words[(r)--search] || $+words[(r)search] )); then
state=sync_search
fi
case $state in
sync_clean)
_arguments -s : \
{\*-c,\*--clean}'[Remove old packages from cache]' \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_sync_modifiers[@]"
;;
sync_group)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'(-g --group)'{-g,--groups} \
'*:package group:_pacaur_completions_all_groups'
;;
sync_search)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:search text: '
;;
*)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_extended[@]" \
"$_pacaur_opts_sync_actions[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:packages:'$completion_repo
;;
esac
}
# handles --upgrade subcommand
_pacaur_action_upgrade() {
_arguments -s : \
'(-U --upgrade)'{-U,--upgrade} \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_pkgfile[@]"
}
# handles --version subcommand
_pacaur_action_version() {
# no further arguments
return 0
}
# provides completions for package groups
_pacaur_completions_all_groups() {
local -a cmd groups
_pacaur_get_command
groups=( $(_call_program groups $cmd[@] -Sg) )
typeset -U groups
compadd "$@" -a groups
}
# provides completions for packages available from repositories
# these can be specified as either 'package' or 'repository/package'
_pacaur_completions_all_packages() {
local curcontext="${curcontext}" cache_name repo
local -a cmd packages repositories packages_long
_pacaur_get_command
if compset -P1 '*/*'; then
curcontext="${curcontext}_repo_packages"
zstyle -s ":completion:${curcontext}:" cache-policy update_policy
[[ -z "$update_policy" ]] && zstyle ":completion:${curcontext}:" \
cache-policy _pacaur_repo_packages_caching_policy
repo="${words[CURRENT]%/*}"
cache_name="pacman_repo_packages_$repo"
if _cache_invalid "$cache_name" || ! _retrieve_cache "$cache_name"; then
packages=( $(_call_program packages $cmd[@] -Sql "$repo") )
typeset -U packages
_store_cache "$cache_name" packages
fi
_wanted repo_packages expl "repository/package" compadd ${(@)packages}
else
curcontext="${curcontext}_all_packages"
zstyle -s ":completion:${curcontext}:" cache-policy update_policy
[[ -z "$update_policy" ]] && zstyle ":completion:${curcontext}:" \
cache-policy _pacaur_all_packages_caching_policy
cache_name='pacman_packages'
if _cache_invalid "$cache_name" || ! _retrieve_cache "$cache_name"; then
packages=( $(_call_program packages $cmd[@] -Sql) )
typeset -U packages
_store_cache "$cache_name" packages
fi
_wanted packages expl "packages" compadd - "${(@)packages}"
repositories=(${(o)${${${(M)${(f)"$(</etc/pacman.conf)"}:#\[*}/\[/}/\]/}:#options})
typeset -U repositories
_wanted repo_packages expl "repository/package" compadd -S "/" $repositories
fi
}
_pacaur_completions_aur_packages() {
zstyle -T ":completion:${curcontext}:" remote-access || return 1
local -a aur_packages
aur_packages=($(_call_program packages cower -sq --color=never $words[CURRENT] 2>/dev/null))
_wanted aur_packages expl "aur packages" compadd - "${(@)aur_packages}"
}
# provides completions for package groups
_pacaur_completions_installed_groups() {
local -a cmd groups
_pacaur_get_command
groups=(${(o)${(f)"$(_call_program groups $cmd[@] -Qg)"}% *})
typeset -U groups
compadd "$@" -a groups
}
# provides completions for installed packages
_pacaur_completions_installed_packages() {
local -a packages
packages_long=(/var/lib/pacman/local/*(/))
packages=( ${${packages_long#/var/lib/pacman/local/}%-*-*} )
compadd "$@" -a packages
}
_pacaur_all_packages() {
_alternative : \
'localpkgs:local packages:_pacaur_completions_installed_packages' \
'aurpkgs:aur packages:_pacaur_completions_aur_packages' \
'repopkgs:repository packages:_pacaur_completions_all_packages'
}
_pacaur_remote_packages() {
_alternative : \
'aurpkgs:aur packages:_pacaur_completions_aur_packages' \
'repopkgs:repository packages:_pacaur_completions_all_packages'
}
# provides completions for repository names
_pacaur_completions_repositories() {
local -a cmd repositories
repositories=(${(o)${${${(M)${(f)"$(</etc/pacman.conf)"}:#\[*}/\[/}/\]/}:#options})
# Uniq the array
typeset -U repositories
compadd "$@" -a repositories
}
# builds command for invoking pacman in a _call_program command - extracts
# relevant options already specified (config file, etc)
# $cmd must be declared by calling function
_pacaur_get_command() {
# this is mostly nicked from _perforce
cmd=( "pacman" "2>/dev/null")
integer i
for (( i = 2; i < CURRENT - 1; i++ )); do
if [[ ${words[i]} = "--config" || ${words[i]} = "--root" ]]; then
cmd+=( ${words[i,i+1]} )
fi
done
}
# main dispatcher
local -a args cmds;
local tmp
args=( ${${${(M)words:#-*}#-}:#-*} )
for tmp in $words; do
cmds+=("${${_pacaur_opts_commands[(r)*$tmp\[*]%%\[*}#*\)}")
done
# handle repository filter
if [[ $words[2] != -* ]]; then
isaur=1
else
isaur=0
fi
if (( $+words[(r)--aur] || $+words[(r)-S*a*] || $isaur )); then
completion_repo='_pacaur_completions_aur_packages'
elif (( $+words[(r)--repo] || $+words[(r)-S*r*] )); then
completion_repo='_pacaur_completions_all_packages'
else
completion_repo='_pacaur_remote_packages'
fi
case $args in
h*)
if (( ${(c)#args} <= 1 && ${(w)#cmds} <= 1 )); then
_pacaur_action_help
else
_message "no more arguments"
fi
;;
*h*)
_message "no more arguments"
;;
D*)
_pacaur_action_database
;;
Q*g*) # ipkg groups
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:groups:_pacaur_completions_installed_groups'
;;
Q*o*) # file
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:package file:_files'
;;
Q*p*) # file *.pkg.tar*
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_query_modifiers[@]" \
'*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"'
;;
T*)
_pacaur_action_deptest
;;
Q*)
_pacaur_action_query
;;
R*)
_pacaur_action_remove
;;
S*c*) # no completion
_arguments -s : \
'(-c --clean)'{\*-c,\*--clean}'[Remove all files from the cache]' \
"$_pacaur_opts_common[@]"
;;
S*l*) # repos
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:package repo:_pacaur_completions_repositories' \
;;
S*g*) # pkg groups
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:package group:_pacaur_completions_all_groups'
;;
S*s*)
_arguments -s : \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:search text: '
;;
S*u*)
_arguments -s : \
'--devel[Consider AUR development packages upgrade]' \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_extended[@]" \
"$_pacaur_opts_sync_actions[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:packages:'$completion_repo
;;
S*)
_pacaur_action_sync
;;
T*)
_arguments -s : \
'-T' \
"$_pacaur_opts_common[@]" \
":packages:_pacaur_all_packages"
;;
U*)
_pacaur_action_upgrade
;;
V*)
_pacaur_action_version
;;
*)
if [[ ${words[2]} != -* && ${CURRENT} -gt 2 ]] then
case ${words[2]} in
sync)
_pacaur_action_sync
;;
upgrade)
_arguments -s : \
'--devel[Consider AUR development packages upgrade]' \
'--needed[Do not reinstall up to date packages]' \
"$_pacaur_opts_common[@]" \
"$_pacaur_opts_extended[@]" \
"$_pacaur_opts_sync_modifiers[@]" \
'*:packages:'$completion_repo
;;
check)
_pacaur_action_check
;;
search)
_pacaur_action_sync
;;
info)
_pacaur_action_info
;;
buildonly)
_pacaur_action_sync
;;
clean)
_pacaur_action_clean
;;
cleanall)
_arguments -s : \
"$_pacaur_opts_common[@]"
;;
esac
else
case ${(M)words:#--*} in
*--help*)
if (( ${(w)#cmds} == 1 )); then
_pacaur_action_help
else
return 0;
fi
;;
*--version*)
_pacaur_action_version
;;
*--query*)
_pacaur_action_query
;;
*--remove*)
_pacaur_action_remove
;;
*--deptest*)
_pacaur_action_deptest
;;
*--database*)
_pacaur_action_database
;;
*)
_pacaur_action_none
;;
esac
fi
;;
esac
# vim:set ts=4 sw=2 et: