summaryrefslogtreecommitdiff
path: root/gnu/packages/version-control.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r--gnu/packages/version-control.scm48
1 files changed, 20 insertions, 28 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index f950fa050e..cb54059240 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1052,7 +1052,6 @@ the date of the most recent commit that modified them
(build-system go-build-system)
(arguments
(list
- #:go go-1.24
#:import-path "go.abhg.dev/gs"
#:install-source? #f
#:build-flags
@@ -1644,7 +1643,6 @@ collaboration using typical untrusted file hosts or services.")
(build-system go-build-system)
(arguments
(list
- #:go go-1.24
#:import-path "github.com/Apteryks/git-repo-go"
#:build-flags
#~(list "-ldflags" (string-append
@@ -4207,28 +4205,28 @@ will reconstruct the object along its delta-base chain and return it.")
(define-public git-lfs
(package
(name "git-lfs")
- (version "3.6.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/git-lfs/git-lfs")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "02819i3sd9qjw89lcpv6rmhfqaxkz1pddqw8havw3ysmcmhmb7yd"))))
+ (version "3.7.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/git-lfs/git-lfs")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wxx7i29n4gk8s78xq4hacc1ylwi6bq4b6y2bjx8fs9p7z4awnqh"))))
(build-system go-build-system)
(arguments
(list
#:embed-files #~(list "children" "nodes" "text")
- #:import-path "github.com/git-lfs/git-lfs"
+ #:import-path "github.com/git-lfs/git-lfs/v3"
#:install-source? #f
#:test-flags #~(list "-skip" "TestHistoryRewriterUpdatesRefs")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-/bin/sh
(lambda* (#:key inputs #:allow-other-keys)
- (substitute* "src/github.com/git-lfs/git-lfs/lfs/hook.go"
+ (substitute* "src/github.com/git-lfs/git-lfs/v3/lfs/hook.go"
(("/bin/sh")
(search-input-file inputs "bin/sh")))))
;; Only build the man pages if ruby-asciidoctor is available.
@@ -4237,15 +4235,15 @@ will reconstruct the object along its delta-base chain and return it.")
;; Without this, the binary generated in 'build
;; phase won't have any embedded usage-text.
(lambda _
- (with-directory-excursion "src/github.com/git-lfs/git-lfs"
+ (with-directory-excursion "src/github.com/git-lfs/git-lfs/v3"
(invoke "make" "mangen"))))
(add-after 'build 'build-man-pages
(lambda _
- (with-directory-excursion "src/github.com/git-lfs/git-lfs"
+ (with-directory-excursion "src/github.com/git-lfs/git-lfs/v3"
(invoke "make" "man"))))
(add-after 'install 'install-man-pages
(lambda* (#:key outputs #:allow-other-keys)
- (with-directory-excursion "src/github.com/git-lfs/git-lfs/man"
+ (with-directory-excursion "src/github.com/git-lfs/git-lfs/v3/man"
(for-each
(lambda (manpage)
(install-file manpage
@@ -4260,6 +4258,7 @@ will reconstruct the object along its delta-base chain and return it.")
go-github-com-git-lfs-go-netrc
go-github-com-git-lfs-pktline
go-github-com-git-lfs-wildmatch-v2
+ go-github-com-golang-groupcache
go-github-com-jmhodges-clock
go-github-com-leonelquinteros-gotext
go-github-com-mattn-go-isatty
@@ -4301,6 +4300,7 @@ file contents on a remote server.")
(build-system go-build-system)
(arguments
(list
+ #:go go-1.23
#:import-path "git.sr.ht/~ngraves/lfs-s3"))
(inputs (list git-lfs))
(propagated-inputs
@@ -4847,7 +4847,7 @@ developer workflow, and project and release management.")
(define-public hut
(package
(name "hut")
- (version "0.6.0")
+ (version "0.7.0")
(source
(origin
(method git-fetch)
@@ -4856,19 +4856,11 @@ developer workflow, and project and release management.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "14cia976i2jdzyzw4wk9fhkh6zqgmb09ryf31ys24smmfcdfxyf1"))
- (modules '((guix build utils)))
- (snippet
- #~(begin
- ;; XXX: Module name has been changed upstream, it's already
- ;; adjusted on master, consider to remove in the next refresh
- ;; cycle.
- (substitute* (find-files "." "\\.go$")
- (("git.sr.ht/~emersion/go-scfg")
- "codeberg.org/emersion/go-scfg"))))))
+ (base32 "0scw4nvm3qpg7l6anhljkixn3g36k03ikg6pl0hs76a3wkf89km5"))))
(build-system go-build-system)
(arguments
(list
+ #:go go-1.23
#:import-path "git.sr.ht/~xenrox/hut"
#:phases
#~(modify-phases %standard-phases