Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 0F3291A921F for ; Tue, 5 Apr 2022 17:19:26 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 44E6084ED3; Tue, 5 Apr 2022 17:19:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7FE0684DB9 for ; Tue, 5 Apr 2022 17:19:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id hBNDmib5pUcW for ; Tue, 5 Apr 2022 17:19:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EC71884C13 for ; Tue, 5 Apr 2022 17:19:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E60A5FB24; Tue, 5 Apr 2022 17:19:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1649179163160070" MIME-Version: 1.0 Date: Tue, 5 Apr 2022 17:19:23 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/ugrep To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220405171923.E60A5FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1649179163160070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 5 17:19:23 UTC 2022 Modified Files: pkgsrc/textproc/ugrep: Makefile distinfo Log Message: ugrep: updated to 3.7.7 ugrep v3.7.7 New complementary options --min-depth, --max-depth, --min-line and --max-line which are added for consistency with the updated options --min-count and --max-count. Updated the --min-count option, which can now be combined with any other option except with -v (--invert-match). Updated option -K (--range) to take a MAX argument instead of a FIRST argument for consistency with other min/max options. Recursive searching sysfd, such as /proc and /sys, no longer blocks on special files/devices. Fixed colorization of option -v when used with context options -A, -B and -C. Fixed option -r when combined with argument - (read standard input), which does both, like GNU grep. Updated --stats reporting and other minor improvements. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/textproc/ugrep/Makefile cvs rdiff -u -r1.29 -r1.30 pkgsrc/textproc/ugrep/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1649179163160070 Content-Disposition: inline Content-Length: 1522 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/ugrep/Makefile diff -u pkgsrc/textproc/ugrep/Makefile:1.31 pkgsrc/textproc/ugrep/Makefile:1.32 --- pkgsrc/textproc/ugrep/Makefile:1.31 Thu Mar 17 21:19:30 2022 +++ pkgsrc/textproc/ugrep/Makefile Tue Apr 5 17:19:23 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2022/03/17 21:19:30 adam Exp $ +# $NetBSD: Makefile,v 1.32 2022/04/05 17:19:23 adam Exp $ -DISTNAME= ugrep-3.7.6 +DISTNAME= ugrep-3.7.7 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GITHUB:=Genivia/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/textproc/ugrep/distinfo diff -u pkgsrc/textproc/ugrep/distinfo:1.29 pkgsrc/textproc/ugrep/distinfo:1.30 --- pkgsrc/textproc/ugrep/distinfo:1.29 Thu Mar 17 21:19:30 2022 +++ pkgsrc/textproc/ugrep/distinfo Tue Apr 5 17:19:23 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.29 2022/03/17 21:19:30 adam Exp $ +$NetBSD: distinfo,v 1.30 2022/04/05 17:19:23 adam Exp $ -BLAKE2s (ugrep-3.7.6.tar.gz) = 42b3c93f2e5cdc8adef412a2354411ddc662f0a5f0da77b7a21fcd45d960b7f7 -SHA512 (ugrep-3.7.6.tar.gz) = 5f101f46fcf05a8ad22097fdeacb1530058f9887050b19b5517283772eb8ebcd4cd14537bee1384a525c15446627c169d1e082228a78855ec4e68ef7820273da -Size (ugrep-3.7.6.tar.gz) = 4413024 bytes +BLAKE2s (ugrep-3.7.7.tar.gz) = 64121748c0f9e2d4405b025a75377179f614bb26df410327ccb47c10b0b6bcca +SHA512 (ugrep-3.7.7.tar.gz) = a9ace5b0560b2f2c1b91b0e01dc19d8a499815ae698a45c35b0600e627a2b99a8e92a6827cfd5e5f41983dbfb00cae3403b0fd10097273305defa36075add029 +Size (ugrep-3.7.7.tar.gz) = 4413745 bytes --_----------=_1649179163160070--