51 lines
1.4 KiB
Plaintext
Raw Normal View History

2009-01-19 21:56:42 +01:00
# bash completion for cpan2dist
have cpan2dist &&
_cpan2dist()
{
2009-02-04 22:22:06 +01:00
local cur prev packagelist cpandirs
2009-01-19 21:56:42 +01:00
COMPREPLY=()
cur=`_get_cword`
prev=${COMP_WORDS[COMP_CWORD-1]}
case $prev in
--format)
# should remove ":" from COMP_WORDBREAKS, but doesn't work (?)
COMPREPLY=( $( compgen -W '$(perl -MCPANPLUS::Dist -e "print map { \"\$_\n\" } CPANPLUS::Dist->dist_types")' -- "$cur" ) )
2009-01-19 21:56:42 +01:00
return 0
;;
--@(banlist|ignorelist|modulelist|logfile))
_filedir
return 0
;;
esac
if [[ "$cur" == -* ]]; then
2009-02-04 22:22:06 +01:00
COMPREPLY=( $( compgen -W '--help --skiptest --force --install \
2009-01-19 21:56:42 +01:00
--verbose --keepsource --makefile --buildprereq \
--archive --flushcache --defaults --edit-metafile \
--format --ban --banlist --ignore --ignorelist \
--modulelist --logfile --timeout --set-config \
--set-program --dist-opts --default-banlist \
--default-ignorelist' -- $cur ) )
else
2009-02-04 22:22:06 +01:00
cpandirs=( "$HOME/.cpanplus/" "$HOME/.cpan/source/modules/" )
for dir in ${cpandirs[@]}; do
[ -d "$dir" -a -r "$dir/02packages.details.txt.gz" ] && packagelist="$dir/02packages.details.txt.gz"
done
2009-01-19 21:56:42 +01:00
COMPREPLY=( $( zgrep "^${cur//-/::}" \
2009-02-04 22:22:06 +01:00
$packagelist 2>/dev/null \
| awk '{print $1}' | sed -e 's/::/-/g' ) )
2009-01-19 21:56:42 +01:00
fi
} &&
2009-02-05 10:11:24 +01:00
complete -F _cpan2dist $default cpan2dist
# Local variables:
# mode: shell-script
# sh-basic-offset: 8
# sh-indent-comment: t
# indent-tabs-mode: t
# End:
# ex: ts=8 sw=8 noet filetype=sh