mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-rcrowley-go-metrics: Update to 0.0.0-20250401214520-65e299d6c5c9.
* gnu/packages/golang-web.scm (go-github-com-rcrowley-go-metrics): Update to 0.0.0-20250401214520-65e299d6c5c9. [arguments] <go>: Use go-1.23. <test-flags>: Skip just affect tests on mentioned problematic systems. Change-Id: I04229ed786ae7515abb9431871334568369f2964
This commit is contained in:
parent
65d096c2e8
commit
91aaac25a3
1 changed files with 16 additions and 7 deletions
|
@ -9291,7 +9291,7 @@ of the specification.")
|
||||||
(define-public go-github-com-rcrowley-go-metrics
|
(define-public go-github-com-rcrowley-go-metrics
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-rcrowley-go-metrics")
|
(name "go-github-com-rcrowley-go-metrics")
|
||||||
(version "0.0.0-20201227073835-cf1acfcdf475")
|
(version "0.0.0-20250401214520-65e299d6c5c9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -9300,14 +9300,23 @@ of the specification.")
|
||||||
(commit (go-version->git-ref version))))
|
(commit (go-version->git-ref version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0s7zab04slz07c7l4h2cqz62qnqah69r6p157vvbd7725a7wzkr0"))))
|
(base32 "1d47289sm3gzjx0ah5wi0gcia40kixfyxyilrdrdzlak8mra94c4"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
(list
|
||||||
|
#:go go-1.23
|
||||||
|
#:import-path "github.com/rcrowley/go-metrics"
|
||||||
|
#:test-flags
|
||||||
;; Arbitrary precision tests are known to be broken on aarch64, ppc64le
|
;; Arbitrary precision tests are known to be broken on aarch64, ppc64le
|
||||||
;; and s390x. See: https://github.com/rcrowley/go-metrics/issues/249
|
;; and s390x. See: https://github.com/rcrowley/go-metrics/issues/249
|
||||||
`(#:tests? ,(not (string-prefix? "aarch64" (or (%current-target-system)
|
#~(list #$@(if (or (target-aarch64?) (target-ppc64le?))
|
||||||
(%current-system))))
|
'("-skip" (string-join
|
||||||
#:import-path "github.com/rcrowley/go-metrics"))
|
(list "TestEWMA1"
|
||||||
|
"TestEWMA5"
|
||||||
|
"TestUniformSampleSnapshot"
|
||||||
|
"TestUniformSampleStatistics")
|
||||||
|
"|"))
|
||||||
|
'()))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-github-com-stathat-go))
|
(list go-github-com-stathat-go))
|
||||||
(home-page "https://github.com/rcrowley/go-metrics")
|
(home-page "https://github.com/rcrowley/go-metrics")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue