diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-12-20 11:52:09 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-12-20 11:52:09 -0500 |
commit | 7aa9067b4694d42b3b7a63a65ea70b74fed5b363 (patch) | |
tree | 150e35424942622923eceb7af426cfaaa8a74847 /packaging/debian/control | |
parent | a348dcf9a67eea73c2a4752353b26e4d15c79754 (diff) |
fix ms Issue #1536 for gpg edit/addkey UI change
gnupg apparently changed their edit-key/addkey function ordering such
that the monkeysphere gen-subkey subcommand was creating DSA
authentication subkeys instead of RSA subkeys. DSA subkeys are not
supported by the ms key translation utilities, so this is a big
problem. This patch fixes the problem, but it means that we have
require gnupg >=1.4.10 from now on, or at least until gnupg changes
their UI again for no good reason.
Diffstat (limited to 'packaging/debian/control')
-rw-r--r-- | packaging/debian/control | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/debian/control b/packaging/debian/control index ef30ffb..5bda6c6 100644 --- a/packaging/debian/control +++ b/packaging/debian/control @@ -3,7 +3,7 @@ Section: net Priority: extra Maintainer: Jameson Graef Rollins <jrollins@finestructure.net> Uploaders: Daniel Kahn Gillmor <dkg@fifthhorseman.net> -Build-Depends: debhelper (>= 7.0), socat, openssh-server, gnupg, libcrypt-openssl-rsa-perl, libdigest-sha-perl, lockfile-progs | procmail +Build-Depends: debhelper (>= 7.0), socat, openssh-server, gnupg (>=1.4.10), libcrypt-openssl-rsa-perl, libdigest-sha-perl, lockfile-progs | procmail Standards-Version: 3.8.3 Homepage: http://web.monkeysphere.info/ Vcs-Git: git://git.monkeysphere.info/monkeysphere @@ -11,7 +11,7 @@ Dm-Upload-Allowed: yes Package: monkeysphere Architecture: all -Depends: openssh-client, gnupg, libcrypt-openssl-rsa-perl, libdigest-sha-perl, lockfile-progs | procmail, adduser, ${misc:Depends} +Depends: openssh-client, gnupg (>=1.4.10), libcrypt-openssl-rsa-perl, libdigest-sha-perl, lockfile-progs | procmail, adduser, ${misc:Depends} Recommends: netcat | socat, ssh-askpass, cron Enhances: openssh-client, openssh-server Description: use the OpenPGP web of trust to verify ssh connections |