#compdef uu-chown

autoload -U is-at-least

_uu-chown() {
    typeset -A opt_args
    typeset -a _arguments_options
    local ret=1

    if is-at-least 5.2; then
        _arguments_options=(-s -S -C)
    else
        _arguments_options=(-s -C)
    fi

    local context curcontext="$curcontext" state line
    _arguments "${_arguments_options[@]}" \
'--from=[change the owner and/or group of each file only if its current owner and/or group match those specified here. Either may be omitted, in which case a match is not required for the omitted attribute]:CURRENT_OWNER:CURRENT_GROUP: ' \
'--reference=[use RFILE'\''s owner and group rather than specifying OWNER\:GROUP values]:RFILE:_files' \
'--help[Print help information.]' \
'-c[like verbose but report only when a change is made]' \
'--changes[like verbose but report only when a change is made]' \
'--dereference[affect the referent of each symbolic link (this is the default), rather than the symbolic link itself]' \
'-h[affect symbolic links instead of any referenced file (useful only on systems that can change the ownership of a symlink)]' \
'--no-dereference[affect symbolic links instead of any referenced file (useful only on systems that can change the ownership of a symlink)]' \
'--preserve-root[fail to operate recursively on '\''/'\'']' \
'--no-preserve-root[do not treat '\''/'\'' specially (the default)]' \
'--quiet[suppress most error messages]' \
'-R[operate on files and directories recursively]' \
'--recursive[operate on files and directories recursively]' \
'-f[]' \
'--silent[]' \
'-H[if a command line argument is a symbolic link to a directory, traverse it]' \
'-L[traverse every symbolic link to a directory encountered]' \
'-P[do not traverse any symbolic links (default)]' \
'-v[output a diagnostic for every file processed]' \
'--verbose[output a diagnostic for every file processed]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
}

(( $+functions[_uu-chown_commands] )) ||
_uu-chown_commands() {
    local commands; commands=()
    _describe -t commands 'uu-chown commands' commands "$@"
}

if [ "$funcstack[1]" = "_uu-chown" ]; then
    _uu-chown "$@"
else
    compdef _uu-chown uu-chown
fi
