sharlatan pushed a commit to branch go-team
in repository guix.

commit 3b40cd890cf19bcaa93af848dad0df4005c244f2
Author: Sharlatan Hellseher <sharlata...@gmail.com>
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 2170f88fc2..2004b01fbe 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -3920,32 +3920,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")

Reply via email to