summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-19 12:57:52 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-29 15:23:58 +0100
commit504c8a3592a86bf3d8fc6bc21095ce108ddf8da5 (patch)
tree5e608568d1bc7ee0795af8ce13a1b9ae6e7ebd02
parent5d42aec7348f347d428e57d2d07c74d0ee788077 (diff)
gnu: go-google-golang-org-api: Update to 0.272.0.
* gnu/packages/golang-web.scm (go-google-golang-org-api): Update to 0.272.0. [arguments] <test-flags>: Skip less. <test-subdirs>: Drop all. <phases>: Add 'remove-integration-tests phase. [propagated-inputs]: Add go-google-golang-org-genproto-googleapis-bytestream. Change-Id: Id346bd7ff890fe83d5a6985b113d1bd8115ce38d
-rw-r--r--gnu/packages/golang-web.scm33
1 files changed, 12 insertions, 21 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index d76d52c1078..9172444d0c5 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -18549,7 +18549,7 @@ an alternative fork of @url{https://github.com/mattbaird/jsonpatch}.")
18549(define-public go-google-golang-org-api 18549(define-public go-google-golang-org-api
18550 (package 18550 (package
18551 (name "go-google-golang-org-api") 18551 (name "go-google-golang-org-api")
18552 (version "0.247.0") 18552 (version "0.272.0")
18553 (source 18553 (source
18554 (origin 18554 (origin
18555 (method git-fetch) 18555 (method git-fetch)
@@ -18558,7 +18558,7 @@ an alternative fork of @url{https://github.com/mattbaird/jsonpatch}.")
18558 (commit (string-append "v" version)))) 18558 (commit (string-append "v" version))))
18559 (file-name (git-file-name name version)) 18559 (file-name (git-file-name name version))
18560 (sha256 18560 (sha256
18561 (base32 "19rj4m4qfc6lfik6p562a2nyf9mhmz0nfargpnvkcvdzi0rh350x")) 18561 (base32 "1agvmw1sj2xy2p0ig2xdivn8i5pjnw93d2kq4hix7s5ysiswnpw4"))
18562 (modules '((guix build utils))) 18562 (modules '((guix build utils)))
18563 (snippet 18563 (snippet
18564 #~(begin 18564 #~(begin
@@ -18576,25 +18576,16 @@ an alternative fork of @url{https://github.com/mattbaird/jsonpatch}.")
18576 (list "TestLogDirectPathMisconfigAttrempDirectPathNotSet" 18576 (list "TestLogDirectPathMisconfigAttrempDirectPathNotSet"
18577 "TestLogDirectPathMisconfigNotOnGCE" 18577 "TestLogDirectPathMisconfigNotOnGCE"
18578 "TestNewClient" 18578 "TestNewClient"
18579 "TestNewTokenSource" 18579 "TestNewTokenSource")
18580 "TestNewTokenSource_WithCredentialJSON")
18581 "|")) 18580 "|"))
18582 #:test-subdirs 18581 #:phases
18583 ;; XXX: Remove when all dependencies are packaged. 18582 #~(modify-phases %standard-phases
18584 #~(list "." 18583 (add-after 'unpack 'remove-integration-tests
18585 "google-api-go-generator/..." 18584 (lambda* (#:key import-path #:allow-other-keys)
18586 "googleapi/..." 18585 ;; Tests require network access and credential to reach external
18587 "impersonate/..." 18586 ;; API.
18588 "internal/..." 18587 (with-directory-excursion (string-append "src/" import-path)
18589 "iterator/..." 18588 (delete-file-recursively "integration-tests")))))))
18590 "option/..."
18591 "support/bundler/..."
18592 "transport"
18593 "transport/grpc"
18594 "transport/http"
18595 "idtoken/..."
18596 "transport/grpc/..."
18597 "transport/http/...")))
18598 (propagated-inputs 18589 (propagated-inputs
18599 (list go-cloud-google-com-go-auth 18590 (list go-cloud-google-com-go-auth
18600 go-cloud-google-com-go-auth-oauth2adapt 18591 go-cloud-google-com-go-auth-oauth2adapt
@@ -18610,7 +18601,7 @@ an alternative fork of @url{https://github.com/mattbaird/jsonpatch}.")
18610 go-golang-org-x-oauth2 18601 go-golang-org-x-oauth2
18611 go-golang-org-x-sync 18602 go-golang-org-x-sync
18612 go-golang-org-x-time 18603 go-golang-org-x-time
18613 ;; go-google-golang-org-genproto-googleapis-bytestream 18604 go-google-golang-org-genproto-googleapis-bytestream
18614 go-google-golang-org-genproto-googleapis-rpc 18605 go-google-golang-org-genproto-googleapis-rpc
18615 go-google-golang-org-grpc 18606 go-google-golang-org-grpc
18616 go-google-golang-org-protobuf)) 18607 go-google-golang-org-protobuf))