guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 9debdc9ae667560e8b8ceb79e1988f81410bd0f4
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Feb 9 22:13:39 2026 +0000
gnu: go-github-com-prometheus-common: Update to 0.67.5.
* gnu/packages/prometheus.scm (go-github-com-prometheus-common): Update to
0.67.5.
[propagated-inputs]: Remove go-github-com-google-go-cmp and
go-gopkg-in-yaml-v2; add
go-github-com-golang-jwt-jwt-v5, go-github-com-google-uuid, and
go-go-yaml-in-yaml-v2.
[native-inputs]: Add go-github-com-google-go-cmp.
Change-Id: I4a50eb159e1609439ba9580aadc49c19e049b7cb
---
gnu/packages/prometheus.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/prometheus.scm b/gnu/packages/prometheus.scm
index 6b03db12b3..6777c65297 100644
--- a/gnu/packages/prometheus.scm
+++ b/gnu/packages/prometheus.scm
@@ -411,16 +411,16 @@ Prometheus metrics.")
(define-public go-github-com-prometheus-common
(package
(name "go-github-com-prometheus-common")
- (version "0.63.0")
+ (version "0.67.5")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/prometheus/common")
- (commit (string-append "v" version))))
+ (url "https://github.com/prometheus/common")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0jf6wqx16zipp2dyjd6n4fdkp5i1hh4ranjcm5iph5rdvcry06m3"))
+ (base32 "0bkv73aq8ryaybvya1x5i2gvl5iffiysw5viagcrvak7ffrb09wp"))
(modules '((guix build utils)))
(snippet
#~(begin
@@ -455,18 +455,20 @@ Prometheus metrics.")
"./route/..."
"./server/...")))
(native-inputs
- (list go-github-com-stretchr-testify))
+ (list go-github-com-google-go-cmp
+ go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-alecthomas-kingpin-v2
- go-github-com-google-go-cmp
+ go-github-com-golang-jwt-jwt-v5
+ go-github-com-google-uuid
go-github-com-julienschmidt-httprouter
go-github-com-munnerz-goautoneg
go-github-com-mwitkow-go-conntrack
go-github-com-prometheus-client-model
+ go-go-yaml-in-yaml-v2
go-golang-org-x-net
go-golang-org-x-oauth2
- go-google-golang-org-protobuf
- go-gopkg-in-yaml-v2))
+ go-google-golang-org-protobuf))
(home-page "https://github.com/prometheus/common")
(synopsis "Shared Prometheus Golang components")
(description