Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] cri-tools: update to 1.32.0.
@ 2025-01-07 23:57 tsndqst
  2025-01-17 20:42 ` [PR PATCH] [Updated] " tsndqst
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: tsndqst @ 2025-01-07 23:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tsndqst/void-packages cri-tools
https://github.com/void-linux/void-packages/pull/53885

cri-tools: update to 1.32.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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**|**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, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64 (cross)
  - x86_64-musl (cross)

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

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

From 8c678ec312c80f98446dfe09758679ea0d3f4a3b Mon Sep 17 00:00:00 2001
From: Tim Sandquist <tim.sandquist@gmail.com>
Date: Tue, 7 Jan 2025 16:36:17 -0600
Subject: [PATCH] cri-tools: update to 1.32.0.

---
 srcpkgs/cri-tools/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/cri-tools/template b/srcpkgs/cri-tools/template
index de01fa062b8e51..e2495aa1e4b3c6 100644
--- a/srcpkgs/cri-tools/template
+++ b/srcpkgs/cri-tools/template
@@ -1,22 +1,23 @@
 # Template file for 'cri-tools'
 pkgname=cri-tools
-version=1.22.0
-revision=4
+version=1.32.0
+revision=1
 build_style=go
 go_import_path=github.com/kubernetes-sigs/cri-tools
+make_check_target=sigs.k8s.io/cri-tools/cmd/crictl
 short_desc="CLI and validation tools for Kubelet Container Runtime Interface (CRI)"
 maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
 license="Apache-2.0"
 homepage="https://github.com/kubernetes-sigs/cri-tools"
 distfiles="https://github.com/kubernetes-sigs/cri-tools/archive/v${version}.tar.gz"
-checksum=76fc230a73dd7e8183f499c88effaf734540808f2f90287031a85d0a4d8512d9
+checksum=2d48319be933df77c660fbfe7efef8c3d61bbde6787e2f33725bcc519858b287
 
 do_build() {
 	make ${makejobs}
 }
 
 do_install() {
-	for bin in build/bin/*; do
+	for bin in build/bin/linux/${GOARCH}/*; do
 	    vbin $bin
 	done
 }

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

* Re: [PR PATCH] [Updated] cri-tools: update to 1.32.0.
  2025-01-07 23:57 [PR PATCH] cri-tools: update to 1.32.0 tsndqst
@ 2025-01-17 20:42 ` tsndqst
  2025-02-12  1:27 ` tsndqst
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tsndqst @ 2025-01-17 20:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tsndqst/void-packages cri-tools
https://github.com/void-linux/void-packages/pull/53885

cri-tools: update to 1.32.0.
Resolves the following error that started after the recent `containerd` update.
```
FATA[0000] getting the runtime version: rpc error: code = Unimplemented desc = unknown service runtime.v1alpha2.RuntimeService 
```

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

#### 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**|**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, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64 (cross)
  - x86_64-musl (cross)

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

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

From 8d619a405ca4316f7e1a90ff5e9180c6a37465ff Mon Sep 17 00:00:00 2001
From: Tim Sandquist <tim.sandquist@gmail.com>
Date: Tue, 7 Jan 2025 16:36:17 -0600
Subject: [PATCH] cri-tools: update to 1.32.0.

---
 srcpkgs/cri-tools/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/cri-tools/template b/srcpkgs/cri-tools/template
index de01fa062b8e51..e2495aa1e4b3c6 100644
--- a/srcpkgs/cri-tools/template
+++ b/srcpkgs/cri-tools/template
@@ -1,22 +1,23 @@
 # Template file for 'cri-tools'
 pkgname=cri-tools
-version=1.22.0
-revision=4
+version=1.32.0
+revision=1
 build_style=go
 go_import_path=github.com/kubernetes-sigs/cri-tools
+make_check_target=sigs.k8s.io/cri-tools/cmd/crictl
 short_desc="CLI and validation tools for Kubelet Container Runtime Interface (CRI)"
 maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
 license="Apache-2.0"
 homepage="https://github.com/kubernetes-sigs/cri-tools"
 distfiles="https://github.com/kubernetes-sigs/cri-tools/archive/v${version}.tar.gz"
-checksum=76fc230a73dd7e8183f499c88effaf734540808f2f90287031a85d0a4d8512d9
+checksum=2d48319be933df77c660fbfe7efef8c3d61bbde6787e2f33725bcc519858b287
 
 do_build() {
 	make ${makejobs}
 }
 
 do_install() {
-	for bin in build/bin/*; do
+	for bin in build/bin/linux/${GOARCH}/*; do
 	    vbin $bin
 	done
 }

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

* Re: [PR PATCH] [Updated] cri-tools: update to 1.32.0.
  2025-01-07 23:57 [PR PATCH] cri-tools: update to 1.32.0 tsndqst
  2025-01-17 20:42 ` [PR PATCH] [Updated] " tsndqst
@ 2025-02-12  1:27 ` tsndqst
  2025-02-23 15:54 ` tsndqst
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tsndqst @ 2025-02-12  1:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tsndqst/void-packages cri-tools
https://github.com/void-linux/void-packages/pull/53885

cri-tools: update to 1.32.0.
Resolves the following error that started after the recent `containerd` update.
```
FATA[0000] getting the runtime version: rpc error: code = Unimplemented desc = unknown service runtime.v1alpha2.RuntimeService 
```

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

#### 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**|**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, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64 (cross)
  - x86_64-musl (cross)

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

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

From 1a305b6d83e1006e6d58bc1eaed0fe5db36f5618 Mon Sep 17 00:00:00 2001
From: Tim Sandquist <tim.sandquist@gmail.com>
Date: Tue, 7 Jan 2025 16:36:17 -0600
Subject: [PATCH] cri-tools: update to 1.32.0.

