Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pulseaudio: Update to 16.1
@ 2022-09-05 21:59 unfairscheduler
  2022-09-06  3:33 ` [PR PATCH] [Updated] " unfairscheduler
                   ` (8 more replies)
  0 siblings, 9 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-05 21:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/unfairscheduler/void-packages master
https://github.com/void-linux/void-packages/pull/39120

pulseaudio: Update to 16.1
- Bump shlibs
- Remove patches folder as patch merged (https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/e1899245703f1dfa3220af465046c287a5f1c2ba)
- Remove `make_check=yes` flag from template


#### 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-glibc)


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

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

From 5793a9f8fee40e9659225b3ea4e1a74053689e45 Mon Sep 17 00:00:00 2001
From: unfairscheduler <unfairscheduler@gmail.com>
Date: Mon, 5 Sep 2022 17:42:33 -0400
Subject: [PATCH] pulseaudio: Update to 16.1

- Bump shlibs
- Remove patches folder as patch merged (https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/e1899245703f1dfa3220af465046c287a5f1c2ba)
- Remove `make_check=yes` flag from template
---
 common/shlibs                                 | 10 +--
 ...ession-with-side-effect-in-pa_assert.patch | 79 -------------------
 srcpkgs/pulseaudio/template                   |  8 +-
 3 files changed, 8 insertions(+), 89 deletions(-)
 delete mode 100644 srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch

diff --git a/common/shlibs b/common/shlibs
index 8b4edbd9ce66..a9573ced4ecf 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -736,11 +736,11 @@ libsndfile.so.1 libsndfile-1.0.20_1
 libspeex.so.1 libspeex-1.1_1
 libspeexdsp.so.1 speexdsp-1.2rc2_1
 libasyncns.so.0 libasyncns-0.8_1
-libpulse.so.0 libpulseaudio-15.0_1
-libpulse-mainloop-glib.so.0 libpulseaudio-15.0_1
-libpulse-simple.so.0 libpulseaudio-15.0_1
-libpulsecommon-15.0.so libpulseaudio-15.0_1
-libpulsecore-15.0.so libpulseaudio-15.0_1
+libpulse.so.0 libpulseaudio-16.1_1
+libpulse-mainloop-glib.so.0 libpulseaudio-16.1_1
+libpulse-simple.so.0 libpulseaudio-16.1_1
+libpulsecommon-16.1.so libpulseaudio-16.1_1
+libpulsecore-16.1.so libpulseaudio-16.1_1
 libprojectM.so.3 projectM-3.1.7_2
 liborc-0.4.so.0 orc-0.4.11_1
 liborc-test-0.4.so.0 orc-0.4.11_1
