diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-14 00:00:00 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-15 14:17:40 +0100 |
| commit | be03b2b4971332eb47e61a3477e43233ac6809fb (patch) | |
| tree | f5673eba28c321ff67983fa59eff0f997f92056e /gnu | |
| parent | 320e6ba97b6045e3be96483af0063d789f9cf1f9 (diff) | |
gnu: go-github-com-miekg-dns: Update to 1.1.72.
* gnu/packages/golang-web.scm (go-github-com-miekg-dns): Update to 1.1.72.
[arguments] <test-flags>: Move skip test logic from phase.
<phases>: Remove 'disable-failing-tests.
Change-Id: I8f4c2fe81badc783b93f61f911400aae45b98d3e
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-web.scm | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index f2f3610aea6..a1099750ee9 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -9984,7 +9984,7 @@ RFC 8737} (tls-alpn-01 challenge), @url{https://tools.ietf.org/html/rfc8823, RFC (define-public go-github-com-miekg-dns (package (name "go-github-com-miekg-dns") - (version "1.1.62") + (version "1.1.72") (source (origin (method git-fetch) @@ -9993,19 +9993,14 @@ RFC 8737} (tls-alpn-01 challenge), @url{https://tools.ietf.org/html/rfc8823, RFC (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0wdsacp4ay6ji72vnszq6ksn5n060z2hv94wgjsn0pr7gpa3nk6c")))) + (base32 "05b9r955fdyak4l6azzv3z2yccmr2srp73b42yjkx3wha41g154b")))) (build-system go-build-system) (arguments (list #:import-path "github.com/miekg/dns" - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'disable-failing-tests - (lambda* (#:key tests? import-path #:allow-other-keys) - (with-directory-excursion (string-append "src/" import-path) - (substitute* (find-files "." "\\_test.go$") - ;; Unable to run test server. - (("TestIsPacketConn") "OffTestIsPacketConn")))))))) + #:test-flags + ;; client_test.go:102: unable to run test server: listen unix + #~(list "-skip" "TestIsPacketConn"))) (propagated-inputs (list go-golang-org-x-tools go-golang-org-x-sys |
