Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] strace: update to 5.10.
@ 2020-12-14 22:29 olafmersmann
  2020-12-15  7:14 ` [PR PATCH] [Updated] " olafmersmann
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-14 22:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/olafmersmann/void-packages strace
https://github.com/void-linux/void-packages/pull/27165

strace: update to 5.10.


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

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

From 9882b54c76584227dfe731cb5db79b8b041dcf32 Mon Sep 17 00:00:00 2001
From: Olaf Mersmann <olafm@p-value.net>
Date: Mon, 14 Dec 2020 23:27:52 +0100
Subject: [PATCH] strace: update to 5.10.

---
 srcpkgs/strace/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template
index ea6d6667857..e85f67a5bb4 100644
--- a/srcpkgs/strace/template
+++ b/srcpkgs/strace/template
@@ -1,6 +1,6 @@
 # Template file for 'strace'
 pkgname=strace
-version=5.9
+version=5.10
 revision=1
 build_style=gnu-configure
 configure_args="--with-libunwind"
@@ -9,8 +9,9 @@ short_desc="System Call Tracer"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-or-later"
 homepage="https://strace.io/"
+changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS"
 distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz"
-checksum=39473eb8465546c3e940fb663cb381eba5613160c7302794699d194a4d5d66d9
+checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;

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

* Re: [PR PATCH] [Updated] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
@ 2020-12-15  7:14 ` olafmersmann
  2020-12-15 14:09 ` [PR REVIEW] " ericonr
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-15  7:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/olafmersmann/void-packages strace
https://github.com/void-linux/void-packages/pull/27165

strace: update to 5.10.


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

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

From 6df52841209786afe3ac21d346a7a1668235b199 Mon Sep 17 00:00:00 2001
From: Olaf Mersmann <olafm@p-value.net>
Date: Mon, 14 Dec 2020 23:27:52 +0100
Subject: [PATCH] strace: update to 5.10.

---
 srcpkgs/strace/template | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template
index ea6d6667857..bd7d850ca18 100644
--- a/srcpkgs/strace/template
+++ b/srcpkgs/strace/template
@@ -1,19 +1,26 @@
 # Template file for 'strace'
 pkgname=strace
-version=5.9
+version=5.10
 revision=1
 build_style=gnu-configure
-configure_args="--with-libunwind"
+configure_args="--enable-silent-rules --with-libunwind"
 makedepends="libunwind-devel"
 short_desc="System Call Tracer"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-or-later"
 homepage="https://strace.io/"
+changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS"
 distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz"
-checksum=39473eb8465546c3e940fb663cb381eba5613160c7302794699d194a4d5d66d9
+checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;
 	# work around https://github.com/strace/strace/issues/133
 	x86_64-musl) configure_args+=" --enable-mpers=no" ;;
 esac
+
+do_check() {
+	# XXX: Don't run the complete test suite because it takes
+	# about ~90 minutes and some tests fail in CI.
+	make check TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
+}

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

* Re: [PR REVIEW] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
  2020-12-15  7:14 ` [PR PATCH] [Updated] " olafmersmann
@ 2020-12-15 14:09 ` ericonr
  2020-12-15 14:09 ` ericonr
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2020-12-15 14:09 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#discussion_r543371230

Comment:
```suggestion
	make check \
		TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
```

Would be nice if there was a target to explicitly exclude some tests.

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

* Re: [PR REVIEW] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
  2020-12-15  7:14 ` [PR PATCH] [Updated] " olafmersmann
  2020-12-15 14:09 ` [PR REVIEW] " ericonr
@ 2020-12-15 14:09 ` ericonr
  2020-12-16 19:23 ` [PR PATCH] [Updated] " olafmersmann
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2020-12-15 14:09 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#discussion_r543370722

Comment:
Given https://github.com/strace/strace/commit/1b57b2241aef3e3ee5ea4cd60772252b15254de8 , can you try to remove this block?

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

