Update to 3.0
Changelog: * Noteworthy changes in release 3.0 (2017-02-09) [stable] ** Bug fixes grep without -F no longer goes awry when given two or more patterns that contain no special characters other than '\' and also contain a subpattern like '\.' that escapes a character to make it ordinary. [bug introduced in grep 2.28] grep no longer fails to build on PCRE versions before 8.20. [bug introduced in grep 2.28] * Noteworthy changes in release 2.28 (2017-02-06) [stable] ** Bug fixes When grep -Fo finds matches of differing length, it could mistakenly print a shorter one. Now it prints a longest one. [bug introduced in grep-2.26] When standard output is /dev/null, grep no longer fails when standard input is a file in the Linux /proc file system, or when standard input is a pipe and standard output is in append mode. [bugs introduced in grep-2.27] Fix performance regression with multiple patterns, e.g., for -Fi in a multi-byte locale, or for -Fw in a single-byte locale. [bugs introduced in grep-2.19, grep-2.22 and grep-2.26] ** Improvements Improve performance for -E or -G pattern lists that are easily converted to -F format.
This commit is contained in:
parent
00bd1a74b6
commit
7eb274252d
2 changed files with 7 additions and 8 deletions
|
@ -1,10 +1,9 @@
|
||||||
# $NetBSD: Makefile,v 1.49 2017/03/30 08:52:54 bouyer Exp $
|
# $NetBSD: Makefile,v 1.50 2017/03/30 19:23:17 ryoon Exp $
|
||||||
|
|
||||||
DISTNAME= grep-2.27
|
DISTNAME= grep-3.0
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= ${MASTER_SITE_GNU:=grep/}
|
MASTER_SITES= ${MASTER_SITE_GNU:=grep/}
|
||||||
EXTRACT_SUFX= .tar.xz
|
EXTRACT_SUFX= .tar.xz
|
||||||
PKGREVISION= 1
|
|
||||||
|
|
||||||
MAINTAINER= bouyer@NetBSD.org
|
MAINTAINER= bouyer@NetBSD.org
|
||||||
HOMEPAGE= http://www.gnu.org/software/grep/grep.html
|
HOMEPAGE= http://www.gnu.org/software/grep/grep.html
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
$NetBSD: distinfo,v 1.22 2017/03/30 08:52:54 bouyer Exp $
|
$NetBSD: distinfo,v 1.23 2017/03/30 19:23:17 ryoon Exp $
|
||||||
|
|
||||||
SHA1 (grep-2.27.tar.xz) = ac68dd7d07cd4318ef5545c29c9a37ed2e96aef6
|
SHA1 (grep-3.0.tar.xz) = 7b742a6278f28ff056da799c62c1b9e417fe86ba
|
||||||
RMD160 (grep-2.27.tar.xz) = 87db92c2f7dafd88e70e1717e66a17a06d4e8b64
|
RMD160 (grep-3.0.tar.xz) = cd793a2fe55eabc0019018486bd039ca823c2009
|
||||||
SHA512 (grep-2.27.tar.xz) = d67f16cc5f931a455d5287badbaf080967da573d290430f440e578a563cff4f4c0c2668f60dbb8bc71eaed289f075957006c10c6827f0da1a49df49efd3f0781
|
SHA512 (grep-3.0.tar.xz) = 0e9a00df9d492f399230bae0264942edaf64bb926f93edb7922f27b075a86ba0a78698f54996cc522b6261aa01a8ecbeadeb68523d4470a9941f242c3ae24c58
|
||||||
Size (grep-2.27.tar.xz) = 1360388 bytes
|
Size (grep-3.0.tar.xz) = 1375156 bytes
|
||||||
SHA1 (patch-src_Makefile.am) = c919a396c550f6218db8e015139c69e49217a946
|
SHA1 (patch-src_Makefile.am) = c919a396c550f6218db8e015139c69e49217a946
|
||||||
SHA1 (patch-src_Makefile.in) = f0b0b3a87d1ab0afd831144a6c7e81963735ce41
|
SHA1 (patch-src_Makefile.in) = f0b0b3a87d1ab0afd831144a6c7e81963735ce41
|
||||||
|
|
Loading…
Reference in a new issue