[git] GnuPG - branch, master, updated. gnupg-2.1.0-beta783-37-g2f065d7

by Werner Koch cvs at cvs.gnupg.org
Thu Sep 18 11:39:48 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  2f065d7ab6c514013eb8504281f50284764c26ec (commit)
      from  36125f9c30f7d004f1e4552840211553ef6892f2 (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 2f065d7ab6c514013eb8504281f50284764c26ec
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Sep 18 11:08:45 2014 +0200

    speedo: Various fixes
    
    * build-aux/speedo.mk: Take zlib and bzip2 from ftp.gnupg.org.  Minor
    other fixes.

diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk
index ae84d66..3c7ce72 100644
--- a/build-aux/speedo.mk
+++ b/build-aux/speedo.mk
@@ -148,7 +148,7 @@ speedo_spkgs  = \
 
 ifeq ($(TARGETOS),w32)
 speedo_spkgs += \
-	zlib libiconv gettext
+	zlib bzip2 libiconv gettext
 endif
 
 speedo_spkgs += \
@@ -194,7 +194,7 @@ speedo_gnupg_style = \
 
 # Packages which use only make and no build directory
 speedo_make_only_style = \
-	zlib
+	zlib bzip2
 
 # Get the content of the software DB.
 ifeq ($(UPD_SWDB),1)
@@ -233,12 +233,20 @@ gpa_sha1 := $(shell awk '$$1=="gpa_sha1" {print $$2}' swdb.lst)
 gpgex_ver  := $(shell awk '$$1=="gpgex_ver" {print $$2}' swdb.lst)
 gpgex_sha1 := $(shell awk '$$1=="gpgex_sha1" {print $$2}' swdb.lst)
 
+zlib_ver  := $(shell awk '$$1=="zlib_ver" {print $$2}' swdb.lst)
+zlib_sha1 := $(shell awk '$$1=="zlib_sha1_gz" {print $$2}' swdb.lst)
+
+bzip2_ver  := $(shell awk '$$1=="bzip2_ver" {print $$2}' swdb.lst)
+bzip2_sha1 := $(shell awk '$$1=="bzip2_sha1_gz" {print $$2}' swdb.lst)
+
 $(info Information from the version database)
 $(info GnuPG ..........: $(gnupg_ver))
 $(info Libgpg-error ...: $(libgpg_error_ver))
 $(info Npth ...........: $(npth_ver))
 $(info Libgcrypt ......: $(libgcrypt_ver))
 $(info Libassuan ......: $(libassuan_ver))
+$(info Zlib ...........: $(zlib_ver))
+$(info Bzip2 ..........: $(bzip2_ver))
 $(info GPGME ..........: $(gpgme_ver))
 $(info Pinentry .......: $(pinentry_ver))
 $(info GPA ............: $(gpa_ver))
@@ -267,6 +275,7 @@ gitrep = ${HOME}/s
 
 # The tarball directories
 pkgrep = ftp://ftp.gnupg.org/gcrypt
+pkg10rep = ftp://ftp.g10code.com/g10code
 pkg2rep = $(TARBALLS)
 
 # For each package, the following variables can be defined:
@@ -329,13 +338,14 @@ else ifeq ($(WHAT),release)
   speedo_pkg_gpa_tar = \
 	$(pkgrep)/gpa/gpa-$(gpa_ver).tar.bz2
   speedo_pkg_gpgex_tar = \
-	$(pkgrep)/gpex/gpgex-$(gpa_ver).tar.bz2
+	$(pkg10rep)/gpgex/gpgex-$(gpgex_ver).tar.bz2
 else
   $(error invalid value for WHAT (use on of: git release this))
 endif
 
 speedo_pkg_pkg_config_tar = $(pkg2rep)/pkg-config-$(pkg_config_ver).tar.gz
-speedo_pkg_zlib_tar       = $(pkg2rep)/zlib-$(zlib_ver).tar.gz
+speedo_pkg_zlib_tar       = $(pkgrep)/zlib/zlib-$(zlib_ver).tar.gz
+speedo_pkg_bzip2_tar      = $(pkgrep)/bzip2/bzip2-$(bzip2_ver).tar.gz
 speedo_pkg_libiconv_tar   = $(pkg2rep)/libiconv-$(libiconv_ver).tar.gz
 speedo_pkg_gettext_tar    = $(pkg2rep)/gettext-$(gettext_ver).tar.gz
 speedo_pkg_libffi_tar     = $(pkg2rep)/libffi-$(libffi_ver).tar.gz
@@ -438,6 +448,13 @@ endef
 
 endif
 
+ifeq ($(TARGETOS),w32)
+speedo_pkg_bzip2_make_args = \
+	CC="$(host)-gcc" AR="$(host)-ar" RANLIB="$(host)-ranlib"
+
+speedo_pkg_bzip2_make_args_inst = \
+	PREFIX=$(idir) CC="$(host)-gcc" AR="$(host)-ar" RANLIB="$(host)-ranlib"
+endif
 
 speedo_pkg_w64_libiconv_configure = \
 	--enable-shared=no --enable-static=yes
@@ -817,7 +834,7 @@ else
 	@($(call SETVARS,$(1));				\
           cd "$$$${pkgbdir}";				\
 	  test -n "$$$${pkgmkdir}" && cd "$$$${pkgmkdir}"; \
-	  $(MAKE) --no-print-directory $(speedo_makeopt) $$$${pkgmkargs} V=1)
+	  $(MAKE) --no-print-directory $(speedo_makeopt) $$$${pkgmkargs} V=0)
 endif
 	@touch $(stampdir)/stamp-$(1)-02-make
 
