mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: go: Update to 1.14.15 [security fixes].
This update will cause more than 300 packages to be rebuilt but due to how Go works we can't graft to fix the issue since we actually need to rebuild dependents so they include a newer version of the Go standard library. Considering the CVEs that this fixes are in great part in the Go standard library we can only proceed and push directly to master. * gnu/packages/golang.scm (go): Update to 1.14.15. [arguments]: Remove more cgo-related failing tests.
This commit is contained in:
parent
fd2751f89f
commit
500189b4d2
1 changed files with 6 additions and 3 deletions
|
@ -235,7 +235,7 @@ (define-public go-1.14
|
||||||
(package
|
(package
|
||||||
(inherit go-1.4)
|
(inherit go-1.4)
|
||||||
(name "go")
|
(name "go")
|
||||||
(version "1.14.10")
|
(version "1.14.15")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -245,7 +245,7 @@ (define-public go-1.14
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0h1nmqzjc0xxpn6n2hjq7692gdqkznagzdmiq9490yzkrrii2lgk"))))
|
"1crh90qkvhlx23hwsi4wxy3l3h8973lr18135y6h1nnzzwr3n3ps"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments go-1.4)
|
(substitute-keyword-arguments (package-arguments go-1.4)
|
||||||
((#:system system)
|
((#:system system)
|
||||||
|
@ -285,7 +285,10 @@ (define-public go-1.14
|
||||||
"cmd/go/testdata/script/cover_cgo.txt"
|
"cmd/go/testdata/script/cover_cgo.txt"
|
||||||
"cmd/go/testdata/script/cover_cgo_xtest.txt"
|
"cmd/go/testdata/script/cover_cgo_xtest.txt"
|
||||||
"cmd/go/testdata/script/cover_cgo_extra_test.txt"
|
"cmd/go/testdata/script/cover_cgo_extra_test.txt"
|
||||||
"cmd/go/testdata/script/cover_cgo_extra_file.txt"))
|
"cmd/go/testdata/script/cover_cgo_extra_file.txt"
|
||||||
|
"cmd/go/testdata/script/cgo_path_space.txt"
|
||||||
|
"cmd/go/testdata/script/ldflag.txt"
|
||||||
|
"cmd/go/testdata/script/cgo_path.txt"))
|
||||||
|
|
||||||
(for-each make-file-writable (find-files "."))
|
(for-each make-file-writable (find-files "."))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue