summaryrefslogtreecommitdiff
path: root/gnu/packages/databases.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-09 13:23:14 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:47:49 +0000
commit98f1850f59a607d7c83f4193db3acfaf0ad9eba5 (patch)
tree38014967ee7ceee681ab532406e9151b1d86dece /gnu/packages/databases.scm
parent97c3244b63d161c7b248ee6d116cd9bcf15e36b8 (diff)
gnu: go-github-com-bradfitz-gomemcache: Update to 0.0.0-20230905024940-24af94b03874.
* gnu/packages/databases.scm (go-github-com-bradfitz-gomemcache): Update to 0.0.0-20230905024940-24af94b03874. [source] <snippet>: Remove it as issue is resolved upstream. [arguments] <skip-build?>: No go files in project's root. <import-path>: Set to project's root. <unpack-path>: Remove as redundant. Change-Id: I64e002e6e76900f9299839e92fde2c22d3963368
Diffstat (limited to 'gnu/packages/databases.scm')
-rw-r--r--gnu/packages/databases.scm16
1 files changed, 5 insertions, 11 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 95af63e6e97..622515112ee 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-bradfitz-gomemcache
(package
(name "go-github-com-bradfitz-gomemcache")
- (version "0.0.0-20190913173617-a41fca850d0b")
+ (version "0.0.0-20230905024940-24af94b03874")
(source
(origin
(method git-fetch)
@@ -725,18 +725,12 @@ replacement for the @code{python-memcached} library.")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
- (base32 "18qpds6xr73jy80pj7l3pc1l1ndcy3va2dl8fzk17bgwg49sxwfz"))
- (modules '((guix build utils)))
- (snippet
- '(begin
- ;; Fixes the 'untyped-int -> string of one rune' issue.
- ;; https://github.com/golang/go/issues/32479
- (substitute* "memcache/memcache_test.go"
- (("string\\(0x7f") "string(rune(0x7f)"))))))
+ (base32 "0xhf5zphhilv1jiwsdf5f4b4g2jj8q3yhn2r83f52mpi9s8jp5db"))))
(build-system go-build-system)
(arguments
- '(#:unpack-path "github.com/bradfitz/gomemcache"
- #:import-path "github.com/bradfitz/gomemcache/memcache"))
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/bradfitz/gomemcache"))
(home-page "https://github.com/bradfitz/gomemcache")
(synopsis "Memcache client library in Go")
(description