From patchwork Mon Mar 27 16:09:53 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6722 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 4Pld7d0Ggfz3x6w for ; Mon, 27 Mar 2023 16:10:05 +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 4Pld7Z0SBbz11Z; Mon, 27 Mar 2023 16:10:02 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Pld7Y4MJwz30JR; Mon, 27 Mar 2023 16:10:01 +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 4Pld7W5wfYz2xc5 for ; Mon, 27 Mar 2023 16:09:59 +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 4Pld7W4F5dzc4; Mon, 27 Mar 2023 16:09:59 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1679933399; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XuQqTgOTdns3SmXr/Rf2k+uulriP0jVKukTWOsDWd9w=; b=TMmvyEL4/TBqY/FGgYlV6F0TajeQ3bcFwUB7sjjSfGmSNYvdJM5v4b6XJZGDYVkFIy7bYd lFQlfVsHyjsmPdAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1679933399; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XuQqTgOTdns3SmXr/Rf2k+uulriP0jVKukTWOsDWd9w=; b=UI3dMqYQNF0LaBcJgkp/52iG8jbbVaRjovuP+5jhIepGq7OyjAqB5WU351POD2bFv32+/t VC7206Ew2YF8yUZUHPEH7XTiIQmroNomf9n5jllXTsfuaEhUTmE6jUExU3rlDH/4ea4Veu sYw5b6OWU/LFyRRoHALx3+CE8r1KioHDU3P4uu6QMN+sXMUB/Nja4rH45Gke8jnLlLykfH a+6ZkknO4AKeB+4IeUUc4Ba3u07UYnamsXmk81a6X4wtxAvrlW98feS3vkDlSBFMg+gA2B FvEFb2fVrdHhVo4ZAlA2a2Klzx/dY/NBZFynn959zbT0aR7DsB78AagdimYvxA== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] grep: Update to version 3.10 Date: Mon, 27 Mar 2023 18:09:53 +0200 Message-Id: <20230327160954.2648286-2-adolf.belka@ipfire.org> In-Reply-To: <20230327160954.2648286-1-adolf.belka@ipfire.org> References: <20230327160954.2648286-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 version 3.9 to 3.10 - Update of rootfile not required - 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] Signed-off-by: Adolf Belka --- lfs/grep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/grep b/lfs/grep index b1a0ec6aa..1a0b45350 100644 --- a/lfs/grep +++ b/lfs/grep @@ -24,7 +24,7 @@ include Config -VER = 3.9 +VER = 3.10 THISAPP = grep-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -50,7 +50,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 33fefce2a831ad6f00f2eb1d8a063cf280635f2d9c481c98981f7a2ff143c846ab570a448c9c02c3ba08cf2c98612cb364d2d033baf92d62c4515315453cc6f9 +$(DL_FILE)_BLAKE2 = 5ff169a4ed39e8af1e6729fd2e1bafd39036a4f56cf831f990d58bf9e76bc7d8b055254ae7f60509be4e8bf2f3737edb15431a8ecfc7fc058578d2abea3d73b9 install : $(TARGET)