lol

pkgs.gnupg1: 1.4.19 -> 1.4.20

+2 -26
+2 -4
pkgs/tools/security/gnupg/1.nix
··· 1 1 { stdenv, fetchurl, readline, bzip2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "gnupg-1.4.19"; 4 + name = "gnupg-1.4.20"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://gnupg/gnupg/${name}.tar.bz2"; 8 - sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86"; 8 + sha256 = "1k7d6zi0zznqsmcjic0yrgfhqklqz3qgd3yac7wxsa7s6088p604"; 9 9 }; 10 - 11 - patches = [ ./remove-debug-message.patch ]; 12 10 13 11 buildInputs = [ readline bzip2 ]; 14 12
-22
pkgs/tools/security/gnupg/remove-debug-message.patch
··· 1 - commit 936416690e6c889505d84fe96983a66983beae5e 2 - Author: Werner Koch <wk@gnupg.org> 3 - Date: Thu Feb 26 09:38:58 2015 +0100 4 - 5 - gpg: Remove left-over debug message. 6 - 7 - * g10/armor.c (check_input): Remove log_debug. 8 - 9 - diff --git a/g10/armor.c b/g10/armor.c 10 - index 6c0013d..de1726d 100644 11 - --- a/g10/armor.c 12 - +++ b/g10/armor.c 13 - @@ -534,9 +534,6 @@ check_input( armor_filter_context_t *afx, IOBUF a ) 14 - /* This is probably input from a keyserver helper and we 15 - have not yet seen an error line. */ 16 - afx->key_failed_code = parse_key_failed_line (line+4, len-4); 17 - - log_debug ("armor-keys-failed (%.*s) ->%d\n", 18 - - (int)len, line, 19 - - afx->key_failed_code); 20 - } 21 - if( i >= 0 && !(afx->only_keyblocks && i != 1 && i != 5 && i != 6 )) { 22 - hdr_line = i;