summaryrefslogtreecommitdiff
path: root/security/pinentry
diff options
context:
space:
mode:
authorwiz <wiz>2013-07-04 17:04:58 +0000
committerwiz <wiz>2013-07-04 17:04:58 +0000
commit7bba77b49c2b458ad57eac52530e29d0ca35a310 (patch)
tree24b3b5f8ad1c00dc65d4d39446f153797ee3f204 /security/pinentry
parentc33f008ef07957adb48e154c2eb2415079263f16 (diff)
downloadpkgsrc-7bba77b49c2b458ad57eac52530e29d0ca35a310.tar.gz
Remove patch-aa.
drochner, who added it, isn't sure it's needed any longer. Bump PKGREVISION.
Diffstat (limited to 'security/pinentry')
-rw-r--r--security/pinentry/Makefile3
-rw-r--r--security/pinentry/distinfo3
-rw-r--r--security/pinentry/patches/patch-aa21
3 files changed, 3 insertions, 24 deletions
diff --git a/security/pinentry/Makefile b/security/pinentry/Makefile
index 1c8c1f2e119..26a39b014b0 100644
--- a/security/pinentry/Makefile
+++ b/security/pinentry/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.37 2013/07/03 08:19:59 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2013/07/04 17:04:58 wiz Exp $
DISTNAME= pinentry-0.8.3
+PKGREVISION= 1
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/pinentry/
EXTRACT_SUFX= .tar.bz2
diff --git a/security/pinentry/distinfo b/security/pinentry/distinfo
index c2a325697c0..6efbc266814 100644
--- a/security/pinentry/distinfo
+++ b/security/pinentry/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.12 2013/07/03 08:19:53 wiz Exp $
+$NetBSD: distinfo,v 1.13 2013/07/04 17:04:58 wiz Exp $
SHA1 (pinentry-0.8.3.tar.bz2) = fc0efe5d375568f90ddbb23ee68e173411a49d4a
RMD160 (pinentry-0.8.3.tar.bz2) = c081810a8cb7a281098625b3ac621ae3ae2acf7b
Size (pinentry-0.8.3.tar.bz2) = 430753 bytes
-SHA1 (patch-aa) = e003153ba52ff8904b16d49603e252252e23033d
diff --git a/security/pinentry/patches/patch-aa b/security/pinentry/patches/patch-aa
deleted file mode 100644
index 53f8e5fdd59..00000000000
--- a/security/pinentry/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.4 2013/07/03 08:19:53 wiz Exp $
-
-fix a problem with the curses widget and non-UTF8 locales: keys which
-used less bytes in the system encoding than in the UTF8 passed to
-the caller caused that the passphrase got truncated because only
-the input length was accounted for
-
---- pinentry/pinentry-curses.c.orig 2009-04-16 15:06:53.000000000 +0000
-+++ pinentry/pinentry-curses.c
-@@ -819,8 +819,10 @@ dialog_run (pinentry_t pinentry, const c
- if (pin_utf8)
- {
- pinentry_setbufferlen (pinentry, strlen (pin_utf8) + 1);
-- if (pinentry->pin)
-+ if (pinentry->pin) {
- strcpy (pinentry->pin, pin_utf8);
-+ diag.pin_len = strlen (pin_utf8);
-+ }
- secmem_free (pin_utf8);
- pinentry->locale_err = 0;
- }