Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] toybox: update to 0.8.8.
@ 2022-11-01 18:37 mobinmob
  2022-11-01 18:42 ` mobinmob
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: mobinmob @ 2022-11-01 18:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages toybox
https://github.com/void-linux/void-packages/pull/40274

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

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

Tests for `du,` `find` and `tar` fail with some issue with system time. Maybe a common cause.


<!--
#### 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/40274.patch is attached

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

From 07b09deb475b08e30a5eca37b48def8f2088d889 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Tue, 1 Nov 2022 20:35:00 +0200
Subject: [PATCH] toybox: update to 0.8.8.

---
 srcpkgs/toybox/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/toybox/template b/srcpkgs/toybox/template
index 722e17bc2307..65c0c360dd8a 100644
--- a/srcpkgs/toybox/template
+++ b/srcpkgs/toybox/template
@@ -1,6 +1,6 @@
 # Template file for 'toybox'
 pkgname=toybox
-version=0.8.7
+version=0.8.8
 revision=1
 create_wrksrc=yes
 short_desc="BSD-licensed alternative to busybox"
@@ -8,7 +8,7 @@ maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
 license="0BSD"
 homepage="http://www.landley.net/toybox"
 distfiles="http://www.landley.net/toybox/downloads/toybox-${version}.tar.gz"
-checksum=b508bf336f82cb0739b77111f945931d1a143b5a53905cb753cd2607cfdd1494
+checksum=dafd41978d40f02a61cf1be99a2b4a25812bbfb9c3157e679ee7611202d6ac58
 
 post_extract() {
 	mv toybox-${version} toybox
@@ -33,7 +33,7 @@ _rm_failing_tests() {
 	# XXX: Some tests for du, find and grep fail
 	rm tests/du.test
 	rm tests/find.test
-	rm tests/grep.test
+	rm tests/tar.test
 	[ "$XBPS_BUILD_ENVIRONMENT" != void-packages-ci ] && return 0
 	# XXX: chattr, hostname,losetup, rmdir tests fail on CI
 	rm tests/chattr.test

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

* Re: toybox: update to 0.8.8.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
@ 2022-11-01 18:42 ` mobinmob
  2022-11-04 14:59 ` mtboehlke
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2022-11-01 18:42 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1298954866

Comment:
x86_64-musl fails with 

```PASS: grep -l overrides -C
scripts/runtest.sh: line 156: warning: command substitution: ignored null byte in input
FAIL: grep match after NUL byte
echo -ne 'one\0and two three' | grep -a two
--- expected	2022-11-01 18:39:14.260257920 +0000
+++ actual	2022-11-01 18:39:14.264257951 +0000
@@ -1 +0,0 @@
-oneand two three
make: *** [Makefile:77: tests] Error 1
```
I do not have this problem locally.


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

* Re: toybox: update to 0.8.8.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
  2022-11-01 18:42 ` mobinmob
@ 2022-11-04 14:59 ` mtboehlke
  2022-11-05 12:00 ` mobinmob
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mtboehlke @ 2022-11-04 14:59 UTC (permalink / raw)
  To: ml

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

New comment by mtboehlke on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1303689053

Comment:
I ran into a couple of issues with 0.8.8.  `shred` utility wouldn't work due to calling getentropy for too many bytes, and stdin couldn't be specified in `comm`.  These have both been fixed upstream.  I currently patch these two fixes when building locally.

The fix for `shred` can be found in https://github.com/landley/toybox/issues/379 and for `comm` in https://github.com/landley/toybox/issues/381

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

* Re: toybox: update to 0.8.8.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
  2022-11-01 18:42 ` mobinmob
  2022-11-04 14:59 ` mtboehlke
@ 2022-11-05 12:00 ` mobinmob
  2023-01-28 11:37 ` [PR PATCH] [Updated] " mobinmob
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2022-11-05 12:00 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1304512871