diff --git a/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch b/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
deleted file mode 100644
index eff6b1c1406c..000000000000
--- a/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-From e1899245703f1dfa3220af465046c287a5f1c2ba Mon Sep 17 00:00:00 2001
-From: "Igor V. Kovalenko" <igor.v.kovalenko@gmail.com>
-Date: Thu, 30 Sep 2021 08:40:35 +0300
-Subject: [PATCH] Fix expression with side effect in pa_assert
-
-Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/641>
----
- src/modules/bluetooth/module-bluez5-device.c | 4 ++--
- src/pulsecore/card.c                         | 4 ++--
- src/pulsecore/core.c                         | 4 ++--
- src/pulsecore/dbus-util.c                    | 2 +-
- 4 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c
-index 9774be5cc..afbb7e3fa 100644
---- a/src/modules/bluetooth/module-bluez5-device.c
-+++ b/src/modules/bluetooth/module-bluez5-device.c
-@@ -2513,10 +2513,10 @@ static int bluez5_device_message_handler(const char *object_path, const char *me
-     pa_bluetooth_profile_t profile;
-     const pa_a2dp_endpoint_conf *endpoint_conf;
-     const char *codec_name;
--    struct userdata *u;
-+    struct userdata *u = userdata;
-     bool is_a2dp_sink;
- 
--    pa_assert(u = (struct userdata *)userdata);
-+    pa_assert(u);
-     pa_assert(message);
-     pa_assert(response);
- 
-diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c
-index 23b347b59..4f5997d2c 100644
---- a/src/pulsecore/card.c
-+++ b/src/pulsecore/card.c
-@@ -467,10 +467,10 @@ int pa_card_suspend(pa_card *c, bool suspend, pa_suspend_cause_t cause) {
- }
- 
- static int card_message_handler(const char *object_path, const char *message, const pa_json_object *parameters, char **response, void *userdata) {
--    pa_card *c;
-+    pa_card *c = userdata;
-     char *message_handler_path;
- 
--    pa_assert(c = (pa_card *) userdata);
-+    pa_assert(c);
-     pa_assert(message);
-     pa_assert(response);
- 
-diff --git a/src/pulsecore/core.c b/src/pulsecore/core.c
-index 174d0650e..132f08bbb 100644
---- a/src/pulsecore/core.c
-+++ b/src/pulsecore/core.c
-@@ -86,9 +86,9 @@ static char *message_handler_list(pa_core *c) {
- }
- 
- static int core_message_handler(const char *object_path, const char *message, const pa_json_object *parameters, char **response, void *userdata) {
--    pa_core *c;
-+    pa_core *c = userdata;
- 
--    pa_assert(c = (pa_core *) userdata);
-+    pa_assert(c);
-     pa_assert(message);
-     pa_assert(response);
-     pa_assert(pa_safe_streq(object_path, "/core"));
-diff --git a/src/pulsecore/dbus-util.c b/src/pulsecore/dbus-util.c
-index 7d550204e..466a882d8 100644
---- a/src/pulsecore/dbus-util.c
-+++ b/src/pulsecore/dbus-util.c
-@@ -737,7 +737,7 @@ pa_proplist *pa_dbus_get_proplist_arg(DBusConnection *c, DBusMessage *msg, DBusM
-     pa_assert(msg);
-     pa_assert(iter);
- 
--    pa_assert(signature = dbus_message_iter_get_signature(iter));
-+    pa_assert_se(signature = dbus_message_iter_get_signature(iter));
-     pa_assert_se(pa_streq(signature, "a{say}"));
- 
-     dbus_free(signature);
--- 
-GitLab
-
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 685154e8c0e1..777bdbd7ff5d 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
-version=15.0
-revision=3
+version=16.1
+revision=1
 build_style=meson
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
  -Dgtk=disabled -Dsystemd=disabled -Dwebrtc-aec=enabled
@@ -23,10 +23,8 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.freedesktop.org/wiki/Software/PulseAudio"
 distfiles="${FREEDESKTOP_SITE}/${pkgname}/releases/${pkgname}-${version}.tar.xz"
-checksum=a40b887a3ba98cc26976eb11bdb6613988f145b19024d1b6555c6a03c9cba1a0
+checksum=8eef32ce91d47979f95fd9a935e738cd7eb7463430dabc72863251751e504ae4
 python_version=3
-# FIXME: core-util-test fails
-make_check=yes
 
 system_groups="pulse-access"
 system_accounts="pulse"

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

* Re: [PR PATCH] [Updated] pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
@ 2022-09-06  3:33 ` unfairscheduler
  2022-09-06  3:42 ` unfairscheduler
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06  3:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/unfairscheduler/void-packages master
https://github.com/void-linux/void-packages/pull/39120

pulseaudio: Update to 16.1
- Bump shlibs
- Remove patches folder as patch merged (https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/e1899245703f1dfa3220af465046c287a5f1c2ba)
- Remove `make_check=yes` flag from template


#### 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-glibc)


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

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

From aef94ab30d2822a07ef91f28b040df7359bab440 Mon Sep 17 00:00:00 2001
From: unfairscheduler <unfairscheduler@gmail.com>
Date: Mon, 5 Sep 2022 17:42:33 -0400
Subject: [PATCH] pulseaudio: Update to 16.1

- Bump shlibs
- Remove merged patch
- Remove make_check=yes flag from template
- Add patch to disable four failing tests (which are bound to fail)
---
 common/shlibs                                 | 10 +--
 ...ession-with-side-effect-in-pa_assert.patch | 79 -------------------
 .../remove_test_replace_fail_1234.patch       | 60 ++++++++++++++
 srcpkgs/pulseaudio/template                   |  8 +-
 4 files changed, 68 insertions(+), 89 deletions(-)
 delete mode 100644 srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
 create mode 100644 srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch

diff --git a/common/shlibs b/common/shlibs
index 8b4edbd9ce66..a9573ced4ecf 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -736,11 +736,11 @@ libsndfile.so.1 libsndfile-1.0.20_1
 libspeex.so.1 libspeex-1.1_1
 libspeexdsp.so.1 speexdsp-1.2rc2_1
 libasyncns.so.0 libasyncns-0.8_1
-libpulse.so.0 libpulseaudio-15.0_1
-libpulse-mainloop-glib.so.0 libpulseaudio-15.0_1
-libpulse-simple.so.0 libpulseaudio-15.0_1
-libpulsecommon-15.0.so libpulseaudio-15.0_1
-libpulsecore-15.0.so libpulseaudio-15.0_1
+libpulse.so.0 libpulseaudio-16.1_1
+libpulse-mainloop-glib.so.0 libpulseaudio-16.1_1
+libpulse-simple.so.0 libpulseaudio-16.1_1
+libpulsecommon-16.1.so libpulseaudio-16.1_1
+libpulsecore-16.1.so libpulseaudio-16.1_1
 libprojectM.so.3 projectM-3.1.7_2
 liborc-0.4.so.0 orc-0.4.11_1
 liborc-test-0.4.so.0 orc-0.4.11_1
diff --git a/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch b/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
deleted file mode 100644
index eff6b1c1406c..000000000000
--- a/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-From e1899245703f1dfa3220af465046c287a5f1c2ba Mon Sep 17 00:00:00 2001
-From: "Igor V. Kovalenko" <igor.v.kovalenko@gmail.com>
-Date: Thu, 30 Sep 2021 08:40:35 +0300
-Subject: [PATCH] Fix expression with side effect in pa_assert
-
-Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/641>
----
- src/modules/bluetooth/module-bluez5-device.c | 4 ++--
- src/pulsecore/card.c                         | 4 ++--
- src/pulsecore/core.c                         | 4 ++--
- src/pulsecore/dbus-util.c                    | 2 +-
- 4 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c
-index 9774be5cc..afbb7e3fa 100644
---- a/src/modules/bluetooth/module-bluez5-device.c
-+++ b/src/modules/bluetooth/module-bluez5-device.c
-@@ -2513,10 +2513,10 @@ static int bluez5_device_message_handler(const char *object_path, const char *me
-     pa_bluetooth_profile_t profile;
-     const pa_a2dp_endpoint_conf *endpoint_conf;
-     const char *codec_name;
--    struct userdata *u;
-+    struct userdata *u = userdata;
-     bool is_a2dp_sink;
- 
--    pa_assert(u = (struct userdata *)userdata);
-+    pa_assert(u);
-     pa_assert(message);
-     pa_assert(response);
- 
-diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c
-index 23b347b59..4f5997d2c 100644
---- a/src/pulsecore/card.c
-+++ b/src/pulsecore/card.c
-@@ -467,10 +467,10 @@ int pa_card_suspend(pa_card *c, bool suspend, pa_suspend_cause_t cause) {
- }
- 
- static int card_message_handler(const char *object_path, const char *message, const pa_json_object *parameters, char **response, void *userdata) {
--    pa_card *c;
-+    pa_card *c = userdata;
-     char *message_handler_path;
- 
--    pa_assert(c = (pa_card *) userdata);
-+    pa_assert(c);
-     pa_assert(message);
-     pa_assert(response);
- 
-diff --git a/src/pulsecore/core.c b/src/pulsecore/core.c
-index 174d0650e..132f08bbb 100644
---- a/src/pulsecore/core.c
-+++ b/src/pulsecore/core.c
-@@ -86,9 +86,9 @@ static char *message_handler_list(pa_core *c) {
- }
- 
- static int core_message_handler(const char *object_path, const char *message, const pa_json_object *parameters, char **response, void *userdata) {
--    pa_core *c;
-+    pa_core *c = userdata;
- 
--    pa_assert(c = (pa_core *) userdata);
-+    pa_assert(c);
-     pa_assert(message);
-     pa_assert(response);
-     pa_assert(pa_safe_streq(object_path, "/core"));
-diff --git a/src/pulsecore/dbus-util.c b/src/pulsecore/dbus-util.c
-index 7d550204e..466a882d8 100644
---- a/src/pulsecore/dbus-util.c
-+++ b/src/pulsecore/dbus-util.c
-@@ -737,7 +737,7 @@ pa_proplist *pa_dbus_get_proplist_arg(DBusConnection *c, DBusMessage *msg, DBusM
-     pa_assert(msg);
-     pa_assert(iter);
- 
--    pa_assert(signature = dbus_message_iter_get_signature(iter));
-+    pa_assert_se(signature = dbus_message_iter_get_signature(iter));
-     pa_assert_se(pa_streq(signature, "a{say}"));
- 
-     dbus_free(signature);
--- 
-GitLab
-
diff --git a/srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch b/srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch
new file mode 100644
index 000000000000..c57025c12a96
--- /dev/null
+++ b/srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch
@@ -0,0 +1,60 @@
+https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286
+core-util-test.c would fail unless assertions are enabled. Credits to Igor Kovalenko for pointing this out.
+The below patch disables the four failing tests.
+diff --git a/src/tests/core-util-test.c b/src/tests/core-util-test.c
+index 49aa4ab..8cdad19 100644
+--- a/src/tests/core-util-test.c
++++ b/src/tests/core-util-test.c
+@@ -262,20 +262,26 @@ START_TEST (test_replace) {
+ }
+ END_TEST
+ 
++/*
+ START_TEST (test_replace_fail_1) {
+     pa_replace(NULL, "b", "bab");
+ }
+ END_TEST
++*/
+ 
++/*
+ START_TEST (test_replace_fail_2) {
+     pa_replace("abe", NULL, "bab");
+ }
+ END_TEST
++*/
+ 
++/*
+ START_TEST (test_replace_fail_3) {
+     pa_replace("abcde", "b", NULL);
+ }
+ END_TEST
++*/
+ 
+ START_TEST (test_escape) {
+     char* value;
+@@ -294,10 +300,12 @@ START_TEST (test_escape) {
+ }
+ END_TEST
+ 
++/*
+ START_TEST (test_replace_fail_4) {
+     pa_replace("abe", "", "bab");
+ }
+ END_TEST
++*/
+ 
+ START_TEST (test_unescape) {
+     char* value;
+@@ -334,10 +342,12 @@ int main(int argc, char *argv[]) {
+     tcase_add_test(tc, test_atoi64);
+     tcase_add_test(tc, test_atod);
+     tcase_add_test(tc, test_replace);
++    /*
+     tcase_add_test_raise_signal(tc, test_replace_fail_1, SIGABRT);
+     tcase_add_test_raise_signal(tc, test_replace_fail_2, SIGABRT);
+     tcase_add_test_raise_signal(tc, test_replace_fail_3, SIGABRT);
+     tcase_add_test_raise_signal(tc, test_replace_fail_4, SIGABRT);
++    */
+     tcase_add_test(tc, test_escape);
+     tcase_add_test(tc, test_unescape);
+ 
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 685154e8c0e1..777bdbd7ff5d 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
-version=15.0
-revision=3
+version=16.1
+revision=1
 build_style=meson
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
  -Dgtk=disabled -Dsystemd=disabled -Dwebrtc-aec=enabled
@@ -23,10 +23,8 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.freedesktop.org/wiki/Software/PulseAudio"
 distfiles="${FREEDESKTOP_SITE}/${pkgname}/releases/${pkgname}-${version}.tar.xz"
-checksum=a40b887a3ba98cc26976eb11bdb6613988f145b19024d1b6555c6a03c9cba1a0
+checksum=8eef32ce91d47979f95fd9a935e738cd7eb7463430dabc72863251751e504ae4
 python_version=3
-# FIXME: core-util-test fails
-make_check=yes
 
 system_groups="pulse-access"
 system_accounts="pulse"

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

* Re: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
  2022-09-06  3:33 ` [PR PATCH] [Updated] " unfairscheduler
@ 2022-09-06  3:42 ` unfairscheduler
  2022-09-06  3:42 ` unfairscheduler
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06  3:42 UTC (permalink / raw)
  To: ml

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

New comment by unfairscheduler on void-packages repository

https://github.com/void-linux/void-packages/pull/39120#issuecomment-1237624870

Comment:
Added patch to disable four failing tests as `meson` build-style disables assertions for release build types using flag `-Db_ndebug=true`. The four failing tests require assertions enabled. 
[Credits](https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286)

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

* Re: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
  2022-09-06  3:33 ` [PR PATCH] [Updated] " unfairscheduler
  2022-09-06  3:42 ` unfairscheduler
@ 2022-09-06  3:42 ` unfairscheduler
  2022-09-06  3:47 ` unfairscheduler
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06  3:42 UTC (permalink / raw)
  To: ml

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

New comment by unfairscheduler on void-packages repository

https://github.com/void-linux/void-packages/pull/39120#issuecomment-1237624870

Comment:
Added patch to disable four failing tests as `meson` build-style disables assertions for release build types using flag `-Db_ndebug=true`. The four failing tests require assertions enabled. 

[Credits](https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286)

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

* Re: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
                   ` (2 preceding siblings ...)
  2022-09-06  3:42 ` unfairscheduler
@ 2022-09-06  3:47 ` unfairscheduler
  2022-09-06  3:47 ` unfairscheduler
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06  3:47 UTC (permalink / raw)
  To: ml

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

New comment by unfairscheduler on void-packages repository

https://github.com/void-linux/void-packages/pull/39120#issuecomment-1237624870

Comment:
Added patch to disable four failing tests as `meson` build-style disables assertions for release build type using the flag `-Db_ndebug=true`. The four failing tests require assertions enabled. 

[Credits](https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286)

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

* Re: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
                   ` (3 preceding siblings ...)
  2022-09-06  3:47 ` unfairscheduler
@ 2022-09-06  3:47 ` unfairscheduler
  2022-09-06  3:47 ` unfairscheduler
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06  3:47 UTC (permalink / raw)
  To: ml

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

New comment by unfairscheduler on void-packages repository

https://github.com/void-linux/void-packages/pull/39120#issuecomment-1237624870

Comment:
Added patch to disable four failing tests as `meson` build-style disables assertions for release build type using the flag `-Db_ndebug=true`. The four failing tests require assertions enabled. 

[Credits](https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286)

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

* Re: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
                   ` (4 preceding siblings ...)
  2022-09-06  3:47 ` unfairscheduler
@ 2022-09-06  3:47 ` unfairscheduler
  2022-09-06 15:01 ` [PR PATCH] [Updated] " unfairscheduler
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06  3:47 UTC (permalink / raw)
  To: ml

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

New comment by unfairscheduler on void-packages repository

https://github.com/void-linux/void-packages/pull/39120#issuecomment-1237627116

Comment:
Added patch to disable four failing tests as `meson` build-style disables assertions for release build type using the flag `-Db_ndebug=true`. The four failing tests require assertions enabled. 

[Credits](https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286)

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

* Re: [PR PATCH] [Updated] pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
                   ` (5 preceding siblings ...)
  2022-09-06  3:47 ` unfairscheduler
@ 2022-09-06 15:01 ` unfairscheduler
  2022-10-05 19:13 ` [PR PATCH] [Closed]: " unfairscheduler
  2023-01-26  1:26 ` Nairou
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-09-06 15:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/unfairscheduler/void-packages master
https://github.com/void-linux/void-packages/pull/39120

pulseaudio: Update to 16.1
- Bump shlibs
- Remove patches folder as patch merged (https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/e1899245703f1dfa3220af465046c287a5f1c2ba)
- Remove `make_check=yes` flag from template


#### 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-glibc)


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

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

From 1d2bcc9e04ebbd458fba39fbd98c2d49aa85d963 Mon Sep 17 00:00:00 2001
From: unfairscheduler <unfairscheduler@gmail.com>
Date: Mon, 5 Sep 2022 17:42:33 -0400
Subject: [PATCH 1/3] pulseaudio: Update to 16.1

- Bump shlibs
- Remove merged patch
- Remove make_check=yes flag from template
- Add patch to disable four failing tests (which are bound to fail)
- Remove pre_configure vsed
---
 common/shlibs                                 | 10 +--
 ...ession-with-side-effect-in-pa_assert.patch | 79 -------------------
 .../remove_test_replace_fail_1234.patch       | 60 ++++++++++++++
 srcpkgs/pulseaudio/template                   | 15 +---
 4 files changed, 68 insertions(+), 96 deletions(-)
 delete mode 100644 srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
 create mode 100644 srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch

diff --git a/common/shlibs b/common/shlibs
index 8b4edbd9ce66..a9573ced4ecf 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -736,11 +736,11 @@ libsndfile.so.1 libsndfile-1.0.20_1
 libspeex.so.1 libspeex-1.1_1
 libspeexdsp.so.1 speexdsp-1.2rc2_1
 libasyncns.so.0 libasyncns-0.8_1
-libpulse.so.0 libpulseaudio-15.0_1
-libpulse-mainloop-glib.so.0 libpulseaudio-15.0_1
-libpulse-simple.so.0 libpulseaudio-15.0_1
-libpulsecommon-15.0.so libpulseaudio-15.0_1
-libpulsecore-15.0.so libpulseaudio-15.0_1
+libpulse.so.0 libpulseaudio-16.1_1
+libpulse-mainloop-glib.so.0 libpulseaudio-16.1_1
+libpulse-simple.so.0 libpulseaudio-16.1_1
+libpulsecommon-16.1.so libpulseaudio-16.1_1
+libpulsecore-16.1.so libpulseaudio-16.1_1
 libprojectM.so.3 projectM-3.1.7_2
 liborc-0.4.so.0 orc-0.4.11_1
 liborc-test-0.4.so.0 orc-0.4.11_1
diff --git a/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch b/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
deleted file mode 100644
index eff6b1c1406c..000000000000
--- a/srcpkgs/pulseaudio/patches/fix-expression-with-side-effect-in-pa_assert.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-From e1899245703f1dfa3220af465046c287a5f1c2ba Mon Sep 17 00:00:00 2001
-From: "Igor V. Kovalenko" <igor.v.kovalenko@gmail.com>
-Date: Thu, 30 Sep 2021 08:40:35 +0300
-Subject: [PATCH] Fix expression with side effect in pa_assert
-
-Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/641>
----
- src/modules/bluetooth/module-bluez5-device.c | 4 ++--
- src/pulsecore/card.c                         | 4 ++--
- src/pulsecore/core.c                         | 4 ++--
- src/pulsecore/dbus-util.c                    | 2 +-
- 4 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c
-index 9774be5cc..afbb7e3fa 100644
---- a/src/modules/bluetooth/module-bluez5-device.c
-+++ b/src/modules/bluetooth/module-bluez5-device.c
-@@ -2513,10 +2513,10 @@ static int bluez5_device_message_handler(const char *object_path, const char *me
-     pa_bluetooth_profile_t profile;
-     const pa_a2dp_endpoint_conf *endpoint_conf;
-     const char *codec_name;
--    struct userdata *u;
-+    struct userdata *u = userdata;
-     bool is_a2dp_sink;
- 
--    pa_assert(u = (struct userdata *)userdata);
-+    pa_assert(u);
-     pa_assert(message);
-     pa_assert(response);
- 
-diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c
-index 23b347b59..4f5997d2c 100644
---- a/src/pulsecore/card.c
-+++ b/src/pulsecore/card.c
-@@ -467,10 +467,10 @@ int pa_card_suspend(pa_card *c, bool suspend, pa_suspend_cause_t cause) {
- }
- 
- static int card_message_handler(const char *object_path, const char *message, const pa_json_object *parameters, char **response, void *userdata) {
--    pa_card *c;
-+    pa_card *c = userdata;
-     char *message_handler_path;
- 
--    pa_assert(c = (pa_card *) userdata);
-+    pa_assert(c);
-     pa_assert(message);
-     pa_assert(response);
- 
-diff --git a/src/pulsecore/core.c b/src/pulsecore/core.c
-index 174d0650e..132f08bbb 100644
---- a/src/pulsecore/core.c
-+++ b/src/pulsecore/core.c
-@@ -86,9 +86,9 @@ static char *message_handler_list(pa_core *c) {
- }
- 
- static int core_message_handler(const char *object_path, const char *message, const pa_json_object *parameters, char **response, void *userdata) {
--    pa_core *c;
-+    pa_core *c = userdata;
- 
--    pa_assert(c = (pa_core *) userdata);
-+    pa_assert(c);
-     pa_assert(message);
-     pa_assert(response);
-     pa_assert(pa_safe_streq(object_path, "/core"));
-diff --git a/src/pulsecore/dbus-util.c b/src/pulsecore/dbus-util.c
-index 7d550204e..466a882d8 100644
---- a/src/pulsecore/dbus-util.c
-+++ b/src/pulsecore/dbus-util.c
-@@ -737,7 +737,7 @@ pa_proplist *pa_dbus_get_proplist_arg(DBusConnection *c, DBusMessage *msg, DBusM
-     pa_assert(msg);
-     pa_assert(iter);
- 
--    pa_assert(signature = dbus_message_iter_get_signature(iter));
-+    pa_assert_se(signature = dbus_message_iter_get_signature(iter));
-     pa_assert_se(pa_streq(signature, "a{say}"));
- 
-     dbus_free(signature);
--- 
-GitLab
-
diff --git a/srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch b/srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch
new file mode 100644
index 000000000000..c57025c12a96
--- /dev/null
+++ b/srcpkgs/pulseaudio/patches/remove_test_replace_fail_1234.patch
@@ -0,0 +1,60 @@
+https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/1286
+core-util-test.c would fail unless assertions are enabled. Credits to Igor Kovalenko for pointing this out.
+The below patch disables the four failing tests.
+diff --git a/src/tests/core-util-test.c b/src/tests/core-util-test.c
+index 49aa4ab..8cdad19 100644
+--- a/src/tests/core-util-test.c
++++ b/src/tests/core-util-test.c
+@@ -262,20 +262,26 @@ START_TEST (test_replace) {
+ }
+ END_TEST
+ 
++/*
+ START_TEST (test_replace_fail_1) {
+     pa_replace(NULL, "b", "bab");
+ }
+ END_TEST
++*/
+ 
++/*
+ START_TEST (test_replace_fail_2) {
+     pa_replace("abe", NULL, "bab");
+ }
+ END_TEST
++*/
+ 
++/*
+ START_TEST (test_replace_fail_3) {
+     pa_replace("abcde", "b", NULL);
+ }
+ END_TEST
++*/
+ 
+ START_TEST (test_escape) {
+     char* value;
+@@ -294,10 +300,12 @@ START_TEST (test_escape) {
+ }
+ END_TEST
+ 
++/*
+ START_TEST (test_replace_fail_4) {
+     pa_replace("abe", "", "bab");
+ }
+ END_TEST
++*/
+ 
+ START_TEST (test_unescape) {
+     char* value;
+@@ -334,10 +342,12 @@ int main(int argc, char *argv[]) {
+     tcase_add_test(tc, test_atoi64);
+     tcase_add_test(tc, test_atod);
+     tcase_add_test(tc, test_replace);
++    /*
+     tcase_add_test_raise_signal(tc, test_replace_fail_1, SIGABRT);
+     tcase_add_test_raise_signal(tc, test_replace_fail_2, SIGABRT);
+     tcase_add_test_raise_signal(tc, test_replace_fail_3, SIGABRT);
+     tcase_add_test_raise_signal(tc, test_replace_fail_4, SIGABRT);
++    */
+     tcase_add_test(tc, test_escape);
+     tcase_add_test(tc, test_unescape);
+ 
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 685154e8c0e1..3d94c9c64c1d 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
-version=15.0
-revision=3
+version=16.1
+revision=1
 build_style=meson
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
  -Dgtk=disabled -Dsystemd=disabled -Dwebrtc-aec=enabled
@@ -23,10 +23,8 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.freedesktop.org/wiki/Software/PulseAudio"
 distfiles="${FREEDESKTOP_SITE}/${pkgname}/releases/${pkgname}-${version}.tar.xz"
-checksum=a40b887a3ba98cc26976eb11bdb6613988f145b19024d1b6555c6a03c9cba1a0
+checksum=8eef32ce91d47979f95fd9a935e738cd7eb7463430dabc72863251751e504ae4
 python_version=3
-# FIXME: core-util-test fails
-make_check=yes
 
 system_groups="pulse-access"
 system_accounts="pulse"
@@ -44,13 +42,6 @@ case "$XBPS_TARGET_MACHINE" in
 	arm*) configure_args+=" -Db_lto=false"
 esac
 
-pre_configure() {
-	case "$XBPS_TARGET_MACHINE" in
-		# Disable neon optimizations for the arm* architectures
-		arm*) vsed -e '/  neon/d' -i src/pulsecore/meson.build ;;
-	esac
-}
-
 post_install() {
 	rm ${DESTDIR}/etc/dbus-1/system.d/pulseaudio-system.conf
 	vsv pulseaudio

From e324c58e412764c24f928b9f5cb9f88700e551d1 Mon Sep 17 00:00:00 2001
From: unfairscheduler <unfairscheduler@gmail.com>
Date: Tue, 6 Sep 2022 11:00:27 -0400
Subject: [PATCH 2/3] pulsemixer: revbump due to pulseaudio 16.1 update

---
 srcpkgs/pulsemixer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulsemixer/template b/srcpkgs/pulsemixer/template
index 09db5515bd84..110a4da0a61d 100644
--- a/srcpkgs/pulsemixer/template
+++ b/srcpkgs/pulsemixer/template
@@ -1,7 +1,7 @@
 # Template file for 'pulsemixer'
 pkgname=pulsemixer
 version=1.5.1
-revision=2
+revision=3
 depends="python3 libpulseaudio"
 short_desc="CLI and curses mixer for Pulseaudio"
 maintainer="Dean Thomson <mrrobot@fsociety.info>"

From afb60f428df23875b82fb58a5a7ac1d34dc5c687 Mon Sep 17 00:00:00 2001
From: unfairscheduler <unfairscheduler@gmail.com>
Date: Tue, 6 Sep 2022 11:01:07 -0400
Subject: [PATCH 3/3] pulseaudio-module-sndio: revbump due to pulseaudio 16.1
 update

---
 srcpkgs/pulseaudio-module-sndio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseaudio-module-sndio/template b/srcpkgs/pulseaudio-module-sndio/template
index cbe6fd42caaf..59b16a338d38 100644
--- a/srcpkgs/pulseaudio-module-sndio/template
+++ b/srcpkgs/pulseaudio-module-sndio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio-module-sndio'
 pkgname=pulseaudio-module-sndio
 version=13.0
-revision=4
+revision=5
 build_style=gnu-makefile
 make_use_env=yes
 hostmakedepends="pulseaudio pkg-config"

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

* Re: [PR PATCH] [Closed]: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
                   ` (6 preceding siblings ...)
  2022-09-06 15:01 ` [PR PATCH] [Updated] " unfairscheduler
@ 2022-10-05 19:13 ` unfairscheduler
  2023-01-26  1:26 ` Nairou
  8 siblings, 0 replies; 24+ messages in thread
From: unfairscheduler @ 2022-10-05 19:13 UTC (permalink / raw)
  To: ml

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

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

pulseaudio: Update to 16.1
https://github.com/void-linux/void-packages/pull/39120

Description:
- Bump shlibs
- Remove unrequired patch as patch already merged in new version (https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/e1899245703f1dfa3220af465046c287a5f1c2ba)
- Remove `make_check=yes` flag from template


#### 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-glibc)


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

* Re: pulseaudio: Update to 16.1
  2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
                   ` (7 preceding siblings ...)
  2022-10-05 19:13 ` [PR PATCH] [Closed]: " unfairscheduler
@ 2023-01-26  1:26 ` Nairou
  8 siblings, 0 replies; 24+ messages in thread
From: Nairou @ 2023-01-26  1:26 UTC (permalink / raw)
  To: ml

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

New comment by Nairou on void-packages repository

https://github.com/void-linux/void-packages/pull/39120#issuecomment-1404449834

Comment:
Why was this closed?

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (12 preceding siblings ...)
  2023-11-08 11:55 ` motorto
@ 2023-11-08 11:58 ` motorto
  13 siblings, 0 replies; 24+ messages in thread
From: motorto @ 2023-11-08 11:58 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1801744324

Comment:
@classabbyamp done, sorry for the delay.

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (11 preceding siblings ...)
  2023-11-08  5:30 ` xAlpharax
@ 2023-11-08 11:55 ` motorto
  2023-11-08 11:58 ` motorto
  13 siblings, 0 replies; 24+ messages in thread
From: motorto @ 2023-11-08 11:55 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1801740762

Comment:
@classabbyamp done, sorry for the wait 

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (10 preceding siblings ...)
  2023-11-07 21:34 ` xAlpharax
@ 2023-11-08  5:30 ` xAlpharax
  2023-11-08 11:55 ` motorto
  2023-11-08 11:58 ` motorto
  13 siblings, 0 replies; 24+ messages in thread
From: xAlpharax @ 2023-11-08  5:30 UTC (permalink / raw)
  To: ml

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

New comment by xAlpharax on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1800194746

Comment:
> rebase pls

i second this (hi abby)

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (9 preceding siblings ...)
  2023-11-07 17:52 ` classabbyamp
@ 2023-11-07 21:34 ` xAlpharax
  2023-11-08  5:30 ` xAlpharax
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: xAlpharax @ 2023-11-07 21:34 UTC (permalink / raw)
  To: ml

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

New comment by xAlpharax on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1800194746

Comment:
> rebase pls

i second this (hi abby)

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (8 preceding siblings ...)
  2023-11-05 13:47 ` xAlpharax
@ 2023-11-07 17:52 ` classabbyamp
  2023-11-07 21:34 ` xAlpharax
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: classabbyamp @ 2023-11-07 17:52 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1799340761

Comment:
rebase pls

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (7 preceding siblings ...)
  2023-11-05 13:46 ` motorto
@ 2023-11-05 13:47 ` xAlpharax
  2023-11-07 17:52 ` classabbyamp
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: xAlpharax @ 2023-11-05 13:47 UTC (permalink / raw)
  To: ml

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

New comment by xAlpharax on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1793742763

Comment:
> > > @xAlpharax when you have a time feel free to try it.
> > 
> > @motorto Tested and it seems good, anything else that keeps us from upstreaming this?
> 
> Are you using pulseaudio as your sound server ?
> 
> Or are you like me using pipewire ? 

I did both to test this in 2 setups

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (6 preceding siblings ...)
  2023-11-03 10:25 ` xAlpharax
@ 2023-11-05 13:46 ` motorto
  2023-11-05 13:47 ` xAlpharax
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: motorto @ 2023-11-05 13:46 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1793742546

Comment:
> > @xAlpharax when you have a time feel free to try it.
> 
> @motorto Tested and it seems good, anything else that keeps us from upstreaming this?

Are you using pulseaudio as your sound server ?

Or are you like me using pipewire ? 

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (5 preceding siblings ...)
  2023-09-09 15:37 ` motorto
@ 2023-11-03 10:25 ` xAlpharax
  2023-11-05 13:46 ` motorto
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: xAlpharax @ 2023-11-03 10:25 UTC (permalink / raw)
  To: ml

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

New comment by xAlpharax on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1792189064

Comment:
> @xAlpharax when you have a time feel free to try it.

@motorto Tested and it seems good, anything else that keeps us from upstreaming this?

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (4 preceding siblings ...)
  2023-09-09 13:12 ` motorto
@ 2023-09-09 15:37 ` motorto
  2023-11-03 10:25 ` xAlpharax
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: motorto @ 2023-09-09 15:37 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1712539085

Comment:
@xAlpharax when you have a time feel free to try it.

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (3 preceding siblings ...)
  2023-09-07 12:03 ` xAlpharax
@ 2023-09-09 13:12 ` motorto
  2023-09-09 15:37 ` motorto
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: motorto @ 2023-09-09 13:12 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1712508946

Comment:
> Really wish to see this bumped. What specifically is failing in the CI?

There isn't a problem with this one, I am currently using this on my system, (only the libpulseaudio, and pulseaudio-utils since I am using pipewire).

**Whats missing is testers**, the CI fails because of the bumped packages, not because of the pulseaudio update.

I am going to rebase master into this PR,  and then you could [try this package locally.](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#testing-pull-requests) 

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
                   ` (2 preceding siblings ...)
  2023-07-25 17:40 ` classabbyamp
@ 2023-09-07 12:03 ` xAlpharax
  2023-09-09 13:12 ` motorto
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: xAlpharax @ 2023-09-07 12:03 UTC (permalink / raw)
  To: ml

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

New comment by xAlpharax on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1710029520

Comment:
Really wish to see this bumped. What specifically is failing in the CI?

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
  2023-07-25 16:52 ` mhmdanas
  2023-07-25 17:38 ` motorto
@ 2023-07-25 17:40 ` classabbyamp
  2023-09-07 12:03 ` xAlpharax
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: classabbyamp @ 2023-07-25 17:40 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1650266092

Comment:
if you force-push it will cancel the current CI run

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
  2023-07-25 16:52 ` mhmdanas
@ 2023-07-25 17:38 ` motorto
  2023-07-25 17:40 ` classabbyamp
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: motorto @ 2023-07-25 17:38 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1650261150

Comment:
Already marked, unfortunately I thought that it was [ci-skip], so that why the builders are running. They should timeout 

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

* Re: pulseaudio: update to 16.1.
  2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
@ 2023-07-25 16:52 ` mhmdanas
  2023-07-25 17:38 ` motorto
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: mhmdanas @ 2023-07-25 16:52 UTC (permalink / raw)
  To: ml

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

New comment by mhmdanas on void-packages repository

https://github.com/void-linux/void-packages/pull/45249#issuecomment-1650194142

Comment:
I'd mark this as [ci skip] because it revbumps so many things.

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

end of thread, other threads:[~2023-11-08 11:58 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-05 21:59 [PR PATCH] pulseaudio: Update to 16.1 unfairscheduler
2022-09-06  3:33 ` [PR PATCH] [Updated] " unfairscheduler
2022-09-06  3:42 ` unfairscheduler
2022-09-06  3:42 ` unfairscheduler
2022-09-06  3:47 ` unfairscheduler
2022-09-06  3:47 ` unfairscheduler
2022-09-06  3:47 ` unfairscheduler
2022-09-06 15:01 ` [PR PATCH] [Updated] " unfairscheduler
2022-10-05 19:13 ` [PR PATCH] [Closed]: " unfairscheduler
2023-01-26  1:26 ` Nairou
2023-07-25 15:00 [PR PATCH] pulseaudio: update " motorto
2023-07-25 16:52 ` mhmdanas
2023-07-25 17:38 ` motorto
2023-07-25 17:40 ` classabbyamp
2023-09-07 12:03 ` xAlpharax
2023-09-09 13:12 ` motorto
2023-09-09 15:37 ` motorto
2023-11-03 10:25 ` xAlpharax
2023-11-05 13:46 ` motorto
2023-11-05 13:47 ` xAlpharax
2023-11-07 17:52 ` classabbyamp
2023-11-07 21:34 ` xAlpharax
2023-11-08  5:30 ` xAlpharax
2023-11-08 11:55 ` motorto
2023-11-08 11:58 ` motorto

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