Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] prometheus: update to 2.48.1.
@ 2023-12-28  3:19 zdykstra
  2024-01-03 16:36 ` [PR REVIEW] " Duncaen
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: zdykstra @ 2023-12-28  3:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 817 bytes --]

There is a new pull request by zdykstra against master on the void-packages repository

https://github.com/zdykstra/void-packages prometheus-2.48.1
https://github.com/void-linux/void-packages/pull/47935

prometheus: update to 2.48.1.
#### Testing the changes
- I tested the changes in this PR: **YES**

The current version of Prometheus in the repos has missing version information. Pointing it to github.com/prometheus/common sets things correctly:

```
# prometheus --version
prometheus, version 2.48.1 (branch: 2.48.1, revision: 2.48.1)
  build user:       VoidLinux
  build date:       20231228-02:47:53
  go version:       go1.21.5
  platform:         linux/amd64
  tags:             netgo,builtinassets
```

A patch file from https://github.com/void-linux/void-packages/pull/47935.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-prometheus-2.48.1-47935.patch --]
[-- Type: text/x-diff, Size: 1884 bytes --]

From 8a4e236c12a4269ebbc2c06b8fc05b535c59202f Mon Sep 17 00:00:00 2001
From: Zach Dykstra <dykstra.zachary@gmail.com>
Date: Wed, 27 Dec 2023 20:47:53 -0600
Subject: [PATCH] prometheus: update to 2.48.1.

---
 srcpkgs/prometheus/template | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/prometheus/template b/srcpkgs/prometheus/template
index ca5a48fcee0c4..eba88add44f5d 100644
--- a/srcpkgs/prometheus/template
+++ b/srcpkgs/prometheus/template
@@ -1,14 +1,15 @@
 # Template file for 'prometheus'
 pkgname=prometheus
-version=2.43.0
-revision=3
+version=2.48.1
+revision=1
 build_style=go
 go_import_path="github.com/prometheus/prometheus"
 go_package="github.com/prometheus/prometheus/cmd/prometheus github.com/prometheus/prometheus/cmd/promtool"
-go_ldflags="-X ${go_import_path}/version.Version=${version}
- -X ${go_import_path}/version.Revision=${version}
- -X ${go_import_path}/version.Branch=${version}
- -X ${go_import_path}/version.BuildUser=VoidLinux"
+go_ldflags="-X github.com/prometheus/common/version.Version=${version}
+ -X github.com/prometheus/common/version.Revision=${version}
+ -X github.com/prometheus/common/version.Branch=${version}
+ -X github.com/prometheus/common/version.BuildDate=$(date -u "+%Y%m%d-%H:%M:%S")
+ -X github.com/prometheus/common/version.BuildUser=VoidLinux"
 go_build_tags="netgo,builtinassets"
 hostmakedepends="yarn"
 conf_files="/etc/prometheus/prometheus.yml"
@@ -18,7 +19,7 @@ license="Apache-2.0, MIT"
 homepage="https://prometheus.io/"
 changelog="https://raw.githubusercontent.com/prometheus/prometheus/master/CHANGELOG.md"
 distfiles="https://github.com/prometheus/prometheus/archive/v${version}.tar.gz"
-checksum=0cd8860e5f10d0ecb35d20d23252ddc459e8319882dc163bf71b723e3bcafd71
+checksum=59383d09f7a2a97461a7d3df4fd387d0a59229125bf52e8da2b075faa8cbdf81
 
 system_accounts="_prometheus"
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] prometheus: update to 2.48.1.
  2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
@ 2024-01-03 16:36 ` Duncaen
  2024-01-03 16:57 ` zdykstra
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Duncaen @ 2024-01-03 16:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 204 bytes --]

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/47935#discussion_r1440658819

Comment:
    date --date "@$SOURCE_DATE_EPOCH" "+%Y%m%d-%H:%M:%S"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] prometheus: update to 2.48.1.
  2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
  2024-01-03 16:36 ` [PR REVIEW] " Duncaen
@ 2024-01-03 16:57 ` zdykstra
  2024-01-03 16:57 ` [PR PATCH] [Updated] " zdykstra
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: zdykstra @ 2024-01-03 16:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 186 bytes --]

New review comment by zdykstra on void-packages repository

https://github.com/void-linux/void-packages/pull/47935#discussion_r1440679235

