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 9CFE61A921F for ; Tue, 15 Mar 2022 10:25:08 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E1D2984EE9; Tue, 15 Mar 2022 10:25:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2788184ECF for ; Tue, 15 Mar 2022 10:25:07 +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 7wF5fnZlS9DI for ; Tue, 15 Mar 2022 10:25:06 +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 9622284E66 for ; Tue, 15 Mar 2022 10:25:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8F743FB24; Tue, 15 Mar 2022 10:25:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1647339906290040" MIME-Version: 1.0 Date: Tue, 15 Mar 2022 10:25:06 +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: <20220315102506.8F743FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1647339906290040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Mar 15 10:25:06 UTC 2022 Modified Files: pkgsrc/textproc/ugrep: Makefile distinfo Log Message: ugrep: updated to 3.7.5 ugrep v3.7.5 New --hexdump options to grep binary files and display binary matches in hexadecimal with n hex lines before and after the match with --hexdump=Cn, --hexdump=An for n lines after and --hexdump=Bn for n lines before. Omitting n defaults to the entire matching line. Option -X is equivalent to --hexdump=2C for 2 hex columns per line and entire matching line as context. Includes user experience improvements, such as additional --help information and --stats details. This incremental update skips sysfd files that are empty and not searchable (e.g. located in /proc and /sys). We also made ugrep faster overall with performance improvements. More coming soon! To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/textproc/ugrep/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/textproc/ugrep/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1647339906290040 Content-Disposition: inline Content-Length: 1528 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.29 pkgsrc/textproc/ugrep/Makefile:1.30 --- pkgsrc/textproc/ugrep/Makefile:1.29 Fri Feb 25 13:40:12 2022 +++ pkgsrc/textproc/ugrep/Makefile Tue Mar 15 10:25:06 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.29 2022/02/25 13:40:12 fcambus Exp $ +# $NetBSD: Makefile,v 1.30 2022/03/15 10:25:06 adam Exp $ -DISTNAME= ugrep-3.7.4 +DISTNAME= ugrep-3.7.5 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.27 pkgsrc/textproc/ugrep/distinfo:1.28 --- pkgsrc/textproc/ugrep/distinfo:1.27 Fri Feb 25 13:40:12 2022 +++ pkgsrc/textproc/ugrep/distinfo Tue Mar 15 10:25:06 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.27 2022/02/25 13:40:12 fcambus Exp $ +$NetBSD: distinfo,v 1.28 2022/03/15 10:25:06 adam Exp $ -BLAKE2s (ugrep-3.7.4.tar.gz) = 71e398b1fb715f07114171e2315e114987f392866486eaa67323a44239316e24 -SHA512 (ugrep-3.7.4.tar.gz) = 9d71c7ce6d7115c9225f326386257f4a2549c8186b52bb270cb7c63e11372fca5407824239d0029b7c523311372d02f0baff1a891fa09ff1ee2a48f074276dec -Size (ugrep-3.7.4.tar.gz) = 4411820 bytes +BLAKE2s (ugrep-3.7.5.tar.gz) = e0362dc1321ec15c02aa2a1ef9e8b0e7510ba953963bce8a3088b929892a419d +SHA512 (ugrep-3.7.5.tar.gz) = 180e5341ba4c05c4b9982f71f946428e62dae5e84e3a2450f95ffaa62f40893832a2f0d7006936165622230a77bc3f456aa20dbbc10c03230d00daa870ba875d +Size (ugrep-3.7.5.tar.gz) = 4412060 bytes --_----------=_1647339906290040--