tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pkgs.gnupg1: 1.4.19 -> 1.4.20
Lancelot SIX
10 years ago
e3e22733
5ff1c586
+2
-26
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
gnupg
1.nix
remove-debug-message.patch
+2
-4
pkgs/tools/security/gnupg/1.nix
···
1
1
{ stdenv, fetchurl, readline, bzip2 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "gnupg-1.4.19";
4
4
+
name = "gnupg-1.4.20";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
8
8
-
sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86";
8
8
+
sha256 = "1k7d6zi0zznqsmcjic0yrgfhqklqz3qgd3yac7wxsa7s6088p604";
9
9
};
10
10
-
11
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
1
-
commit 936416690e6c889505d84fe96983a66983beae5e
2
2
-
Author: Werner Koch <wk@gnupg.org>
3
3
-
Date: Thu Feb 26 09:38:58 2015 +0100
4
4
-
5
5
-
gpg: Remove left-over debug message.
6
6
-
7
7
-
* g10/armor.c (check_input): Remove log_debug.
8
8
-
9
9
-
diff --git a/g10/armor.c b/g10/armor.c
10
10
-
index 6c0013d..de1726d 100644
11
11
-
--- a/g10/armor.c
12
12
-
+++ b/g10/armor.c
13
13
-
@@ -534,9 +534,6 @@ check_input( armor_filter_context_t *afx, IOBUF a )
14
14
-
/* This is probably input from a keyserver helper and we
15
15
-
have not yet seen an error line. */
16
16
-
afx->key_failed_code = parse_key_failed_line (line+4, len-4);
17
17
-
- log_debug ("armor-keys-failed (%.*s) ->%d\n",
18
18
-
- (int)len, line,
19
19
-
- afx->key_failed_code);
20
20
-
}
21
21
-
if( i >= 0 && !(afx->only_keyblocks && i != 1 && i != 5 && i != 6 )) {
22
22
-
hdr_line = i;