gnu: gore: Update to 0.6.1.

* gnu/packages/golang-apps.scm (gore): Update to 0.6.1.
[arguments] <go>: Use default go-1.24.
<test-flags>: Skip 4 more tests.

Change-Id: Ifa57d4c1b025c83468dce9d03a910186728d8e59
This commit is contained in:
Sharlatan Hellseher 2025-09-11 15:31:01 +01:00
parent 7f1922891e
commit 7d734b94ca
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -251,20 +251,19 @@ editor.")
(define-public gore (define-public gore
(package (package
(name "gore") (name "gore")
(version "0.6.0") (version "0.6.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/x-motemen/gore") (url "https://github.com/x-motemen/gore")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "0d8ayzni43j1y02g9j2sx1rhml8j1ikbbzmcki2lyi4j0ix5ys7f")))) (base32 "1x67npdwmrpa11xg93756bfbc2mxrbf04pk8dk4i8hx67wr95z0h"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
(list (list
#:go go-1.23 ;required by motemen-go-quickfix
#:import-path "github.com/x-motemen/gore" #:import-path "github.com/x-motemen/gore"
#:install-source? #f #:install-source? #f
#:test-flags #:test-flags
@ -275,9 +274,11 @@ editor.")
(list "TestAction_ArgumentRequired" (list "TestAction_ArgumentRequired"
"TestAction_Clear" "TestAction_Clear"
"TestAction_CommandNotFound" "TestAction_CommandNotFound"
"TestAction_Doc"
"TestAction_Help" "TestAction_Help"
"TestAction_Import" "TestAction_Import"
"TestAction_Quit" "TestAction_Quit"
"TestAction_Type"
"TestSessionEval_AutoImport" "TestSessionEval_AutoImport"
"TestSessionEval_CompileError" "TestSessionEval_CompileError"
"TestSessionEval_Const" "TestSessionEval_Const"
@ -285,6 +286,7 @@ editor.")
"TestSessionEval_Declarations" "TestSessionEval_Declarations"
"TestSessionEval_Func" "TestSessionEval_Func"
"TestSessionEval_Gomod" "TestSessionEval_Gomod"
"TestSessionEval_Gomod_AutoImport"
"TestSessionEval_Gomod_CompleteImport" "TestSessionEval_Gomod_CompleteImport"
"TestSessionEval_Gomod_DeepDir" "TestSessionEval_Gomod_DeepDir"
"TestSessionEval_Gomod_Outside" "TestSessionEval_Gomod_Outside"
@ -296,6 +298,7 @@ editor.")
"TestSessionEval_Struct" "TestSessionEval_Struct"
"TestSessionEval_TokenError" "TestSessionEval_TokenError"
"TestSessionEval_import" "TestSessionEval_import"
"TestSession_ExtraFiles"
"TestSession_IncludePackage" "TestSession_IncludePackage"
"TestSession_completeWord") "TestSession_completeWord")
"|")) "|"))