Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: devpod-0.5.10
@ 2024-05-28 18:37 subado
  2024-05-28 21:38 ` [PR REVIEW] " abenson
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: subado @ 2024-05-28 18:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/subado/void-packages devpod
https://github.com/void-linux/void-packages/pull/50569

New package: devpod-0.5.10
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (X86_64-GLIB)


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

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

From 49726ff2389c80a8865c242e01698645ff03a531 Mon Sep 17 00:00:00 2001
From: subado <subado.main@gmail.com>
Date: Tue, 28 May 2024 22:27:36 +0400
Subject: [PATCH] New package: devpod-0.5.10

---
 srcpkgs/devpod/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/devpod/template

diff --git a/srcpkgs/devpod/template b/srcpkgs/devpod/template
new file mode 100644
index 00000000000000..e23f8d8afd0539
--- /dev/null
+++ b/srcpkgs/devpod/template
@@ -0,0 +1,26 @@
+# Template file for 'devpod'
+pkgname=devpod
+version=0.5.10
+revision=1
+archs="x86_64* armv6l*"
+makedepends="go"
+short_desc="Client-only tool to create reproducible developer environments"
+maintainer="subado <subado.main@gmail.com>"
+license="MPL-2.0"
+homepage="https://devpod.sh"
+distfiles="https://github.com/loft-sh/devpod/archive/refs/tags/v${version}.tar.gz"
+checksum=1fc1d6f273f6cc46f476a746e48acd56d5b8136846071140668c295a74f1e754
+wrksrc="${pkgname}-${version}"
+
+do_build() {
+	CGO_ENABLED=0 go build -ldflags "-s -w" -o "${pkgname}"
+}
+
+do_install() {
+	vmkdir /usr/bin
+	vbin "$pkgname"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
@ 2024-05-28 21:38 ` abenson
  2024-05-28 21:39 ` abenson
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: abenson @ 2024-05-28 21:38 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1617918701

Comment:
Why is this limited?

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
  2024-05-28 21:38 ` [PR REVIEW] " abenson
@ 2024-05-28 21:39 ` abenson
  2024-05-28 21:39 ` abenson
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: abenson @ 2024-05-28 21:39 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1617919053

Comment:
This isn't needed.

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
  2024-05-28 21:38 ` [PR REVIEW] " abenson
  2024-05-28 21:39 ` abenson
@ 2024-05-28 21:39 ` abenson
  2024-05-28 21:39 ` abenson
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: abenson @ 2024-05-28 21:39 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1617919837

Comment:
Why can't you use the go build-style?

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (2 preceding siblings ...)
  2024-05-28 21:39 ` abenson
@ 2024-05-28 21:39 ` abenson
  2024-05-29  8:45 ` [PR PATCH] [Updated] " subado
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: abenson @ 2024-05-28 21:39 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1617919837

Comment:
Why can't you use `build_style=go`?

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

* Re: [PR PATCH] [Updated] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (3 preceding siblings ...)
  2024-05-28 21:39 ` abenson
@ 2024-05-29  8:45 ` subado
  2024-05-29  8:48 ` subado
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: subado @ 2024-05-29  8:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/subado/void-packages devpod
https://github.com/void-linux/void-packages/pull/50569

New package: devpod-0.5.10
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (X86_64-GLIB)


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

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

From 49726ff2389c80a8865c242e01698645ff03a531 Mon Sep 17 00:00:00 2001
From: subado <subado.main@gmail.com>
Date: Tue, 28 May 2024 22:27:36 +0400
Subject: [PATCH 1/2] New package: devpod-0.5.10

---
 srcpkgs/devpod/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/devpod/template

