guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 4b6a6e39ad0e76412ceaed4e04807f7f6044269c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 10 16:04:32 2026 +0000
gnu: go-golang-org-x-net: Update to 0.50.0.
* gnu/packages/golang-build.scm (go-golang-org-x-net): Update to 0.50.0.
[arguments] <test-flags>: Skip one more test.
Change-Id: I2a37077e622bbd97f593f40b02b4832fb66e5988
---
gnu/packages/golang-build.scm | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 0f76eea000..aeeb708905 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -1042,25 +1042,31 @@ loading algorithms.")
(define-public go-golang-org-x-net
(package
(name "go-golang-org-x-net")
- (version "0.46.0")
+ (version "0.50.0")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://go.googlesource.com/net")
- (commit (string-append "v" version))))
+ (url "https://go.googlesource.com/net")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0zb45fmiwsi8nq56wfzk83q7ksqk8jaw8rlpnxv929c419gi8h0s"))))
+ (base32 "0azrbdpydjdjg63rj51blwjlqaplwbd5yi9dy4fyxd38wm36yyq3"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "golang.org/x/net"
#:test-flags
- ;; Golang does not support "-race" on ARM, one test fails with error:
- ;; ThreadSanitizer: unsupported VMA range.
- #~(list #$@(if (target-arm?) '("-skip" "TestRace") '()))))
+ #~(list "-skip" (string-join
+ ;; gotrack_test.go:24: did not see panic from check in
+ ;; other goroutine
+ (list "TestGoroutineLock"
+ ;; Golang does not support "-race" on ARM, one
+ ;; test fails with error: ThreadSanitizer:
+ ;; unsupported VMA range.
+ #$@(if (target-arm?) '("TestRace") '()))
+ "|"))))
(propagated-inputs
(list go-golang-org-x-crypto
go-golang-org-x-sys