From patchwork Sun May 22 21:43:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5634 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 4L5v916Pssz3wcf for ; Sun, 22 May 2022 21:43:33 +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 4L5v8k4MgWz44q; Sun, 22 May 2022 21:43:18 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4L5v8k45S3z3019; Sun, 22 May 2022 21:43:18 +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 4L5v8j6Xxwz3005 for ; Sun, 22 May 2022 21:43:17 +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 4L5v8j5B40z44q; Sun, 22 May 2022 21:43:17 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1653255797; 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=j5LNZPuqpM+F0jLKFiJwYnTdgXIXV6BR0AYe4rfyepI=; b=I39mcsVybkwibBQimObvbI1GGEgVTkV8VqoJ5KCHjgnS2yv9fV9HFDwOfiZr+m1UO9Ok96 jprTeK98buMm/jDg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1653255797; 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=j5LNZPuqpM+F0jLKFiJwYnTdgXIXV6BR0AYe4rfyepI=; b=BH3DvlutNlueDkXwCYaeURPVnZCOHZvdt7Mj/xXx9ZnFNy7OOxg0AzTYfpOqil8RCrAfZF 8MCeoHu/AAleGbclFwLdb9tmultpXzaR3EArCCLknA6cOsJcGGFaZ0DsOK9YpOQJb00uUD LEAxfYkwoIHzYOcSGW6mqPX0mbsMDmEABQyqmSxBbNMWoXs0mv1BW7foc0+g6Aly1csBzN 3FJkRq8M2VnlFC3MfUE/x/zvVhdZhIiGztUZyzSVwO+y4kB3R1WJ0bA4HJhPfxp+pyCJ1B mvAToq5Bz3OhGVp81Bz1/bjv1VybgMLNXQjCBtPk9tQeDr7WupcTkHXKzyXafw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] git: Update to version 2.36.1 Date: Sun, 22 May 2022 23:43:15 +0200 Message-Id: <20220522214315.2766651-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 2.36.0 to 2.36.1 - Update of rootfile not required - Changelog Git v2.36.1 Release Notes Fixes since v2.36 * "git submodule update" without pathspec should silently skip an uninitialized submodule, but it started to become noisy by mistake. * "diff-tree --stdin" has been broken for about a year, but 2.36 release broke it even worse by breaking running the command with , which in turn broke "gitk" and got noticed. This has been corrected by aligning its behaviour to that of "log". * Regression fix for 2.36 where "git name-rev" started to sometimes reference strings after they are freed. * "git show ... -- " lost the pathspec when showing the second and subsequent commits, which has been corrected. * "git fast-export -- " lost the pathspec when showing the second and subsequent commits, which has been corrected. * "git format-patch -- " lost the pathspec when showing the second and subsequent commits, which has been corrected. * Get rid of a bogus and over-eager coccinelle rule. * Correct choices of C compilers used in various CI jobs. Also contains minor documentation updates and code clean-ups. Signed-off-by: Adolf Belka Reviewed-by: Peter Müller --- lfs/git | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/git b/lfs/git index d61e429f6..a4cd9911a 100644 --- a/lfs/git +++ b/lfs/git @@ -24,7 +24,7 @@ include Config -VER = 2.36.0 +VER = 2.36.1 SUMMARY = Fast, scalable, distributed revision control system THISAPP = git-$(VER) @@ -33,7 +33,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = git -PAK_VER = 23 +PAK_VER = 24 DEPS = perl-Authen-SASL perl-MIME-Base64 perl-Net-SMTP-SSL @@ -47,7 +47,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 72bb148fc5fded2976554788eaf599d20fe9f200ac1dd1ddd4ed89f7f5c8d6c1025907080620bab477b4efadf41d883e890dff73c80d0ff5f0becd83f13ebd88 +$(DL_FILE)_BLAKE2 = 99f54efb4ea1d8db0e3afd3dc9780cb37fc853e4757f4b37d68a6badd90eeed3e2943c97393eaed6adf61c82b97b5d01ca8d015784f5425072b1db14d39144ce install : $(TARGET)