Comment:
Ahh nice. Didn't realize we set that.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] prometheus: update to 2.48.1.
  2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
  2024-01-03 16:36 ` [PR REVIEW] " Duncaen
  2024-01-03 16:57 ` zdykstra
@ 2024-01-03 16:57 ` zdykstra
  2024-01-15 16:09 ` zdykstra
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: zdykstra @ 2024-01-03 16:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 833 bytes --]

There is an updated pull request by zdykstra against master on the void-packages repository

https://github.com/zdykstra/void-packages prometheus-2.48.1
https://github.com/void-linux/void-packages/pull/47935

prometheus: update to 2.48.1.
#### Testing the changes
- I tested the changes in this PR: **YES**

The current package of Prometheus in the repos has missing version information. Pointing Version flags to github.com/prometheus/common sets things correctly:

```
# prometheus --version
prometheus, version 2.48.1 (branch: 2.48.1, revision: 2.48.1)
  build user:       VoidLinux
  build date:       20231228-02:47:53
  go version:       go1.21.5
  platform:         linux/amd64
  tags:             netgo,builtinassets
```

A patch file from https://github.com/void-linux/void-packages/pull/47935.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-prometheus-2.48.1-47935.patch --]
[-- Type: text/x-diff, Size: 1910 bytes --]

From 2bd30f3e1ef993dda75f33588e9f7f1a84396238 Mon Sep 17 00:00:00 2001
From: Zach Dykstra <dykstra.zachary@gmail.com>
Date: Wed, 27 Dec 2023 20:47:53 -0600
Subject: [PATCH] prometheus: update to 2.48.1.

---
 srcpkgs/prometheus/template | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/prometheus/template b/srcpkgs/prometheus/template
index ca5a48fcee0c4..b1fef3a664b04 100644
--- a/srcpkgs/prometheus/template
+++ b/srcpkgs/prometheus/template
@@ -1,14 +1,15 @@
 # Template file for 'prometheus'
 pkgname=prometheus
-version=2.43.0
-revision=3
+version=2.48.1
+revision=1
 build_style=go
 go_import_path="github.com/prometheus/prometheus"
 go_package="github.com/prometheus/prometheus/cmd/prometheus github.com/prometheus/prometheus/cmd/promtool"
-go_ldflags="-X ${go_import_path}/version.Version=${version}
- -X ${go_import_path}/version.Revision=${version}
- -X ${go_import_path}/version.Branch=${version}
- -X ${go_import_path}/version.BuildUser=VoidLinux"
+go_ldflags="-X github.com/prometheus/common/version.Version=${version}
+ -X github.com/prometheus/common/version.Revision=${version}
+ -X github.com/prometheus/common/version.Branch=${version}
+ -X github.com/prometheus/common/version.BuildDate=$(date --date "@$SOURCE_DATE_EPOCH" "+%Y%m%d-%H:%M:%S")
+ -X github.com/prometheus/common/version.BuildUser=VoidLinux"
 go_build_tags="netgo,builtinassets"
 hostmakedepends="yarn"
 conf_files="/etc/prometheus/prometheus.yml"
@@ -18,7 +19,7 @@ license="Apache-2.0, MIT"
 homepage="https://prometheus.io/"
 changelog="https://raw.githubusercontent.com/prometheus/prometheus/master/CHANGELOG.md"
 distfiles="https://github.com/prometheus/prometheus/archive/v${version}.tar.gz"
-checksum=0cd8860e5f10d0ecb35d20d23252ddc459e8319882dc163bf71b723e3bcafd71
+checksum=59383d09f7a2a97461a7d3df4fd387d0a59229125bf52e8da2b075faa8cbdf81
 
 system_accounts="_prometheus"
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] prometheus: update to 2.48.1.
  2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
                   ` (2 preceding siblings ...)
  2024-01-03 16:57 ` [PR PATCH] [Updated] " zdykstra
