pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/grep
Module Name: pkgsrc
Committed By: ryoon
Date: Fri Apr 14 03:37:52 UTC 2023
Modified Files:
pkgsrc/textproc/grep: Makefile distinfo
Log Message:
grep: Update to 3.10
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: ٠١٢٣٤٥٦٧٨٩. 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]
* Noteworthy changes in release 3.9 (2023-03-05) [stable]
** Bug fixes
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.
[Bug#36148#13 introduced in grep 3.4]
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 pkgsrc/textproc/grep/Makefile
cvs rdiff -u -r1.32 -r1.33 pkgsrc/textproc/grep/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/grep/Makefile
diff -u pkgsrc/textproc/grep/Makefile:1.64 pkgsrc/textproc/grep/Makefile:1.65
--- pkgsrc/textproc/grep/Makefile:1.64 Mon Sep 5 13:24:27 2022
+++ pkgsrc/textproc/grep/Makefile Fri Apr 14 03:37:52 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.64 2022/09/05 13:24:27 ryoon Exp $
+# $NetBSD: Makefile,v 1.65 2023/04/14 03:37:52 ryoon Exp $
-DISTNAME= grep-3.8
+DISTNAME= grep-3.10
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU:=grep/}
EXTRACT_SUFX= .tar.xz
Index: pkgsrc/textproc/grep/distinfo
diff -u pkgsrc/textproc/grep/distinfo:1.32 pkgsrc/textproc/grep/distinfo:1.33
--- pkgsrc/textproc/grep/distinfo:1.32 Mon Sep 5 13:24:27 2022
+++ pkgsrc/textproc/grep/distinfo Fri Apr 14 03:37:52 2023
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.32 2022/09/05 13:24:27 ryoon Exp $
+$NetBSD: distinfo,v 1.33 2023/04/14 03:37:52 ryoon Exp $
-BLAKE2s (grep-3.8.tar.xz) = 08b5530af7625d21ac15623fc550c8ca718e891d0912eec5806d27ff88f7a5fe
-SHA512 (grep-3.8.tar.xz) = 2014519a80c6dcd799837e1bd7d9d5ebe8729ec54b0dc76981dac4755a9a8a9f200470cdcc911e2825bed8162e61da39e3dd60289f7393b48bf67314077d0c79
-Size (grep-3.8.tar.xz) = 1709536 bytes
+BLAKE2s (grep-3.10.tar.xz) = f939f211e9312df64ed8ea3fdce9db44f855ad6ec8c1559a0b2bc461ac88cb14
+SHA512 (grep-3.10.tar.xz) = 865e8f3fd7afc68f1a52f5e1e1ee05fb9c6d6182201efb0dbdf6075347b0b1d2bf0784537a8f8dd4fb050d523f7a1d2fb5b9c3e3245087d0e6cc12d6e9d3961b
+Size (grep-3.10.tar.xz) = 1687464 bytes
SHA1 (patch-configure) = b574ebe1575afc5767b0c6634451a3485bb98312
SHA1 (patch-src_Makefile.in) = 9efe4748d4b1ff33adca4e251e2e4249c62f0035
Home |
Main Index |
Thread Index |
Old Index