Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _piuparts
- X-seq: zsh-workers 21778
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: _piuparts
- Date: Wed, 28 Sep 2005 10:46:13 -0400
- Cc: Lars Wirzenius <liw@xxxxxx>
- Mail-followup-to: zsh-workers@xxxxxxxxxx, Lars Wirzenius <liw@xxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Completion for piuparts.
Index: Completion/Debian/Command/_piuparts
===================================================================
RCS file: Completion/Debian/Command/_piuparts
diff -N Completion/Debian/Command/_piuparts
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ Completion/Debian/Command/_piuparts 28 Sep 2005 14:44:45 -0000
@@ -0,0 +1,30 @@
+#compdef piuparts
+
+local context state line
+typeset -A opt_args
+
+_arguments -s \
+ '(-a --apt)'{-a,--apt} \
+ '(-b --basetgz)'{-b,--basetgz=}':base tarball:_files' \
+ '(-d --distribution)'{-d,--distribution=}':Debian distribution:(sarge etch sid experimental)' \
+ '(-i --ignore)*'{-i,--ignore=}':file to ignore:_files' \
+ '(-I --ignore-regexp)*'{-I,--ignore-regexp=}':expression to ignore' \
+ '(-k --keep-tmpdir)'{-k,--keep-tmpdir} \
+ '(-l --log-file)'{-l,--logfile=}':log file:_files' \
+ '(-m --mirror)'{-m,--mirror=}':Debian mirror:_urls' \
+ '(-n --no-ignores)'{-n,--no-ignores} \
+ '(-p --pbuilder)'{-p,--pbuilder}'[use /var/cache/pbuilder/base.tgz]' \
+ '(-s --save)'{-s,--save=}':target tarball:_files' \
+ '(-t --tmpdir)'{-t,--tmpdir=}':temp dir:_files -/' \
+ '-V[version]' \
+ '*:package:->packages' && return 0
+
+case "$state" in
+ (packages)
+ if (( $+opt_args[-a] )); then
+ _deb_packages avail
+ else
+ _files -g '*.deb'
+ fi
+ ;;
+esac
Messages sorted by:
Reverse Date,
Date,
Thread,
Author