source: projects/vbootstrap/trunk/vbuilder-bash-completion.sh @ 4071

Revision 4071, 2.3 KB checked in by munepi, 13 years ago (diff)

supported 6.0

RevLine 
[484]1[ -z "$BASH_VERSION" ] && return
2
3_filedir()
4{
5        local IFS=$'\t\n' xspec #glob
6
7        #glob=$(set +o|grep noglob) # save glob setting.
8        #set -f          # disable pathname expansion (globbing)
9
10        xspec=${1:+"!*.$1"}     # set only if glob passed in as $1
11        COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -f -X "$xspec" -- "$cur" ) \
12                    $( compgen -d -- "$cur" ) )
13        #eval "$glob"    # restore glob setting.
14}
15
16_vbuilder()
17{
18    local opts cur prev first
19    COMPREPLY=()
20    cur="${COMP_WORDS[COMP_CWORD]}"
21    prev="${COMP_WORDS[COMP_CWORD-1]}"
22    first="${COMP_WORDS[1]}"
23
24    ## The basic options we'll complete.
[2719]25    options="--version --arch --category --dist-upgrade --unionfs --target --with-compat32 --rpmbuild-define --rpmbuild-with --rpmbuild-without --sign --no-install --login --bootstrap-dir --unionfs-dir --cache-dir --built-rpms-dir --debug"
[3826]26    actions="clean build build-rpm install-rpm remove-rpm"
[484]27    opts="$options $actions"
28
29    _arch=$(rpm --eval %_arch)
30
31    ## Complete the arguments to some of the basic commands.
32    case "${prev}" in
33        --version)
[4071]34            local running="VineSeed 6.0 5.2 4.2"
[484]35            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
36            ;;
37
38        --arch)
[2718]39            local running="i386 ppc x86_64 arm"
[484]40            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
41            ;;
42
[794]43        --category)
[800]44            local running="main proposed-updates,main plus,main nonfree,plus,main test,nonfree,plus,main test,plus,main test,main"
[794]45            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
46            ;;
47
[484]48        --target)
[3826]49            local running="$(cat /usr/lib/rpm/rpmrc | grep arch_canon: | sed -e "s/arch_canon:[[:blank:]]*\(.*\):.*/\1/") noarch"
[484]50            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
51            ;;
52
[2718]53        --bootstrap-dir|--unionfs-dir|--cache-dir|--built-rpms-dir)
54            if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
55                _filedir ''
56            fi
57            ;;
58
[3676]59        build-rpm)
[484]60            if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
61                _filedir 'src.rpm'
62            fi
63            ;;
64
[3676]65        install-rpm|remove-rpm)
[484]66            if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
67                _filedir 'rpm'
68            fi
69            ;;
70
71        *)
72            COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
73            #return 0
74            ;;
75    esac
76
77    if [[ "${cur}" == -* ]] ; then
78        COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
79        #return 0
80    fi
81
82}
83
84complete -o filenames -o nospace -F _vbuilder vbuilder
85
86### end of file
Note: See TracBrowser for help on using the repository browser.