guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 5f9d0f7938bf55ec55663fa768a9f6c88946795d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 14 00:46:55 2026 +0000
gnu: go-github-com-ipfs-go-log-v2: Update to 2.9.1.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-log-v2): Update to 2.9.1.
[propagated-inputs]: Remove go-go-uber-org-multierr.
[native-inputs]: Add go-github-com-stretchr-testify.
Change-Id: Ic2bc16ea36bd55105bc41f6d549399d8cd348839
---
gnu/packages/ipfs.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 3273911f20..bbdcf731d6 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -1757,7 +1757,7 @@ basic operations on IPLD objects (traversals, etc).")
(define-public go-github-com-ipfs-go-log-v2
(package
(name "go-github-com-ipfs-go-log-v2")
- (version "2.5.1")
+ (version "2.9.1")
(source
(origin
(method git-fetch)
@@ -1766,20 +1766,21 @@ basic operations on IPLD objects (traversals, etc).")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1yh3sw8knpy364h8h8rqw193whnjd6fbc13cxh6zs29z3x2a7aqa"))))
+ (base32 "16sm3y7n05gjfzc77d38iscq3pdg0kr3p95izxp70y8pfrpfacs5"))))
(build-system go-build-system)
- (propagated-inputs
- (list go-github-com-mattn-go-isatty
- go-go-uber-org-multierr
- go-go-uber-org-zap))
(arguments
(list
#:import-path "github.com/ipfs/go-log/v2"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-mattn-go-isatty
+ go-go-uber-org-zap))
(home-page "https://github.com/ipfs/go-log")
(synopsis "Logging library used by @code{go-ipfs}")
(description
- "@code{go-log} wraps @url{https://github.com/uber-go/zap, zap} to
-provide a logging facade. @code{go-log} manages logging instances and allows
for
+ "@code{go-log} wraps @url{https://github.com/uber-go/zap, zap} to provide
+a logging facade. @code{go-log} manages logging instances and allows for
their levels to be controlled individually.")
(license license:expat)))