1#!/bin/sh 2 3gpg_version=$(gpg --version 2>&1) 4iftest $? =127;then 5 say "You do not seem to have gpg installed" 6else 7# As said here: http://www.gnupg.org/documentation/faqs.html#q6.19 8# the gpg version 1.0.6 didn't parse trust packets correctly, so for 9# that version, creation of signed tags using the generated key fails. 10case"$gpg_version"in 11'gpg (GnuPG) 1.0.6'*) 12 say "Your version of gpg (1.0.6) is too buggy for testing" 13;; 14*) 15# key generation info: gpg --homedir t/lib-gpg --gen-key 16# Type DSA and Elgamal, size 2048 bits, no expiration date. 17# Name and email: C O Mitter <committer@example.com> 18# No password given, to enable non-interactive operation. 19mkdir ./gpghome 20chmod0700 ./gpghome 21 GNUPGHOME="$(pwd)/gpghome" 22export GNUPGHOME 23 gpg --homedir"${GNUPGHOME}"--import \ 24"$TEST_DIRECTORY"/lib-gpg/pubring.gpg \ 25"$TEST_DIRECTORY"/lib-gpg/secring.gpg 26 gpg --homedir"${GNUPGHOME}"--import-ownertrust \ 27"$TEST_DIRECTORY"/lib-gpg/ownertrust 28 test_set_prereq GPG 29;; 30esac 31fi 32 33sanitize_pgp() { 34 perl -ne' 35 /^-----END PGP/ and$in_pgp= 0; 36 print unless$in_pgp; 37 /^-----BEGIN PGP/ and$in_pgp= 1; 38 ' 39}