---
 srcpkgs/cri-tools/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/cri-tools/template b/srcpkgs/cri-tools/template
index de01fa062b8e51..e2495aa1e4b3c6 100644
--- a/srcpkgs/cri-tools/template
+++ b/srcpkgs/cri-tools/template
@@ -1,22 +1,23 @@
 # Template file for 'cri-tools'
 pkgname=cri-tools
-version=1.22.0
-revision=4
+version=1.32.0
+revision=1
 build_style=go
 go_import_path=github.com/kubernetes-sigs/cri-tools
+make_check_target=sigs.k8s.io/cri-tools/cmd/crictl
 short_desc="CLI and validation tools for Kubelet Container Runtime Interface (CRI)"
 maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
 license="Apache-2.0"
 homepage="https://github.com/kubernetes-sigs/cri-tools"
 distfiles="https://github.com/kubernetes-sigs/cri-tools/archive/v${version}.tar.gz"
-checksum=76fc230a73dd7e8183f499c88effaf734540808f2f90287031a85d0a4d8512d9
+checksum=2d48319be933df77c660fbfe7efef8c3d61bbde6787e2f33725bcc519858b287
 
 do_build() {
 	make ${makejobs}
 }
 
 do_install() {
-	for bin in build/bin/*; do
+	for bin in build/bin/linux/${GOARCH}/*; do
 	    vbin $bin
 	done
 }

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

* Re: [PR PATCH] [Updated] cri-tools: update to 1.32.0.
  2025-01-07 23:57 [PR PATCH] cri-tools: update to 1.32.0 tsndqst
  2025-01-17 20:42 ` [PR PATCH] [Updated] " tsndqst
  2025-02-12  1:27 ` tsndqst
@ 2025-02-23 15:54 ` tsndqst
  2025-05-25  2:14 ` github-actions
  2025-05-26 12:30 ` [PR PATCH] [Merged]: " classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: tsndqst @ 2025-02-23 15:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tsndqst/void-packages cri-tools
https://github.com/void-linux/void-packages/pull/53885

cri-tools: update to 1.32.0.
Resolves the following error that started after the recent `containerd` update.
```
FATA[0000] getting the runtime version: rpc error: code = Unimplemented desc = unknown service runtime.v1alpha2.RuntimeService 
```

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

#### 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**|**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, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64 (cross)
  - x86_64-musl (cross)

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

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

From e39debd722297416b55c41f2e515ce2c7eea53e2 Mon Sep 17 00:00:00 2001
From: Tim Sandquist <tim.sandquist@gmail.com>
Date: Tue, 7 Jan 2025 16:36:17 -0600
Subject: [PATCH] cri-tools: update to 1.32.0.

---
 srcpkgs/cri-tools/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/cri-tools/template b/srcpkgs/cri-tools/template
index de01fa062b8e51..e2495aa1e4b3c6 100644
--- a/srcpkgs/cri-tools/template
+++ b/srcpkgs/cri-tools/template
@@ -1,22 +1,23 @@
 # Template file for 'cri-tools'
 pkgname=cri-tools
-version=1.22.0
-revision=4
+version=1.32.0
+revision=1
 build_style=go
 go_import_path=github.com/kubernetes-sigs/cri-tools
+make_check_target=sigs.k8s.io/cri-tools/cmd/crictl
 short_desc="CLI and validation tools for Kubelet Container Runtime Interface (CRI)"
 maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
 license="Apache-2.0"
 homepage="https://github.com/kubernetes-sigs/cri-tools"
 distfiles="https://github.com/kubernetes-sigs/cri-tools/archive/v${version}.tar.gz"
-checksum=76fc230a73dd7e8183f499c88effaf734540808f2f90287031a85d0a4d8512d9
+checksum=2d48319be933df77c660fbfe7efef8c3d61bbde6787e2f33725bcc519858b287
 
 do_build() {
 	make ${makejobs}
 }
 
 do_install() {
-	for bin in build/bin/*; do
+	for bin in build/bin/linux/${GOARCH}/*; do
 	    vbin $bin
 	done
 }

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

* Re: cri-tools: update to 1.32.0.
  2025-01-07 23:57 [PR PATCH] cri-tools: update to 1.32.0 tsndqst
                   ` (2 preceding siblings ...)
  2025-02-23 15:54 ` tsndqst
@ 2025-05-25  2:14 ` github-actions
  2025-05-26 12:30 ` [PR PATCH] [Merged]: " classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2025-05-25  2:14 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/53885#issuecomment-2907558645

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Merged]: cri-tools: update to 1.32.0.
  2025-01-07 23:57 [PR PATCH] cri-tools: update to 1.32.0 tsndqst
                   ` (3 preceding siblings ...)
  2025-05-25  2:14 ` github-actions
@ 2025-05-26 12:30 ` classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2025-05-26 12:30 UTC (permalink / raw)
  To: ml

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

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

cri-tools: update to 1.32.0.
https://github.com/void-linux/void-packages/pull/53885

Description:
Resolves the following error that started after the recent `containerd` update.
```
FATA[0000] getting the runtime version: rpc error: code = Unimplemented desc = unknown service runtime.v1alpha2.RuntimeService 
```

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

#### 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**|**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, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64 (cross)
  - x86_64-musl (cross)

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

end of thread, other threads:[~2025-05-26 12:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-07 23:57 [PR PATCH] cri-tools: update to 1.32.0 tsndqst
2025-01-17 20:42 ` [PR PATCH] [Updated] " tsndqst
2025-02-12  1:27 ` tsndqst
2025-02-23 15:54 ` tsndqst
2025-05-25  2:14 ` github-actions
2025-05-26 12:30 ` [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).