gnu: go-golang-org-x-text: Update to 0.25.0.

* gnu/packages/golang-build.scm (go-golang-org-x-text): Update to 0.25.0.
[arguments] <#:test-flags>: New argument.

Change-Id: I11e50e895d05ffc4be8fb43d70d02e2bb22f4ba0
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Maxim Cournoyer 2025-06-02 08:54:05 +09:00 committed by Sharlatan Hellseher
parent 553c58e9a0
commit d8af4f1064
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1034,7 +1034,7 @@ terminals, as commonly found on Unix systems.")
(define-public go-golang-org-x-text
(package
(name "go-golang-org-x-text")
(version "0.21.0")
(version "0.25.0")
(source
(origin
(method git-fetch)
@ -1043,12 +1043,22 @@ terminals, as commonly found on Unix systems.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "02zh18l5rlr8hg8ipn9r5m4rir3hskp80pzr4ljyfmgy72gxbhlv"))))
(base32 "1r9532ml0psfby89agf20q23qzwfikhydl8q77ad5y73xvdx89lf"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "golang.org/x/text"))
#:import-path "golang.org/x/text"
#:test-flags
#~(list "-skip"
(string-join
(list
;; TestLinking fails with error: "dict_test.go:19: size(base)
;; - size(compact) = 4929873 - 4898852 = was 31021; want >
;; 1.5MB
"TestLinking"
"TestFullCycle") ;requires go module support
"|"))))
(home-page "https://go.googlesource.com/text")
(native-inputs
(list go-golang-org-x-mod-bootstrap