From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] grep: Update to version 3.10 Date: Mon, 27 Mar 2023 18:09:53 +0200 Message-ID: <20230327160954.2648286-2-adolf.belka@ipfire.org> In-Reply-To: <20230327160954.2648286-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3074326220633401173==" List-Id: --===============3074326220633401173== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Update from version 3.9 to 3.10 - Update of rootfile not required - Changelog * Noteworthy changes in release 3.10 (2023-03-22) [stable] ** Bug fixes With -P, \d now matches only ASCII digits, regardless of PCRE options/modes. The changes in grep-3.9 to make \b and \w work properly had the undesirable side effect of making \d also match e.g., the Arabic digits: =D9=A0=D9=A1=D9=A2=D9=A3=D9=A4=D9=A5=D9=A6=D9=A7= =D9=A8=D9=A9. With grep-3.9, -P '\d+' would match that ten-digit (20-byte) string. Now, to match such a digit, you would use \p{Nd}. Similarly, \D is now mapped to [^0-9]. [bug introduced in grep 3.9] Signed-off-by: Adolf Belka --- lfs/grep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/grep b/lfs/grep index b1a0ec6aa..1a0b45350 100644 --- a/lfs/grep +++ b/lfs/grep @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 3.9 +VER =3D 3.10 =20 THISAPP =3D grep-$(VER) DL_FILE =3D $(THISAPP).tar.xz @@ -50,7 +50,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_BLAKE2 =3D 33fefce2a831ad6f00f2eb1d8a063cf280635f2d9c481c98981f7a= 2ff143c846ab570a448c9c02c3ba08cf2c98612cb364d2d033baf92d62c4515315453cc6f9 +$(DL_FILE)_BLAKE2 =3D 5ff169a4ed39e8af1e6729fd2e1bafd39036a4f56cf831f990d58b= f9e76bc7d8b055254ae7f60509be4e8bf2f3737edb15431a8ecfc7fc058578d2abea3d73b9 =20 install : $(TARGET) =20 --=20 2.40.0 --===============3074326220633401173==--