git: update to 2.50.1
authorRichard Muzik <[email protected]>
Mon, 21 Jul 2025 07:47:37 +0000 (09:47 +0200)
committerTianling Shen <[email protected]>
Sat, 9 Aug 2025 07:31:38 +0000 (15:31 +0800)
- Refresh and rebase patches

Signed-off-by: Richard Muzik <[email protected]>
net/git/Makefile
net/git/patches/200-imapsend_without_curl.patch
net/git/patches/300-openssl-deprecated.patch
net/git/patches/310-fix-uname-detection-for-crosscompiling

index 48d653749b48bf3397d010ec108ba1deed8811b7..c62deea736c61d2bb7998c52bfddfb6e98b9a23c 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=git
-PKG_VERSION:=2.46.4
+PKG_VERSION:=2.50.1
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=@KERNEL/software/scm/git/
-PKG_HASH:=0d5c029edfea24abb4cbda385eff2b66ae946dd74849a350e4420f1eefa71aad
+PKG_HASH:=7e3e6c36decbd8f1eedd14d42db6674be03671c2204864befa2a41756c5c8fc4
 
 PKG_LICENSE:=GPL-2.0-or-later
 PKG_LICENSE_FILES:=COPYING
index 061a44341fbf63a418095bde236bab7974ff5e7f..a0c02a24b93cd991ff09963ee3d5726da788c8a2 100644 (file)
@@ -1,6 +1,6 @@
 --- a/Makefile
 +++ b/Makefile
-@@ -1636,7 +1636,7 @@ else
+@@ -1685,7 +1685,7 @@ else
          endif
        curl_check := $(shell (echo 072200; $(CURL_CONFIG) --vernum | sed -e '/^70[BC]/s/^/0/') 2>/dev/null | sort -r | sed -ne 2p)
          ifeq "$(curl_check)" "072200"
index 16b5543a0d8b50756c28fd8af174526b0b985ca3..67916d764e0e4bd48f1179fe8e8293738c56f062 100644 (file)
@@ -14,7 +14,7 @@ Signed-off-by: Rosen Penev <[email protected]>
 
 --- a/imap-send.c
 +++ b/imap-send.c
-@@ -259,8 +259,10 @@ static int ssl_socket_connect(struct ima
+@@ -263,8 +263,10 @@ static int ssl_socket_connect(struct ima
        int ret;
        X509 *cert;
  
index 4b884d2984d843b22564ace775a41575684f83a5..85f464c425a04161692245704ca338b56c7c6ccd 100644 (file)
@@ -22,7 +22,7 @@ Signed-off-by: Mauro Condarelli <mc5686 at mclink.it>
 
 --- a/config.mak.uname
 +++ b/config.mak.uname
-@@ -4,12 +4,12 @@
+@@ -4,11 +4,11 @@
  # Microsoft's Safe Exception Handling in libraries (such as zlib).
  # Typically required for VS2013+/32-bit compilation on Vista+ versions.
  
@@ -30,13 +30,11 @@ Signed-off-by: Mauro Condarelli <mc5686 at mclink.it>
 -uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
 -uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
 -uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
--uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
 -uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
 +uname_S ?= $(shell sh -c 'uname -s 2>/dev/null || echo not')
 +uname_M ?= $(shell sh -c 'uname -m 2>/dev/null || echo not')
 +uname_O ?= $(shell sh -c 'uname -o 2>/dev/null || echo not')
 +uname_R ?= $(shell sh -c 'uname -r 2>/dev/null || echo not')
-+uname_P ?= $(shell sh -c 'uname -p 2>/dev/null || echo not')
 +uname_V ?= $(shell sh -c 'uname -v 2>/dev/null || echo not')
  
  ifneq ($(findstring MINGW,$(uname_S)),)