Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4558784E90 for ; Mon, 17 Jul 2023 14:15:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id m_bLIAVd6Nfo for ; Mon, 17 Jul 2023 14:15:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A21EA84CC8 for ; Mon, 17 Jul 2023 14:15:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9BA7BFBDB; Mon, 17 Jul 2023 14:15:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168960334357540" MIME-Version: 1.0 Date: Mon, 17 Jul 2023 14:15:43 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/textproc/grep To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20230717141543.9BA7BFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168960334357540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Jul 17 14:15:43 UTC 2023 Modified Files: pkgsrc/textproc/grep: Makefile distinfo Log Message: grep: Update to 3.11 Changelog: * Noteworthy changes in release 3.11 (2023-05-13) [stable] ** Bug fixes With -P, patterns like [\d] now work again. Fixing this has caused grep to revert to the behavior of grep 3.8, in that patterns like \w and \b go back to using ASCII rather than Unicode interpretations. However, future versions of GNU grep and/or PCRE2 are likely to fix this and change the behavior of \w and \b back to Unicode again, without breaking [\d] as 3.10 did. [bug introduced in grep 3.10] grep no longer fails on files dated after the year 2038, when running on 32-bit x86 and ARM hosts using glibc 2.34+. [bug introduced in grep 3.9] grep -P no longer fails to match patterns using negated classes like \D or \W when linked with PCRE2 10.34 or newer. [bug introduced in grep 3.8] ** Changes in behavior grep --version now prints a line describing the version of PCRE2 it uses. For example, it prints this when built with the very latest from git: grep -P uses PCRE2 10.43-DEV 2023-04-14 or this with what's currently available in Fedora 37: grep -P uses PCRE2 10.40 2022-04-14 previous versions of grep wouldn't respect the user provided settings for PCRE_CFLAGS and PCRE_LIBS when building if a libpcre2-8 pkg-config module was found. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 pkgsrc/textproc/grep/Makefile cvs rdiff -u -r1.33 -r1.34 pkgsrc/textproc/grep/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168960334357540 Content-Disposition: inline Content-Length: 1623 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/grep/Makefile diff -u pkgsrc/textproc/grep/Makefile:1.65 pkgsrc/textproc/grep/Makefile:1.66 --- pkgsrc/textproc/grep/Makefile:1.65 Fri Apr 14 03:37:52 2023 +++ pkgsrc/textproc/grep/Makefile Mon Jul 17 14:15:43 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.65 2023/04/14 03:37:52 ryoon Exp $ +# $NetBSD: Makefile,v 1.66 2023/07/17 14:15:43 ryoon Exp $ -DISTNAME= grep-3.10 +DISTNAME= grep-3.11 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU:=grep/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/textproc/grep/distinfo diff -u pkgsrc/textproc/grep/distinfo:1.33 pkgsrc/textproc/grep/distinfo:1.34 --- pkgsrc/textproc/grep/distinfo:1.33 Fri Apr 14 03:37:52 2023 +++ pkgsrc/textproc/grep/distinfo Mon Jul 17 14:15:43 2023 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.33 2023/04/14 03:37:52 ryoon Exp $ +$NetBSD: distinfo,v 1.34 2023/07/17 14:15:43 ryoon Exp $ -BLAKE2s (grep-3.10.tar.xz) = f939f211e9312df64ed8ea3fdce9db44f855ad6ec8c1559a0b2bc461ac88cb14 -SHA512 (grep-3.10.tar.xz) = 865e8f3fd7afc68f1a52f5e1e1ee05fb9c6d6182201efb0dbdf6075347b0b1d2bf0784537a8f8dd4fb050d523f7a1d2fb5b9c3e3245087d0e6cc12d6e9d3961b -Size (grep-3.10.tar.xz) = 1687464 bytes +BLAKE2s (grep-3.11.tar.xz) = 8e44c05eccba9401c52d37abb792b08b1b8a5a99cbf5c005fe04cd1fc7142cb7 +SHA512 (grep-3.11.tar.xz) = f254a1905a08c8173e12fbdd4fd8baed9a200217fba9d7641f0d78e4e002c1f2a621152d67027d9b25f0bb2430898f5233dc70909d8464fd13d7dd9298e65c42 +Size (grep-3.11.tar.xz) = 1703776 bytes SHA1 (patch-configure) = b574ebe1575afc5767b0c6634451a3485bb98312 SHA1 (patch-src_Makefile.in) = 9efe4748d4b1ff33adca4e251e2e4249c62f0035 --_----------=_168960334357540--