upgrade to 3.6.0

This commit is contained in:
Shinwell Hu 2025-01-14 17:23:44 +08:00 committed by Xinwei Hu
parent 8efec7a477
commit e088d3829a
5 changed files with 23 additions and 28 deletions

View File

@ -1,26 +1,15 @@
From f17333fb29d81d5061c96931c0cd5135dec0ba02 Mon Sep 17 00:00:00 2001
From: zhoukang <gameoverboss@163.com>
Date: Tue, 12 Jul 2022 21:21:58 +0800
Subject: [PATCH] use vendor dir for build
---
Makefile | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/Makefile b/Makefile
index 0b73d9e..a185116 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ GO_TEST_EXTRA_ARGS =
--- Makefile.orig 2024-11-21 07:04:33
+++ Makefile 2025-01-14 17:39:55
@@ -28,7 +28,7 @@
# BUILTIN_LD_FLAGS are the internal flags used to pass to the linker. By default
# the config.GitCommit variable is always set via this variable, and
# DWARF-stripping is enabled unless DWARF=YesPlease.
-BUILTIN_LD_FLAGS =
+BUILTIN_LD_FLAGS = "-linkmode=external"
ifneq ("$(VENDOR)","")
BUILTIN_LD_FLAGS += -X github.com/git-lfs/git-lfs/config.Vendor=$(VENDOR)
BUILTIN_LD_FLAGS += -X 'github.com/git-lfs/git-lfs/v3/config.Vendor=$(VENDOR)'
endif
@@ -194,8 +194,8 @@ endif
@@ -202,8 +202,8 @@
#
# It uses BUILD_MAIN as defined above to specify the entrypoint for building Git
# LFS.
@ -31,16 +20,16 @@ index 0b73d9e..a185116 100644
-ldflags="$(LD_FLAGS)" \
-gcflags="$(GC_FLAGS)" \
-trimpath \
@@ -227,7 +227,7 @@ mangen : commands/mancontent_gen.go
@@ -237,7 +237,7 @@
# 'commands' of Git LFS. It depends upon the contents of the 'docs' directory
# and converts those manpages into code.
commands/mancontent_gen.go : $(wildcard docs/man/*.ronn)
commands/mancontent_gen.go : $(wildcard docs/man/*.adoc)
- GOOS= GOARCH= $(GO) generate github.com/git-lfs/git-lfs/v3/commands
+ @echo "delete this step"
# trgen is a shorthand for ensuring that tr/tr_gen.go is kept up-to-date with
# the contents of po/build/*.mo.
@@ -238,7 +238,7 @@ trgen : tr/tr_gen.go
@@ -248,7 +248,7 @@
# 'tr' of Git LFS. It depends upon the contents of the 'po' directory
# and converts the .mo files.
tr/tr_gen.go : $(MO)
@ -49,7 +38,7 @@ index 0b73d9e..a185116 100644
po/build:
mkdir -p po/build
@@ -597,7 +597,7 @@ vendor : go.mod
@@ -628,7 +628,7 @@
.PHONY : fmt
ifeq ($(shell test -x "`command -v $(GOIMPORTS)`"; echo $$?),0)
fmt : $(SOURCES) | lint
@ -58,7 +47,7 @@ index 0b73d9e..a185116 100644
else
fmt : $(SOURCES) | lint
@echo "git-lfs: skipping fmt, no goimports found at \`$(GOIMPORTS)\` ..."
@@ -607,13 +607,7 @@ endif
@@ -638,13 +638,7 @@
# are vendored in via vendor (see: above).
.PHONY : lint
lint : $(SOURCES)
@ -71,8 +60,5 @@ index 0b73d9e..a185116 100644
- | $(GREP) "."
+ @echo "delete this step"
# generate index.txt for ronn HTML man page link generation
.PHONY : index.txt
--
2.33.0
# MAN_ROFF_TARGETS is a list of all ROFF-style targets in the man pages.
MAN_ROFF_TARGETS = man/man1/git-lfs-checkout.1 \

Binary file not shown.

BIN
git-lfs-v3.6.0.tar.gz Normal file

Binary file not shown.

View File

@ -3,13 +3,14 @@
# https://github.com/git-lfs/git-lfs
Name: git-lfs
Version: 3.2.0
Version: 3.6.0
Release: 1
Summary: Git extension for versioning large files
License: MIT and BSD and Apache-2.0 and MPL-2.0
URL: https://git-lfs.github.io/
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-v%{version}.tar.gz
Source1: vendor.tar.gz
Patch6000: 0001-use-vendor-dir-for-build.patch
%if %{with check}
@ -30,7 +31,9 @@ storing the file contents on a remote server.
%prep
%autosetup -n %{name}-%{version} -p1
%setup
%patch -P 6000
tar zxvf %{SOURCE1}
cd ..
mv %{name}-%{version} %{name}
mkdir -p %{name}-%{version}/src/github.com/git-lfs
@ -53,5 +56,11 @@ install -Dpm0755 src/github.com/git-lfs/git-lfs/bin/git-lfs %{buildroot}%{_bindi
%changelog
* Tue Jan 14 2025 Xinwei Hu <shinwell_hu@openeuler.sh> - 3.6.0-1
- Upgrade to 3.6.0
- Support multi-stage authentication with Git credential helpers and relative worktree paths
- New object transfer batch size configuration option
- More POSIX-compliant hook scripts
* Tue Jul 12 2022 zhoukang <gameoverboss@163.com> - 3.2.0-1
- Initial package

BIN
vendor.tar.gz Normal file

Binary file not shown.