Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] crun: update to 1.8.
@ 2023-02-04  0:49 daniel-eys
  2023-02-04 23:02 ` [PR REVIEW] " paper42
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: daniel-eys @ 2023-02-04  0:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages crun
https://github.com/void-linux/void-packages/pull/42067

crun: update to 1.8.
<!-- 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, (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/42067.patch is attached

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

From 84113397a3d6c598ca361e49c013776548a9c1f3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 3 Feb 2023 11:46:23 +0100
Subject: [PATCH] crun: update to 1.8.

---
 srcpkgs/crun/template | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template
index 5c2f41607f4c..025a16337d97 100644
--- a/srcpkgs/crun/template
+++ b/srcpkgs/crun/template
@@ -1,6 +1,6 @@
 # Template file for 'crun'
 pkgname=crun
-version=1.7.2
+version=1.8
 revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd"
@@ -11,7 +11,9 @@ maintainer="Imran Khan <imrankhan@teknik.io>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/containers/crun"
 distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
-checksum=f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05
+checksum=dbb3b8253420cda35e68239912b6f069f7993bea63c9e7a1f00c99d381b73cc6
+# most of the tests don't work inside a container
+make_check=ci-skip
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" argp-standalone"
@@ -25,13 +27,6 @@ case "$XBPS_MACHINE" in
 	*) ;;
 esac
 
-do_check() {
-	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		# most of the tests don't work inside a container
-		make check ${makejobs}
-	fi
-}
-
 post_install() {
 	rm -f ${DESTDIR}/usr/lib/*.a
 }

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

* Re: [PR REVIEW] crun: update to 1.8.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
@ 2023-02-04 23:02 ` paper42
  2023-02-04 23:05 ` paper42
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: paper42 @ 2023-02-04 23:02 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/42067#discussion_r1096596830

Comment:
```suggestion
	rm ${DESTDIR}/usr/lib/*.a
```

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

* Re: [PR REVIEW] crun: update to 1.8.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
  2023-02-04 23:02 ` [PR REVIEW] " paper42
@ 2023-02-04 23:05 ` paper42
  2023-02-05 13:28 ` daniel-eys
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: paper42 @ 2023-02-04 23:05 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/42067#discussion_r1096597042

Comment:
I don't think this is necessary, we are only matching architecture on the host machine, mips* is missing and we will just forget to add more archs when we add them.

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

* Re: [PR REVIEW] crun: update to 1.8.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
  2023-02-04 23:02 ` [PR REVIEW] " paper42
  2023-02-04 23:05 ` paper42
@ 2023-02-05 13:28 ` daniel-eys
  2023-02-05 13:28 ` [PR PATCH] [Updated] " daniel-eys
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-02-05 13:28 UTC (permalink / raw)
  To: ml

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

New review comment by daniel-eys on void-packages repository

https://github.com/void-linux/void-packages/pull/42067#discussion_r1096695235

Comment:
I guess this was added for the same reason as this: https://github.com/void-linux/void-packages/commit/61ef978
Maybe @q66 can comment here


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

* Re: [PR PATCH] [Updated] crun: update to 1.8.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (2 preceding siblings ...)
  2023-02-05 13:28 ` daniel-eys
@ 2023-02-05 13:28 ` daniel-eys
  2023-02-05 13:29 ` [PR REVIEW] " daniel-eys
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-02-05 13:28 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages crun
https://github.com/void-linux/void-packages/pull/42067

crun: update to 1.8.
<!-- 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, (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/42067.patch is attached

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

From 51adbcc56b4a2c5bf0c4922a9a87c0bb95cd70c2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 3 Feb 2023 11:46:23 +0100
Subject: [PATCH] crun: update to 1.8.

---
 srcpkgs/crun/template | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template
index 5c2f41607f4c..e85c26342aac 100644
--- a/srcpkgs/crun/template
+++ b/srcpkgs/crun/template
@@ -1,6 +1,6 @@
 # Template file for 'crun'
 pkgname=crun
-version=1.7.2
+version=1.8
 revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd"
@@ -11,7 +11,9 @@ maintainer="Imran Khan <imrankhan@teknik.io>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/containers/crun"
 distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
-checksum=f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05
+checksum=dbb3b8253420cda35e68239912b6f069f7993bea63c9e7a1f00c99d381b73cc6
+# most of the tests don't work inside a container
+make_check=ci-skip
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" argp-standalone"
@@ -25,13 +27,6 @@ case "$XBPS_MACHINE" in
 	*) ;;
 esac
 
-do_check() {
-	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		# most of the tests don't work inside a container
-		make check ${makejobs}
-	fi
-}
-
 post_install() {
-	rm -f ${DESTDIR}/usr/lib/*.a
+	rm ${DESTDIR}/usr/lib/*.a
 }

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

* Re: [PR REVIEW] crun: update to 1.8.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (3 preceding siblings ...)
  2023-02-05 13:28 ` [PR PATCH] [Updated] " daniel-eys
@ 2023-02-05 13:29 ` daniel-eys
  2023-03-03  9:40 ` [PR PATCH] [Updated] " daniel-eys
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-02-05 13:29 UTC (permalink / raw)
  To: ml

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

New review comment by daniel-eys on void-packages repository

https://github.com/void-linux/void-packages/pull/42067#discussion_r1096695388

Comment:
done

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

* Re: [PR PATCH] [Updated] crun: update to 1.8.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (4 preceding siblings ...)
  2023-02-05 13:29 ` [PR REVIEW] " daniel-eys
@ 2023-03-03  9:40 ` daniel-eys
  2023-03-24 17:11 ` [PR PATCH] [Updated] crun: update to 1.8.1 daniel-eys
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-03-03  9:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages crun
https://github.com/void-linux/void-packages/pull/42067

crun: update to 1.8.
<!-- 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, (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/42067.patch is attached

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

From 764fbad34145ec9d732b83e08ab7d997d4e129b2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 3 Feb 2023 11:46:23 +0100
Subject: [PATCH] crun: update to 1.8.1.

---
 srcpkgs/crun/template | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template
index 5c2f41607f4c..aae071ffc16e 100644
--- a/srcpkgs/crun/template
+++ b/srcpkgs/crun/template
@@ -1,6 +1,6 @@
 # Template file for 'crun'
 pkgname=crun
-version=1.7.2
+version=1.8.1
 revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd"
@@ -11,7 +11,9 @@ maintainer="Imran Khan <imrankhan@teknik.io>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/containers/crun"
 distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
-checksum=f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05
+checksum=c7f01be3afb45453429a88dc6c541f2fed13e186cc2e30c91f7c2eef039602fc
+# most of the tests don't work inside a container
+make_check=ci-skip
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" argp-standalone"
@@ -25,13 +27,6 @@ case "$XBPS_MACHINE" in
 	*) ;;
 esac
 
-do_check() {
-	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		# most of the tests don't work inside a container
-		make check ${makejobs}
-	fi
-}
-
 post_install() {
-	rm -f ${DESTDIR}/usr/lib/*.a
+	rm ${DESTDIR}/usr/lib/*.a
 }

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

* Re: [PR PATCH] [Updated] crun: update to 1.8.1.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (5 preceding siblings ...)
  2023-03-03  9:40 ` [PR PATCH] [Updated] " daniel-eys
@ 2023-03-24 17:11 ` daniel-eys
  2023-04-15 14:42 ` [PR PATCH] [Updated] crun: update to 1.8.2 daniel-eys
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-03-24 17:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages crun
https://github.com/void-linux/void-packages/pull/42067

crun: update to 1.8.1.
<!-- 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, (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/42067.patch is attached

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

From db7ca3f464f772ddb8e486a7a9b342f30adb57d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 3 Feb 2023 11:46:23 +0100
Subject: [PATCH] crun: update to 1.8.2.

---
 srcpkgs/crun/template | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template
index 5c2f41607f4c..37ac15b37704 100644
--- a/srcpkgs/crun/template
+++ b/srcpkgs/crun/template
@@ -1,6 +1,6 @@
 # Template file for 'crun'
 pkgname=crun
-version=1.7.2
+version=1.8.2
 revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd"
@@ -11,7 +11,9 @@ maintainer="Imran Khan <imrankhan@teknik.io>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/containers/crun"
 distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
-checksum=f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05
+checksum=4849fccefb6e678955ba102f1ecc6ef22caf457453ec5165dff2cc4f5ad39999
+# most of the tests don't work inside a container
+make_check=ci-skip
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" argp-standalone"
@@ -25,13 +27,6 @@ case "$XBPS_MACHINE" in
 	*) ;;
 esac
 
-do_check() {
-	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		# most of the tests don't work inside a container
-		make check ${makejobs}
-	fi
-}
-
 post_install() {
-	rm -f ${DESTDIR}/usr/lib/*.a
+	rm ${DESTDIR}/usr/lib/*.a
 }

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

* Re: [PR PATCH] [Updated] crun: update to 1.8.2.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (6 preceding siblings ...)
  2023-03-24 17:11 ` [PR PATCH] [Updated] crun: update to 1.8.1 daniel-eys
@ 2023-04-15 14:42 ` daniel-eys
  2023-05-29 14:38 ` [PR PATCH] [Updated] crun: update to 1.8.4 daniel-eys
  2023-06-24 14:42 ` [PR PATCH] [Merged]: crun: update to 1.8.5 Duncaen
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-04-15 14:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages crun
https://github.com/void-linux/void-packages/pull/42067

crun: update to 1.8.2.
<!-- 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, (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/42067.patch is attached

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

From c85d2777b387be0f678501d62a1bbe8ad2416b52 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 3 Feb 2023 11:46:23 +0100
Subject: [PATCH] crun: update to 1.8.4.

---
 srcpkgs/crun/template | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template
index 5c2f41607f4c..5bb54b3266e0 100644
--- a/srcpkgs/crun/template
+++ b/srcpkgs/crun/template
@@ -1,6 +1,6 @@
 # Template file for 'crun'
 pkgname=crun
-version=1.7.2
+version=1.8.4
 revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd"
@@ -11,7 +11,9 @@ maintainer="Imran Khan <imrankhan@teknik.io>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/containers/crun"
 distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
-checksum=f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05
+checksum=5b8b5adb1dff7af768b69d2b0b4f2cd785ec931e7aa10138aa29812c46ee09ff
+# most of the tests don't work inside a container
+make_check=ci-skip
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" argp-standalone"
@@ -25,13 +27,6 @@ case "$XBPS_MACHINE" in
 	*) ;;
 esac
 
-do_check() {
-	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		# most of the tests don't work inside a container
-		make check ${makejobs}
-	fi
-}
-
 post_install() {
-	rm -f ${DESTDIR}/usr/lib/*.a
+	rm ${DESTDIR}/usr/lib/*.a
 }

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

* Re: [PR PATCH] [Updated] crun: update to 1.8.4.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (7 preceding siblings ...)
  2023-04-15 14:42 ` [PR PATCH] [Updated] crun: update to 1.8.2 daniel-eys
@ 2023-05-29 14:38 ` daniel-eys
  2023-06-24 14:42 ` [PR PATCH] [Merged]: crun: update to 1.8.5 Duncaen
  9 siblings, 0 replies; 11+ messages in thread
From: daniel-eys @ 2023-05-29 14:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages crun
https://github.com/void-linux/void-packages/pull/42067

crun: update to 1.8.4.
<!-- 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, (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/42067.patch is attached

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

From 040c960ac805377b22b532c18b2193bd3b8f953f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 3 Feb 2023 11:46:23 +0100
Subject: [PATCH] crun: update to 1.8.5.

---
 srcpkgs/crun/template | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template
index 5c2f41607f4c..15c643959056 100644
--- a/srcpkgs/crun/template
+++ b/srcpkgs/crun/template
@@ -1,6 +1,6 @@
 # Template file for 'crun'
 pkgname=crun
-version=1.7.2
+version=1.8.5
 revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd"
@@ -11,7 +11,9 @@ maintainer="Imran Khan <imrankhan@teknik.io>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/containers/crun"
 distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz"
-checksum=f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05
+checksum=5a786d7a0ece5068447e730f8a67c9cb18a95c883f5314e154865ad87c520106
+# most of the tests don't work inside a container
+make_check=ci-skip
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" argp-standalone"
@@ -25,13 +27,6 @@ case "$XBPS_MACHINE" in
 	*) ;;
 esac
 
-do_check() {
-	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		# most of the tests don't work inside a container
-		make check ${makejobs}
-	fi
-}
-
 post_install() {
-	rm -f ${DESTDIR}/usr/lib/*.a
+	rm ${DESTDIR}/usr/lib/*.a
 }

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

* Re: [PR PATCH] [Merged]: crun: update to 1.8.5.
  2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
                   ` (8 preceding siblings ...)
  2023-05-29 14:38 ` [PR PATCH] [Updated] crun: update to 1.8.4 daniel-eys
@ 2023-06-24 14:42 ` Duncaen
  9 siblings, 0 replies; 11+ messages in thread
From: Duncaen @ 2023-06-24 14:42 UTC (permalink / raw)
  To: ml

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

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

crun: update to 1.8.5.
https://github.com/void-linux/void-packages/pull/42067

Description:
<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-06-24 14:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-04  0:49 [PR PATCH] crun: update to 1.8 daniel-eys
2023-02-04 23:02 ` [PR REVIEW] " paper42
2023-02-04 23:05 ` paper42
2023-02-05 13:28 ` daniel-eys
2023-02-05 13:28 ` [PR PATCH] [Updated] " daniel-eys
2023-02-05 13:29 ` [PR REVIEW] " daniel-eys
2023-03-03  9:40 ` [PR PATCH] [Updated] " daniel-eys
2023-03-24 17:11 ` [PR PATCH] [Updated] crun: update to 1.8.1 daniel-eys
2023-04-15 14:42 ` [PR PATCH] [Updated] crun: update to 1.8.2 daniel-eys
2023-05-29 14:38 ` [PR PATCH] [Updated] crun: update to 1.8.4 daniel-eys
2023-06-24 14:42 ` [PR PATCH] [Merged]: crun: update to 1.8.5 Duncaen

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