* Re: [PR PATCH] [Updated] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (2 preceding siblings ...)
  2020-12-15 14:09 ` ericonr
@ 2020-12-16 19:23 ` olafmersmann
  2020-12-16 19:30 ` [PR REVIEW] " olafmersmann
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-16 19:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/olafmersmann/void-packages strace
https://github.com/void-linux/void-packages/pull/27165

strace: update to 5.10.


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

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

From 6df52841209786afe3ac21d346a7a1668235b199 Mon Sep 17 00:00:00 2001
From: Olaf Mersmann <olafm@p-value.net>
Date: Mon, 14 Dec 2020 23:27:52 +0100
Subject: [PATCH 1/2] strace: update to 5.10.

---
 srcpkgs/strace/template | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template
index ea6d6667857..bd7d850ca18 100644
--- a/srcpkgs/strace/template
+++ b/srcpkgs/strace/template
@@ -1,19 +1,26 @@
 # Template file for 'strace'
 pkgname=strace
-version=5.9
+version=5.10
 revision=1
 build_style=gnu-configure
-configure_args="--with-libunwind"
+configure_args="--enable-silent-rules --with-libunwind"
 makedepends="libunwind-devel"
 short_desc="System Call Tracer"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-or-later"
 homepage="https://strace.io/"
+changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS"
 distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz"
-checksum=39473eb8465546c3e940fb663cb381eba5613160c7302794699d194a4d5d66d9
+checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;
 	# work around https://github.com/strace/strace/issues/133
 	x86_64-musl) configure_args+=" --enable-mpers=no" ;;
 esac
+
+do_check() {
+	# XXX: Don't run the complete test suite because it takes
+	# about ~90 minutes and some tests fail in CI.
+	make check TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
+}

From 6b39f7009ef8726e02fc338c88abecdf4938ac70 Mon Sep 17 00:00:00 2001
From: Olaf Mersmann <olafm@p-value.net>
Date: Wed, 16 Dec 2020 20:23:04 +0100
Subject: [PATCH 2/2] Update srcpkgs/strace/template
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>
---
 srcpkgs/strace/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template
index bd7d850ca18..c10fd606a4e 100644
--- a/srcpkgs/strace/template
+++ b/srcpkgs/strace/template
@@ -22,5 +22,6 @@ esac
 do_check() {
 	# XXX: Don't run the complete test suite because it takes
 	# about ~90 minutes and some tests fail in CI.
-	make check TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
+	make check \
+		TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
 }

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

* Re: [PR REVIEW] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (3 preceding siblings ...)
  2020-12-16 19:23 ` [PR PATCH] [Updated] " olafmersmann
@ 2020-12-16 19:30 ` olafmersmann
  2020-12-16 19:32 ` [PR PATCH] [Updated] " olafmersmann
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-16 19:30 UTC (permalink / raw)
  To: ml

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

New review comment by olafmersmann on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#discussion_r544565927

Comment:
I tried but configure fails on both platforms with
```
checking whether to enable m32 personality support... no
configure: error: Cannot enable m32 personality support
```

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

* Re: [PR PATCH] [Updated] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (4 preceding siblings ...)
  2020-12-16 19:30 ` [PR REVIEW] " olafmersmann
@ 2020-12-16 19:32 ` olafmersmann
  2020-12-16 20:12 ` [PR REVIEW] " ericonr
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-16 19:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/olafmersmann/void-packages strace
https://github.com/void-linux/void-packages/pull/27165

strace: update to 5.10.


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

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

From 119c201c5118c089240e974b5ed50ade11ab2929 Mon Sep 17 00:00:00 2001
From: Olaf Mersmann <olafm@p-value.net>
Date: Mon, 14 Dec 2020 23:27:52 +0100
Subject: [PATCH] strace: update to 5.10.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>
---
 srcpkgs/strace/template | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template
index ea6d6667857..c10fd606a4e 100644
--- a/srcpkgs/strace/template
+++ b/srcpkgs/strace/template
@@ -1,19 +1,27 @@
 # Template file for 'strace'
 pkgname=strace
-version=5.9
+version=5.10
 revision=1
 build_style=gnu-configure
-configure_args="--with-libunwind"
+configure_args="--enable-silent-rules --with-libunwind"
 makedepends="libunwind-devel"
 short_desc="System Call Tracer"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-or-later"
 homepage="https://strace.io/"
+changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS"
 distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz"
-checksum=39473eb8465546c3e940fb663cb381eba5613160c7302794699d194a4d5d66d9
+checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;
 	# work around https://github.com/strace/strace/issues/133
 	x86_64-musl) configure_args+=" --enable-mpers=no" ;;
 esac
+
+do_check() {
+	# XXX: Don't run the complete test suite because it takes
+	# about ~90 minutes and some tests fail in CI.
+	make check \
+		TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
+}

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

* Re: [PR REVIEW] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (5 preceding siblings ...)
  2020-12-16 19:32 ` [PR PATCH] [Updated] " olafmersmann
@ 2020-12-16 20:12 ` ericonr
  2020-12-17  5:03 ` ericonr
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2020-12-16 20:12 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#discussion_r544591923

Comment:
Ah, shame :/ 

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