Comment:
> I ran into a couple of issues with 0.8.8. `shred` utility wouldn't work due to calling getentropy for too many bytes, and stdin couldn't be specified in `comm`. These have both been fixed upstream. I currently patch these two fixes when building locally.
> 
> The fix for `shred` can be found in [landley/toybox#379](https://github.com/landley/toybox/issues/379) and for `comm` in [landley/toybox#381](https://github.com/landley/toybox/issues/381)

Thanks @mtboehlke !

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

* Re: [PR PATCH] [Updated] toybox: update to 0.8.8.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (2 preceding siblings ...)
  2022-11-05 12:00 ` mobinmob
@ 2023-01-28 11:37 ` mobinmob
  2023-01-28 11:38 ` toybox: update to 0.8.9 mobinmob
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2023-01-28 11:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages toybox
https://github.com/void-linux/void-packages/pull/40274

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

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

Tests for `du,` `find` and `tar` fail with some issue with system time. Maybe a common cause.


<!--
#### 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/40274.patch is attached

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

From 9f2717592bbdab5073dc6db6d25f8370ded15c0c Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Tue, 1 Nov 2022 20:35:00 +0200
Subject: [PATCH] toybox: update to 0.8.8.

---
 srcpkgs/toybox/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/toybox/template b/srcpkgs/toybox/template
index d9b67535114f..fb8c978eded4 100644
--- a/srcpkgs/toybox/template
+++ b/srcpkgs/toybox/template
@@ -1,6 +1,6 @@
 # Template file for 'toybox'
 pkgname=toybox
-version=0.8.7
+version=0.8.9
 revision=1
 create_wrksrc=yes
 short_desc="BSD-licensed alternative to busybox"
@@ -8,7 +8,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="0BSD"
 homepage="http://www.landley.net/toybox"
 distfiles="http://www.landley.net/toybox/downloads/toybox-${version}.tar.gz"
-checksum=b508bf336f82cb0739b77111f945931d1a143b5a53905cb753cd2607cfdd1494
+checksum=06913dde3de7139b40f947bd7f23869dfc8796e9c6ff39de02719f8b7b2d47ad
 
 post_extract() {
 	mv toybox-${version} toybox
@@ -33,7 +33,7 @@ _rm_failing_tests() {
 	# XXX: Some tests for du, find and grep fail
 	rm tests/du.test
 	rm tests/find.test
-	rm tests/grep.test
+	rm tests/tar.test
 	[ "$XBPS_BUILD_ENVIRONMENT" != void-packages-ci ] && return 0
 	# XXX: chattr, hostname,losetup, rmdir tests fail on CI
 	rm tests/chattr.test

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

* Re: toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (3 preceding siblings ...)
  2023-01-28 11:37 ` [PR PATCH] [Updated] " mobinmob
@ 2023-01-28 11:38 ` mobinmob
  2023-01-28 11:41 ` [PR PATCH] [Updated] " mobinmob
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2023-01-28 11:38 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1407380229

Comment:
Pushed an update to 0.8.9, did not get around to push the fix... :(

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

* Re: [PR PATCH] [Updated] toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (4 preceding siblings ...)
  2023-01-28 11:38 ` toybox: update to 0.8.9 mobinmob
@ 2023-01-28 11:41 ` mobinmob
  2023-04-29  1:52 ` github-actions
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2023-01-28 11:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages toybox
https://github.com/void-linux/void-packages/pull/40274

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

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

Tests for `du,` `find` and `tar` fail with some issue with system time. Maybe a common cause.


<!--
#### 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/40274.patch is attached

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

From 33dcf2733659205eae018714c3bb6e0e4679868b Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Tue, 1 Nov 2022 20:35:00 +0200
Subject: [PATCH] toybox: update to 0.8.8.

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

diff --git a/srcpkgs/toybox/template b/srcpkgs/toybox/template
index d9b67535114f..50f3ec5c9d17 100644
--- a/srcpkgs/toybox/template
+++ b/srcpkgs/toybox/template
@@ -1,6 +1,6 @@
 # Template file for 'toybox'
 pkgname=toybox
-version=0.8.7
+version=0.8.9
 revision=1
 create_wrksrc=yes
 short_desc="BSD-licensed alternative to busybox"
@@ -8,7 +8,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="0BSD"
 homepage="http://www.landley.net/toybox"
 distfiles="http://www.landley.net/toybox/downloads/toybox-${version}.tar.gz"
-checksum=b508bf336f82cb0739b77111f945931d1a143b5a53905cb753cd2607cfdd1494
+checksum=06913dde3de7139b40f947bd7f23869dfc8796e9c6ff39de02719f8b7b2d47ad
 
 post_extract() {
 	mv toybox-${version} toybox
@@ -33,7 +33,7 @@ _rm_failing_tests() {
 	# XXX: Some tests for du, find and grep fail
 	rm tests/du.test
 	rm tests/find.test
-	rm tests/grep.test
+	rm tests/tar.test
 	[ "$XBPS_BUILD_ENVIRONMENT" != void-packages-ci ] && return 0
 	# XXX: chattr, hostname,losetup, rmdir tests fail on CI
 	rm tests/chattr.test
@@ -41,6 +41,7 @@ _rm_failing_tests() {
 	rm tests/losetup.test
 	rm tests/rmdir.test
 	rm tests/rm.test
+	rm tests/sed.test
 }
 
 do_check() {

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

* Re: toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (5 preceding siblings ...)
  2023-01-28 11:41 ` [PR PATCH] [Updated] " mobinmob
@ 2023-04-29  1:52 ` github-actions
  2023-04-29 10:46 ` mobinmob
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2023-04-29  1:52 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/40274#issuecomment-1528457367

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] 12+ messages in thread

* Re: toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (6 preceding siblings ...)
  2023-04-29  1:52 ` github-actions
@ 2023-04-29 10:46 ` mobinmob
  2023-04-29 10:50 ` mobinmob
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2023-04-29 10:46 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1528755938

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.

wow...

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

* Re: toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (7 preceding siblings ...)
  2023-04-29 10:46 ` mobinmob
@ 2023-04-29 10:50 ` mobinmob
  2023-06-24 19:02 ` classabbyamp
  2023-06-24 19:02 ` [PR PATCH] [Closed]: " classabbyamp
  10 siblings, 0 replies; 12+ messages in thread
From: mobinmob @ 2023-04-29 10:50 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1528755938

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] 12+ messages in thread

* Re: toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (8 preceding siblings ...)
  2023-04-29 10:50 ` mobinmob
@ 2023-06-24 19:02 ` classabbyamp
  2023-06-24 19:02 ` [PR PATCH] [Closed]: " classabbyamp
  10 siblings, 0 replies; 12+ messages in thread
From: classabbyamp @ 2023-06-24 19:02 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/40274#issuecomment-1605688660

Comment:
#43131

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

* Re: [PR PATCH] [Closed]: toybox: update to 0.8.9.
  2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
                   ` (9 preceding siblings ...)
  2023-06-24 19:02 ` classabbyamp
@ 2023-06-24 19:02 ` classabbyamp
  10 siblings, 0 replies; 12+ messages in thread
From: classabbyamp @ 2023-06-24 19:02 UTC (permalink / raw)
  To: ml

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

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

toybox: update to 0.8.9.
https://github.com/void-linux/void-packages/pull/40274

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

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

Tests for `du,` `find` and `tar` fail with some issue with system time. Maybe a common cause.


<!--
#### 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] 12+ messages in thread

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

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-01 18:37 [PR PATCH] toybox: update to 0.8.8 mobinmob
2022-11-01 18:42 ` mobinmob
2022-11-04 14:59 ` mtboehlke
2022-11-05 12:00 ` mobinmob
2023-01-28 11:37 ` [PR PATCH] [Updated] " mobinmob
2023-01-28 11:38 ` toybox: update to 0.8.9 mobinmob
2023-01-28 11:41 ` [PR PATCH] [Updated] " mobinmob
2023-04-29  1:52 ` github-actions
2023-04-29 10:46 ` mobinmob
2023-04-29 10:50 ` mobinmob
2023-06-24 19:02 ` classabbyamp
2023-06-24 19:02 ` [PR PATCH] [Closed]: " 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).