Update makepkg completion

A few options were missing and --asroot has been removed
This commit is contained in:
Fabian Homborg 2015-12-11 12:18:24 +01:00
parent b4b5c2188f
commit 8104854d5d

View file

@ -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'