From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 03 15:56:15 2025 Received: (at submit) by debbugs.gnu.org; 3 Mar 2025 20:56:15 +0000 Received: from localhost ([127.0.0.1]:52353 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tpCpj-0005Pq-9X for submit@debbugs.gnu.org; Mon, 03 Mar 2025 15:56:15 -0500 Received: from lists.gnu.org ([2001:470:142::17]:46316) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tpCpe-0005PU-Bv for submit@debbugs.gnu.org; Mon, 03 Mar 2025 15:56:12 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tpCpW-000602-VS for guix-patches@gnu.org; Mon, 03 Mar 2025 15:56:03 -0500 Received: from anamika.lostca.se ([65.21.75.227]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1tpCpU-0005C4-08 for guix-patches@gnu.org; Mon, 03 Mar 2025 15:56:01 -0500 Received: from localhost.localdomain (2a02-9140-3880-f600-5d73-0f6a-2ab0-3e19.red-2a02-914.customerbaf.ipv6.rima-tde.net [IPv6:2a02:9140:3880:f600:5d73:f6a:2ab0:3e19]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: abbe) by anamika.lostca.se (Postfix) with ESMTPSA id D71B5DF9E; Mon, 3 Mar 2025 20:55:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1741035344; 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=znjlpV/NiI01UbLxh27HJ+h00gKCTQplIib73J7+N+4=; b=YQwqeu4huCdipjukIh2RCAX5q9KQSh3xwpphFOwhX2YrpP7Xp+vZt6gd9vaO/95cTiY954 6vV2HM/W3M4hhLCwiFbrHzSwd5F0hsrxJ11vbCaZ7ZduEbiTXQ7Mzv2bveZIIkF33OM0Gd wTS6oj5nikbSDwV4LIfTFmoYfU+absY= From: Ashish SHUKLA To: guix-patches@gnu.org Subject: [PATCH] gnu: ugrep: Update to 7.3.0. Date: Mon, 3 Mar 2025 21:55:32 +0100 Message-ID: <0ba19bffe68365d6b49e80ee710d9d2d8d491002.1741035332.git.ashish.is@lostca.se> X-Mailer: git-send-email 2.48.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=65.21.75.227; envelope-from=ashish.is@lostca.se; helo=anamika.lostca.se X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Ashish SHUKLA X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * gnu/packages/search.scm (ugrep): Update to 7.3.0. Change-Id: I03fc0d493e7d8eed84f4a83238d3aa65c2fb8e08 --- gnu/packages/search.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index 9c220fc50c..90cb810ca2 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -692,14 +692,14 @@ (define-public xapers (define-public ugrep (package (name "ugrep") - (version "7.2.2") + (version "7.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Genivia/ugrep") (commit (string-append "v" version)))) (sha256 - (base32 "1f7vah795319vfy4yvpnmrivr1i7nh4xy73b7dl1p8snlmivj1kh")) + (base32 "1ls6s0daw6lpbiy3rizlzsqcw8r116wi01ivgn9ri9qpfn65f00v")) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet base-commit: 5058b40aba825ab6e7b9e518dd1147d1e35fd7de -- 2.48.1 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 04 23:08:27 2025 Received: (at submit) by debbugs.gnu.org; 5 Mar 2025 04:08:27 +0000 Received: from localhost ([127.0.0.1]:33933 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tpg3W-00054w-Dz for submit@debbugs.gnu.org; Tue, 04 Mar 2025 23:08:26 -0500 Received: from lists.gnu.org ([2001:470:142::17]:38160) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tpg3T-00054R-OM for submit@debbugs.gnu.org; Tue, 04 Mar 2025 23:08:24 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tpg3O-0007eC-5n for guix-patches@gnu.org; Tue, 04 Mar 2025 23:08:18 -0500 Received: from mail.z572.online ([88.99.160.180]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tpg3M-00025D-IG for guix-patches@gnu.org; Tue, 04 Mar 2025 23:08:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=z572.online; s=me; t=1741148033; 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: in-reply-to:in-reply-to:references:references; bh=YNWfF3DOSf3/cKRVJopHt39mWmJxxcD88xeeMCsuK7E=; b=T2lD/ffsxDo6BJtQyrH0jeue0Z/r5mKCnOSRADO3E4k6syKTmbpu74dyEybqAWVDf0eBcU N85iGFgeVuVSB2ND8vQud8TsSUsP3amLbDfuciPantwZhOafzhVQ+zQrqHX4Wz0049C4tn ntlad/tFCoc+g9oppU2QNQirLZ+MiwY= Received: from m (mail1.85362086.com [107.174.64.25]) by mail.z572.online (OpenSMTPD) with ESMTPSA id a15d1be3 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 5 Mar 2025 04:13:53 +0000 (UTC) From: Z572 To: Ashish SHUKLA via Guix-patches via Subject: Re: [bug#76720] [PATCH] gnu: ugrep: Update to 7.3.0. In-Reply-To: <0ba19bffe68365d6b49e80ee710d9d2d8d491002.1741035332.git.ashish.is@lostca.se> (Ashish SHUKLA via Guix-patches via's message of "Mon, 3 Mar 2025 21:55:32 +0100") References: <0ba19bffe68365d6b49e80ee710d9d2d8d491002.1741035332.git.ashish.is@lostca.se> User-Agent: mu4e 1.12.7; emacs 30.0.92 Date: Wed, 05 Mar 2025 12:08:02 +0800 Message-ID: <87ldtkjf19.fsf@z572.online> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=88.99.160.180; envelope-from=z572@z572.online; helo=mail.z572.online X-Spam_score_int: 0 X-Spam_score: -0.1 X-Spam_bar: / X-Spam_report: (-0.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FROM_SUSPICIOUS_NTLD=0.001, PDS_OTHER_BAD_TLD=1.982, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 3.0 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Ashish SHUKLA via Guix-patches via writes: > * gnu/packages/search.scm (ugrep): Update to 7.3.0. > > Change-Id: I03fc0d493e7d8eed84f4a83238d3aa65c2fb8e08 > --- > gnu/packages/search.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(- [...] Content analysis details: (3.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: z572.online (online)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 0.0 FROM_SUSPICIOUS_NTLD From abused NTLD X-Debbugs-Envelope-To: submit Cc: 76720-done@debbugs.gnu.org, Ashish SHUKLA X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 3.0 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Ashish SHUKLA via Guix-patches via writes: > * gnu/packages/search.scm (ugrep): Update to 7.3.0. > > Change-Id: I03fc0d493e7d8eed84f4a83238d3aa65c2fb8e08 > --- > gnu/packages/search.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(- [...] Content analysis details: (3.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: z572.online (online)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD 0.0 FROM_SUSPICIOUS_NTLD From abused NTLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Ashish SHUKLA via Guix-patches via writes: > * gnu/packages/search.scm (ugrep): Update to 7.3.0. > > Change-Id: I03fc0d493e7d8eed84f4a83238d3aa65c2fb8e08 > --- > gnu/packages/search.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm > index 9c220fc50c..90cb810ca2 100644 > --- a/gnu/packages/search.scm > +++ b/gnu/packages/search.scm > @@ -692,14 +692,14 @@ (define-public xapers > (define-public ugrep > (package > (name "ugrep") > - (version "7.2.2") > + (version "7.3.0") > (source (origin > (method git-fetch) > (uri (git-reference > (url "https://github.com/Genivia/ugrep") > (commit (string-append "v" version)))) > (sha256 > - (base32 "1f7vah795319vfy4yvpnmrivr1i7nh4xy73b7dl1p8snlmivj1kh")) > + (base32 "1ls6s0daw6lpbiy3rizlzsqcw8r116wi01ivgn9ri9qpfn65f00v")) > (file-name (git-file-name name version)) > (modules '((guix build utils))) > (snippet > > base-commit: 5058b40aba825ab6e7b9e518dd1147d1e35fd7de pushed, closing. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfr6klGDOXiwIdX/bO1qpk+Gi3/AFAmfHziIACgkQO1qpk+Gi 3/DjqRAApaXQUO6bYTeIW96DIHALrfEScD+e0m6kbnlqvI0DmiA/Ex1l4mdDYUTR tNQeAlBmfnu2Bs0GWnjIJSTfaKfJ3RZL7eX5xHqJ2+BWSW/QhDjdgsfkjFB35CPZ 72tYKMr+v6E6HY/qFLVjsMrWw+v4GwCahHyGOYXJC1cQWaI4FFWDXu2uXwGPs6WA zp6BkZindQ8BSArABCkmSreXsRki96eBW23R0FUE5xhjMEf2s3a661lXJZuscfVw YL2T+Kq1n5hu21jiUdgPbMw9reNFceI42Nii5fzTanrztsmj1O6XZmrjMu0xxcjY fWvJKYLJdGdgAqSWQUliYrVV7chVlJE0msk1m7RmEmK2Qz0QKjGmknTqSa6WmSEk PFgX8XBvrNaehubbUeXKbLx5RszkpSnXYnpma1A2AyiBzLEKtxDg2xLpmbYuSUsC zceLnlN+N9VG0flcjGOSneQKl1HG8PgaB5NJpWxRWuCDiJHryftqZfB34MlI01kX Cmv3Su7i0H+Z7IOuT8jQQ9sIiO0KtoxkJfzlf3vWWbRJNGu2PR5y9SN3+dVo6Wte NYd2Y5YolccuA8B01M19PlLIe6+TBSqX0+NWDcbbfQJp+fjR8m/GShvej9uLV5I+ Km7W8sWTRUEzvEfEQHGgoEp/lw7tVBogOOMybc7pWrLgO4QEVW0= =Ob3w -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Aug 19 02:50:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 02 Apr 2025 11:24:18 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator