gnu: go-github-com-opentracing-contrib-go-stdlib: Update to 1.1.0.

* gnu/packages/golang-web.scm (go-github-com-opentracing-contrib-go-stdlib): Update to 1.1.0.
[arguments] <skip-build?>: No go files in project's root.
<phases>: Use default 'check.

Change-Id: Iee586eea0184e3bd27d0440a3ebc5b69ff2135ba
This commit is contained in:
Sharlatan Hellseher 2025-02-18 12:00:26 +00:00
parent a69a033066
commit 4d8275e6d1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6190,7 +6190,7 @@ gzip the response body, for clients which support it.")
(define-public go-github-com-opentracing-contrib-go-stdlib (define-public go-github-com-opentracing-contrib-go-stdlib
(package (package
(name "go-github-com-opentracing-contrib-go-stdlib") (name "go-github-com-opentracing-contrib-go-stdlib")
(version "1.0.0") (version "1.1.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -6199,20 +6199,12 @@ gzip the response body, for clients which support it.")
(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 "1ssnfhbpljxy2v3nsw9aqmh7xlky49dpfwj275aj0b576w46ys6m")))) (base32 "18ws81a30igmff4pnqfvc2sv8hcy5gjb2saqz00mgz64y8nvjfx7"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
(list (list
#:import-path "github.com/opentracing-contrib/go-stdlib" #:skip-build? #t
#:phases #:import-path "github.com/opentracing-contrib/go-stdlib"))
#~(modify-phases %standard-phases
;; XXX: Workaround for go-build-system's lack of Go modules support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(propagated-inputs (propagated-inputs
(list go-github-com-opentracing-opentracing-go)) (list go-github-com-opentracing-opentracing-go))
(home-page "https://github.com/opentracing-contrib/go-stdlib") (home-page "https://github.com/opentracing-contrib/go-stdlib")