@ 2024-01-15 16:09 ` zdykstra
  2024-01-15 18:13 ` [PR PATCH] [Updated] prometheus: update to 2.49.0 zdykstra
  2024-01-29 15:24 ` [PR PATCH] [Merged]: " ahesford
  5 siblings, 0 replies; 7+ messages in thread
From: zdykstra @ 2024-01-15 16:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 833 bytes --]

There is an updated pull request by zdykstra against master on the void-packages repository

https://github.com/zdykstra/void-packages prometheus-2.48.1
https://github.com/void-linux/void-packages/pull/47935

prometheus: update to 2.48.1.
#### Testing the changes
- I tested the changes in this PR: **YES**

The current package of Prometheus in the repos has missing version information. Pointing Version flags to github.com/prometheus/common sets things correctly:

```
# prometheus --version
prometheus, version 2.48.1 (branch: 2.48.1, revision: 2.48.1)
  build user:       VoidLinux
  build date:       20231228-02:47:53
  go version:       go1.21.5
  platform:         linux/amd64
  tags:             netgo,builtinassets
```

A patch file from https://github.com/void-linux/void-packages/pull/47935.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-prometheus-2.48.1-47935.patch --]
[-- Type: text/x-diff, Size: 1910 bytes --]

From 0a916c841d06618be231e6a1fc8822818cc090de Mon Sep 17 00:00:00 2001
From: Zach Dykstra <dykstra.zachary@gmail.com>
Date: Wed, 27 Dec 2023 20:47:53 -0600
Subject: [PATCH] prometheus: update to 2.49.0.

---
 srcpkgs/prometheus/template | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/prometheus/template b/srcpkgs/prometheus/template
index ca5a48fcee0c4..a9959fc44cdff 100644
--- a/srcpkgs/prometheus/template
+++ b/srcpkgs/prometheus/template
@@ -1,14 +1,15 @@
 # Template file for 'prometheus'
 pkgname=prometheus
-version=2.43.0
-revision=3
+version=2.49.0
+revision=1
 build_style=go
 go_import_path="github.com/prometheus/prometheus"
 go_package="github.com/prometheus/prometheus/cmd/prometheus github.com/prometheus/prometheus/cmd/promtool"
-go_ldflags="-X ${go_import_path}/version.Version=${version}
- -X ${go_import_path}/version.Revision=${version}
- -X ${go_import_path}/version.Branch=${version}
- -X ${go_import_path}/version.BuildUser=VoidLinux"
+go_ldflags="-X github.com/prometheus/common/version.Version=${version}
+ -X github.com/prometheus/common/version.Revision=${version}
+ -X github.com/prometheus/common/version.Branch=${version}
+ -X github.com/prometheus/common/version.BuildDate=$(date --date "@$SOURCE_DATE_EPOCH" "+%Y%m%d-%H:%M:%S")
+ -X github.com/prometheus/common/version.BuildUser=VoidLinux"
 go_build_tags="netgo,builtinassets"
 hostmakedepends="yarn"
 conf_files="/etc/prometheus/prometheus.yml"
@@ -18,7 +19,7 @@ license="Apache-2.0, MIT"
 homepage="https://prometheus.io/"
 changelog="https://raw.githubusercontent.com/prometheus/prometheus/master/CHANGELOG.md"
 distfiles="https://github.com/prometheus/prometheus/archive/v${version}.tar.gz"
-checksum=0cd8860e5f10d0ecb35d20d23252ddc459e8319882dc163bf71b723e3bcafd71
+checksum=ce401ebfa25d2aa5caf4a54f4633f4abe5c3687f2975beb15c3512f7d6cb5ca4
 
 system_accounts="_prometheus"
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] prometheus: update to 2.49.0.
  2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
                   ` (3 preceding siblings ...)
  2024-01-15 16:09 ` zdykstra
@ 2024-01-15 18:13 ` zdykstra
  2024-01-29 15:24 ` [PR PATCH] [Merged]: " ahesford
  5 siblings, 0 replies; 7+ messages in thread
From: zdykstra @ 2024-01-15 18:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 833 bytes --]

There is an updated pull request by zdykstra against master on the void-packages repository

https://github.com/zdykstra/void-packages prometheus-2.48.1
https://github.com/void-linux/void-packages/pull/47935

prometheus: update to 2.49.0.
#### Testing the changes
- I tested the changes in this PR: **YES**

The current package of Prometheus in the repos has missing version information. Pointing Version flags to github.com/prometheus/common sets things correctly:

```
# prometheus --version
prometheus, version 2.48.1 (branch: 2.48.1, revision: 2.48.1)
  build user:       VoidLinux
  build date:       20231228-02:47:53
  go version:       go1.21.5
  platform:         linux/amd64
  tags:             netgo,builtinassets
