[Pkg-gnupg-commit] [gpgme] 24/62: python: Require at least GPGME 1.7 for out-of-tree builds.

Daniel Kahn Gillmor dkg at fifthhorseman.net
Sat Nov 19 04:03:32 UTC 2016


This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch experimental
in repository gpgme.

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>
---
 lang/python/setup.py.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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")

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gpgme.git



More information about the Pkg-gnupg-commit mailing list