summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--0001-use-vendor-dir-for-build.patch64
-rw-r--r--git-lfs.spec69
-rw-r--r--sources2
4 files changed, 137 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..4d3ed39 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/git-lfs-v3.6.1.tar.gz
+/vendor.tar.gz
diff --git a/0001-use-vendor-dir-for-build.patch b/0001-use-vendor-dir-for-build.patch
new file mode 100644
index 0000000..48a1c85
--- /dev/null
+++ b/0001-use-vendor-dir-for-build.patch
@@ -0,0 +1,64 @@
+--- 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/v3/config.Vendor=$(VENDOR)'
+ endif
+@@ -202,8 +202,8 @@
+ #
+ # It uses BUILD_MAIN as defined above to specify the entrypoint for building Git
+ # LFS.
+-BUILD = GOOS=$(1) GOARCH=$(2) \
+- $(GO) build \
++BUILD = GO111MODULE=on GOOS=$(1) GOARCH=$(2) \
++ $(GO) build -mod=vendor \
+ -ldflags="$(LD_FLAGS)" \
+ -gcflags="$(GC_FLAGS)" \
+ -trimpath \
+@@ -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/*.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.
+@@ -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)
+- GOOS= GOARCH= $(GO) generate github.com/git-lfs/git-lfs/v3/tr
++ @echo "delete this step"
+
+ po/build:
+ mkdir -p po/build
+@@ -628,7 +628,7 @@
+ .PHONY : fmt
+ ifeq ($(shell test -x "`command -v $(GOIMPORTS)`"; echo $$?),0)
+ fmt : $(SOURCES) | lint
+- @$(GOIMPORTS) $(GOIMPORTS_EXTRA_OPTS) $?;
++ @echo "delete this step"
+ else
+ fmt : $(SOURCES) | lint
+ @echo "git-lfs: skipping fmt, no goimports found at \`$(GOIMPORTS)\` ..."
+@@ -638,13 +638,7 @@
+ # are vendored in via vendor (see: above).
+ .PHONY : lint
+ lint : $(SOURCES)
+- @! $(GO) list -f '{{ join .Deps "\n" }}' . \
+- | $(XARGS) $(GO) list -f \
+- '{{ if and (not .Standard) (not .Module) }} \
+- {{ .ImportPath }} \
+- {{ end }}' \
+- | $(GREP) -v "github.com/git-lfs/git-lfs" \
+- | $(GREP) "."
++ @echo "delete this step"
+
+ # MAN_ROFF_TARGETS is a list of all ROFF-style targets in the man pages.
+ MAN_ROFF_TARGETS = man/man1/git-lfs-checkout.1 \
diff --git a/git-lfs.spec b/git-lfs.spec
new file mode 100644
index 0000000..e8f6120
--- /dev/null
+++ b/git-lfs.spec
@@ -0,0 +1,69 @@
+%define debug_package %{nil}
+%bcond_without check
+
+# https://github.com/git-lfs/git-lfs
+Name: git-lfs
+Version: 3.6.1
+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}
+# Tests
+BuildRequires: perl-Digest-SHA
+BuildRequires: perl-Test-Harness
+# Tests require full git suite, but not generally needed.
+BuildRequires: git >= 1.8.5
+%endif
+BuildRequires: golang, tar, which
+
+Requires: git-core >= 1.8.5
+
+%description
+Git Large File Storage (LFS) replaces large files such as audio samples,
+videos, datasets, and graphics with text pointers inside Git, while
+storing the file contents on a remote server.
+
+
+%prep
+%autosetup -p0 -n %{name}-%{version} -a 1
+
+cd ..
+mv %{name}-%{version} %{name}
+mkdir -p %{name}-%{version}/src/github.com/git-lfs
+mv %{name} %{name}-%{version}/src/github.com/git-lfs/
+
+
+%build
+pushd src/github.com/git-lfs/%{name}
+make
+popd
+# BaseOS is not support rubygem-ronn/ronn, ignore generate man pages
+
+
+%install
+install -Dpm0755 src/github.com/git-lfs/git-lfs/bin/git-lfs %{buildroot}%{_bindir}/%{name}
+
+
+%files
+%{_bindir}/%{name}
+
+
+%changelog
+* Sun Jan 19 2025 Funda Wang <fundawang@yeah.net> - 3.6.1-1
+- Upgrade to 3.6.1
+ - fix CVE-2024-53263: Git LFS permits retrieval of credentials via crafted HTTP URLs
+
+* 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
diff --git a/sources b/sources
new file mode 100644
index 0000000..230c650
--- /dev/null
+++ b/sources
@@ -0,0 +1,2 @@
+9e94cd01c09ef5efe07cc0cdf6d39fc1 git-lfs-v3.6.1.tar.gz
+4d7f9bb1f9728ef76d36b55245c08a21 vendor.tar.gz