SHA256
1
0
forked from pool/grep

Accepting request 1069487 from home:AndreasStieger:branches:Base:System

GNU grep 3.9

OBS-URL: https://build.opensuse.org/request/show/1069487
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=129
This commit is contained in:
2023-03-06 09:00:51 +00:00
committed by Git OBS Bridge
parent 858941fd15
commit d96df970c9
7 changed files with 37 additions and 30 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sun Mar 5 20:55:49 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
- GNU grep 3.9:
* With -P, some non-ASCII UTF8 characters were not recognized as
word-constituent due to our omission of the PCRE2_UCP flag.
E.g., given f(){ echo Perú|LC_ALL=en_US.UTF-8 grep -Po "$1"; }
and this command, echo $(f 'r\w'):$(f '.\b'), before it would
print ":r". After the fix, it prints the correct results: "rú:ú".
* When given multiple patterns the last of which has a back-
reference, grep no longer sometimes mistakenly matches lines in
some cases.
- The long obsolete egrep and fgrep commands again issue a friendly
message asking for users to convert to grep -E and grep -F. All
openSUSE package builds are fixed - drop efgrep-warning.patch
-------------------------------------------------------------------
Tue Dec 27 12:25:45 UTC 2022 - Ludwig Nussel <lnussel@suse.com>