[git] GnuPG - branch, master, updated. gnupg-2.1.0-beta834-8-g59b6f6f
by Werner Koch
cvs at cvs.gnupg.org
Mon Sep 22 14:39:13 CEST 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, master has been updated
via 59b6f6f16e095162358ac2001aeb2c058de2fd1e (commit)
from 2427bc5bc76b00cfe790e1f370113f5b4199e8fa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 59b6f6f16e095162358ac2001aeb2c058de2fd1e
Author: Werner Koch <wk at gnupg.org>
Date: Thu Sep 18 16:00:34 2014 +0200
speedo: Check that wget and gpgv are installed.
* build-aux/getswdb.sh: Check for required tools.
diff --git a/build-aux/getswdb.sh b/build-aux/getswdb.sh
index cef6c46..a7796e2 100755
--- a/build-aux/getswdb.sh
+++ b/build-aux/getswdb.sh
@@ -94,6 +94,12 @@ fi
version=$(cat "$srcdir/../VERSION")
version_num=$(echo "$version" | cvtver)
+if ! $GPGV --version >/dev/null 2>/dev/null ; then
+ echo "command \"gpgv\" is not installed" >&2
+ echo "(please install an older version of GnuPG)" >&2
+ exit 1
+fi
+
#
# Download the list and verify.
#
@@ -107,6 +113,11 @@ if [ $skip_download = yes ]; then
exit 1
fi
else
+ if ! $WGET --version >/dev/null 2>/dev/null ; then
+ echo "command \"wget\" is not installed" >&2
+ exit 1
+ fi
+
if ! $WGET -q -O swdb.lst "$urlbase/swdb.lst" ; then
echo "download of swdb.lst failed." >&2
exit 1
-----------------------------------------------------------------------
Summary of changes:
build-aux/getswdb.sh | 11 +++++++++++
1 file changed, 11 insertions(+)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list