Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-gnupg/files: python-gnupg-0.3.7-msg-handle.patch python-gnupg-0.3.2-fast-random.patch
Date: Thu, 05 Feb 2015 02:09:13
Message-Id: 20150205020908.C2F8911135@oystercatcher.gentoo.org
1 idella4 15/02/05 02:09:08
2
3 Added: python-gnupg-0.3.7-msg-handle.patch
4 Removed: python-gnupg-0.3.2-fast-random.patch
5 Log:
6 bump; update HOMEPAGE & SRC_URI, rm disused patch and 0.3.6. required by bug #534534
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.1 dev-python/python-gnupg/files/python-gnupg-0.3.7-msg-handle.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-gnupg/files/python-gnupg-0.3.7-msg-handle.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-gnupg/files/python-gnupg-0.3.7-msg-handle.patch?rev=1.1&content-type=text/plain
15
16 Index: python-gnupg-0.3.7-msg-handle.patch
17 ===================================================================
18 https://bitbucket.org/vinay.sajip/python-gnupg/commits/79c73a9ce6e33555246f9dae2ef4be9964e2704b
19 # HG changeset patch
20 # User Vinay Sajip <vinay_sajip@××××××××.uk>
21 # Date 1419023737 0
22 # Node ID 79c73a9ce6e33555246f9dae2ef4be9964e2704b
23 # Parent 767aa49b175738b6d0404a2fb2fca3e3c081e0a8
24 Closes #22: handled PROGRESS messages during verification and signing.
25
26 diff --git a/gnupg.py b/gnupg.py
27 --- a/gnupg.py
28 +++ b/gnupg.py
29 @@ -221,7 +221,8 @@
30 "PLAINTEXT_LENGTH", "POLICY_URL", "DECRYPTION_INFO",
31 "DECRYPTION_OKAY", "INV_SGNR", "FILE_START", "FILE_ERROR",
32 "FILE_DONE", "PKA_TRUST_GOOD", "PKA_TRUST_BAD", "BADMDC",
33 - "GOODMDC", "NO_SGNR", "NOTATION_NAME", "NOTATION_DATA"):
34 + "GOODMDC", "NO_SGNR", "NOTATION_NAME", "NOTATION_DATA",
35 + "PROGRESS"):
36 pass
37 elif key == "BADSIG":
38 self.valid = False
39 @@ -601,7 +602,7 @@
40 if key in ("USERID_HINT", "NEED_PASSPHRASE", "BAD_PASSPHRASE",
41 "GOOD_PASSPHRASE", "BEGIN_SIGNING", "CARDCTRL", "INV_SGNR",
42 "NO_SGNR", "MISSING_PASSPHRASE", "NEED_PASSPHRASE_PIN",
43 - "SC_OP_FAILURE", "SC_OP_SUCCESS"):
44 + "SC_OP_FAILURE", "SC_OP_SUCCESS", "PROGRESS"):
45 pass
46 elif key in ("KEYEXPIRED", "SIGEXPIRED"):
47 self.status = 'key expired'