Blob Blame History Raw
# bash-completion add-on for rpmlint
# http://bash-completion.alioth.debian.org/

_rpmlint_installed_packages()
{
    if declare -F _rpm_installed_packages &>/dev/null ; then
        _rpm_installed_packages
    elif declare -F _xfunc &>/dev/null ; then
        # bash-completion 1.90+ dynamic loading
        _xfunc rpm _rpm_installed_packages
    fi
}

_rpmlint()
{
    COMPREPLY=()
    local cur=$2 # for _rpm_installed_packages, _filedir

    case $3 in
        -C|--checkdir|-E|--extractdir)
            _filedir -d
            return 0
            ;;
        -f|--file|--rawout)
            _filedir
            return 0
            ;;
        -c|--check)
            # should take --checkdir, python path, inheritance into account...
            COMPREPLY=( $( compgen -W \
                "$( command ls /usr/share/rpmlint/*Check.py* 2>/dev/null |
                    sed -e '/^AbstractCheck/d' \
                        -e 's|.*/\([^/.]*\)\.py.*|\1|' )" -- "$cur" ) )
            return 0
            ;;
        -I|--explain)
            # should take --checkdir into account...
            COMPREPLY=( $( compgen -W "$( sed -e '1,/^addDetails/d' \
                -ne "s/^'\([^'[:space:]]\{1,\}\)',\$/\1/p" \
                /usr/share/rpmlint/*Check.py 2>/dev/null )" -- "$cur" ) ) #'
            return 0
            ;;
        -o|--option)
            # argument required but no completions available
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '--info --explain --check --all --checkdir
                        --help --verbose --extractdir --version --noexception
                        --file --option' -- "$cur" ) )
    else
        # Installed packages completion is potentially slow, do it only if $cur
        # does not look like a path.
        [[ $cur != */* && $cur != [.~]* ]] && _rpmlint_installed_packages
        _filedir @([rs]pm|spec)
    fi
}
complete -F _rpmlint -o filenames rpmlint

_rpmdiff()
{
    COMPREPLY=()
    local cur=$2 # for _rpm_installed_packages, _filedir

    case $3 in
        -i|--ignore)
            COMPREPLY=( $( compgen -W 'S M 5 D N L V U G F T' -- "$cur" ) )
            return 0
            ;;
        -h|--help)
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '--help --ignore' -- "$cur" ) )
    else
        # Installed packages completion is potentially slow, do it only if $cur
        # does not look like a path.
        [[ $cur != */* && $cur != [.~]* ]] && _rpmlint_installed_packages
        _filedir [rs]pm
    fi
}
complete -F _rpmdiff -o filenames rpmdiff

# Local variables:
# mode: shell-script
# End:
# ex: filetype=sh