As said here: http://www.gnupg.org/documentation/faqs.html#q6.19 the gpg version 1.0.6 didn't parse trust packets correctly, so for that version, creation of signed tags using the generated key fails. Signed-off-by: Carlos Rica <jasampler@xxxxxxxxx> --- This was already discussed in a previous message from Sven, who runs that old version of gpg: http://thread.gmane.org/gmane.comp.version-control.git/51291 The page describing the bug was found by Johannes after some research: http://colabti.de/irclogger/irclogger_log/git?date=2007-07-01,Sun&sel=482#l814 t/t7004-tag.sh | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index a845930..b785080 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -460,6 +460,17 @@ if [ $? -eq 127 ]; then exit fi +# As said here: http://www.gnupg.org/documentation/faqs.html#q6.19 +# the gpg version 1.0.6 didn't parse trust packets correctly, so for +# that version, creation of signed tags using the generated key fails. +case "$(gpg --version)" in +'gpg (GnuPG) 1.0.6'*) + echo "Skipping signed tag tests, because a bug in 1.0.6 version" + test_done + exit + ;; +esac + # key generation info: gpg --homedir t/t7004 --gen-key # Type DSA and Elgamal, size 2048 bits, no expiration date. # Name and email: C O Mitter <committer@xxxxxxxxxxx> -- 1.5.0 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html