* Re: strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (6 preceding siblings ...)
  2020-12-16 20:12 ` [PR REVIEW] " ericonr
@ 2020-12-17  5:03 ` ericonr
  2020-12-17  6:38 ` [PR PATCH] [Updated] " olafmersmann
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2020-12-17  5:03 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#issuecomment-747206972

Comment:
@olafmersmann could you take a look at the manual? I added a `full` option for tests (`$XBPS_CHECK_PKGS = full`), maybe we could run all the tests if that's set?

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

* Re: [PR PATCH] [Updated] strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (7 preceding siblings ...)
  2020-12-17  5:03 ` ericonr
@ 2020-12-17  6:38 ` olafmersmann
  2020-12-17  7:13 ` olafmersmann
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-17  6:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/olafmersmann/void-packages strace
https://github.com/void-linux/void-packages/pull/27165

strace: update to 5.10.


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

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

From b7c07955ac9a017ac96421c4f82561e2318d5825 Mon Sep 17 00:00:00 2001
From: Olaf Mersmann <olafm@p-value.net>
Date: Mon, 14 Dec 2020 23:27:52 +0100
Subject: [PATCH] strace: update to 5.10.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>
---
 srcpkgs/strace/template | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template
index ea6d6667857..27f9e927b77 100644
--- a/srcpkgs/strace/template
+++ b/srcpkgs/strace/template
@@ -1,19 +1,31 @@
 # Template file for 'strace'
 pkgname=strace
-version=5.9
+version=5.10
 revision=1
 build_style=gnu-configure
-configure_args="--with-libunwind"
+configure_args="--enable-silent-rules --with-libunwind"
 makedepends="libunwind-devel"
 short_desc="System Call Tracer"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="LGPL-2.1-or-later"
 homepage="https://strace.io/"
+changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS"
 distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz"
-checksum=39473eb8465546c3e940fb663cb381eba5613160c7302794699d194a4d5d66d9
+checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;
 	# work around https://github.com/strace/strace/issues/133
 	x86_64-musl) configure_args+=" --enable-mpers=no" ;;
 esac
+
+do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		# XXX: Some tests may fail inside of containers or if they are missing
+		# sufficient capabilities
+		make check
+	else
+		make check \
+			TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv"
+	fi
+}

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

* Re: strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (8 preceding siblings ...)
  2020-12-17  6:38 ` [PR PATCH] [Updated] " olafmersmann
@ 2020-12-17  7:13 ` olafmersmann
  2020-12-17 14:39 ` ericonr
  2020-12-17 14:39 ` [PR PATCH] [Merged]: " ericonr
  11 siblings, 0 replies; 13+ messages in thread
From: olafmersmann @ 2020-12-17  7:13 UTC (permalink / raw)
  To: ml

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

New comment by olafmersmann on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#issuecomment-747259136

Comment:
> @olafmersmann could you take a look at the manual? I added a `full` option for tests (`$XBPS_CHECK_PKGS = full`), maybe we could run all the tests if that's set?

If XBPS_CHECK_PKGS is set to full, do_check() runs all tests, otherwise only a small (arbitrary) selection of tests that should not fail in CI.

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

* Re: strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (9 preceding siblings ...)
  2020-12-17  7:13 ` olafmersmann
@ 2020-12-17 14:39 ` ericonr
  2020-12-17 14:39 ` [PR PATCH] [Merged]: " ericonr
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2020-12-17 14:39 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27165#issuecomment-747477899

Comment:
Thank you, wonderful :)

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

* Re: [PR PATCH] [Merged]: strace: update to 5.10.
  2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
                   ` (10 preceding siblings ...)
  2020-12-17 14:39 ` ericonr
@ 2020-12-17 14:39 ` ericonr
  11 siblings, 0 replies; 13+ messages in thread
From: ericonr @ 2020-12-17 14:39 UTC (permalink / raw)
  To: ml

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

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

strace: update to 5.10.
https://github.com/void-linux/void-packages/pull/27165

Description:


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

end of thread, other threads:[~2020-12-17 14:39 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-14 22:29 [PR PATCH] strace: update to 5.10 olafmersmann
2020-12-15  7:14 ` [PR PATCH] [Updated] " olafmersmann
2020-12-15 14:09 ` [PR REVIEW] " ericonr
2020-12-15 14:09 ` ericonr
2020-12-16 19:23 ` [PR PATCH] [Updated] " olafmersmann
2020-12-16 19:30 ` [PR REVIEW] " olafmersmann
2020-12-16 19:32 ` [PR PATCH] [Updated] " olafmersmann
2020-12-16 20:12 ` [PR REVIEW] " ericonr
2020-12-17  5:03 ` ericonr
2020-12-17  6:38 ` [PR PATCH] [Updated] " olafmersmann
2020-12-17  7:13 ` olafmersmann
2020-12-17 14:39 ` ericonr
2020-12-17 14:39 ` [PR PATCH] [Merged]: " ericonr

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