Merge branch 'rs/maint-config-use-labs'
[git/mingw/j6t.git] / t / lib-gpg.sh
blobcd2baef383df7dbea5b1544a162f99573476520e
1 #!/bin/sh
3 gpg_version=$(gpg --version 2>&1)
4 if test $? = 127; then
5 say "You do not seem to have gpg installed"
6 else
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.
10 case "$gpg_version" in
11 'gpg (GnuPG) 1.0.6'*)
12 say "Your version of gpg (1.0.6) is too buggy for testing"
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.
19 cp -R "$TEST_DIRECTORY"/lib-gpg ./gpghome
20 chmod 0700 gpghome
21 chmod 0600 gpghome/*
22 GNUPGHOME="$(pwd)/gpghome"
23 export GNUPGHOME
24 test_set_prereq GPG
26 esac
29 sanitize_pgp() {
30 perl -ne '
31 /^-----END PGP/ and $in_pgp = 0;
32 print unless $in_pgp;
33 /^-----BEGIN PGP/ and $in_pgp = 1;