[git] GPGME - branch, master, updated. gpgme-1.7.1-24-gf1f3410

by Justus Winter cvs at cvs.gnupg.org
Wed Nov 9 13:57:54 CET 2016


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 "GnuPG Made Easy".

The branch, master has been updated
       via  f1f341062e24724e26928d893dd5769d3ccf5fa2 (commit)
      from  10f2e1c30be651e74a03f4563a9f212d7416adb3 (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 f1f341062e24724e26928d893dd5769d3ccf5fa2
Author: Justus Winter <justus at g10code.com>
Date:   Wed Nov 9 13:56:00 2016 +0100

    python: Require at least GPGME 1.7 for out-of-tree builds.
    
    * lang/python/setup.py.in: Bump required version to 1.7.
    
    Signed-off-by: Justus Winter <justus at g10code.com>

diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in
index 3d0b730..9669c28 100755
--- a/lang/python/setup.py.in
+++ b/lang/python/setup.py.in
@@ -75,8 +75,8 @@ if '-' in version:
     version = version.split('-')[0]
 major, minor, patch = map(int, version.split('.'))
 
-if not (major > 1 or (major == 1 and minor >= 6)):
-    sys.exit('Need at least GPGME version 1.6, found {}.'.format(version_raw))
+if not (major > 1 or (major == 1 and minor >= 7)):
+    sys.exit('Need at least GPGME version 1.7, found {}.'.format(version_raw))
 
 if not gpgme_h:
     gpgme_h = os.path.join(getconfig("prefix")[0], "include", "gpgme.h")

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

Summary of changes:
 lang/python/setup.py.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GnuPG Made Easy
http://git.gnupg.org




More information about the Gnupg-commits mailing list