summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-12 15:58:52 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-26 19:55:46 +0200
commit99a760189e4bd2666bcd49d470673f08692750d9 (patch)
tree7219c42b0621f528c6dfdc2f7e4d8b9a4e5cccd0
parent9099b19f9359e248f95b3176d949edff4cbf1202 (diff)
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
-rw-r--r--gnu/packages/golang-web.scm11
1 files 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")