[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-284-g1dbf4a7

by Werner Koch cvs at cvs.gnupg.org
Fri Jan 10 15:19:18 CET 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  1dbf4a7573acf60cb3cfb8b7365c103080138345 (commit)
       via  aedfa95bcc49156f2bc6ae5d0f385705d4fbdd32 (commit)
      from  e7973d36d88178b4b0a977e3fcc0d62600777618 (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 1dbf4a7573acf60cb3cfb8b7365c103080138345
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    speedo: Minor improvements.
    
    --

diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk
index 4148002..f18ca44 100644
--- a/build-aux/speedo.mk
+++ b/build-aux/speedo.mk
@@ -43,13 +43,19 @@
 #
 
 
+# Set this to "git" or "release".
+WHAT=release
 
-# --------
+# Set target to "native" or "w32"
+TARGETOS=native
+
+#  Number of parallel make jobs
+MAKE_J=3
 
 # The packages that should be built.  The order is also the build order.
 speedo_spkgs = libgpg-error npth libgcrypt libassuan libksba gnupg gpgme gpa
 
-# version numbers of the released packages
+# Version numbers of the released packages
 # Fixme: Take the version numbers from gnupg-doc/web/swdb.mac
 libgpg_error_ver = 1.12
 npth_ver = 0.91
@@ -64,6 +70,9 @@ gpa_ver = 0.9.5
 #gitrep = git://git.gnupg.org
 gitrep = ${HOME}/s
 
+# The tarball directory
+pkgrep = ftp://ftp.gnupg.org/gcrypt
+
 
 # For each package, the following variables can be defined:
 #
@@ -87,15 +96,6 @@ gitrep = ${HOME}/s
 # Note that you can override the defaults in this file in a local file
 # "config.mk"
 
-# Set this to "git" or "release".
-WHAT=release
-
-# Set target to "native" or "w32"
-TARGETOS=native
-
-#  Number of parallel make jobs
-MAKE_J=3
-
 ifeq ($(WHAT),git)
   speedo_pkg_libgpg_error_git = $(gitrep)/libgpg-error
   speedo_pkg_libgpg_error_gitref = master
@@ -114,7 +114,6 @@ ifeq ($(WHAT),git)
   speedo_pkg_gpa_git = $(gitrep)/gpa
   speedo_pkg_gpa_gitref = master
 else
-  pkgrep = ftp://ftp.gnupg.org/gcrypt
   speedo_pkg_libgpg_error_tar = \
 	$(pkgrep)/libgpg-error/libgpg-error-$(libgpg_error_ver).tar.bz2
   speedo_pkg_npth_tar = \
@@ -248,13 +247,13 @@ $(stampdir)/stamp-$(1)-00-unpack: $(stampdir)/stamp-directories
 	@echo "speedo: /*"
 	@echo "speedo:  *   $(1)"
 	@echo "speedo:  */"
-	@(cd $(sdir);					\
-	 $(call SETVARS,$(1));				\
+	@(set -e; cd $(sdir);				\
+	 $(call SETVARS,$(1)); 				\
 	 if [ -n "$$$${git}" ]; then			\
 	   echo "speedo: unpacking $(1) from $$$${git}:$$$${gitref}"; \
-           git clone -q -b "$$$${gitref}" "$$$${git}" "$$$${pkg}"; \
-	   cd "$$$${pkg}" &&				\
-	   AUTOGEN_SH_SILENT=1 ./autogen.sh;		\
+           git clone -b "$$$${gitref}" "$$$${git}" "$$$${pkg}"; \
+	   cd "$$$${pkg}"; 				\
+	   AUTOGEN_SH_SILENT=1 ./autogen.sh;            \
          elif [ -n "$$$${tar}" ]; then			\
 	   echo "speedo: unpacking $(1) from $$$${tar}"; \
            case "$$$${tar}" in				\
@@ -283,8 +282,8 @@ $(stampdir)/stamp-$(1)-01-configure: $(stampdir)/stamp-$(1)-00-unpack
 	 if [ -n "$(speedo_autogen_buildopt)" ]; then   \
 	    eval AUTOGEN_SH_SILENT=1 w32root="$(idir)"  \
                  "$$$${pkgsdir}/autogen.sh"             \
-                 $(speedo_autogen_buildopt) --silent   \
-		 $$$${pkgcfg};                         \
+                 $(speedo_autogen_buildopt)             \
+		 $$$${pkgcfg};                          \
 	 else                                           \
             eval "$$$${pkgsdir}/configure" 		\
 		 --silent                 		\
@@ -318,10 +317,11 @@ $(stampdir)/stamp-final-$(1): $(stampdir)/stamp-$(1)-03-install
 clean-$(1):
 	@echo "speedo: uninstalling $(1)"
 	@($(call SETVARS,$(1));				\
-	 (cd "$$$${pkgbdir}";				\
-	  $(MAKE) --no-print-directory $$$${pkgmkargs_inst} uninstall V=0); \
-	 rm -fR "$$$${pkgsdir}" "$$$${pkgbdir}")
-	@rm -f $(stampdir)/stamp-final-$(1) $(stampdir)/stamp-$(1)-*
+	 (cd "$$$${pkgbdir}" 2>/dev/null &&		\
+	  $(MAKE) --no-print-directory                  \
+           $$$${pkgmkargs_inst} uninstall V=0 ) || true;\
+	 rm -fR "$$$${pkgsdir}" "$$$${pkgbdir}" || true)
+	-rm -f $(stampdir)/stamp-final-$(1) $(stampdir)/stamp-$(1)-*
 
 .PHONY : report-$(1)
 report-$(1):

commit aedfa95bcc49156f2bc6ae5d0f385705d4fbdd32
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    autogen.sh: Add rule for 64 bit windows.

diff --git a/autogen.sh b/autogen.sh
index ea3d5fc..471193c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -189,6 +189,12 @@ if [ "$myhost" = "w32" ]; then
           toolprefixes="$w32ce_toolprefixes arm-mingw32ce"
           extraoptions="$extraoptions $w32ce_extraoptions"
           ;;
+        64)
+          w32root="$w64root"
+          [ -z "$w32root" ] && w32root="$HOME/w64root"
+          toolprefixes="$w64_toolprefixes x86_64-w64-mingw32"
+          extraoptions="$extraoptions $w64_extraoptions"
+          ;;
         *)
           [ -z "$w32root" ] && w32root="$HOME/w32root"
           toolprefixes="$w32_toolprefixes i686-w64-mingw32 i586-mingw32msvc"

-----------------------------------------------------------------------

Summary of changes:
 autogen.sh          |    6 ++++++
 build-aux/speedo.mk |   46 +++++++++++++++++++++++-----------------------
 2 files changed, 29 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list