Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pipewire: update to 0.3.55
@ 2022-07-13 14:35 ftrvxmtrx
  2022-07-17 17:46 ` motorto
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ftrvxmtrx @ 2022-07-13 14:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ftrvxmtrx/void-packages pipewire-0.3.55
https://github.com/void-linux/void-packages/pull/38040

pipewire: update to 0.3.55
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64, aarch64-musl)

A patch recommended to be included by distros is added as well.

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

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

From fcd82f10801e8d00315f89cab6f04a93a229b10f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sigrid=20Solveig=20Hafl=C3=ADnud=C3=B3ttir?=
 <sigrid@ftrv.se>
Date: Wed, 13 Jul 2022 00:40:00 +0200
Subject: [PATCH] pipewire: update to 0.3.55

---
 .../pipewire/patches/0.3.55-jack-mix.patch    | 26 +++++++++++++++++++
 srcpkgs/pipewire/template                     |  6 ++---
 2 files changed, 29 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/pipewire/patches/0.3.55-jack-mix.patch

diff --git a/srcpkgs/pipewire/patches/0.3.55-jack-mix.patch b/srcpkgs/pipewire/patches/0.3.55-jack-mix.patch
new file mode 100644
index 000000000000..14cd4feb16fe
--- /dev/null
+++ b/srcpkgs/pipewire/patches/0.3.55-jack-mix.patch
@@ -0,0 +1,26 @@
+From 40552a0e914c3aef48ce59ce1bfb9d80516aa893 Mon Sep 17 00:00:00 2001
+From: Wim Taymans <wtaymans@redhat.com>
+Date: Tue, 12 Jul 2022 15:10:02 +0200
+Subject: [PATCH] jack: only mix when we have input to mix
+
+Avoids a crash when starting ardour6.
+---
+ pipewire-jack/src/pipewire-jack.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/pipewire-jack/src/pipewire-jack.c b/pipewire-jack/src/pipewire-jack.c
+index 2a9ebc40d..04c63984d 100644
+--- a/pipewire-jack/src/pipewire-jack.c
++++ b/pipewire-jack/src/pipewire-jack.c
+@@ -4449,7 +4449,7 @@ static void *get_buffer_input_float(struct port *p, jack_nframes_t frames)
+ 	}
+ 	if (n_ptr == 1) {
+ 		ptr = mix_ptr[0];
+-	} else {
++	} else if (n_ptr > 1) {
+ 		ptr = p->emptyptr;
+ 		mix_function(ptr, mix_ptr, n_ptr, ptr_aligned, frames);
+ 		p->zeroed = false;
+-- 
+GitLab
+
diff --git a/srcpkgs/pipewire/template b/srcpkgs/pipewire/template
index 63a41a8e5189..e9ff4af833ab 100644
--- a/srcpkgs/pipewire/template
+++ b/srcpkgs/pipewire/template
@@ -1,7 +1,7 @@
 # Template file for 'pipewire'
 pkgname=pipewire
-version=0.3.54
-revision=2
+version=0.3.55
+revision=1
 _pms_version=0.4.1
 build_style=meson
 configure_args="
@@ -34,7 +34,7 @@ homepage="https://pipewire.org/"
 changelog="https://gitlab.freedesktop.org/pipewire/pipewire/-/raw/master/NEWS"
 distfiles="https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/${version}/pipewire-${version}.tar.gz
  https://gitlab.freedesktop.org/pipewire/media-session/-/archive/${_pms_version}/media-session-${_pms_version}.tar.gz"
-checksum="11a856ac3eb70b7cbeef12407f50d240d212016b6de3bb692e462251571f050e
+checksum="666260961a242239a940b7f6130e5e9cb51ad76f9ebf6b5403198ee5efa69344
  119c9216070b54018217552c7924f9888da270c3c4647c5e2b85ffa6b1574975"
 make_dirs="/var/lib/pipewire 0755 _pipewire _pipewire"
 system_accounts="_pipewire"

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

* Re: pipewire: update to 0.3.55
  2022-07-13 14:35 [PR PATCH] pipewire: update to 0.3.55 ftrvxmtrx
@ 2022-07-17 17:46 ` motorto
  2022-07-17 21:42 ` paper42
  2022-07-17 21:42 ` [PR PATCH] [Merged]: " paper42
  2 siblings, 0 replies; 4+ messages in thread
From: motorto @ 2022-07-17 17:46 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/38040#issuecomment-1186579287

Comment:
Been using this on my system since yesterday and is working nice (x86_64-musl) @paper42. 


Any tests you specifically want ? 

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

* Re: pipewire: update to 0.3.55
  2022-07-13 14:35 [PR PATCH] pipewire: update to 0.3.55 ftrvxmtrx
  2022-07-17 17:46 ` motorto
@ 2022-07-17 21:42 ` paper42
  2022-07-17 21:42 ` [PR PATCH] [Merged]: " paper42
  2 siblings, 0 replies; 4+ messages in thread
From: paper42 @ 2022-07-17 21:42 UTC (permalink / raw)
  To: ml

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

New comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/38040#issuecomment-1186612179

Comment:
> Any tests you specifically want ?

nothing specific

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

* Re: [PR PATCH] [Merged]: pipewire: update to 0.3.55
  2022-07-13 14:35 [PR PATCH] pipewire: update to 0.3.55 ftrvxmtrx
  2022-07-17 17:46 ` motorto
  2022-07-17 21:42 ` paper42
@ 2022-07-17 21:42 ` paper42
  2 siblings, 0 replies; 4+ messages in thread
From: paper42 @ 2022-07-17 21:42 UTC (permalink / raw)
  To: ml

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

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

pipewire: update to 0.3.55
https://github.com/void-linux/void-packages/pull/38040

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64, aarch64-musl)

A patch recommended to be included by distros is added as well.

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

end of thread, other threads:[~2022-07-17 21:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-13 14:35 [PR PATCH] pipewire: update to 0.3.55 ftrvxmtrx
2022-07-17 17:46 ` motorto
2022-07-17 21:42 ` paper42
2022-07-17 21:42 ` [PR PATCH] [Merged]: " paper42

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