2009-06-08 20:49:52 +03:00
|
|
|
# bash completion for Slackware Linux pkgtools
|
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
[ -f /etc/slackware-version ] &&
|
|
|
|
{
|
|
|
|
|
|
|
|
have pkgtool &&
|
2010-05-24 00:08:57 +04:00
|
|
|
_pkgtool()
|
|
|
|
{
|
|
|
|
COMPREPLY=()
|
|
|
|
local cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '--sets --ignore_tagfiles --tagfile \
|
|
|
|
--source_mounted --source_dir --target_dir --source_device' \
|
|
|
|
-- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
local prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
|
|
|
|
case $prev in
|
|
|
|
--source_dir|--target_dir)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--sets)
|
|
|
|
# argument required but no completions available
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--source_device)
|
|
|
|
COMPREPLY=( $( compgen -f -d -- "${cur:-/dev/}" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
2010-05-24 23:08:11 +04:00
|
|
|
--tagfile)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
2010-05-24 00:08:57 +04:00
|
|
|
esac
|
|
|
|
} &&
|
2010-05-24 23:08:11 +04:00
|
|
|
complete -F _pkgtool pkgtool
|
2010-05-24 00:08:57 +04:00
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
have removepkg &&
|
2009-06-08 20:49:52 +03:00
|
|
|
_removepkg()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=()
|
2010-05-24 00:14:02 +04:00
|
|
|
local cur=`_get_cword`
|
2010-05-24 02:01:13 +04:00
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '-copy -keep -preserve -warn' \
|
|
|
|
-- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
fi
|
2009-06-08 20:49:52 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=( $( (cd /var/log/packages; compgen -f -- "$cur") ) )
|
2009-06-08 20:49:52 +03:00
|
|
|
} &&
|
2010-05-24 02:01:13 +04:00
|
|
|
complete -F _removepkg -o filenames removepkg
|
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
have upgradepkg &&
|
2010-05-24 02:28:48 +04:00
|
|
|
_upgradepkg()
|
|
|
|
{
|
|
|
|
COMPREPLY=()
|
|
|
|
local cur=`_get_cword`
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '--dry-run --install-new --reinstall \
|
|
|
|
--verbose' -- "$cur") )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
COMPREPLY=( $(compgen -f -X "!*.t[bglx]z" -- "$cur") )
|
|
|
|
} && complete -F _upgradepkg -o plusdirs upgradepkg
|
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
have installpkg &&
|
2010-05-24 22:58:52 +04:00
|
|
|
_installpkg()
|
|
|
|
{
|
|
|
|
COMPREPLY=()
|
|
|
|
local cur=`_get_cword`
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '--warn --md5sum --root --infobox \
|
|
|
|
--menu --ask --priority --tagfile' -- "$cur") )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
local prev=`_get_pword`
|
|
|
|
|
|
|
|
case $prev in
|
|
|
|
--root)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--priority)
|
|
|
|
COMPREPLY=( $( compgen -W 'ADD REC OPT SKP' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--tagfile)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
COMPREPLY=( $(compgen -f -X "!*.t[bglx]z" -- "$cur") \
|
|
|
|
$(compgen -d -- "$cur") )
|
|
|
|
} && complete -F _installpkg -o filenames installpkg
|
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
have makepkg &&
|
2010-05-24 23:33:52 +04:00
|
|
|
_makepkg()
|
|
|
|
{
|
|
|
|
COMPREPLY=()
|
|
|
|
local cur=`_get_cword`
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '-l --linkadd -p --prepend \
|
|
|
|
-c --chown' -- "$cur") )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
local prev=`_get_pword`
|
|
|
|
|
|
|
|
case $prev in
|
|
|
|
-l|-l|-c|--chown)
|
|
|
|
COMPREPLY=( $( compgen -W 'y n' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
2010-05-30 13:35:00 +04:00
|
|
|
|
|
|
|
_filedir
|
|
|
|
} && complete -F _makepkg -o filenames makepkg
|
2010-05-24 23:33:52 +04:00
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
have explodepkg &&
|
2010-05-24 22:58:52 +04:00
|
|
|
complete -o plusdirs -f -X '!*.t[bglx]z' explodepkg
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2010-07-25 19:53:04 +04:00
|
|
|
}
|
|
|
|
|
2009-10-01 20:54:51 +03:00
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|