SHA256
1
0
forked from pool/grep

Accepting request 850163 from home:Andreas_Schwab:Factory

- Update to grep 3.6
  * The GREP_OPTIONS environment variable no longer affects grep's behavior.
  * grep's DFA matcher performed an invalid regex transformation
    that would convert an ERE like a+a+a+ to a+a+, which would make
    grep a+a+a+ mistakenly match "aa".
  * grep -P now reports the troublesome input filename upon PCRE execution
    failure.
- werror-return-type.patch: work around gcc bug

OBS-URL: https://build.opensuse.org/request/show/850163
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=108
This commit is contained in:
2020-11-23 10:53:34 +00:00
committed by Git OBS Bridge
parent cc503460e4
commit 34aeb1e3df
8 changed files with 363 additions and 96 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Nov 9 15:47:58 UTC 2020 - Andreas Schwab <schwab@suse.de>
- Update to grep 3.6
* The GREP_OPTIONS environment variable no longer affects grep's behavior.
* grep's DFA matcher performed an invalid regex transformation
that would convert an ERE like a+a+a+ to a+a+, which would make
grep a+a+a+ mistakenly match "aa".
* grep -P now reports the troublesome input filename upon PCRE execution
failure.
- werror-return-type.patch: work around gcc bug
-------------------------------------------------------------------
Mon Sep 28 08:54:47 UTC 2020 - Andreas Stieger <andreas.stieger@gmx.de>