diff options
author | adam <adam> | 2014-01-11 10:52:09 +0000 |
---|---|---|
committer | adam <adam> | 2014-01-11 10:52:09 +0000 |
commit | a0bc97fadd3f4d8e3dd4d39b3be2a269684bc5be (patch) | |
tree | 74dbd13d7155fabe811f0f1da588c932a97b17f8 /textproc | |
parent | 3970b246e90366ae36e699a4889d581a95198042 (diff) | |
download | pkgsrc-a0bc97fadd3f4d8e3dd4d39b3be2a269684bc5be.tar.gz |
Changes 2.16:
** Bug fixes
Fix gnulib-provided maint.mk so that the release procedure described
in README-release actually does what we want. Before that fix, that
procedure resulted in a grep-2.15 tarball that would lead to a grep
binary whose --version-reported version number was 2.14.51...
The fix to make \s and \S work with multi-byte white space broke
the use of each shortcut whenever followed by a repetition operator.
For example, \s*, \s+, \s? and \s{3} would all malfunction in a
multi-byte locale. [bug introduced in grep-2.15]
The fix to make grep -P work better with UTF-8 made it possible for
grep to evoke a larger set of PCRE errors, some of which could trigger
an abort. E.g., this would abort:
printf '\x82'|LC_ALL=en_US.UTF-8 grep -P y
Now grep handles arbitrary PCRE errors. [bug introduced in grep-2.15]
Handle very long lines (2GiB and longer) on systems with a deficient
read system call.
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 e9b0c89301d..7864ef9b7ce 100644 --- a/textproc/grep/Makefile +++ b/textproc/grep/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.36 2013/10/27 23:22:54 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2014/01/11 10:52:09 adam Exp $ -DISTNAME= grep-2.15 +DISTNAME= grep-2.16 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU:=grep/} EXTRACT_SUFX= .tar.xz diff --git a/textproc/grep/distinfo b/textproc/grep/distinfo index 52133083cc6..95f0daf3d38 100644 --- a/textproc/grep/distinfo +++ b/textproc/grep/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2013/10/27 23:22:54 wiz Exp $ +$NetBSD: distinfo,v 1.13 2014/01/11 10:52:09 adam Exp $ -SHA1 (grep-2.15.tar.xz) = 1dffd7a82761166cc4d39727944655233c2d95fd -RMD160 (grep-2.15.tar.xz) = 30eb794edee7bc2effd6974e2953e78eb49c14ba -Size (grep-2.15.tar.xz) = 1267312 bytes +SHA1 (grep-2.16.tar.xz) = 4ab9c1f8a5934734d3e01dc32ee1a8ae0f974359 +RMD160 (grep-2.16.tar.xz) = c1e2534a1835dd590e08cb50dec2f135c8844e38 +Size (grep-2.16.tar.xz) = 1210192 bytes |