Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] nerdctl: update to 1.5.0.
@ 2023-09-01 13:03 m3tav3rse
  2023-09-01 14:15 ` [PR PATCH] [Updated] " m3tav3rse
  2023-09-07  0:49 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 2 replies; 3+ messages in thread
From: m3tav3rse @ 2023-09-01 13:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/m3tav3rse/void-packages nerdctl
https://github.com/void-linux/void-packages/pull/45868

nerdctl: update to 1.5.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From cfb67717eff6fa01d1fd64ee8b9d31fbcb484f38 Mon Sep 17 00:00:00 2001
From: m3tav3rse <mtvrs@tuta.io>
Date: Fri, 1 Sep 2023 15:02:11 +0200
Subject: [PATCH] nerdctl: update to 1.5.0.

---
 srcpkgs/nerdctl/template | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/nerdctl/template b/srcpkgs/nerdctl/template
index 1fc779dea988f..25e574bd4e536 100644
--- a/srcpkgs/nerdctl/template
+++ b/srcpkgs/nerdctl/template
@@ -1,13 +1,26 @@
 # Template file for 'nerdctl'
 pkgname=nerdctl
-version=0.18.0
-revision=3
+version=1.5.0
+revision=1
 build_style=go
 go_import_path=github.com/containerd/nerdctl
+go_ldflags="-X ${go_import_path}/pkg/version.Version=${version}"
 go_package=$go_import_path/cmd/nerdctl
 short_desc="Docker-compatible CLI for containerd"
 maintainer="Michael Aldridge <maldridge@VoidLinux.org>"
 license="Apache-2.0"
 homepage="https://github.com/containerd/nerdctl"
 distfiles="https://github.com/containerd/nerdctl/archive/refs/tags/v$version.tar.gz"
-checksum=d6f858d649271b323a42dcf876b1d80f262416aa03236e30ca9d648cd80536bf
+checksum=3b9ae94124adb5105241c3d5070b8dc0c184e454a7a349f1b56c12d415ee7ce3
+
+post_build() {
+	for shell in bash fish zsh; do
+		_build-${pkgname}-xbps/bin/nerdctl completion $shell > $shell-completion
+	done
+}
+
+post_install() {
+	vcompletion bash-completion bash
+	vcompletion fish-completion fish
+	vcompletion zsh-completion zsh
+}

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

* Re: [PR PATCH] [Updated] nerdctl: update to 1.5.0.
  2023-09-01 13:03 [PR PATCH] nerdctl: update to 1.5.0 m3tav3rse
@ 2023-09-01 14:15 ` m3tav3rse
  2023-09-07  0:49 ` [PR PATCH] [Merged]: " classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: m3tav3rse @ 2023-09-01 14:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/m3tav3rse/void-packages nerdctl
https://github.com/void-linux/void-packages/pull/45868

nerdctl: update to 1.5.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 17e77318d72f09830295832bb3aebd3b3151d22a Mon Sep 17 00:00:00 2001
From: m3tav3rse <mtvrs@tuta.io>
Date: Fri, 1 Sep 2023 15:02:11 +0200
Subject: [PATCH] nerdctl: update to 1.5.0.

---
 srcpkgs/nerdctl/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/nerdctl/template b/srcpkgs/nerdctl/template
index 1fc779dea988f..4fd0317c52a7d 100644
--- a/srcpkgs/nerdctl/template
+++ b/srcpkgs/nerdctl/template
@@ -1,13 +1,14 @@
 # Template file for 'nerdctl'
 pkgname=nerdctl
-version=0.18.0
-revision=3
+version=1.5.0
+revision=1
 build_style=go
 go_import_path=github.com/containerd/nerdctl
+go_ldflags="-X ${go_import_path}/pkg/version.Version=${version}"
 go_package=$go_import_path/cmd/nerdctl
 short_desc="Docker-compatible CLI for containerd"
 maintainer="Michael Aldridge <maldridge@VoidLinux.org>"
 license="Apache-2.0"
 homepage="https://github.com/containerd/nerdctl"
 distfiles="https://github.com/containerd/nerdctl/archive/refs/tags/v$version.tar.gz"
-checksum=d6f858d649271b323a42dcf876b1d80f262416aa03236e30ca9d648cd80536bf
+checksum=3b9ae94124adb5105241c3d5070b8dc0c184e454a7a349f1b56c12d415ee7ce3

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

* Re: [PR PATCH] [Merged]: nerdctl: update to 1.5.0.
  2023-09-01 13:03 [PR PATCH] nerdctl: update to 1.5.0 m3tav3rse
  2023-09-01 14:15 ` [PR PATCH] [Updated] " m3tav3rse
@ 2023-09-07  0:49 ` classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2023-09-07  0:49 UTC (permalink / raw)
  To: ml

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

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

nerdctl: update to 1.5.0.
https://github.com/void-linux/void-packages/pull/45868

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-09-07  0:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-01 13:03 [PR PATCH] nerdctl: update to 1.5.0 m3tav3rse
2023-09-01 14:15 ` [PR PATCH] [Updated] " m3tav3rse
2023-09-07  0:49 ` [PR PATCH] [Merged]: " classabbyamp

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