guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: go-etcd-io-bbolt: Update to 1.3.5-1.f6be823.


From: guix-commits
Subject: branch master updated: gnu: go-etcd-io-bbolt: Update to 1.3.5-1.f6be823.
Date: Tue, 27 Oct 2020 15:56:43 -0400

This is an automated email from the git hooks/post-receive script.

wigust pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4476137  gnu: go-etcd-io-bbolt: Update to 1.3.5-1.f6be823.
4476137 is described below

commit 4476137ab4594f13889eebe22a291ce9f060561a
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Tue Oct 27 22:54:51 2020 +0300

    gnu: go-etcd-io-bbolt: Update to 1.3.5-1.f6be823.
    
    This commit updates go-etcd-io-bbolt to fix test failure.
    
    * gnu/packages/golang.scm (go-etcd-io-bbolt): Update to 1.3.5-1.f6be823.
---
 gnu/packages/golang.scm | 40 +++++++++++++++++++++-------------------
 1 file changed, 21 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d2ca7c4..6db6275 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5674,25 +5674,27 @@ deleting secrets from the system keyring.")
     (license license:expat)))
 
 (define-public go-etcd-io-bbolt
-  (package
-    (name "go-etcd-io-bbolt")
-    (version "1.3.5")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/etcd-io/bbolt";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r"))))
-    (build-system go-build-system)
-    (arguments
-     `(#:import-path "go.etcd.io/bbolt"))
-    (home-page "https://pkg.go.dev/go.etcd.io/bbolt/";)
-    (synopsis "Low-level key/value store in Go")
-    (description "This package implements a low-level key/value store in Go.")
-    (license license:expat)))
+  (let ((commit "f6be82302843a215152f5a1daf652c1ee5503f85")
+        (revision "1"))
+    (package
+      (name "go-etcd-io-bbolt")
+      (version (git-version "1.3.5" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/etcd-io/bbolt";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "01l39kbsm9hl8djnwq3d7vg5hylkm75fvwsh8d4jk8pyda2q6iqg"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "go.etcd.io/bbolt"))
+      (home-page "https://pkg.go.dev/go.etcd.io/bbolt/";)
+      (synopsis "Low-level key/value store in Go")
+      (description "This package implements a low-level key/value store in 
Go.")
+      (license license:expat))))
 
 (define-public go-github-com-rogpeppe-go-internal
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]