[git] GPGME - branch, master, updated. gpgme-1.11.1-74-g35e29e1

by Ben McGinnes cvs at cvs.gnupg.org
Fri Jun 29 06:56:33 CEST 2018


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  35e29e139534ed217340879732a7adfdbd57c91d (commit)
       via  43a2b5754571292b25402e20cd044ebda9316c77 (commit)
      from  48174b2bcc319e4542aefd0cc3aae02c4083784e (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 35e29e139534ed217340879732a7adfdbd57c91d
Author: Ben McGinnes <ben at adversary.org>
Date:   Fri Jun 29 14:52:37 2018 +1000

    m4 update: python 3.7
    
    * Fixed an error in arcane m4 syntax.

diff --git a/m4/python.m4 b/m4/python.m4
index db7b482..56220ba 100644
--- a/m4/python.m4
+++ b/m4/python.m4
@@ -35,16 +35,13 @@
 AC_DEFUN([AM_PATH_PYTHON],
  [
   dnl Find a Python interpreter.  Python versions prior to 2.0 are not
-  dnl supported. (2.0 was released on October 16, 2000).
+  dnl supported. (2.0 was released on October 16, 2000).  Python 3.0
+  dnl through to Python 3.3 are also not supported.
   m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
 [python2 python2.7 dnl
  python dnl
- dnl old listing was pointless since biundings only work from Python 3.4:
- dnl python3 python3.0 python3.1 python3.2 python3.3
- dnl move 3.7 to the front once 3.7.1 or 3.7.2 is released:
- dnl python3 python3.7 python3.6 python3.5 python3.4 python3.8])
- dnl until then:
- python3 python3.6 python3.5 python3.4 python3.7 python3.8])
+ python3 python3.6 python3.5 python3.4 python3.7  dnl
+ python3.8])
 
   AC_ARG_VAR([PYTHON], [the Python interpreter])
 

commit 43a2b5754571292b25402e20cd044ebda9316c77
Author: Ben McGinnes <ben at adversary.org>
Date:   Fri Jun 29 14:26:30 2018 +1000

    python bindings: python 3.7
    
    * Bindings confirmed to work with the newly released 3.7.0.
    * Updated M4 file to reflect this change and correct the Python binary
      search order (3.7 is not yet given priority, but will still be found
      first via the more generic python3 executable).
    * Updated setup.py.in, bindings documentation and README to reflect this.

diff --git a/lang/python/README b/lang/python/README
index 99da4dd..aadf980 100644
--- a/lang/python/README
+++ b/lang/python/README
@@ -44,8 +44,8 @@ functionality of the underlying library.
 ═════════
 
   PyME was created by John Goerzen, and maintained, developed, and
-  cherished by Igor Belyi, Martin Albrecht, Ben McGinnes, and everyone
-  who contributed to it in any way.
+  cherished by Igor Belyi, Martin Albrecht, Ben McGinnes, Justus
+  Winter, and everyone who contributed to it in any way.
 
   In 2016 we merged a port of PyME to into the GPGME repository, and
   development will continue there.  Please see the VCS history for the
diff --git a/lang/python/README.org b/lang/python/README.org
index cba9966..df6c63d 100644
--- a/lang/python/README.org
+++ b/lang/python/README.org
@@ -27,8 +27,8 @@ Please report bugs using our bug tracker
 * Authors
 
 PyME was created by John Goerzen, and maintained, developed, and
-cherished by Igor Belyi, Martin Albrecht, Ben McGinnes, and everyone
-who contributed to it in any way.
+cherished by Igor Belyi, Martin Albrecht, Ben McGinnes, Justus Winter,
+and everyone who contributed to it in any way.
 
 In 2016 we merged a port of PyME to into the GPGME repository, and
 development will continue there.  Please see the VCS history for the
diff --git a/lang/python/docs/GPGMEpythonHOWTOen.org b/lang/python/docs/GPGMEpythonHOWTOen.org
index 6a3f9db..5fa0136 100644
--- a/lang/python/docs/GPGMEpythonHOWTOen.org
+++ b/lang/python/docs/GPGMEpythonHOWTOen.org
@@ -14,7 +14,7 @@
   :CUSTOM_ID: intro
   :END:
 
-  | Version:        | 0.1.1                                    |
+  | Version:        | 0.1.2                                    |
   | Author:         | Ben McGinnes <ben at gnupg.org>             |
   | Author GPG Key: | DB4724E6FA4286C92B4E55C4321E4E2373590E5D |
   | Language:       | Australian English, British English      |
@@ -247,7 +247,7 @@
    =python=, =python2= and =python2.7=.
 
    For Python 3 it checks for these executables in this order:
-   =python3=, =python3.6=, =python3.5= and =python3.4=.
+   =python3=, =python3.6=, =python3.5=, =python3.4= and =python3.7=.[fn:4]
 
 
 *** Installing GPGME
@@ -1777,3 +1777,7 @@
 keyservers for "gnupg.org" produces over 400 results, the majority of
 which aren't actually at the gnupg.org domain, but just included a
 comment regarding the project in their key somewhere.
+
+[fn:4] As Python 3.7 is a very recent release, it is not given
+priority over 3.6 yet, but will probably be prioritised by the release
+of Python 3.7.2.
diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in
index 2595073..0622b61 100755
--- a/lang/python/setup.py.in
+++ b/lang/python/setup.py.in
@@ -246,6 +246,7 @@ setup(name="gpg",
           'Programming Language :: Python :: 3.4',
           'Programming Language :: Python :: 3.5',
           'Programming Language :: Python :: 3.6',
+          'Programming Language :: Python :: 3.7',
           'Operating System :: POSIX',
           'Operating System :: Microsoft :: Windows',
           'Topic :: Communications :: Email',
diff --git a/m4/python.m4 b/m4/python.m4
index 822b2dd..db7b482 100644
--- a/m4/python.m4
+++ b/m4/python.m4
@@ -39,8 +39,12 @@ AC_DEFUN([AM_PATH_PYTHON],
   m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
 [python2 python2.7 dnl
  python dnl
- python3 python3.0 python3.1 python3.2 python3.3  dnl
- python3.4 python3.5 python3.6 python3.7 python3.8])
+ dnl old listing was pointless since biundings only work from Python 3.4:
+ dnl python3 python3.0 python3.1 python3.2 python3.3
+ dnl move 3.7 to the front once 3.7.1 or 3.7.2 is released:
+ dnl python3 python3.7 python3.6 python3.5 python3.4 python3.8])
+ dnl until then:
+ python3 python3.6 python3.5 python3.4 python3.7 python3.8])
 
   AC_ARG_VAR([PYTHON], [the Python interpreter])
 

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

Summary of changes:
 lang/python/README                      | 4 ++--
 lang/python/README.org                  | 4 ++--
 lang/python/docs/GPGMEpythonHOWTOen.org | 8 ++++++--
 lang/python/setup.py.in                 | 1 +
 m4/python.m4                            | 7 ++++---
 5 files changed, 15 insertions(+), 9 deletions(-)


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




More information about the Gnupg-commits mailing list