sharlatan pushed a commit to branch go-team
in repository guix.
commit 040f92f378723742bc7a8ec023ea571548eb8476
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Feb 23 22:38:24 2025 +0000
gnu: go-github-com-git-lfs-pktline: Move to golang-vcs.
* gnu/packages/version-control.scm (go-github-com-git-lfs-pktline): Move
from here ...
* gnu/packages/golang-vcs.scm: ... to here.
Change-Id: I83b2d4ed8b85411c1bd4bd95a38b78ae50568015
---
gnu/packages/golang-vcs.scm | 27 +++++++++++++++++++++++++++
gnu/packages/version-control.scm | 26 --------------------------
2 files changed, 27 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm
index 2c2dcc2d11..b110d65412 100644
--- a/gnu/packages/golang-vcs.scm
+++ b/gnu/packages/golang-vcs.scm
@@ -41,6 +41,33 @@
;;; Libraries:
;;;
+(define-public go-github-com-git-lfs-pktline
+ (let ((commit "ca444d533ef1e474d0aab99cdbeed9b048d65241")
+ (revision "1"))
+ (package
+ (name "go-github-com-git-lfs-pktline")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/git-lfs/pktline")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mxp4c59g5b3y20ilf90b6cagbk2b473vsmdz159y4hssvi1ac7r"))))
+ (build-system go-build-system)
+ (arguments `(#:import-path "github.com/git-lfs/pktline"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (home-page "https://github.com/git-lfs/pktline")
+ (synopsis "Git pkt-line Go toolkit")
+ (description
+ "This package is a Go language toolkit for reading and writing files
+using the Git pkt-line format used in various Git operations.")
+ (license license:expat))))
+
(define-public go-github-com-go-git-gcfg
(package
(name "go-github-com-go-git-gcfg")
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index f8aeaf0b8c..971e199c43 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -3969,32 +3969,6 @@ the smallest possible conflicts and to allow a merge to
be saved, tested,
interrupted, published, and collaborated on while in progress.")
(license license:gpl2+)))
-(define-public go-github-com-git-lfs-pktline
- (let ((commit "ca444d533ef1e474d0aab99cdbeed9b048d65241")
- (revision "1"))
- (package
- (name "go-github-com-git-lfs-pktline")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/git-lfs/pktline")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0mxp4c59g5b3y20ilf90b6cagbk2b473vsmdz159y4hssvi1ac7r"))))
- (build-system go-build-system)
- (arguments `(#:import-path "github.com/git-lfs/pktline"))
- (native-inputs
- (list go-github-com-stretchr-testify))
- (home-page "https://github.com/git-lfs/pktline")
- (synopsis "Git pkt-line Go toolkit")
- (description "This package is a Go language toolkit for reading and
-writing files using the Git pkt-line format used in various Git operations.")
- (license license:expat))))
-
(define-public go-github-com-git-lfs-wildmatch-v2
(package
(name "go-github-com-git-lfs-wildmatch-v2")