pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/gnupg Solaris grep doesn't deal well with the...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d09fc7e6d2fe
branches:  trunk
changeset: 515808:d09fc7e6d2fe
user:      markd <markd%pkgsrc.org@localhost>
date:      Sat Jul 08 21:29:24 2006 +0000

description:
Solaris grep doesn't deal well with the binary output of tar when testing
if tar supports "ustar" so feed through strings before grep.
Fixes PR pkg/33776.

diffstat:

 security/gnupg/distinfo         |   3 ++-
 security/gnupg/patches/patch-ac |  13 +++++++++++++
 2 files changed, 15 insertions(+), 1 deletions(-)

diffs (32 lines):

diff -r d6d353083741 -r d09fc7e6d2fe security/gnupg/distinfo
--- a/security/gnupg/distinfo   Sat Jul 08 21:14:14 2006 +0000
+++ b/security/gnupg/distinfo   Sat Jul 08 21:29:24 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.41 2006/07/03 21:15:14 wiz Exp $
+$NetBSD: distinfo,v 1.42 2006/07/08 21:29:24 markd Exp $
 
 SHA1 (gnupg-1.4.4.tar.bz2) = 3414d67f22973576f31e354f44859bafbccb7eee
 RMD160 (gnupg-1.4.4.tar.bz2) = b3807b3cf4fc577bf071261eff787c481bd4e0ca
@@ -8,4 +8,5 @@
 Size (idea.c.gz) = 5216 bytes
 SHA1 (patch-aa) = 91d55ca22b58e8a1f3c17a2fd0ad888d4c85c6cf
 SHA1 (patch-ab) = 29a7d0b736322eb1ecf0925a2419b513f323000e
+SHA1 (patch-ac) = b5279fa5c43866139ef61b064580837a98ae2a9f
 SHA1 (patch-ak) = 89a6a7552104f4d5b97a98889da88fca68c54f31
diff -r d6d353083741 -r d09fc7e6d2fe security/gnupg/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/gnupg/patches/patch-ac   Sat Jul 08 21:29:24 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.17 2006/07/08 21:29:24 markd Exp $
+
+--- configure.orig     2006-06-25 23:14:59.000000000 +1200
++++ configure
+@@ -4876,7 +4876,7 @@ fi
+         echo "$as_me:$LINENO: checking whether $_mytar speaks USTAR" >&5
+ echo $ECHO_N "checking whether $_mytar speaks USTAR... $ECHO_C" >&6
+         echo hithere > conftest.txt
+-        $_mytar -cf - conftest.txt | grep -q ustar
++        $_mytar -cf - conftest.txt | strings | grep -q ustar
+         _tar_bad=$?
+         rm conftest.txt
+ 



Home | Main Index | Thread Index | Old Index