guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 16769a9509dcbade739e01d4375c34a44fe63a63
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 1 13:41:44 2026 +0100
gnu: go-github-com-valyala-fasthttp: Update to 1.70.0.
* gnu/packages/golang-web.scm (go-github-com-valyala-fasthttp): Update to
1.70.0.
[arguments] <test-flags>: Skip only one tests which tries to reach
Internet. Shuffle tests, as seen in projects CI.
[propagated-inputs]: Remove go-github-com-valyala-tcplisten and
go-golang-org-x-text.
[description]: Add more info.
Change-Id: I8363639b0ac211536ed67f5c32080737bc20fe5f
---
gnu/packages/golang-web.scm | 24 +++++++++++-------------
1 file changed, 11 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 7f0adf3762..0a490db852 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -19489,26 +19489,25 @@ tiny,non-intrusive, and encourages use of
@code{net/http} Handlers.")
(define-public go-github-com-valyala-fasthttp
(package
(name "go-github-com-valyala-fasthttp")
- (version "1.58.0")
+ (version "1.70.0")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/valyala/fasthttp")
- (commit (string-append "v" version))))
+ (url "https://github.com/valyala/fasthttp")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0r823fikgyhnmcn322anhs3ivkbzhdgbywvwi81v9kvfhi35plli"))))
+ (base32 "0wr440zsm0jw1f4xy3mpsidp3fivzs37279r1akxdqghfj3xzw07"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/valyala/fasthttp"
#:test-flags
- #~(list "-skip" (string-join
- ;; Network set up is required.
- (list "TestClientConfigureClientFailed"
- "TestDialer_GetDialFunc")
- "|"))
+ #~(list "-shuffle=on"
+ ;; dialer_test.go:231: lookup github.com on [::1]:53: read udp
+ ;; [::1]:52547->[::1]:53: read: connection refused
+ "-skip" "TestDialer_GetDialFunc")
#:phases
#~(modify-phases %standard-phases
(replace 'check
@@ -19521,16 +19520,15 @@ tiny,non-intrusive, and encourages use of
@code{net/http} Handlers.")
(list go-github-com-andybalholm-brotli
go-github-com-klauspost-compress
go-github-com-valyala-bytebufferpool
- go-github-com-valyala-tcplisten
go-golang-org-x-crypto
go-golang-org-x-net
- go-golang-org-x-sys
- go-golang-org-x-text))
+ go-golang-org-x-sys))
(home-page "https://github.com/valyala/fasthttp")
(synopsis "Provides fast HTTP server and client API")
(description
"This package provides a Go module @code{fasthttp} which may be used as
-replacement for native @code{net/http} module.")
+replacement for native @code{net/http} module. It is optimized for high
+performance with zero memory allocations in hot paths.")
(license license:expat)))
(define-public go-github-com-valyala-tcplisten