pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/grep Update to 2.5.1nb2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8dc008ec2f71
branches:  trunk
changeset: 461648:8dc008ec2f71
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Sep 18 19:13:50 2003 +0000

description:
Update to 2.5.1nb2:
Use the right grep binary in fgrep and egrep shell scripts.
Patch provided by Nicolas Fugier in PR 20905.

diffstat:

 textproc/grep/Makefile         |   4 ++--
 textproc/grep/distinfo         |   3 ++-
 textproc/grep/patches/patch-aa |  19 +++++++++++++++++++
 3 files changed, 23 insertions(+), 3 deletions(-)

diffs (49 lines):

diff -r 705539d42a6a -r 8dc008ec2f71 textproc/grep/Makefile
--- a/textproc/grep/Makefile    Thu Sep 18 19:10:58 2003 +0000
+++ b/textproc/grep/Makefile    Thu Sep 18 19:13:50 2003 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2003/08/09 11:27:48 seb Exp $
+# $NetBSD: Makefile,v 1.13 2003/09/18 19:13:50 wiz Exp $
 #
 
 DISTNAME=      grep-2.5.1
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GNU:=grep/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 705539d42a6a -r 8dc008ec2f71 textproc/grep/distinfo
--- a/textproc/grep/distinfo    Thu Sep 18 19:10:58 2003 +0000
+++ b/textproc/grep/distinfo    Thu Sep 18 19:13:50 2003 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.4 2003/02/13 07:33:34 wiz Exp $
+$NetBSD: distinfo,v 1.5 2003/09/18 19:13:52 wiz Exp $
 
 SHA1 (grep-2.5.1.tar.bz2) = 551db1f0014e44d428e1c3482ac9418ff5d15950
 Size (grep-2.5.1.tar.bz2) = 559232 bytes
+SHA1 (patch-aa) = f08f91903053a32c497c1a8a453116bfa9029ed6
 SHA1 (patch-ab) = 353f079d4b6c6853a16eb00c79462e32e8e1cf19
 SHA1 (patch-ac) = f0e672a0f29bc9a41e9918114e527f0ce1947f51
diff -r 705539d42a6a -r 8dc008ec2f71 textproc/grep/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/grep/patches/patch-aa    Thu Sep 18 19:13:50 2003 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-aa,v 1.3 2003/09/18 19:13:54 wiz Exp $
+
+--- src/Makefile.in.orig       2002-03-26 17:09:36.000000000 +0100
++++ src/Makefile.in
+@@ -379,12 +379,12 @@ uninstall-am: uninstall-binPROGRAMS unin
+ 
+ egrep:
+       echo '#!/bin/sh' >$@
+-      echo 'exec grep -E $${1+"$$@"}' >>$@
++      echo 'exec $(bindir)/'`echo grep|sed '$(transform)'`' -E $${1+"$$@"}' >>$@
+       chmod a+x $@
+ 
+ fgrep:
+       echo '#!/bin/sh' >$@
+-      echo 'exec grep -F $${1+"$$@"}' >>$@
++      echo 'exec $(bindir)/'`echo grep|sed '$(transform)'`' -F $${1+"$$@"}' >>$@
+       chmod a+x $@
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.



Home | Main Index | Thread Index | Old Index