From debbugs-submit-bounces@debbugs.gnu.org Fri May 17 06:04:41 2024 Received: (at submit) by debbugs.gnu.org; 17 May 2024 10:04:41 +0000 Received: from localhost ([127.0.0.1]:54307 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s7uS8-0004OC-Ux for submit@debbugs.gnu.org; Fri, 17 May 2024 06:04:41 -0400 Received: from lists.gnu.org ([209.51.188.17]:49418) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s7uS6-0004O6-Bs for submit@debbugs.gnu.org; Fri, 17 May 2024 06:04:39 -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 1s7uS1-00045Z-Gd for guix-patches@gnu.org; Fri, 17 May 2024 06:04:35 -0400 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 1s7uRy-0000LH-7l for guix-patches@gnu.org; Fri, 17 May 2024 06:04:32 -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 5152994A8; Fri, 17 May 2024 10:04:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1715940259; 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=Wi51nK0WDTYKS+oQiw3lJofT25EVeSFEH7/UqZyobGE=; b=PQ4JPd8lNg9nMwi8dcpej8oXXcBqYhEFWbq9QdBJvisf0I48P69RlHIgwRsmvDiPUgvP6G +oz4WWH5f4r3f3tuAV8T5jKQW7Nc8KHioxoEezqmau3HNcbYpUo2LFiFB89r5pFXh477y/ VC9EtrefSbYlqm909KTZtXCDcJUZg3w= From: ashish.is@lostca.se To: guix-patches@gnu.org Subject: [PATCH] gnu: git: Update to 2.45.1 Date: Fri, 17 May 2024 10:03:08 +0000 Message-ID: X-Mailer: git-send-email 2.41.0 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 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/version-control.scm (git): Update to 2.45.1. Change-Id: Ia0634c6b0a4a3b5cc5c584ca064bbeb62b207c3e --- gnu/packages/version-control.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index c01eb9decd..7638c48ffb 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -242,14 +242,14 @@ (define git-cross-configure-flags (define-public git (package (name "git") - (version "2.41.0") + (version "2.45.1") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/software/scm/git/git-" version ".tar.xz")) (sha256 (base32 - "0h40arw08xbpi2cbf7pvc947v963rjxz3inb2ar81zjc8byvlj77")))) + "1gqj5xrlmzs4amrj7xgxx7qpqj8br8f6bk4bzcnf4yk2iq538kg6")))) (build-system gnu-build-system) (native-inputs `(("native-perl" ,perl) @@ -269,7 +269,7 @@ (define-public git version ".tar.xz")) (sha256 (base32 - "0xsqakgy0s60zpa13ilj6zj420kdh8pf4v3nrp1nziwj8ja4qymw")))) + "1w6r2liifafsxydmc48p578z7z70ys0spm6qp5ygdd0l26mxf8p6")))) ;; For subtree documentation. ("asciidoc" ,asciidoc) ("docbook2x" ,docbook2x) base-commit: e4ee595999a3b0656f416d190b28ec6f1ad8a74d -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri May 17 11:56:23 2024 Received: (at control) by debbugs.gnu.org; 17 May 2024 15:56:23 +0000 Received: from localhost ([127.0.0.1]:55916 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s7zwV-0006Eb-Ex for submit@debbugs.gnu.org; Fri, 17 May 2024 11:56:23 -0400 Received: from anamika.lostca.se ([65.21.75.227]:44622) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s7zwT-0006EV-Ji for control@debbugs.gnu.org; Fri, 17 May 2024 11:56:22 -0400 Received: from chateau.d.if (19.red-81-35-35.dynamicip.rima-tde.net [81.35.35.19]) (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 B8204964C for ; Fri, 17 May 2024 15:55:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1715961341; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=IhkiRSjcuOozOkiIXOr1bh1V+QDJmrRJV+YCkeU/N7o=; b=cR7Bro8337VUyGnSEMFe75pYm5q+pdVr18bHkhc+3o+8DWlzlqCQlTA0dOScgKIsrVBzCi yhp85wOIZk0ewyEUtivEfYRnFPWdPlQ4tHAdDAW3suLsykfUL+pAAdQEGMwanVggrhW4i7 DcAzOcbcAUdteXn1x61SAcD0jrEI8Ek= Date: Fri, 17 May 2024 15:55:39 +0000 From: Ashish To: control@debbugs.gnu.org Subject: control message for bug #71000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: NeoMutt/20231221 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control 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: -1.0 (-) severity 71000 important From debbugs-submit-bounces@debbugs.gnu.org Fri May 17 12:52:54 2024 Received: (at control) by debbugs.gnu.org; 17 May 2024 16:52:54 +0000 Received: from localhost ([127.0.0.1]:56153 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s80pC-0001CE-BE for submit@debbugs.gnu.org; Fri, 17 May 2024 12:52:54 -0400 Received: from anamika.lostca.se ([65.21.75.227]:39342) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s80pA-0001C8-3U for control@debbugs.gnu.org; Fri, 17 May 2024 12:52:53 -0400 Received: from chateau.d.if (19.red-81-35-35.dynamicip.rima-tde.net [81.35.35.19]) (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 DA0BD94C2 for ; Fri, 17 May 2024 16:52:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1715964732; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=5WEpwCvkP5xViKJHINxglMC5jGnfSUeghH3O7ZyRfnI=; b=A/T/SzcGv4B7ycJgCYKNGoJ6hEiGDJ7SOCw+pFJkvxMALFfVUfA6fI9lA3SBaeI0O/6Y2h NA1mXXxMNafv6d7E29GBjfiAHLsgMxef/9x9ZPSQOdxmtfNDWuiGbQHYAD1nFq50NaEgNZ 6vSSoWJTU3rswIK2wsyT70QEgGpV1Fk= Date: Fri, 17 May 2024 16:52:11 +0000 From: Ashish To: control@debbugs.gnu.org Subject: control message for bug #71000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: NeoMutt/20231221 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control 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: -1.0 (-) tag 71000 security From debbugs-submit-bounces@debbugs.gnu.org Fri May 31 12:25:15 2024 Received: (at control) by debbugs.gnu.org; 31 May 2024 16:25:15 +0000 Received: from localhost ([127.0.0.1]:55231 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sD547-0006KF-5F for submit@debbugs.gnu.org; Fri, 31 May 2024 12:25:15 -0400 Received: from anamika.lostca.se ([65.21.75.227]:50672) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sD544-0006Jy-Dg for control@debbugs.gnu.org; Fri, 31 May 2024 12:25:13 -0400 Received: from email.lostca.se (localhost [IPv6:::1]) by anamika.lostca.se (Postfix) with ESMTP id 5B751DBCC for ; Fri, 31 May 2024 16:24:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1717172664; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=syhriGhwHsXDp9rGAgrplkJwwMQcFQvoIUmjSDCk9r8=; b=dD3zI+3PB5asQUHIb2gXH3c+3E7lisYFYaEHLj9vJpjkHKKcq0P/p9rkF2ZTd4JNKlFqqk JeDwDtmo4TihVfuHDzN5TOrZ1KjiXwBPhFbjmbvHwV3uMbXZDFhZrK6NW9n1Zp83CmRp6u zl54cq/KLwv161hd4422GwfDOP35NSw= MIME-Version: 1.0 Date: Fri, 31 May 2024 18:24:17 +0200 From: Ashish SHUKLA To: control@debbugs.gnu.org Subject: close bug report Mail-Reply-To: ashish.is@lostca.se User-Agent: Roundcube Webmail/1.6.5 Message-ID: X-Sender: ashish.is@lostca.se Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control 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: , Reply-To: ashish.is@lostca.se Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 71000 09690a2b0c16df874600c5ded901c3cdee805093 From unknown Sat Sep 06 00:11:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 29 Jun 2024 11:24:06 +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