aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/makepkg.fish
diff options
context:
space:
mode:
authorGravatar Fabian Homborg <FHomborg@gmail.com>2015-12-11 12:18:24 +0100
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-12-11 12:19:30 +0100
commit8104854d5dc2ef22526558e3139e47ce56f4e02e (patch)
tree1f2fb21df3eef94db281d3f9b58aba69b06f6b64 /share/completions/makepkg.fish
parentb4b5c2188f9d574b8ddb05355d030f530b165cb2 (diff)
Update makepkg completion
A few options were missing and --asroot has been removed
Diffstat (limited to 'share/completions/makepkg.fish')
-rw-r--r--share/completions/makepkg.fish12
1 files changed, 8 insertions, 4 deletions
diff --git a/share/completions/makepkg.fish b/share/completions/makepkg.fish
index c811f463..c1fcaee4 100644
--- a/share/completions/makepkg.fish
+++ b/share/completions/makepkg.fish
@@ -1,10 +1,9 @@
-
-complete -c makepkg -l 'asroot' -d 'Allow makepkg to run as root'
complete -c makepkg -s A -l 'ignorearch' -d 'Ignore missing or incomplete arch field'
complete -c makepkg -s c -l 'clean' -d 'Clean up work files after build'
complete -c makepkg -l 'config' -d 'Use alternate config <file>'
complete -c makepkg -s d -l 'nodeps' -d 'Do not perform dependency checks'
complete -c makepkg -s e -l 'noextract' -d 'Do not extract source files'
+complete -c makepkg -l 'verifysource' -d 'Only perform integrity checks'
complete -c makepkg -s f -l 'force' -d 'Force rebuild of the package'
complete -c makepkg -s g -l 'geninteg' -d 'Generate integrity checks'
complete -c makepkg -l 'skipinteg' -d 'Do not perform integrity checks'
@@ -21,12 +20,17 @@ complete -c makepkg -s r -l 'rmdeps' -d 'Remove installed deps after buil
complete -c makepkg -s R -l 'repackage' -d 'Repackage without rebuilding'
complete -c makepkg -s s -l 'syncdeps' -d 'Install missing dependencies'
complete -c makepkg -s S -l 'source' -d 'Build a source-only tarball for AUR'
+complete -c makepkg -s V -l 'version' -d 'Display the version and exit'
+complete -c makepkg -s C -l 'cleanbuild' -d 'Remove the srcdir before building the package'
complete -c makepkg -l 'allsource' -d 'Build a source-only GPL tarball for AUR'
complete -c makepkg -l 'pkg' -d 'Only build <packages> from a split package'
complete -c makepkg -l 'check' -d 'Run the check function in the PKGBUILD'
+complete -c makepkg -l 'noarchive' -d 'Do not create the archive'
complete -c makepkg -l 'nocheck' -d 'Do not run the check function in the PKGBUILD'
complete -c makepkg -l 'sign' -d 'Sign the resulting package with gpg'
complete -c makepkg -l 'nosign' -d 'Do not create a signature for the package'
complete -c makepkg -l 'key' -d 'Specify a <key> to use when signing'
-complete -c makepkg -l 'noconfirm' -d 'Passed to pacman: --noconfirm'
-complete -c makepkg -l 'noprogressbar' -d 'Passed to pacman: --noprogressbar'
+complete -c makepkg -l 'noconfirm' -d 'Passed to pacman: Do not ask for confirmation'
+complete -c makepkg -l 'needed' -d 'Passed to pacman: Only install what is needed'
+complete -c makepkg -l 'asdeps' -d 'Passed to pacman: Install as dependencies'
+complete -c makepkg -l 'noprogressbar' -d 'Passed to pacman: Do not display a progress bar'