diff options
author | Clint Adams <clint@users.sourceforge.net> | 2003-07-07 03:23:13 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2003-07-07 03:23:13 +0000 |
commit | f92a529edc79d74ac0aa6c3b05a5824465d2cf29 (patch) | |
tree | da3cb39bad48b6c564c103c188c88745f7e7407f /Completion/Debian | |
parent | 45dacd37002ba1e521c91e24e18eab477be25678 (diff) | |
download | zsh-f92a529edc79d74ac0aa6c3b05a5824465d2cf29.tar.gz zsh-f92a529edc79d74ac0aa6c3b05a5824465d2cf29.tar.xz zsh-f92a529edc79d74ac0aa6c3b05a5824465d2cf29.zip |
18xxx: Completion/Unix/Command/_subversion: completion for svn and svnadmin.
18xxx: Completion/Debian/Command/_debsign: completion for debsign, by Matt Zimmerman.
Diffstat (limited to 'Completion/Debian')
-rw-r--r-- | Completion/Debian/Command/.distfiles | 2 | ||||
-rw-r--r-- | Completion/Debian/Command/_debsign | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/Completion/Debian/Command/.distfiles b/Completion/Debian/Command/.distfiles index 3b65f7db2..d0406bfc7 100644 --- a/Completion/Debian/Command/.distfiles +++ b/Completion/Debian/Command/.distfiles @@ -4,5 +4,5 @@ _apt _apt-show-versions _bts _bug _debchange _dpkg _dpkg_source _dput _dupload _update-alternatives _make-kpkg _debfoster -_auto-apt +_auto-apt _debsign ' diff --git a/Completion/Debian/Command/_debsign b/Completion/Debian/Command/_debsign new file mode 100644 index 000000000..6426ad646 --- /dev/null +++ b/Completion/Debian/Command/_debsign @@ -0,0 +1,14 @@ +#compdef debsign + +_arguments '-r[copy .changes file from remote host]:[username@]remotehost' \ + '-p[program with which to sign]:program name' \ + '-m[maintainer]:maintainer name and email address' \ + '-e[maintainer]:maintainer name and email address' \ + '-k[key ID to use for signing]:keyid' \ + '-s[argument style for signing program]:gpg or pgp' \ + '-S[Look for source-only .changes file]' \ + '-a[architecture]:Debian architecture' \ + '-t[GNU system type]:GNU system type' \ + '--help[help]' \ + '--version[version]' \ + '*:changes or dsc file:_files -g "*.(changes|dsc)"' |