From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 23 16:20:18 2024 Received: (at submit) by debbugs.gnu.org; 23 Aug 2024 20:20:18 +0000 Received: from localhost ([127.0.0.1]:40158 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1shale-0003cn-Ff for submit@debbugs.gnu.org; Fri, 23 Aug 2024 16:20:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:58236) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1shalc-0003cg-TZ for submit@debbugs.gnu.org; Fri, 23 Aug 2024 16:20:17 -0400 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 1shakp-0004gR-LT for guix-patches@gnu.org; Fri, 23 Aug 2024 16:19:28 -0400 Received: from anamika.lostca.se ([2a01:4f9:3b:505c::2]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1shakn-0008JJ-KU for guix-patches@gnu.org; Fri, 23 Aug 2024 16:19:27 -0400 Received: from localhost.localdomain (poincare.inet6.in [IPv6:2a0a:4cc0:1:12d4::1]) (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 380B724BB0; Fri, 23 Aug 2024 20:19:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1724444351; 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; bh=2154BMlLs/91BUJbPrwkV57QHBmftH/TG3l4yH3j6I8=; b=e1VMYlHRpD4FwhFHmvTx0jgl8R8xDO3XxcLaWlY3bnjg2RAt3hjdLnBQ6nGvJ4cy+JP1tw sBOs8C/NBkGd0pDsMNiSqm7Vyo+Vfx0MPaelzseG/oz9rsOYZksgw9OR/o7SnFE2PDvdBg PsQPtyU9DV5GzaMfDz7yzmrYpo5RgDE= From: ashish.is@lostca.se To: guix-patches@gnu.org Subject: [PATCH] gnu: ugrep: Update to 6.5.0. Date: Fri, 23 Aug 2024 20:18:50 +0000 Message-ID: <113d8025ffbbb0348b414ddb03ec0c1d9be9993a.1724444330.git.ashish.is@lostca.se> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:4f9:3b:505c::2; 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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: -2.4 (--) From: Ashish SHUKLA * gnu/packages/search.scm (ugrep): Update to 6.5.0. Change-Id: Icfbd8874b7c668cae4c761ec21530ff1e3a0e041 --- gnu/packages/search.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index c01820eeca..becdc914e4 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2022 Michael Rohleder ;;; Copyright © 2023 Adam Faiz ;;; Copyright © 2023 David Pflug +;;; Copyright © 2024 Ashish SHUKLA ;;; ;;; This file is part of GNU Guix. ;;; @@ -737,14 +738,14 @@ (define-public xapers (define-public ugrep (package (name "ugrep") - (version "6.4.1") + (version "6.5.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Genivia/ugrep") (commit (string-append "v" version)))) (sha256 - (base32 "16ansh63g5xsv6140nh73vlc8wkvjasn1a19vi1z5ibkwrgxygyi")) + (base32 "0a8ni1klqfpd00m5fks0q6ngwx64nvrh41r4azxc1fcxz4glfv90")) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet base-commit: d48af5cca84914d44b032d0bf0820640ebbe7a4b -- 2.46.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 27 22:39:53 2024 Received: (at submit) by debbugs.gnu.org; 28 Aug 2024 02:39:53 +0000 Received: from localhost ([127.0.0.1]:47969 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sj8bB-0002DA-1z for submit@debbugs.gnu.org; Tue, 27 Aug 2024 22:39:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:59206) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sj8b9-0002Cw-3E for submit@debbugs.gnu.org; Tue, 27 Aug 2024 22:39:51 -0400 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 1sj8aH-0005e6-Cd for guix-patches@gnu.org; Tue, 27 Aug 2024 22:38:57 -0400 Received: from smtp84.cstnet.cn ([159.226.251.84] helo=cstnet.cn) by eggs.gnu.org with esmtps (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.90_1) (envelope-from ) id 1sj8aE-0007bz-Vq for guix-patches@gnu.org; Tue, 27 Aug 2024 22:38:57 -0400 Received: from m (unknown [107.174.64.25]) by APP-05 (Coremail) with SMTP id zQCowAAnDzq2jc5mXLPnCg--.9192S2; Wed, 28 Aug 2024 10:38:50 +0800 (CST) From: Z572 To: "ashish.is--- via Guix-patches" via Subject: Re: [bug#72775] [PATCH] gnu: ugrep: Update to 6.5.0. In-Reply-To: <113d8025ffbbb0348b414ddb03ec0c1d9be9993a.1724444330.git.ashish.is@lostca.se> (ashish is's message of "Fri, 23 Aug 2024 20:18:50 +0000") References: <113d8025ffbbb0348b414ddb03ec0c1d9be9993a.1724444330.git.ashish.is@lostca.se> Date: Wed, 28 Aug 2024 10:38:45 +0800 Message-ID: <87seupgymi.fsf@iscas.ac.cn> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-CM-TRANSID: zQCowAAnDzq2jc5mXLPnCg--.9192S2 X-Coremail-Antispam: 1UD129KBjvJXoW7Aw47JFyUZFy7Gry5tFy5Jwb_yoW8Xr1fpr WSva1Yyw1rKrySqw47WF1Uta1aqa47tw18Z342vw4rKws29rZ7JrWrtFWFkF17Jr4xt343 WF48Xr1ruFyUWaDanT9S1TB71UUUUU7qnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDU0xBIdaVrnRJUUUvEb7Iv0xC_Kw4lb4IE77IF4wAFF20E14v26r1j6r4UM7CY07I2 0VC2zVCF04k26cxKx2IYs7xG6rWj6s0DM7CIcVAFz4kK6r1j6r18M28lY4IEw2IIxxk0rw A2F7IY1VAKz4vEj48ve4kI8wA2z4x0Y4vE2Ix0cI8IcVAFwI0_Gr0_Xr1l84ACjcxK6xII jxv20xvEc7CjxVAFwI0_Gr1j6F4UJwA2z4x0Y4vEx4A2jsIE14v26r4UJVWxJr1l84ACjc xK6I8E87Iv6xkF7I0E14v26F4UJVW0owAa7VASzI0EjI02j7AqF2xKxVCjxxvEa2IrM2AI xVAIcxkEcVAq07x20xvEncxIr21le4C267I2x7xF54xIwI1l5I8CrVACY4xI64kE6c02F4 0Ex7xfMcIj6xIIjxv20xvE14v26r1Y6r17McIj6I8E87Iv67AKxVWUJVW8JwAm72CE4IkC 6x0Yz7v_Jr0_Gr1lF7xvr2IY64vIr41l42xK82IYc2Ij64vIr41l4I8I3I0E4IkC6x0Yz7 v_Jr0_Gr1lx2IqxVAqx4xG67AKxVWUJVWUGwC20s026x8GjcxK67AKxVWUGVWUWwC2zVAF 1VAY17CE14v26r1Y6r17MIIYrxkI7VAKI48JMIIF0xvE2Ix0cI8IcVAFwI0_Jr0_JF4lIx AIcVC0I7IYx2IY6xkF7I0E14v26r4j6F4UMIIF0xvE42xK8VAvwI8IcIk0rVWUJVWUCwCI 42IY6I8E87Iv67AKxVW8JVWxJwCI42IY6I8E87Iv6xkF7I0E14v26r4j6r4UJbIYCTnIWI evJa73UjIFyTuYvjxUh_OzDUUUU X-Originating-IP: [107.174.64.25] X-CM-SenderInfo: x2kh0wxmxqyx3h6l2u1dvotugofq/ Received-SPF: pass client-ip=159.226.251.84; envelope-from=zhengjunjie@iscas.ac.cn; helo=cstnet.cn X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 72775-done@debbugs.gnu.org, ashish.is@lostca.se 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: -2.4 (--) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable "ashish.is--- via Guix-patches" via writes: > From: Ashish SHUKLA > > * gnu/packages/search.scm (ugrep): Update to 6.5.0. > > Change-Id: Icfbd8874b7c668cae4c761ec21530ff1e3a0e041 > --- > gnu/packages/search.scm | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm > index c01820eeca..becdc914e4 100644 > --- a/gnu/packages/search.scm > +++ b/gnu/packages/search.scm > @@ -14,6 +14,7 @@ > ;;; Copyright =C2=A9 2022 Michael Rohleder > ;;; Copyright =C2=A9 2023 Adam Faiz > ;;; Copyright =C2=A9 2023 David Pflug > +;;; Copyright =C2=A9 2024 Ashish SHUKLA > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -737,14 +738,14 @@ (define-public xapers > (define-public ugrep > (package > (name "ugrep") > - (version "6.4.1") > + (version "6.5.0") > (source (origin > (method git-fetch) > (uri (git-reference > (url "https://github.com/Genivia/ugrep") > (commit (string-append "v" version)))) > (sha256 > - (base32 "16ansh63g5xsv6140nh73vlc8wkvjasn1a19vi1z5ibkwrgx= ygyi")) > + (base32 "0a8ni1klqfpd00m5fks0q6ngwx64nvrh41r4azxc1fcxz4gl= fv90")) > (file-name (git-file-name name version)) > (modules '((guix build utils))) > (snippet > > base-commit: d48af5cca84914d44b032d0bf0820640ebbe7a4b push, close. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfr6klGDOXiwIdX/bO1qpk+Gi3/AFAmbOjbUACgkQO1qpk+Gi 3/ANHBAAjOOIKiIezbhLXFBXmJYABHRBSsYKVMmuCQC+6AiE9SrOL1o3ZiqmloXn suKRRk1S0YlWfWyVjs9ckWek/ba6qJ6yMPqgk6EohAIYOI4glbwmhOoi1WbiEuSE gDZHzFwE1C74OsSRsh6+PdMsT0oFkJkd2F/zKm71X6JxdU1vkQLKBIrucaPpX6Q/ fHa1xjN6+xrs0NL09uj4cpZH1VxlpvznPHTU2T26DsqdE6DFM4KytJixAWQHQU2D fIxPTVOls43KQsVPO0wy5QlP8ZQd/b3cfszUSSC7Kmak0iwWWwGApTPilAg17Klm iS6B0Q8fhLb/xxR/Oj++228zN+ZM19kFVssgZ39PkVrbw4ba2Oc86ojOBZb27y1K oN74Bx7tfBYXUYXTPJnTZHxyX5kgTMAJWwwMfRH/lG4eFqdaIrg88wqmy5tspuRQ 0KdQZPGAHycW2soDJWvSpuwTnZS5xp4rNpewuo8LbJ1VlF0ZHWs5ufVBFaK6iNSx etnEqGzZBJDlxo36PFKZWf8Mevm244gBcdTTDRTG4LUfSGxLiFbdw1A/N2QXWwVl YvcNhqan4uYc1bnF2938n2qSMDY61ZDd6izYFwAzrC2HWFO6XtF5l74DuV/w00cm cEgZJLBK25cPmJEehRUxIDU3mqX6eAWz5KfIeeqt7IKMWDXd2ts= =9zAO -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 18:01:08 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, 25 Sep 2024 11:24:10 +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