diff --git a/srcpkgs/devpod/template b/srcpkgs/devpod/template
new file mode 100644
index 00000000000000..e23f8d8afd0539
--- /dev/null
+++ b/srcpkgs/devpod/template
@@ -0,0 +1,26 @@
+# Template file for 'devpod'
+pkgname=devpod
+version=0.5.10
+revision=1
+archs="x86_64* armv6l*"
+makedepends="go"
+short_desc="Client-only tool to create reproducible developer environments"
+maintainer="subado <subado.main@gmail.com>"
+license="MPL-2.0"
+homepage="https://devpod.sh"
+distfiles="https://github.com/loft-sh/devpod/archive/refs/tags/v${version}.tar.gz"
+checksum=1fc1d6f273f6cc46f476a746e48acd56d5b8136846071140668c295a74f1e754
+wrksrc="${pkgname}-${version}"
+
+do_build() {
+	CGO_ENABLED=0 go build -ldflags "-s -w" -o "${pkgname}"
+}
+
+do_install() {
+	vmkdir /usr/bin
+	vbin "$pkgname"
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 2d1960aa893fa63185fc5411cc43fff2fc91a920 Mon Sep 17 00:00:00 2001
From: subado <subado.main@gmail.com>
Date: Wed, 29 May 2024 12:44:50 +0400
Subject: [PATCH 2/2] Get rid of useless commands

---
 srcpkgs/devpod/template | 2 --
 1 file changed, 2 deletions(-)

diff --git a/srcpkgs/devpod/template b/srcpkgs/devpod/template
index e23f8d8afd0539..89680ff250889b 100644
--- a/srcpkgs/devpod/template
+++ b/srcpkgs/devpod/template
@@ -10,14 +10,12 @@ license="MPL-2.0"
 homepage="https://devpod.sh"
 distfiles="https://github.com/loft-sh/devpod/archive/refs/tags/v${version}.tar.gz"
 checksum=1fc1d6f273f6cc46f476a746e48acd56d5b8136846071140668c295a74f1e754
-wrksrc="${pkgname}-${version}"
 
 do_build() {
 	CGO_ENABLED=0 go build -ldflags "-s -w" -o "${pkgname}"
 }
 
 do_install() {
-	vmkdir /usr/bin
 	vbin "$pkgname"
 }
 

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

* Re: [PR PATCH] [Updated] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (4 preceding siblings ...)
  2024-05-29  8:45 ` [PR PATCH] [Updated] " subado
@ 2024-05-29  8:48 ` subado
  2024-05-29  9:42 ` subado
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: subado @ 2024-05-29  8:48 UTC (permalink / raw)
  To: ml

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

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

https://github.com/subado/void-packages devpod
https://github.com/void-linux/void-packages/pull/50569

New package: devpod-0.5.10
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (X86_64-GLIB)


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

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

From 49726ff2389c80a8865c242e01698645ff03a531 Mon Sep 17 00:00:00 2001
From: subado <subado.main@gmail.com>
Date: Tue, 28 May 2024 22:27:36 +0400
Subject: [PATCH] New package: devpod-0.5.10

---
 srcpkgs/devpod/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/devpod/template

diff --git a/srcpkgs/devpod/template b/srcpkgs/devpod/template
new file mode 100644
index 00000000000000..e23f8d8afd0539
--- /dev/null
+++ b/srcpkgs/devpod/template
@@ -0,0 +1,26 @@
+# Template file for 'devpod'
+pkgname=devpod
+version=0.5.10
+revision=1
+archs="x86_64* armv6l*"
+makedepends="go"
+short_desc="Client-only tool to create reproducible developer environments"
+maintainer="subado <subado.main@gmail.com>"
+license="MPL-2.0"
+homepage="https://devpod.sh"
+distfiles="https://github.com/loft-sh/devpod/archive/refs/tags/v${version}.tar.gz"
+checksum=1fc1d6f273f6cc46f476a746e48acd56d5b8136846071140668c295a74f1e754
+wrksrc="${pkgname}-${version}"
+
+do_build() {
+	CGO_ENABLED=0 go build -ldflags "-s -w" -o "${pkgname}"
+}
+
+do_install() {
+	vmkdir /usr/bin
+	vbin "$pkgname"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (5 preceding siblings ...)
  2024-05-29  8:48 ` subado
@ 2024-05-29  9:42 ` subado
  2024-05-29 11:03 ` [PR REVIEW] " 0x5c
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: subado @ 2024-05-29  9:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/subado/void-packages devpod
https://github.com/void-linux/void-packages/pull/50569

New package: devpod-0.5.10
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (X86_64-GLIB)


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

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

From 73afa15fcea8590667efa1d4711b6b2e65100269 Mon Sep 17 00:00:00 2001
From: subado <subado.main@gmail.com>
Date: Tue, 28 May 2024 22:27:36 +0400
Subject: [PATCH 1/2] New package: devpod-0.5.10

---
 srcpkgs/devpod/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/devpod/template

diff --git a/srcpkgs/devpod/template b/srcpkgs/devpod/template
new file mode 100644
index 00000000000000..2cbe63b9f44edc
--- /dev/null
+++ b/srcpkgs/devpod/template
@@ -0,0 +1,13 @@
+# Template file for 'devpod'
+pkgname=devpod
+version=0.5.10
+revision=1
+build_style=go
+go_import_path="github.com/loft-sh/devpod"
+go_build_tags="!cgo"
+short_desc="Client-only tool to create reproducible developer environments"
+maintainer="subado <subado.main@gmail.com>"
+license="MPL-2.0"
+homepage="https://devpod.sh"
+distfiles="https://github.com/loft-sh/devpod/archive/refs/tags/v${version}.tar.gz"
+checksum=1fc1d6f273f6cc46f476a746e48acd56d5b8136846071140668c295a74f1e754

From e261f238d3fc96333d19b4adf640c1e3d6dbe0cd Mon Sep 17 00:00:00 2001
From: subado <subado.main@gmail.com>
Date: Wed, 29 May 2024 13:42:03 +0400
Subject: [PATCH 2/2] go: update to 1.22.2

---
 srcpkgs/go/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/go/template b/srcpkgs/go/template
index d043e6ce4296dc..2ca8de01832f5e 100644
--- a/srcpkgs/go/template
+++ b/srcpkgs/go/template
@@ -1,6 +1,6 @@
 # Template file for 'go'
 pkgname=go
-version=1.22.0
+version=1.22.2
 revision=1
 create_wrksrc=yes
 build_wrksrc=go
@@ -12,7 +12,7 @@ license="BSD-3-Clause"
 homepage="https://go.dev/"
 changelog="https://go.dev/doc/devel/release.html"
 distfiles="https://go.dev/dl/go${version}.src.tar.gz"
-checksum=4d196c3d41a0d6c1dfc64d04e3cc1f608b0c436bd87b7060ce3e23234e1f4d5c
+checksum=374ea82b289ec738e968267cac59c7d5ff180f9492250254784b2044e90df5a9
 nostrip=yes
 noverifyrdeps=yes
 # on CI it tries to use `git submodule`, which is not part of chroot-git

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (6 preceding siblings ...)
  2024-05-29  9:42 ` subado
@ 2024-05-29 11:03 ` 0x5c
  2024-05-29 11:25 ` subado
  2024-05-29 12:11 ` abenson
  9 siblings, 0 replies; 11+ messages in thread
From: 0x5c @ 2024-05-29 11:03 UTC (permalink / raw)
  To: ml

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

New review comment by 0x5c on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1618667220

Comment:
Why are you updating go in this PR? Is it required?
If so, mark your PR as "draft" so no one merges this go update by accident: there's already a PR for updating Go itself https://github.com/void-linux/void-packages/pull/49509

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (7 preceding siblings ...)
  2024-05-29 11:03 ` [PR REVIEW] " 0x5c
@ 2024-05-29 11:25 ` subado
  2024-05-29 12:11 ` abenson
  9 siblings, 0 replies; 11+ messages in thread
From: subado @ 2024-05-29 11:25 UTC (permalink / raw)
  To: ml

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

New review comment by subado on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1618715246

Comment:
Yes, devpod requires at least go 1.22.2. I marked PR as "draft"

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

* Re: [PR REVIEW] New package: devpod-0.5.10
  2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
                   ` (8 preceding siblings ...)
  2024-05-29 11:25 ` subado
@ 2024-05-29 12:11 ` abenson
  9 siblings, 0 replies; 11+ messages in thread
From: abenson @ 2024-05-29 12:11 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/50569#discussion_r1618773911

Comment:
0.5.12 is out

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

end of thread, other threads:[~2024-05-29 12:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-28 18:37 [PR PATCH] New package: devpod-0.5.10 subado
2024-05-28 21:38 ` [PR REVIEW] " abenson
2024-05-28 21:39 ` abenson
2024-05-28 21:39 ` abenson
2024-05-28 21:39 ` abenson
2024-05-29  8:45 ` [PR PATCH] [Updated] " subado
2024-05-29  8:48 ` subado
2024-05-29  9:42 ` subado
2024-05-29 11:03 ` [PR REVIEW] " 0x5c
2024-05-29 11:25 ` subado
2024-05-29 12:11 ` abenson

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).