# GnuPG
# =====
# There are two versions of GnuPG below. The latest 1.x and the latest
# 2.x They can both be installed at the same time IF YOU USE
# --enable-gpg-is-gpg2 when running configure for 2.x
# 1.x versions are no longer updated, I will be removing 1.x from the
# HOWTO at some point in the near-ish future.
# Versions of GnuPG 1.x included in Slackware packages:
# Slackware 14.0: gnupg 1.4.12
# Slackware 14.1: gnupg 1.4.15
# Slackware 14.2: gnupg 1.4.20
# Slackware 15.0: gnupg 1.4.23
# Versions of GnuPG 2.x included in Slackware packages:
# Slackware 14.0: gnupg2 2.0.19
# Slackware 14.1: gnupg2 2.0.22
# Slackware 14.2: gnupg2 2.0.30
# Slackware 15.0: gnupg2 2.2.33
# Older versions had differently named files:
test -f ~/.gnupg/options && mv -f ~/.gnupg/options ~/.gnupg/gpg.conf
# If you have a previously installed GnuPG that went into /usr/local, or
# if you just want to clean up files from an old version before installing
# a new one, skip down to the bottom for instructions.
# Get the source
cd
test -f installed/gnupg-1.4.23.tar.bz2 &&
mv installed/gnupg-1.4.23.tar.bz2 .
test ! -f gnupg-1.4.23.tar.bz2 &&
wget https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-1.4.23.tar.bz2
# Verify tarball w/ sha256sum:
# (this came from the integrity check page and my gpg-verified tarball)
echo "c9462f17e651b6507848c08c430c791287cd75491f8b5a8b50c6ed46b12678\
ba gnupg-1.4.23.tar.bz2" | sha256sum -c
# Verify tarball w/ an existing version of gpg:
# [ If you are unable to get the key from a keyserver, go here:
# https://gnupg.org/signature_key.html ]
( gpg --list-keys 4F25E3B6 > /dev/null 2>&1 || gpg --recv-keys 4F25E3B6 ) &&
wget https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-1.4.23.tar.bz2.sig &&
gpg --verify gnupg-1.4.23.tar.bz2.sig && rm gnupg-1.4.23.tar.bz2.sig
# Extract the source
mkdir -p -m 0700 ~/src
cd ~/src
find -maxdepth 1 -type d -name "gnupg-1.*" -exec rm -r {} \;
tar xjvf ~/gnupg-1.4.23.tar.bz2
cd gnupg-1.4.23
test $UID = 0 && chown -R root:root .
# Read README and if upgrading, NEWS for a summary of changes,
# or ChangeLog for all changes
#
# If you are upgrading from 1.2.x to 1.4.x for the first time, read through
# doc/highlights-1.4.txt
# Configure the build for 64-bit
test $(uname -m) = 'x86_64' &&
./configure --prefix=/usr --disable-nls --infodir=/usr/info --libdir=/usr/lib64 \
--mandir=/usr/man --with-libcurl
# Configure the build for anything else
test $(uname -m) != 'x86_64' &&
./configure --prefix=/usr --disable-nls --infodir=/usr/info --mandir=/usr/man \
--with-libcurl
# Build it
make
# Become root to install it
su
# Remove files from old versions
test -x /sbin/removepkg && /sbin/removepkg gnupg
rm -f /usr/libexec/gnupg/gpgkeys_* /usr/local/bin/gpgkeys_*
# Install the new version
make install
# You used to need to do this, not necessary any more
# chmod u+s /usr/bin/gpg
# Make sure your non-root user can remove the source later
chown -R $(logname) .
chmod -R u+w .
# Become yourself again
exit
# Save the source for later
cd
mkdir -p -m 0700 installed
rm -f installed/gnupg-1.*.tar.*
mv gnupg-1.4.23.tar.bz2 installed/
## Here are some GnuPG 1.x usage examples:
# If you haven't already done so with an older version, create a key (don't
# do this remotely)
gpg --gen-key
# Generate a revocation certificate and store it away somewhere.
# Obviously replace jschmo@example.com with your actual e-mail address (whatever
# you specified when you created the key).
gpg --gen-revoke jschmo@example.com
# Export your key to a text file
# Post it to http://pgp.mit.edu/ or slap it on a web page somewhere
gpg --armor --export jschmo@example.com
# Some people like to put the fingerprint of their key in their signature.
# The fingerprint can verify that the PGP signature you see on a web site
# is real by matching it up with fingerprint in an e-mail from that person
gpg --fingerprint jschmo@example.com
# Modify the key, to add/remove other e-mail addresses of yours, etc.
gpg --edit-key jschmo@example.com
# Get the source
cd
test -f installed/gnupg-2.4.3.tar.bz2 &&
mv installed/gnupg-2.4.3.tar.bz2 .
test ! -f gnupg-2.4.3.tar.bz2 &&
wget https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.4.3.tar.bz2
# Verify tarball w/ sha1sum:
# (this came from the release announcement and my gpg-verified tarball)
echo "79a60c8e415e3daaa33d0546398174252a56f7ac gnupg-2.4.3.tar.bz2" | \
sha1sum -c
# Verify tarball w/ sha256sum:
# (this came from my gpg-verified tarball)
echo "a271ae6d732f6f4d80c258ad9ee88dd9c94c8fdc33c3e45328c4d7c126bd21\
9d gnupg-2.4.3.tar.bz2" | sha256sum -c
# Verify tarball w/ an older version of gpg:
# [ GnuPG signing keys are here if you would rather --import them:
# https://gnupg.org/signature_key.asc ]
( gpg --list-keys 4F25E3B6 > /dev/null 2>&1 || gpg --recv-keys 4F25E3B6 ) &&
wget -nc https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.4.3.tar.bz2.sig &&
gpg --verify gnupg-2.4.3.tar.bz2.sig && rm gnupg-2.4.3.tar.bz2.sig
# Extract the source
mkdir -p -m 0700 ~/src
cd ~/src
find -maxdepth 1 -type d -name "gnupg-2.*" -exec rm -r {} \;
tar xjvf ~/gnupg-2.4.3.tar.bz2
cd gnupg-2.4.3
test $UID = 0 && chown -R root:root .
# Read README and if upgrading, NEWS
#
# If you just upgraded from 1.2.x to 1.4.x for the first time, read through
# doc/highlights-1.4.txt
# As of version 2.1.23, the formerly named gpg2 binary is named gpg
# If you want the binary installed as 'gpg2', use --enable-gpg-is-gpg2
# Keep in mind that md5 signatures will be discarded
# See 'man gpg' and look for "MD5"
# Configure the build for 64-bit
test $(uname -m) = 'x86_64' &&
./configure --disable-nls --prefix=/usr --docdir=/usr/doc/gnupg \
--infodir=/usr/info --libdir=/usr/lib64 --mandir=/usr/man
# Configure the build for anything else
test $(uname -m) != 'x86_64' &&
./configure --disable-nls --prefix=/usr --docdir=/usr/doc/gnupg \
--infodir=/usr/info --mandir=/usr/man
# Build it
make
# Become root to install it
su
# Remove the Slackware package, if there is one
test -x /sbin/removepkg && /sbin/removepkg gnupg2
# Install the new version
make install
# Become yourself again
exit
# Save the source for later
cd
mkdir -p -m 0700 installed
rm -f installed/gnupg-2.*.tar.*
mv gnupg-2.4.3.tar.bz2 installed/
# If you ever want to uninstall GnuPG 1.x, this should do it:
cd
su
test -d src/gnupg-1.* && ( cd src/gnupg-1.* ; make uninstall )
for pfx in /usr /usr/local;
do
( cd ${pfx}/bin ; rm -f gpg gpg-zip gpgsplit gpgv )
( cd ${pfx}/info ; rm -f gpg.info gpgv.info )
test -d ${pfx}/libexec/gnupg && rm -r ${pfx}/libexec/gnupg
( cd ${pfx}/man/man1 ; rm -f gpg.1 gpg-zip.1 gpgv.1 )
rm -f ${pfx}/man/man7/gnupg.7
test -d ${pfx}/share/gnupg && rm -r ${pfx}/share/gnupg
find ${pfx}/share/locale -type f -name "gnupg.mo" -exec rm {} \; \
2> /dev/null
rm -f ${pfx}/share/info/gnupg1.info
done
exit
find ~/src -maxdepth 1 -type d -name "gnupg-1.*" -exec rm -r {} \;
rm -f ~/installed/gnupg-1.*.tar.*
# If you ever want to uninstall GnuPG 2.x, this should do it:
cd
su
test -d src/gnupg-2.* && ( cd src/gnupg-2.* ; make uninstall )
for pfx in /usr /usr/local;
do
( cd ${pfx}/bin ; rm -f gpg-agent gpg-connect-agent gpg2 gpgconf \
gpgkey2ssh gpgparsemail gpgsm gpgsm-gencert.sh gpgv2 kbxutil scdaemon \
watchgnupg )
( cd ${pfx}/libexec ; rm -f gnupg-pcsc-wrapper gpg-preset-passphrase \
gpg-protect-tool gpg2keys_curl gpg2keys_finger gpg2keys_hkp \
gpg2keys_ldap scdaemon )
( cd ${pfx}/man/man1 ; rm -f gpg-agent.1 gpg-connect-agent.1 \
gpg-preset-passphrase.1 gpg2.1 gpgconf.1 gpgparsemail.1 \
gpgsm-gencert.sh.1 gpgsm.1 gpgv2.1 scdaemon.1 symcryptrun.1 \
watchgnupg.1 )
( cd ${pfx}/man/man8 ; rm -f addgnupghome.8 applygnupgdefaults.8 )
( cd ${pfx}/share/man/man1 ; rm -f gpg-agent.1 gpg-connect-agent.1 \
gpg-preset-passphrase.1 gpg2.1 gpgconf.1 gpgparsemail.1 \
gpgsm-gencert.sh.1 gpgsm.1 gpgv2.1 scdaemon.1 symcryptrun.1 \
watchgnupg.1 )
( cd ${pfx}/share/man/man8 ; rm -f addgnupghome.8 applygnupgdefaults.8 )
( cd ${pfx}/sbin ; rm -f addgnupghome applygnupgdefaults )
test -d ${pfx}/share/gnupg && rm -r ${pfx}/share/gnupg
rm -f ${pfx}/share/info/gnupg.info
done
exit
find ~/src -maxdepth 1 -type d -name "gnupg-2.*" -exec rm -r {} \;
rm -f ~/installed/gnupg-2.*.tar.*