```

A patch file from https://github.com/void-linux/void-packages/pull/47935.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-prometheus-2.48.1-47935.patch --]
[-- Type: text/x-diff, Size: 1910 bytes --]

From 8f5921a923cea0bef944da4a7ece0e47c43a91d1 Mon Sep 17 00:00:00 2001
From: Zach Dykstra <dykstra.zachary@gmail.com>
Date: Wed, 27 Dec 2023 20:47:53 -0600
Subject: [PATCH] prometheus: update to 2.49.1.

---
 srcpkgs/prometheus/template | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/prometheus/template b/srcpkgs/prometheus/template
index ca5a48fcee0c4..03db7348f2d59 100644
--- a/srcpkgs/prometheus/template
+++ b/srcpkgs/prometheus/template
@@ -1,14 +1,15 @@
 # Template file for 'prometheus'
 pkgname=prometheus
-version=2.43.0
-revision=3
+version=2.49.1
+revision=1
 build_style=go
 go_import_path="github.com/prometheus/prometheus"
 go_package="github.com/prometheus/prometheus/cmd/prometheus github.com/prometheus/prometheus/cmd/promtool"
-go_ldflags="-X ${go_import_path}/version.Version=${version}
- -X ${go_import_path}/version.Revision=${version}
- -X ${go_import_path}/version.Branch=${version}
- -X ${go_import_path}/version.BuildUser=VoidLinux"
+go_ldflags="-X github.com/prometheus/common/version.Version=${version}
+ -X github.com/prometheus/common/version.Revision=${version}
+ -X github.com/prometheus/common/version.Branch=${version}
+ -X github.com/prometheus/common/version.BuildDate=$(date --date "@$SOURCE_DATE_EPOCH" "+%Y%m%d-%H:%M:%S")
+ -X github.com/prometheus/common/version.BuildUser=VoidLinux"
 go_build_tags="netgo,builtinassets"
 hostmakedepends="yarn"
 conf_files="/etc/prometheus/prometheus.yml"
@@ -18,7 +19,7 @@ license="Apache-2.0, MIT"
 homepage="https://prometheus.io/"
 changelog="https://raw.githubusercontent.com/prometheus/prometheus/master/CHANGELOG.md"
 distfiles="https://github.com/prometheus/prometheus/archive/v${version}.tar.gz"
-checksum=0cd8860e5f10d0ecb35d20d23252ddc459e8319882dc163bf71b723e3bcafd71
+checksum=985d7f45ed3d16e23a30eae490c17911518fae96cba0245d493eb07097a10b3b
 
 system_accounts="_prometheus"
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Merged]: prometheus: update to 2.49.0.
  2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
                   ` (4 preceding siblings ...)
  2024-01-15 18:13 ` [PR PATCH] [Updated] prometheus: update to 2.49.0 zdykstra
@ 2024-01-29 15:24 ` ahesford
  5 siblings, 0 replies; 7+ messages in thread
From: ahesford @ 2024-01-29 15:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 665 bytes --]

There's a merged pull request on the void-packages repository

prometheus: update to 2.49.0.
https://github.com/void-linux/void-packages/pull/47935

Description:
#### Testing the changes
- I tested the changes in this PR: **YES**

The current package of Prometheus in the repos has missing version information. Pointing Version flags to github.com/prometheus/common sets things correctly:

```
# prometheus --version
prometheus, version 2.48.1 (branch: 2.48.1, revision: 2.48.1)
  build user:       VoidLinux
  build date:       20231228-02:47:53
  go version:       go1.21.5
  platform:         linux/amd64
  tags:             netgo,builtinassets
```

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-01-29 15:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-28  3:19 [PR PATCH] prometheus: update to 2.48.1 zdykstra
2024-01-03 16:36 ` [PR REVIEW] " Duncaen
2024-01-03 16:57 ` zdykstra
2024-01-03 16:57 ` [PR PATCH] [Updated] " zdykstra
2024-01-15 16:09 ` zdykstra
2024-01-15 18:13 ` [PR PATCH] [Updated] prometheus: update to 2.49.0 zdykstra
2024-01-29 15:24 ` [PR PATCH] [Merged]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).