guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 584a029af8a46112dd273e3a30b412741c649ad9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 15:58:52 2025 +0100
gnu: go-github-com-digitalocean-godo: Update to 1.151.0.
* gnu/packages/golang-web.scm (go-github-com-digitalocean-godo): Update to
1.151.0.
[arguments] <go>: Use go-1.23.
<test-flags>: Skip 4 more tests.
Change-Id: I3e8ca96004fa63119e0cb70f1d328128da308690
---
gnu/packages/golang-web.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index f7de6f408f..78725af74e 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -2259,7 +2259,7 @@ Data Representation (XDR) standard protocol as specified
in RFC
(define-public go-github-com-digitalocean-godo
(package
(name "go-github-com-digitalocean-godo")
- (version "1.138.0")
+ (version "1.151.0")
(source
(origin
(method git-fetch)
@@ -2268,15 +2268,20 @@ Data Representation (XDR) standard protocol as
specified in RFC
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "083vhzb1hwzdmn5m14ygs949g2kabmafvpcxq2laylkylq1fd3rm"))))
+ (base32 "02nwqlz2fxv74h4bhd8yp02s0zfxb1d7jmp4yydgbz7psk296j98"))))
(build-system go-build-system)
(arguments
(list
+ #:go go-1.23
#:import-path "github.com/digitalocean/godo"
#:test-flags
#~(list "-skip" (string-join
;; Tests requiring networking setup.
- (list "TestRegistry_DeleteManifest"
+ (list "TestRegistries_DeleteManifest"
+ "TestRegistries_DeleteTag"
+ "TestRegistries_ListRepositoryManifests"
+ "TestRegistries_ListRepositoryTags"
+ "TestRegistry_DeleteManifest"
"TestRegistry_DeleteTag"
"TestRegistry_ListManifests"
"TestRepository_ListTags")