[git] GPGME - branch, master, updated. gpgme-1.12.0-68-g004e2ca

by Andre Heinecke cvs at cvs.gnupg.org
Thu Nov 15 10:46:09 CET 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  004e2cad2f26250cd010684f11dc187f08e6f9e1 (commit)
       via  40d962b43a183070ba8602cac1e83f2292ebf2c3 (commit)
       via  d3dae4a445d950c94c952ddf54e534ef71675bd1 (commit)
       via  def030e843bd4576597272abe9fe12f846066576 (commit)
       via  d0087d45f0207bf82a4f078d972c28c4d1cd2690 (commit)
       via  88b7221eb737a3102ec61ea385990b7ea7ef2b30 (commit)
       via  27ca12e815c0a582d357641a04b889d648b8766e (commit)
       via  dd4b80a5f640232bb44eb825ff5a74ec295fad10 (commit)
       via  9a31fdcb11d04d47dfcc38a8409b84436c549108 (commit)
       via  e55e467d5ffb32c428566a876616d309ef2d15cd (commit)
       via  ca2e2b3d6973b1f942571ba65bd8b57153847777 (commit)
       via  5b61c092e7444749b08e39ac5aa9fb0818e1a076 (commit)
       via  9933641cce595ba308d0f3a1f3ae8f13a9743dd1 (commit)
       via  3e5684d99b881787f9739e53fd8e8c22eadc2146 (commit)
       via  0c31837766e016227b3c8dfd44c476949cd4741e (commit)
      from  c4aa4af50f3102b251cfff9c9755e2dde8d1bd1f (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 -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 configure.ac                             |   1 +
 tests/Makefile.am                        |   2 +-
 tests/gpg/t-support.h                    |   3 +-
 tests/{gpg => json}/Makefile.am          |  84 +++---
 tests/{gpg => json}/final.test           |   0
 tests/{gpgsm => json}/initial.test       |   0
 tests/json/t-chunking.in.json            |   5 +
 tests/json/t-chunking.out.json           |   5 +
 tests/json/t-config-opt.in.json          |   5 +
 tests/json/t-config-opt.out.json         |   6 +
 tests/json/t-config.in.json              |   4 +
 tests/json/t-config.out.json             |  19 ++
 tests/json/t-createkey.in.json           |   5 +
 tests/json/t-createkey.out.json          |   3 +
 tests/json/t-decrypt-verify.in.json      |   5 +
 tests/json/t-decrypt-verify.out.json     |  56 ++++
 tests/json/t-decrypt.in.json             |   5 +
 tests/json/t-decrypt.out.json            |  16 +
 tests/json/t-delete.in.json              |   4 +
 tests/json/t-delete.out.json             |   3 +
 tests/json/t-encrypt-sign.in.json        |   8 +
 tests/json/t-encrypt-sign.out.json       |   4 +
 tests/json/t-encrypt.in.json             |   8 +
 tests/json/t-encrypt.out.json            |   4 +
 tests/json/t-export-secret-info.in.json  |   6 +
 tests/json/t-export-secret-info.out.json |   6 +
 tests/json/t-export.in.json              |   5 +
 tests/json/t-export.out.json             |   5 +
 tests/json/t-import.in.json              |   4 +
 tests/json/t-import.out.json             |  22 ++
 tests/json/t-json.c                      | 499 +++++++++++++++++++++++++++++++
 tests/json/t-keylist-secret.in.json      |   5 +
 tests/json/t-keylist-secret.out.json     | 163 ++++++++++
 tests/json/t-keylist.in.json             |   5 +
 tests/json/t-keylist.out.json            |  65 ++++
 tests/json/t-sig-notations.in.json       |   4 +
 tests/json/t-sig-notations.out.json      |  56 ++++
 tests/json/t-sign.in.json                |   8 +
 tests/json/t-sign.out.json               |   5 +
 tests/json/t-verify.in.json              |   5 +
 tests/json/t-verify.out.json             |  35 +++
 tests/json/t-version.in.json             |   3 +
 tests/json/t-version.out.json            |  10 +
 43 files changed, 1119 insertions(+), 47 deletions(-)
 copy tests/{gpg => json}/Makefile.am (53%)
 copy tests/{gpg => json}/final.test (100%)
 copy tests/{gpgsm => json}/initial.test (100%)
 create mode 100644 tests/json/t-chunking.in.json
 create mode 100644 tests/json/t-chunking.out.json
 create mode 100644 tests/json/t-config-opt.in.json
 create mode 100644 tests/json/t-config-opt.out.json
 create mode 100644 tests/json/t-config.in.json
 create mode 100644 tests/json/t-config.out.json
 create mode 100644 tests/json/t-createkey.in.json
 create mode 100644 tests/json/t-createkey.out.json
 create mode 100644 tests/json/t-decrypt-verify.in.json
 create mode 100644 tests/json/t-decrypt-verify.out.json
 create mode 100644 tests/json/t-decrypt.in.json
 create mode 100644 tests/json/t-decrypt.out.json
 create mode 100644 tests/json/t-delete.in.json
 create mode 100644 tests/json/t-delete.out.json
 create mode 100644 tests/json/t-encrypt-sign.in.json
 create mode 100644 tests/json/t-encrypt-sign.out.json
 create mode 100644 tests/json/t-encrypt.in.json
 create mode 100644 tests/json/t-encrypt.out.json
 create mode 100644 tests/json/t-export-secret-info.in.json
 create mode 100644 tests/json/t-export-secret-info.out.json
 create mode 100644 tests/json/t-export.in.json
 create mode 100644 tests/json/t-export.out.json
 create mode 100644 tests/json/t-import.in.json
 create mode 100644 tests/json/t-import.out.json
 create mode 100644 tests/json/t-json.c
 create mode 100644 tests/json/t-keylist-secret.in.json
 create mode 100644 tests/json/t-keylist-secret.out.json
 create mode 100644 tests/json/t-keylist.in.json
 create mode 100644 tests/json/t-keylist.out.json
 create mode 100644 tests/json/t-sig-notations.in.json
 create mode 100644 tests/json/t-sig-notations.out.json
 create mode 100644 tests/json/t-sign.in.json
 create mode 100644 tests/json/t-sign.out.json
 create mode 100644 tests/json/t-verify.in.json
 create mode 100644 tests/json/t-verify.out.json
 create mode 100644 tests/json/t-version.in.json
 create mode 100644 tests/json/t-version.out.json


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




More information about the Gnupg-commits mailing list