Skip to content

Commit

Permalink
Update to 2.23
Browse files Browse the repository at this point in the history
Changelog:
* Noteworthy changes in release 2.23 (2016-02-04) [stable]

** Bug fixes

  Binary files are now less likely to generate diagnostics and more
  likely to yield text matches.  grep now reports "Binary file FOO
  matches" and suppresses further output instead of outputting a line
  containing an encoding error; hence grep can now report matching text
  before a later binary match.  Formerly, grep reported FOO to be
  binary when it found an encoding error in FOO before generating
  output for FOO, which meant it never reported both matching text and
  matching binary data; this was less useful for searching text
  containing encoding errors in non-matching lines.
  [bug introduced in grep-2.21]

  grep -c no longer stops counting when finding binary data.
  [bug introduced in grep-2.21]

  grep no longer outputs encoding errors in unibyte locales.
  For example, if the byte '\x81' is not a valid character in a
  unibyte locale, grep treats the byte as binary data.
  [bug introduced in grep-2.21]

  grep -oP is no longer susceptible to an infinite loop when processing
  invalid UTF8 just before a match.
  [bug introduced in grep-2.22]

  --exclude and related options are now matched against trailing
  parts of command-line arguments, not against the entire arguments.
  This partly reverts the --exclude-related change in 2.22.
  [bug introduced in grep-2.22]

  --line-buffer is no longer ineffective when combined with -l.
  [bug introduced in grep-2.5]

  -xw is now equivalent to -x more consistently, with -P and with backrefs.
  [bug only partially fixed in grep-2.19]
  • Loading branch information
ryoon committed Feb 12, 2016
1 parent 023b34d commit 2f55ff2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions textproc/grep/Makefile
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.44 2015/11/20 19:04:49 ryoon Exp $
# $NetBSD: Makefile,v 1.45 2016/02/12 23:28:43 ryoon Exp $

DISTNAME= grep-2.22
DISTNAME= grep-2.23
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU:=grep/}
EXTRACT_SUFX= .tar.xz
Expand Down
10 changes: 5 additions & 5 deletions textproc/grep/distinfo
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.18 2015/11/20 19:04:49 ryoon Exp $
$NetBSD: distinfo,v 1.19 2016/02/12 23:28:43 ryoon Exp $

SHA1 (grep-2.22.tar.xz) = 561ba83226872b1c45205bdd583106ee8df0fe79
RMD160 (grep-2.22.tar.xz) = f65e169b216ea7418ae77c49132cc69b56be47ce
SHA512 (grep-2.22.tar.xz) = c0756e4aa360cc29b3123384eef654743df108cc606372142c79893a09a0c8053b03d048768e972221e0ed96f378b8564f848f9acc180fca499f0494fbe9113c
Size (grep-2.22.tar.xz) = 1297864 bytes
SHA1 (grep-2.23.tar.xz) = 76239b0c7f6d93acc820832b8241227619ff1cdb
RMD160 (grep-2.23.tar.xz) = e44f6a41cfced6cd08f7b0cbb838c63507b16f00
SHA512 (grep-2.23.tar.xz) = 4b1d86bfe46039db6d5e1c773f73a30a1fd21a2bdceba6286df0e6b97d93f01750e9ba3a6363a31c06c9ff9fa3850b0a9bca214d52cccf4d0d27e087208ab3ab
Size (grep-2.23.tar.xz) = 1317488 bytes

0 comments on commit 2f55ff2

Please sign in to comment.