@@ -832,7 +849,7 @@ else
 	@($(call SETVARS_W64,$(1));				\
           cd "$$$${pkgbdir}";				\
 	  test -n "$$$${pkgmkdir}" && cd "$$$${pkgmkdir}"; \
-	  $(MAKE) --no-print-directory $(speedo_makeopt) $$$${pkgmkargs} V=1)
+	  $(MAKE) --no-print-directory $(speedo_makeopt) $$$${pkgmkargs} V=0)
 endif
 	@touch $(stampdir)/stamp-w64-$(1)-02-make
 
@@ -844,7 +861,7 @@ ifneq ($(findstring $(1),$(speedo_make_only_style)),)
 	@($(call SETVARS,$(1));				\
           cd "$$$${pkgsdir}";				\
 	  test -n "$$$${pkgmkdir}" && cd "$$$${pkgmkdir}"; \
-	  $(MAKE) --no-print-directory $$$${pkgmkargs_inst} install V=1;\
+	  $(MAKE) --no-print-directory $$$${pkgmkargs_inst} install V=0;\
 	  $(call speedo_pkg_$(call FROB_macro,$(1))_post_install))
 else
 	@($(call SETVARS,$(1));				\
@@ -861,7 +878,7 @@ ifneq ($(findstring $(1),$(speedo_make_only_style)),)
 	@($(call SETVARS_W64,$(1));				\
           cd "$$$${pkgsdir}";				\
 	  test -n "$$$${pkgmkdir}" && cd "$$$${pkgmkdir}"; \
-	  $(MAKE) --no-print-directory $$$${pkgmkargs_inst} install V=1;\
+	  $(MAKE) --no-print-directory $$$${pkgmkargs_inst} install V=0;\
 	  $(call speedo_pkg_$(call FROB_macro,$(1))_post_install))
 else
 	@($(call SETVARS_W64,$(1));				\
@@ -983,7 +1000,7 @@ w32_insthelpers: $(bdir)/g4wihelp.dll
 $(bdir)/inst-options.ini: $(w32src)/inst-options.ini
 	cat $(w32src)/inst-options.ini >$(bdir)/inst-options.ini
 
-installer: all w32_insthelpers $(w32dir)/inst-options.ini $(bdir)/README.txt
+installer: all w32_insthelpers $(w32src)/inst-options.ini $(bdir)/README.txt
 	$(MAKENSIS) -V2 \
                     -DINST_DIR=$(idir) \
                     -DINST6_DIR=$(idir6) \
diff --git a/build-aux/speedo/w32/inst.nsi b/build-aux/speedo/w32/inst.nsi
index 3c76c73..707b058 100644
--- a/build-aux/speedo/w32/inst.nsi
+++ b/build-aux/speedo/w32/inst.nsi
@@ -52,19 +52,19 @@
 
 !define ABOUT_ENGLISH \
  "GnuPG is the mostly used software for mail and data encryption. \
-  It can be used to encrypt data and to create digital signatures. \
-  It includes an advanced key management facility and is compliant \
-  with the proposed OpenPGP Internet standard as described in RFC-4880. \
+  GnuPG can be used to encrypt data and to create digital signatures. \
+  GnuPG includes an advanced key management facility and is compliant \
+  with the OpenPGP Internet standard as described in RFC-4880. \
   \r\n\r\n$_CLICK \
-  \r\n\r\n\r\n\r\n\r\nThis is GnuPG version ${VERSION}\r\n\
-  file version ${PROD_VERSION}\r\n\
-  release date ${BUILD_ISODATE}"
+  \r\n\r\n\r\n\r\n\r\nThis is GnuPG version ${VERSION}.\r\n\
+  File version: ${PROD_VERSION}\r\n\
+  Release date: ${BUILD_ISODATE}"
 !define ABOUT_GERMAN \
  "GnuPG is die häufigst verwendete Software zur Mail- und Datenverschlüsselung.\
    \r\n\r\n$_CLICK \
-   \r\n\r\n\r\n\r\n\r\nDies ist GnuPG Version ${VERSION}\r\n\
-   Dateiversion ${PROD_VERSION}\r\n\
-   Releasedatum ${BUILD_ISODATE}"
+   \r\n\r\n\r\n\r\n\r\nDies ist GnuPG Version ${VERSION}.\r\n\
+   Dateiversion: ${PROD_VERSION}\r\n\
+   Releasedatum: ${BUILD_ISODATE}"
 
 
 # The copyright license of the package.  Define only one of these.

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

Summary of changes:
 build-aux/speedo.mk           |   35 ++++++++++++++++++++++++++---------
 build-aux/speedo/w32/inst.nsi |   18 +++++++++---------
 2 files changed, 35 insertions(+), 18 deletions(-)


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




More information about the Gnupg-commits mailing list