summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-06-02 08:54:05 +0900
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-11 21:42:39 +0100
commitd8af4f1064135dec7e7c7efdad9ecb18d7fee906 (patch)
tree7f9e92ed1c1b8f5bdac96f177e7409644e6a0c18 /gnu/packages
parent553c58e9a038b7d285ecf46bf0c8a6c1c3ae8909 (diff)
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>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-build.scm16
1 files changed, 13 insertions, 3 deletions
diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 9d8134c25d7..edde2d0ffe5 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -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