sharlatan pushed a commit to branch go-team
in repository guix.
commit d99f7337ba5e537740a266ca886a4a4fb3427547
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 18 12:00:26 2025 +0000
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
---
gnu/packages/golang-web.scm | 16 ++++------------
1 file changed, 4 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 194d1f4cb9..9c1ef3f183 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -6190,7 +6190,7 @@ gzip the response body, for clients which support it.")
(define-public go-github-com-opentracing-contrib-go-stdlib
(package
(name "go-github-com-opentracing-contrib-go-stdlib")
- (version "1.0.0")
+ (version "1.1.0")
(source
(origin
(method git-fetch)
@@ -6199,20 +6199,12 @@ gzip the response body, for clients which support it.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1ssnfhbpljxy2v3nsw9aqmh7xlky49dpfwj275aj0b576w46ys6m"))))
+ (base32 "18ws81a30igmff4pnqfvc2sv8hcy5gjb2saqz00mgz64y8nvjfx7"))))
(build-system go-build-system)
(arguments
(list
- #:import-path "github.com/opentracing-contrib/go-stdlib"
- #:phases
- #~(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" "./..."))))))))
+ #:skip-build? #t
+ #:import-path "github.com/opentracing-contrib/go-stdlib"))
(propagated-inputs
(list go-github-com-opentracing-opentracing-go))
(home-page "https://github.com/opentracing-contrib/go-stdlib")