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

commit 789c1cf9fce5d0511664d74d51de9c34679aa640
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jan 22 21:44:14 2025 +0000

    gnu: go-github-com-couchbase-gomemcached: Update to 0.3.2.
    
    * gnu/packages/databases.scm (go-github-com-couchbase-gomemcached): Update 
to 0.3.2.
    [arguments] <test-flags>: Skip one tests.
    <test-subdirs>: Limit to project root, some submodule requires BSL
    licensed dependencies.
    [propagated-inputs]: Add go-github-com-pkg-errors.
    
    Change-Id: I661df8055f678f9f05add9785ab827ae11bd1b9e
---
 gnu/packages/databases.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 5ac1489d13..28cf2a7561 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -716,7 +716,7 @@ replacement for the @code{python-memcached} library.")
 (define-public go-github-com-couchbase-gomemcached
   (package
     (name "go-github-com-couchbase-gomemcached")
-    (version "0.1.4")
+    (version "0.3.2")
     (source
       (origin
         (method git-fetch)
@@ -725,11 +725,17 @@ replacement for the @code{python-memcached} library.")
                (commit (string-append "v" version))))
         (file-name (git-file-name name version))
         (sha256
-         (base32 "10w74gc05x5naspls39sv2r92krrg31mk266w3lyqqwc0s3fxysl"))))
+         (base32 "132zjbr7d586gb1wqlnhg3vgyshq629z1wsskrpbmyypjfkq620c"))))
     (build-system go-build-system)
-    (arguments '(#:import-path "github.com/couchbase/gomemcached"))
+    (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

Reply via email to