From patchwork Mon Sep 27 15:33:20 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4745 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4HJ69N4p6lz3x1J for ; Mon, 27 Sep 2021 15:33:28 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4HJ69N2CSwz5Mb; Mon, 27 Sep 2021 15:33:28 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4HJ69N1SWzz2xpc; Mon, 27 Sep 2021 15:33:28 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4HJ69L4fGvz2xfm for ; Mon, 27 Sep 2021 15:33:26 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4HJ69L1ktQz7W; Mon, 27 Sep 2021 15:33:26 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1632756806; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=yo5hkW1Y+oL538UXkKF+vetJgFbMw2o8JZj6Rssppuo=; b=Y7Jg9fVYc4Em6TK8s2Qz6HPazf9YBK8ZxOkZ4A9jy6Irdmy0u69tUecZsvpe7luELFpixw FTsCVxQOfTahzJBQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1632756806; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=yo5hkW1Y+oL538UXkKF+vetJgFbMw2o8JZj6Rssppuo=; b=udFs0rvCMCYwqeJJ9rzlOWYG2rvaT6MhPgS9L9+WAA5+08KOMVyjOPvahkXECYYsZnECZ6 G71a+JVPv907XDSYJ2FB2IRkGOtrhfxZrzBHFG0zSkUVLJj8RMVAzQ9kdsyJ3HaohQCE13 BNcd8gNmtd8PB9dkzlnGZ2dwdZPzW1iAWoE+Xs6ECoHQyNLimBgoduu98ClERiflZ/M/Yg EQBOIKS10bNXQ6fPIgHhhVtuzKg1lfvfGPPl+G9AazLCKSP6+uLfyDhjDLqyQ4PdmNkpuN Ee241ZI5PWIkTHtueKbEbMu+ISXE2myRjLsJYfTj9MaueEVkEHydmcIG8Lxrow== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] grep: Update to version 3.7 Date: Mon, 27 Sep 2021 17:33:20 +0200 Message-Id: <20210927153320.1500551-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 3.6 to 3.7 - Update of rootfile not required - Changelog * Noteworthy changes in release 3.7 (2021-08-14) [stable] ** Changes in behavior Use of the --unix-byte-offsets (-u) option now evokes a warning. Since 3.1, this Windows-only option has had no effect. ** Bug fixes Preprocessing N patterns would take at least O(N^2) time when too many patterns hashed to too few buckets. This now takes seconds, not days: : | grep -Ff <(seq 6400000 | tr 0-9 A-J) [Bug#44754 introduced in grep 3.5] - More details of the changes can be found in the ChangeLog file in the source tarball. Signed-off-by: Adolf Belka --- lfs/grep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/grep b/lfs/grep index d19a6831b..27b2161ae 100644 --- a/lfs/grep +++ b/lfs/grep @@ -24,7 +24,7 @@ include Config -VER = 3.6 +VER = 3.7 THISAPP = grep-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -50,7 +50,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = f47fe27049510b2249dba7f862ac1b51 +$(DL_FILE)_MD5 = 7c9cca97fa18670a21e72638c3e1dabf install : $(TARGET)