commit: 03984b3ea6dea163773af007c7109636a9676e9e
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 20:09:45 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 15 20:09:45 2024 +0000
URL:
https://gitweb.gentoo.org/proj/gentoo-bashcomp.git/commit/?id=03984b3e
add completion for emaint from sys-apps/portage
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
completions/emaint | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/completions/emaint b/completions/emaint
new file mode 100644
index 0000000..74f1e0a
--- /dev/null
+++ b/completions/emaint
@@ -0,0 +1,77 @@
+# Gentoo Linux Bash Shell Command Completion
+#
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+#
+# emaint completion (from sys-apps/portage)
+#
+
+_emaint() {
+ local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
+
+ local -A OPTS=(
+ [COMMANDS]='all binhost cleanresume merges movebin moveinst sync world'
+ [STANDALONE]='-h --help -c --check -f --fix --version'
+ [LOGS]='-C --clean -p --pretend'
+ [LOGS_ARG]='-t --time'
+ [MERGES]='-y --yes'
+ [SYNC]='-a --auto -A --allrepos'
+ [SYNC_ARG]='-r --repo --sync-submodule'
+ )
+
+ local i command
+ for (( i=1; i <= COMP_CWORD; i++ )); do
+ if [[ ${COMP_WORDS[i]} != -* ]]; then
+ if [[ " ${OPTS[COMMANDS]} " =~ " ${COMP_WORDS[i]} " ]]; then
+ command=${COMP_WORDS[i]}
+ break
+ else
+ COMPREPLY=( $(compgen -W '${OPTS[COMMANDS]}' -- "${cur}") )
+ return
+ fi
+ fi
+
+ [[ ${i} -lt ${COMP_CWORD} && " ${OPTS[LOGS_ARG]} ${OPTS[SYNC_ARG]} "
=~ " ${COMP_WORDS[i]} " ]] && ((i++))
+ done
+
+ case ${command} in
+ logs)
+ if [[ ${prev} = -t || ${prev} = --time ]]; then
+ COMPREPLY=()
+ return
+ fi
+ ;;
+ sync)
+ case ${prev} in
+ -r|--repo)
+ COMPREPLY=( $(compgen -W "$(_parsereposconf -l)" --
"${cur}") )
+ return
+ ;;
+ --sync-submodule)
+ COMPREPLY=( $(compgen -W 'glsa news profiles' -- "${cur}")
)
+ return
+ ;;
+ esac
+ ;;
+ esac
+
+ COMPREPLY=( $(compgen -W '${OPTS[STANDALONE]}' -- "${cur}") )
+ case ${command} in
+ logs)
+ COMPREPLY+=( $(compgen -W '${OPTS[LOGS]} ${OPTS[LOGS_ARG]}' --
"${cur}") )
+ ;;
+ merges)
+ COMPREPLY+=( $(compgen -W '${OPTS[MERGES]}' -- "${cur}") )
+ ;;
+ sync)
+ COMPREPLY+=( $(compgen -W '${OPTS[SYNC]} ${OPTS[SYNC_ARG]}' --
"${cur}") )
+ ;;
+ esac
+ if [[ -z ${command} ]]; then
+ COMPREPLY+=( $(compgen -W '${OPTS[COMMANDS]}' -- "${cur}") )
+ fi
+} &&
+complete -F _emaint emaint
+
+# vim: ft=sh:et:ts=4:sw=4:tw=80