diff options
author | adam <adam@pkgsrc.org> | 2012-08-21 18:04:58 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2012-08-21 18:04:58 +0000 |
commit | 4017151b25d2dcee61a7a277a8dfa7760f94f410 (patch) | |
tree | ae5fe34d7a56717dc7b10aa67f7d19ceab31ec6c /textproc | |
parent | 398d10163f861c21cdaa9833500bbc51743f61be (diff) | |
download | pkgsrc-4017151b25d2dcee61a7a277a8dfa7760f94f410.tar.gz |
Changes 2.14:
** Bug fixes
grep -i '^$' could exit 0 (i.e., report a match) in a multi-byte locale,
even though there was no match, and the command generated no output.
E.g., seq 2 | LC_ALL=en_US.utf8 grep -il '^$' would mistakenly print
"(standard input)". Related, seq 9 | LC_ALL=en_US.utf8 grep -in '^$'
would print "2:4:6:8:10:12:14:16" and exit 0. Now it prints nothing
and exits with status of 1. [bug introduced in grep-2.6]
'grep' no longer falsely reports text files as being binary on file
systems that compress contents or that store tiny contents in metadata.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/grep/Makefile | 4 | ||||
-rw-r--r-- | textproc/grep/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/textproc/grep/Makefile b/textproc/grep/Makefile index 452702cf58a..7e63fec5482 100644 --- a/textproc/grep/Makefile +++ b/textproc/grep/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2012/08/03 13:07:54 adam Exp $ +# $NetBSD: Makefile,v 1.29 2012/08/21 18:04:58 adam Exp $ -DISTNAME= grep-2.13 +DISTNAME= grep-2.14 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU:=grep/} EXTRACT_SUFX= .tar.xz diff --git a/textproc/grep/distinfo b/textproc/grep/distinfo index cbcd7a5ced2..cabcd1b70c3 100644 --- a/textproc/grep/distinfo +++ b/textproc/grep/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2012/08/03 13:07:54 adam Exp $ +$NetBSD: distinfo,v 1.11 2012/08/21 18:04:58 adam Exp $ -SHA1 (grep-2.13.tar.xz) = 6bc69e3c5613f9d099fbba5308e9f7005ecb112b -RMD160 (grep-2.13.tar.xz) = cd386db8796c80e64c90afafd94baad40ba9b6e3 -Size (grep-2.13.tar.xz) = 1191516 bytes +SHA1 (grep-2.14.tar.xz) = fb6ea404a0ef915334ca6212c7b517432ffe193e +RMD160 (grep-2.14.tar.xz) = 4157376c36ebb7b5da83687f241745ca6df9058b +Size (grep-2.14.tar.xz) = 1195640 bytes |