aboutsummaryrefslogtreecommitdiff
blob: 3631d6467506a7546cd7e816a925598d631bea89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
# bash completion for pkgdev

source "/usr/share/bash-completion/helpers/gentoo-common.sh"

_pkgdev() {
    local i=1 cmd cur prev words cword split
    _init_completion -n : || return

    local subcommands="
        bugs
        commit
        manifest
        mask
        push
        showkw
        tatt
    "

    local base_options="
        -h --help
        --version
        --debug
        -q --quiet
        -v --verbose
        --color
    "

    local boolean_options="
        true
        false
    "

    _list_repo_atoms() {
        builtin cd "$(git rev-parse --show-toplevel)" || return
        if [[ $cur == */* ]]; then
            compgen -W "$(compgen -G "${cur}*" )" -- "${cur}"
        else
            compgen -W "$(compgen -G "${cur}*" -S / )" -- "${cur}"
        fi
    }

    if [[ ${prev} = "--color" ]]; then
        COMPREPLY=($(compgen -W "${boolean_options}" -- "${cur}"))
        return
    fi
    COMPREPLY=($(compgen -W "${base_options}" -- "${cur}"))

    # find the subcommand
    for (( i=1; i < COMP_CWORD; i++ )); do
        if [[ ${COMP_WORDS[i]} != -* ]]; then
            cmd=${COMP_WORDS[i]}
            break
        fi
    done

    if (( i == COMP_CWORD )); then
        COMPREPLY+=($(compgen -W "${subcommands}" -- "${cur}"))
        return
    fi

    local subcmd_options
    case "${cmd}" in
        commit)
            subcmd_options="
                -b --bug
                -c --closes
                -T --tag
                -n --dry-run
                -s --scan
                -A --ask
                --mangle
                --signoff
                --gpg-sign --no-gpg-sign
                -m --message
                -M --message-template
                -e --edit
                -u --update
                -a --all
            "

            case "${prev}" in
                -c | --closes)
                    local resolutions=(
                        fixed
                        obsolete
                        pkgremoved
                    )

                    local bug="${cur%:*}"
                    if [[ ${bug} != ${cur} && ${bug} != http?(s) ]]; then
                        local bugres="${resolutions[*]/#/${bug}:}"
                        COMPREPLY=($(compgen -W "${bugres}" -- "${cur}"))
                        _comp_ltrim_colon_completions "$cur"
                    else
                        COMPREPLY=()
                    fi
                    ;;
                -[bTm] | --bug | --tag | --message)
                    COMPREPLY=()
                    ;;
                -M | --message-template)
                    _filedir
                    ;;
                -s | --scan | --mangle)
                    COMPREPLY=($(compgen -W "${boolean_options}" -- "${cur}"))
                    ;;
                *)
                    COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
                    ;;
            esac
            ;;
        manifest)
            subcmd_options="
                -f --force
                -m --mirrors
                -d --distdir
                --if-modified
            "

            case "${prev}" in
                -d | --distdir)
                    _filedir -d
                    ;;
                *)
                    COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
                    COMPREPLY+=($(_list_repo_atoms))
                    ;;
            esac
            ;;
        mask)
            subcmd_options="
                -r --rites
                -b --bug
                --email
                --api-key
                --file-bug
            "

            case "${prev}" in
                -[rb] | --rites | --bugs | --api-key)
                    COMPREPLY=()
                    ;;
                *)
                    COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
                    COMPREPLY+=($(_list_repo_atoms))
                    ;;
            esac
            ;;
        push)
            subcmd_options="
                -A --ask
                -n --dry-run
                --pull
            "

            COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
            ;;
        showkw)
            subcmd_options="
                -f --format
                -c --collapse
                -s --stable
                -u --unstable
                -o --only-unstable
                -p --prefix
                -a --arch
                -r --repo
            "

            case "${prev}" in
                -f | --format)
                    format_options="
                        fancy_grid
                        fancy_outline
                        github
                        grid
                        html
                        jira
                        latex
                        latex_booktabs
                        latex_longtable
                        latex_raw
                        mediawiki
                        moinmoin
                        orgtbl
                        pipe
                        plain
                        presto
                        pretty
                        psql
                        rst
                        showkw
                        simple
                        textile
                        tsv
                        unsafehtml
                        youtrack
                    "
                    COMPREPLY=($(compgen -W "${format_options}" -- "${cur}"))
                    ;;
                -r | --repo)
                    COMPREPLY=($(compgen -W "$(_parsereposconf -l)" -- "${cur}"))
                    ;;
                -a | --arch)
                    COMPREPLY=()
                    ;;
                *)
                    COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
                    COMPREPLY+=($(_list_repo_atoms))
                    ;;
            esac
            ;;
        tatt)
            subcmd_options="
                --api-key
                -j --job-name
                -b --bug
                -t --test
                -u --use-combos
                --ignore-prefixes
                --use-default
                --use-random
                --use-expand-random
                -p --package
                -s --stablereq
                -k --keywording
                --template-file
                --logs-dir
                --emerge-opts
                --extra-env-file
            "

            case "${prev}" in
                -[jbup] | --api-key | --job-name | --bug | --use-combos | --package | --emerge-opts)
                    COMPREPLY=()
                    ;;
                --template-file)
                    _filedir
                    ;;
                --logs-dir)
                    _filedir -d
                    ;;
                --extra-env-file)
                    if [[ -d /etc/portage/env/ ]]; then
                        pushd /etc/portage/env/ >& /dev/null
                        local SETS=( * )
                        COMPREPLY=($(compgen -W "${SETS[*]}" -- "${cur}" ))
                        popd >& /dev/null
                    else
                        COMPREPLY=()
                    fi
                    ;;
                *)
                    COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
                    ;;
            esac
            ;;
        bugs)
            subcmd_options="
                --api-key
                --edit-graph
                --auto-cc-arches
                --find-by-maintainer
                --projects
                --filter-stablereqs
                --stabletime
                --blocks
                --dot
                -s --stablereq
                -k --keywording
            "

            case "${prev}" in
                --api-key | --auto-cc-arches | --blocks | --find-by-maintainer | --stabletime)
                    COMPREPLY=()
                    ;;
                --dot)
                    _filedir
                    ;;
                *)
                    COMPREPLY+=($(compgen -W "${subcmd_options}" -- "${cur}"))
                    ;;
            esac
            ;;
    esac
}
complete -F _pkgdev pkgdev

# vim: set ft=bash sw=4 et sts=4 :