guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 5f5f2c3b4bf454fd379389dd8cfa8776dff10c0f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 10 12:44:50 2025 +0100
gnu: go-github-com-quic-go-qpack: Update to 0.5.1.
* gnu/packages/golang-web.scm (go-github-com-quic-go-qpack): Update to
0.5.1.
[arguments] <tests?>: Enable the most of them.
<test-subdirs>: Run test only from the project's root.
[propagated-inputs]: Remove go-github-com-onsi-ginkgo and
go-github-com-onsi-gomega.
[native-inputs]: Add go-github-com-stretchr-testify.
[description]: Fix fill column.
Change-Id: Ia891acf16b9bef63a582fd9e24769f10ad0c50b0
---
gnu/packages/golang-web.scm | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 2b5c40d17d..fe66fd9973 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -9757,7 +9757,7 @@ characters incorrectly escaped by net/url.")
(define-public go-github-com-quic-go-qpack
(package
(name "go-github-com-quic-go-qpack")
- (version "0.4.0")
+ (version "0.5.1")
(source
(origin
(method git-fetch)
@@ -9766,25 +9766,26 @@ characters incorrectly escaped by net/url.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "00mjz445hhx4yar5l8p21bpp4d06jyg2ajw0ax7bh64d37l4kx39"))))
+ (base32 "0aj0vv89l94y3clhsjcm1ham6mysmls4yhv7602cwlyag61hfrh3"))))
(build-system go-build-system)
(arguments
(list
- ;; Tests require ginkgo v2.
- #:tests? #f
- #:import-path "github.com/quic-go/qpack"))
+ #:import-path "github.com/quic-go/qpack"
+ ;; XXX: integrationtests/interop contains git submodule of
+ ;; <https://github.com/qpackers/qifs>.
+ #:test-subdirs #~(list ".")))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
(propagated-inputs
- (list go-github-com-onsi-ginkgo
- go-github-com-onsi-gomega
- go-golang-org-x-net))
+ (list go-golang-org-x-net))
(home-page "https://github.com/quic-go/qpack")
(synopsis "Minimal QPACK (RFC 9204) implementation for Go")
(description
- "A minimal QPACK (RFC 9204) implementation in Go. It is minimal in the
sense
-that it doesn't use the dynamic table at all, but just the static table and
(Huffman
-encoded) string literals. Wherever possible, it reuses code from the
-@url{https://github.com/golang/net/tree/master/http2/hpack, HPACK
implementation in
-the Go standard library}.")
+ "A minimal QPACK (RFC 9204) implementation in Go. It is minimal in the
+sense that it doesn't use the dynamic table at all, but just the static table
+and (Huffman encoded) string literals. Wherever possible, it reuses code from
+the @url{https://github.com/golang/net/tree/master/http2/hpack, HPACK
+implementation in the Go standard library}.")
(license license:expat)))
(define-public go-github-com-quic-go-quic-go