[git] GnuPG - branch, master, updated. gnupg-2.1.0-beta864

by Werner Koch cvs at cvs.gnupg.org
Fri Oct 3 16:05:52 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  0943c7cc23371943e9670a2f35c318d847cbac6a (commit)
       via  841a797f6d45065aa77128fdfd43bd4769efefa4 (commit)
      from  bc8583f247898a1fa45f6de834d34b335ab1952c (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 0943c7cc23371943e9670a2f35c318d847cbac6a
Author: Werner Koch <wk at gnupg.org>
Date:   Fri Oct 3 15:45:32 2014 +0200

    Release 2.1.0-beta864.

diff --git a/NEWS b/NEWS
index a700313..4d533ce 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,23 @@
-Noteworthy changes in version 2.1.0-betaNNN (unreleased)
+Noteworthy changes in version 2.1.0-beta864 (2014-10-03)
 --------------------------------------------------------
 
+ * gpg: Removed the GPG_AGENT_INFO related code.  GnuPG does now only
+   use a fixed socket name in its home directory.
+
+ * gpg: Renamed --gen-key to --full-gen-key and re-added a --gen-key
+   command using less prompts.
+
+ * gpg: Use SHA-256 for all signature types also on RSA keys.
+
+ * gpg: Default keyring is now created with a .kbx suffix.
+
+ * gpg: Add a shortcut to key capabilies menu (e.g. "=e" sets the
+   encryption capabilities).
+
+ * gpg: Fixed obsolete options parsing.
+
+ * speedo: Improved the quick build system.
+
 
 Noteworthy changes in version 2.1.0-beta834 (2014-09-18)
 --------------------------------------------------------

commit 841a797f6d45065aa77128fdfd43bd4769efefa4
Author: Werner Koch <wk at gnupg.org>
Date:   Fri Oct 3 15:30:38 2014 +0200

    speedo: Add INSTALL_PREFIX feature.
    
    --
    
    With this it is now possible build and install gnupg 2.1 properly
    below /usr/local:
    
      make -f TOPSRC/build-aux/speed.ml native INSTALL_PREFIX=/usr/local
    
    Of course you need installation priviliges for the /usr/local tree.

diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk
index a9ba6d4..6d344f1 100644
--- a/build-aux/speedo.mk
+++ b/build-aux/speedo.mk
@@ -58,8 +58,10 @@ help:
 	@echo '  w32-installer  Build a Windows installer'
 	@echo '  w32-source     Pack a source archive'
 	@echo
-	@echo 'Prepend TARGET with "git-" to build from GIT repos'
-	@echo 'Prepend TARGET with "this-" to build from the source tarball'
+	@echo 'You may append INSTALL_REFIX=<dir> for native builds.'
+	@echo 'Prepend TARGET with "git-" to build from GIT repos.'
+	@echo 'Prepend TARGET with "this-" to build from the source tarball.'
+
 
 SPEEDOMAKE := $(MAKE) -f $(SPEEDO_MK) UPD_SWDB=1
 
@@ -124,6 +126,9 @@ MAKE_J=3
 # Name to use for the w32 installer and sources
 INST_NAME=gnupg-w32
 
+# Use this to override the installaion directory for native builds.
+INSTALL_PREFIX=none
+
 
 # Directory names.
 # They must be absolute, as we switch directories pretty often.
@@ -131,7 +136,11 @@ root := $(shell pwd)/PLAY
 sdir := $(root)/src
 bdir := $(root)/build
 bdir6:= $(root)/build-w64
+ifeq ($(INSTALL_PREFIX),none)
 idir := $(root)/inst
+else
+idir := $(abspath $(INSTALL_PREFIX))
+endif
 idir6:= $(root)/inst-w64
 stampdir := $(root)/stamps
 topsrc := $(shell cd $(dir $(SPEEDO_MK)).. && pwd)

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

Summary of changes:
 NEWS                |   19 ++++++++++++++++++-
 build-aux/speedo.mk |   13 +++++++++++--
 2 files changed, 29 insertions(+), 3 deletions(-)


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




More information about the Gnupg-commits mailing list