|
|
|
|
|
by e12e
4666 days ago
|
|
BIG WARNING - THIS IS NOT THE BEST WAY TO INSTALL GNUPG! IT DOES NOT
VERIFY ANY (REAL) SIGNATURES!! FYI - Debian unstable (aka sid) has a pacakge, and there is a backport to Ubuntu Saucy. I'm not sure what the best/easiest way to automatically pull down sources for a newer release than the release you're running in Ubuntu (there might be some apt-add magick for source mirrors?) -- but since it is up at launchpad[1], you can: a) try the binaries
b) build the debs yourself (aka manually "backport"): mkdir tmp/gnupg -p
cd tmp/gnupg
sudo apt-get build-dep gnupg
sudo aptitude install dpkg-dev #This might get pulled
#in by the line above
wget https://launchpad.net/ubuntu/saucy/+source/gnupg/1.4.14-1ubuntu1/+files/gnupg_1.4.14.orig.tar.gz \
https://launchpad.net/ubuntu/saucy/+source/gnupg/1.4.14-1ubuntu1/+files/gnupg_1.4.14-1ubuntu1.debian.tar.gz \
https://launchpad.net/ubuntu/saucy/+source/gnupg/1.4.14-1ubuntu1/+files/gnupg_1.4.14-1ubuntu1.dsc
tar xzf gnupg_1.4.14.orig.tar.gz
cd gnupg-1.4.14
tar xzf gnupg_1.4.14-1ubuntu1.debian.tar.gz
cd debian
dpkg-buildpackage
cd ..
sudo dpkg -i gpgv_1.4.14-1ubuntu1_amd64.deb \
gnupg_1.4.14-1ubuntu1_amd64.deb \
gnupg-curl_1.4.14-1ubuntu1_amd64.deb
Note: This might not be a good idea with a package that is as imprtant
as gnupg (among other things apt package lists are signed with gnupg!).
And as you can also see above, the packages are not signed (explicitly,
even if they do come in via https...).At least this built fine under wheezy -- but I haven't tried installing them (I'm not that worried that someone will snoop my workstation cache..). So not really meant for advice on how to get an upstream gnupg -- but
useful with a few other well-behaved programs. So big warning,
practice safe hex and all that! |
|