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

commit 4919b8aefb00909a4d56b04137800421b91a14a6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jan 22 21:47:38 2025 +0000

    gnu: go-github-com-couchbase-gomemcached: Move to golang-xyz.
    
    * gnu/packages/databases.scm (go-github-com-couchbase-gomemcached): Move
    from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I62b77bffa9f6e673ebcedc58599c7e2a0e827f4c
---
 gnu/packages/databases.scm  | 29 -----------------------------
 gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 28cf2a7561..be6571ed2d 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -713,35 +713,6 @@ around TangentOrg’s libmemcached library, and can be used 
as a drop-in
 replacement for the @code{python-memcached} library.")
     (license license:bsd-3)))
 
-(define-public go-github-com-couchbase-gomemcached
-  (package
-    (name "go-github-com-couchbase-gomemcached")
-    (version "0.3.2")
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/couchbase/gomemcached";)
-               (commit (string-append "v" version))))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32 "132zjbr7d586gb1wqlnhg3vgyshq629z1wsskrpbmyypjfkq620c"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:import-path "github.com/couchbase/gomemcached"
-      #:test-flags #~(list "-skip" "TestEncodingResponse")
-      #:test-subdirs #~(list ".")))
-    (native-inputs
-     (list go-github-com-stretchr-testify))
-    (propagated-inputs
-     (list go-github-com-pkg-errors))
-    (home-page "https://github.com/couchbase/gomemcached";)
-    (synopsis "Memcached binary protocol toolkit for go")
-    (description
-     "This package provides memcache client and server functionality.")
-    (license license:expat)))
-
 (define-public litecli
  (package
   (name "litecli")
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index e3631de30b..f75730dceb 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3425,6 +3425,35 @@ submodules:
 @end itemize")
     (license license:asl2.0)))
 
+(define-public go-github-com-couchbase-gomemcached
+  (package
+    (name "go-github-com-couchbase-gomemcached")
+    (version "0.3.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/couchbase/gomemcached";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "132zjbr7d586gb1wqlnhg3vgyshq629z1wsskrpbmyypjfkq620c"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/couchbase/gomemcached"
+      #:test-flags #~(list "-skip" "TestEncodingResponse")
+      #:test-subdirs #~(list ".")))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-pkg-errors))
+    (home-page "https://github.com/couchbase/gomemcached";)
+    (synopsis "Memcached binary protocol toolkit for go")
+    (description
+     "This package provides memcache client and server functionality.")
+    (license license:expat)))
+
 (define-public go-github-com-creack-pty
   (package
     (name "go-github-com-creack-pty")

Reply via email to