about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2007-10-26 19:17:01 +0000
committerClint Adams <clint@users.sourceforge.net>2007-10-26 19:17:01 +0000
commit26461dcc1b03fa0ad47c7abbec4b8999f1fe5a28 (patch)
treec1e1e28613f8e347726d2e90dc67f765a0a30223
parentbd24a0c2db4482a4efa2edd5815ff7edf880bfd0 (diff)
downloadzsh-26461dcc1b03fa0ad47c7abbec4b8999f1fe5a28.tar.gz
zsh-26461dcc1b03fa0ad47c7abbec4b8999f1fe5a28.tar.xz
zsh-26461dcc1b03fa0ad47c7abbec4b8999f1fe5a28.zip
24022: completion for dpkg-repack by Dr. Markus Waldeck, tweaked a bit.
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Debian/Command/_dpkg-repack7
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5dafa122e..ea33f8399 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-26  Clint Adams  <clint@zsh.org>
+
+	* 24022: Completion/Debian/Command/_dpkg-repack: completion for
+	dpkg-repack by Dr. Markus Waldeck, tweaked a bit.
+
 2007-10-25  Peter Stephenson  <pws@csr.com>
 
 	* c.f. users/12110: Doc/Zsh/params.yo: desperately try to
diff --git a/Completion/Debian/Command/_dpkg-repack b/Completion/Debian/Command/_dpkg-repack
new file mode 100644
index 000000000..5d625a5ce
--- /dev/null
+++ b/Completion/Debian/Command/_dpkg-repack
@@ -0,0 +1,7 @@
+#compdef dpkg-repack
+
+_arguments \
+  '--root=[take package from filesystem rooted on <dir>]:root dir:_files -/' \
+  '--arch=[force the package to be built for architecture <arch>]:architecture:(alpha amd64 arm hppa hurd-i386 i386 ia64 m68k mips mipsel powerpc s390 sparc)' \
+  '--generate[generate build directory but do not build deb]' \
+  '*:package:_deb_packages xinstalled'