diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-22 21:44:14 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-22 21:48:22 +0000 |
commit | 789c1cf9fce5d0511664d74d51de9c34679aa640 (patch) | |
tree | 5662f20e964b72d9993f6d4173fdbae631d6f7c9 /gnu | |
parent | 944ce009eba16fd47ea00af5f239adfaa0d86351 (diff) |
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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 12 |
1 files 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 |