commit: 1858c7ba7dbae7f3424ba304b3b176a18add56af
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 20 04:54:01 2014 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Dec 20 04:54:01 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/zsh-completion.git;a=commit;h=1858c7ba
_portage: remove old tbz2tool completion support
The related utility was removed from portage ~4 years ago.
---
src/_portage | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)
diff --git a/src/_portage b/src/_portage
index 1c1831c..ed2ade5 100644
--- a/src/_portage
+++ b/src/_portage
@@ -1,4 +1,4 @@
-#compdef emerge ebuild quickpkg emaint env-update etc-update portageq repoman
tbz2tool
+#compdef emerge ebuild quickpkg emaint env-update etc-update portageq repoman
_ebuild () {
if (( CURRENT == 2 )); then
@@ -333,14 +333,6 @@ _repoman () {
fi
}
-_tbz2tool () {
- if (( CURRENT == 2 )); then
- _values 'action' 'join' 'split'
- elif (( CURRENT > 2 )) && (( CURRENT < 6 )); then
- _arguments -s '*:file:_files'
- fi
-}
-
zparseopts -D -E -A Args -- -emerge
if (( ${+Args[--emerge]} )); then
_emerge "$@" && return 0
@@ -371,9 +363,6 @@ case "$service" in
repoman)
_repoman "$@" && return 0
;;
- tbz2tool)
- _tbz2tool "$@" && return 0
- ;;
esac
# vim: set et sw=2 ts=2 ft=zsh: