Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: pulseaudio-utils-14.2_4
@ 2021-04-26  6:17 noarchwastaken
  2021-04-26  9:25 ` st3r4g
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-26  6:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/noarchwastaken/void-packages pulseaudio-utils
https://github.com/void-linux/void-packages/pull/30507

New package: pulseaudio-utils-14.2_4
Split pulseaudio utilities from the main `pulseaudio` package, useful
for `pipewire-pulse`.

Closes #29576

One question: Should the `bash` and `zsh` completions be split into `-utils`? Without it, only installing `-utils` and trying to autocomplete will result in errors like `zsh: _pulseaudio: function definition file not found`

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30507.patch is attached

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

From 87af2baeb622162042faf3a3b4584d5d58fdf715 Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Mon, 26 Apr 2021 01:32:02 -0400
Subject: [PATCH] New package: pulseaudio-utils-14.2_4

Split pulseaudio utilities from the main `pulseaudio` package, useful
for pipewire-pulse.

Closes #29576
---
 srcpkgs/pulseaudio-utils    |  1 +
 srcpkgs/pulseaudio/template | 33 +++++++++++++++++++++++++++++++--
 2 files changed, 32 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/pulseaudio-utils

diff --git a/srcpkgs/pulseaudio-utils b/srcpkgs/pulseaudio-utils
new file mode 120000
index 000000000000..0153a53dd727
--- /dev/null
+++ b/srcpkgs/pulseaudio-utils
@@ -0,0 +1 @@
+pulseaudio
\ No newline at end of file
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 554e241e73ab..084bdcc1bb49 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=14.2
-revision=3
+revision=4
 build_style=meson
 # XXX: new version should be able to enable systemd functionality using elogind
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
@@ -15,7 +15,7 @@ makedepends="$(vopt_if avahi avahi-libs-devel) eudev-libudev-devel fftw-devel ja
  libcap-devel libcap-progs libglib-devel libltdl-devel openssl-devel
  libsndfile-devel libsoxr-devel orc-devel sbc-devel speex-devel tdb-devel
  webrtc-audio-processing-devel xcb-util-devel check-devel"
-depends="rtkit"
+depends="pulseaudio-utils rtkit"
 conf_files="/etc/pulse/*"
 short_desc="Featureful, general-purpose sound server"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -76,3 +76,32 @@ pulseaudio-devel_package() {
 		vmove usr/share/vala
 	}
 }
+
+pulseaudio-utils_package() {
+	short_desc+=" - utilities"
+	pkg_install() {
+		vmove usr/bin/pa-info
+		vmove usr/bin/pacat
+		vmove usr/bin/pacmd
+		vmove usr/bin/pactl
+		vmove usr/bin/padsp
+		vmove usr/bin/pamon
+		vmove usr/bin/paplay
+		vmove usr/bin/parec
+		vmove usr/bin/parecord
+		vmove usr/bin/pasuspender
+		vmove usr/bin/pax11publish
+		vmove "usr/share/bash-completion/completions/*"
+		vmove usr/share/zsh/site-functions/_pulseaudio
+		vmove usr/share/man/man1/pacat.1
+		vmove usr/share/man/man1/pacmd.1
+		vmove usr/share/man/man1/pactl.1
+		vmove usr/share/man/man1/padsp.1
+		vmove usr/share/man/man1/pamon.1
+		vmove usr/share/man/man1/paplay.1
+		vmove usr/share/man/man1/parec.1
+		vmove usr/share/man/man1/parecord.1
+		vmove usr/share/man/man1/pasuspender.1
+		vmove usr/share/man/man1/pax11publish.1
+	}
+}

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

* Re: New package: pulseaudio-utils-14.2_4
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
@ 2021-04-26  9:25 ` st3r4g
  2021-04-26 13:44 ` ericonr
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: st3r4g @ 2021-04-26  9:25 UTC (permalink / raw)
  To: ml

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

New comment by st3r4g on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-826669749

Comment:
> One question: Should the bash and zsh completions be split into -utils? Without it, only installing -utils and trying to autocomplete will result in errors like zsh: _pulseaudio: function definition file not found

I'd say yes

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

* Re: New package: pulseaudio-utils-14.2_4
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
  2021-04-26  9:25 ` st3r4g
@ 2021-04-26 13:44 ` ericonr
  2021-04-26 14:15 ` noarchwastaken
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-26 13:44 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-826847409

Comment:
I think it'd be better to name the commit `pulseaudio: split pulseaudio-utils` or something of the sort.

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

* Re: New package: pulseaudio-utils-14.2_4
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
  2021-04-26  9:25 ` st3r4g
  2021-04-26 13:44 ` ericonr
@ 2021-04-26 14:15 ` noarchwastaken
  2021-04-26 14:16 ` [PR PATCH] [Updated] " noarchwastaken
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-26 14:15 UTC (permalink / raw)
  To: ml

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

New comment by noarchwastaken on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-826870708

Comment:
I just realized that the `core-util-test` fails; so I cross-built for aarch64-musl and verified that it builds.

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

* Re: [PR PATCH] [Updated] New package: pulseaudio-utils-14.2_4
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (2 preceding siblings ...)
  2021-04-26 14:15 ` noarchwastaken
@ 2021-04-26 14:16 ` noarchwastaken
  2021-04-27 23:47 ` pulseaudio: split pulseaudio-utils ericonr
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-26 14:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/noarchwastaken/void-packages pulseaudio-utils
https://github.com/void-linux/void-packages/pull/30507

New package: pulseaudio-utils-14.2_4
Split pulseaudio utilities from the main `pulseaudio` package, useful
for `pipewire-pulse`.

Closes #29576

One question: Should the `bash` and `zsh` completions be split into `-utils`? Without it, only installing `-utils` and trying to autocomplete will result in errors like `zsh: _pulseaudio: function definition file not found`

<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl (crossbuild)
  - [ ] armv7l
  - [ ] armv6l-musl


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

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

From 263709d2da2af958cc62ab8762a25d3257951bb3 Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Mon, 26 Apr 2021 01:32:02 -0400
Subject: [PATCH] pulseaudio: split pulseaudio-utils

Split pulseaudio utilities from the main `pulseaudio` package, useful
for pipewire-pulse.

Closes #29576
---
 srcpkgs/pulseaudio-utils    |  1 +
 srcpkgs/pulseaudio/template | 33 +++++++++++++++++++++++++++++++--
 2 files changed, 32 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/pulseaudio-utils

diff --git a/srcpkgs/pulseaudio-utils b/srcpkgs/pulseaudio-utils
new file mode 120000
index 000000000000..0153a53dd727
--- /dev/null
+++ b/srcpkgs/pulseaudio-utils
@@ -0,0 +1 @@
+pulseaudio
\ No newline at end of file
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 554e241e73ab..084bdcc1bb49 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=14.2
-revision=3
+revision=4
 build_style=meson
 # XXX: new version should be able to enable systemd functionality using elogind
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
@@ -15,7 +15,7 @@ makedepends="$(vopt_if avahi avahi-libs-devel) eudev-libudev-devel fftw-devel ja
  libcap-devel libcap-progs libglib-devel libltdl-devel openssl-devel
  libsndfile-devel libsoxr-devel orc-devel sbc-devel speex-devel tdb-devel
  webrtc-audio-processing-devel xcb-util-devel check-devel"
-depends="rtkit"
+depends="pulseaudio-utils rtkit"
 conf_files="/etc/pulse/*"
 short_desc="Featureful, general-purpose sound server"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -76,3 +76,32 @@ pulseaudio-devel_package() {
 		vmove usr/share/vala
 	}
 }
+
+pulseaudio-utils_package() {
+	short_desc+=" - utilities"
+	pkg_install() {
+		vmove usr/bin/pa-info
+		vmove usr/bin/pacat
+		vmove usr/bin/pacmd
+		vmove usr/bin/pactl
+		vmove usr/bin/padsp
+		vmove usr/bin/pamon
+		vmove usr/bin/paplay
+		vmove usr/bin/parec
+		vmove usr/bin/parecord
+		vmove usr/bin/pasuspender
+		vmove usr/bin/pax11publish
+		vmove "usr/share/bash-completion/completions/*"
+		vmove usr/share/zsh/site-functions/_pulseaudio
+		vmove usr/share/man/man1/pacat.1
+		vmove usr/share/man/man1/pacmd.1
+		vmove usr/share/man/man1/pactl.1
+		vmove usr/share/man/man1/padsp.1
+		vmove usr/share/man/man1/pamon.1
+		vmove usr/share/man/man1/paplay.1
+		vmove usr/share/man/man1/parec.1
+		vmove usr/share/man/man1/parecord.1
+		vmove usr/share/man/man1/pasuspender.1
+		vmove usr/share/man/man1/pax11publish.1
+	}
+}

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

* Re: pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (3 preceding siblings ...)
  2021-04-26 14:16 ` [PR PATCH] [Updated] " noarchwastaken
@ 2021-04-27 23:47 ` ericonr
  2021-04-28 12:17 ` [PR REVIEW] " ericonr
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-27 23:47 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-828029660

Comment:
Could you add a `README.voidlinux` file documenting the packages that provide the dependencies necessary for `qpaec`? See #29405

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (4 preceding siblings ...)
  2021-04-27 23:47 ` pulseaudio: split pulseaudio-utils ericonr
@ 2021-04-28 12:17 ` ericonr
  2021-04-28 12:17 ` ericonr
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-28 12:17 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r622117248

Comment:
```suggestion
depends="pulseaudio-utils>=${version}_${revision} rtkit"
```

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (6 preceding siblings ...)
  2021-04-28 12:17 ` ericonr
@ 2021-04-28 12:17 ` ericonr
  2021-04-28 12:18 ` ericonr
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-28 12:17 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r622117974

Comment:
Could make it a loop `for $b in pa-info pacat ...`

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (5 preceding siblings ...)
  2021-04-28 12:17 ` [PR REVIEW] " ericonr
@ 2021-04-28 12:17 ` ericonr
  2021-04-28 12:17 ` ericonr
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-28 12:17 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r622118467

Comment:
And use the loop above to install these: `vmove usr/bin/$b` and `vmove usr/share/man/man1/${b}.1`

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (7 preceding siblings ...)
  2021-04-28 12:17 ` ericonr
@ 2021-04-28 12:18 ` ericonr
  2021-04-28 12:23 ` ericonr
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-28 12:18 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r622119130

Comment:
```suggestion
		vmove "usr/share/bash-completion"
		vmove usr/share/zsh
```

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (8 preceding siblings ...)
  2021-04-28 12:18 ` ericonr
@ 2021-04-28 12:23 ` ericonr
  2021-04-28 12:23 ` ericonr
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-28 12:23 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r622119130

Comment:
```suggestion
		vmove usr/share/bash-completio
		vmove usr/share/zsh
```

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (9 preceding siblings ...)
  2021-04-28 12:23 ` ericonr
@ 2021-04-28 12:23 ` ericonr
  2021-04-28 15:47 ` [PR PATCH] [Updated] " noarchwastaken
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-28 12:23 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r622119130

Comment:
```suggestion
		vmove usr/share/bash-completion
		vmove usr/share/zsh
```

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

* Re: [PR PATCH] [Updated] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (10 preceding siblings ...)
  2021-04-28 12:23 ` ericonr
@ 2021-04-28 15:47 ` noarchwastaken
  2021-04-28 16:15 ` noarchwastaken
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-28 15:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/noarchwastaken/void-packages pulseaudio-utils
https://github.com/void-linux/void-packages/pull/30507

pulseaudio: split pulseaudio-utils
Split pulseaudio utilities from the main `pulseaudio` package, useful
for `pipewire-pulse`.

Closes #29576

One question: Should the `bash` and `zsh` completions be split into `-utils`? Without it, only installing `-utils` and trying to autocomplete will result in errors like `zsh: _pulseaudio: function definition file not found`

<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl (crossbuild)
  - [ ] armv7l
  - [ ] armv6l-musl


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

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

From b984629be82dcfaba7eb6c41d5b85943cd267ffe Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Mon, 26 Apr 2021 01:32:02 -0400
Subject: [PATCH] pulseaudio: split pulseaudio-utils

Split pulseaudio utilities from the main `pulseaudio` package, useful
for pipewire-pulse.

Closes #29576
---
 srcpkgs/pulseaudio-utils    |  1 +
 srcpkgs/pulseaudio/template | 20 ++++++++++++++++++--
 2 files changed, 19 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/pulseaudio-utils

diff --git a/srcpkgs/pulseaudio-utils b/srcpkgs/pulseaudio-utils
new file mode 120000
index 000000000000..0153a53dd727
--- /dev/null
+++ b/srcpkgs/pulseaudio-utils
@@ -0,0 +1 @@
+pulseaudio
\ No newline at end of file
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 554e241e73ab..3535e75cc19d 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=14.2
-revision=3
+revision=4
 build_style=meson
 # XXX: new version should be able to enable systemd functionality using elogind
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
@@ -15,7 +15,7 @@ makedepends="$(vopt_if avahi avahi-libs-devel) eudev-libudev-devel fftw-devel ja
  libcap-devel libcap-progs libglib-devel libltdl-devel openssl-devel
  libsndfile-devel libsoxr-devel orc-devel sbc-devel speex-devel tdb-devel
  webrtc-audio-processing-devel xcb-util-devel check-devel"
-depends="rtkit"
+depends="pulseaudio-utils>=${version}_${revision} rtkit"
 conf_files="/etc/pulse/*"
 short_desc="Featureful, general-purpose sound server"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -76,3 +76,19 @@ pulseaudio-devel_package() {
 		vmove usr/share/vala
 	}
 }
+
+pulseaudio-utils_package() {
+	short_desc+=" - utilities"
+	pkg_install() {
+		for b in pa-info pacat pacmd pactl padsp pamon paplay parec \
+				 parecord pasuspender pax11publish; do
+			vmove usr/bin/$b
+		done
+		for b in pacat pacmd pactl padsp pamon paplay parec \
+				 parecord pasuspender pax11publish; do
+			vmove usr/share/man/man1/${b}.1
+		done
+		vmove usr/share/bash-completion
+		vmove usr/share/zsh
+	}
+}

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

* Re: [PR PATCH] [Updated] pulseaudio: split pulseaudio-utils
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (11 preceding siblings ...)
  2021-04-28 15:47 ` [PR PATCH] [Updated] " noarchwastaken
@ 2021-04-28 16:15 ` noarchwastaken
  2021-04-29 14:41 ` [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus ericonr
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-28 16:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/noarchwastaken/void-packages pulseaudio-utils
https://github.com/void-linux/void-packages/pull/30507

pulseaudio: split pulseaudio-utils
Split pulseaudio utilities from the main `pulseaudio` package, useful
for `pipewire-pulse`.

Closes #29576

One question: Should the `bash` and `zsh` completions be split into `-utils`? Without it, only installing `-utils` and trying to autocomplete will result in errors like `zsh: _pulseaudio: function definition file not found`

<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl (crossbuild)
  - [ ] armv7l
  - [ ] armv6l-musl


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

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

From b984629be82dcfaba7eb6c41d5b85943cd267ffe Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Mon, 26 Apr 2021 01:32:02 -0400
Subject: [PATCH 1/2] pulseaudio: split pulseaudio-utils

Split pulseaudio utilities from the main `pulseaudio` package, useful
for pipewire-pulse.

Closes #29576
---
 srcpkgs/pulseaudio-utils    |  1 +
 srcpkgs/pulseaudio/template | 20 ++++++++++++++++++--
 2 files changed, 19 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/pulseaudio-utils

diff --git a/srcpkgs/pulseaudio-utils b/srcpkgs/pulseaudio-utils
new file mode 120000
index 000000000000..0153a53dd727
--- /dev/null
+++ b/srcpkgs/pulseaudio-utils
@@ -0,0 +1 @@
+pulseaudio
\ No newline at end of file
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 554e241e73ab..3535e75cc19d 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=14.2
-revision=3
+revision=4
 build_style=meson
 # XXX: new version should be able to enable systemd functionality using elogind
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
@@ -15,7 +15,7 @@ makedepends="$(vopt_if avahi avahi-libs-devel) eudev-libudev-devel fftw-devel ja
  libcap-devel libcap-progs libglib-devel libltdl-devel openssl-devel
  libsndfile-devel libsoxr-devel orc-devel sbc-devel speex-devel tdb-devel
  webrtc-audio-processing-devel xcb-util-devel check-devel"
-depends="rtkit"
+depends="pulseaudio-utils>=${version}_${revision} rtkit"
 conf_files="/etc/pulse/*"
 short_desc="Featureful, general-purpose sound server"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -76,3 +76,19 @@ pulseaudio-devel_package() {
 		vmove usr/share/vala
 	}
 }
+
+pulseaudio-utils_package() {
+	short_desc+=" - utilities"
+	pkg_install() {
+		for b in pa-info pacat pacmd pactl padsp pamon paplay parec \
+				 parecord pasuspender pax11publish; do
+			vmove usr/bin/$b
+		done
+		for b in pacat pacmd pactl padsp pamon paplay parec \
+				 parecord pasuspender pax11publish; do
+			vmove usr/share/man/man1/${b}.1
+		done
+		vmove usr/share/bash-completion
+		vmove usr/share/zsh
+	}
+}

From b271cdcf09927dda449f31e1cbf54d41c3ab6a5b Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Wed, 28 Apr 2021 12:14:31 -0400
Subject: [PATCH 2/2] pulseaudio: document optional dependency
 `python3-PyQt5-dbus`

---
 srcpkgs/pulseaudio/files/README.voidlinux | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/srcpkgs/pulseaudio/files/README.voidlinux b/srcpkgs/pulseaudio/files/README.voidlinux
index 360e8c1c4ccb..68bcd10179c3 100644
--- a/srcpkgs/pulseaudio/files/README.voidlinux
+++ b/srcpkgs/pulseaudio/files/README.voidlinux
@@ -1,3 +1,7 @@
 The system service `/etc/sv/pulseaudio` provided by the pulseaudio package is
 only needed in rare cases and should be avoided in most setups for performance
 and security reasons.
+
+Optional dependencies:
+
+* `python3-PyQt5-dbus` for running `qpaeq`

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (12 preceding siblings ...)
  2021-04-28 16:15 ` noarchwastaken
@ 2021-04-29 14:41 ` ericonr
  2021-04-29 14:41 ` ericonr
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-29 14:41 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r623118606

Comment:
```suggestion
		for b in pa-info pacat pacmd pactl padsp pamon paplay parec \
				 parecord pasuspender pax11publish; do
			vmove usr/bin/$b
			vmove usr/share/man/man1/${b}.1
		done
```

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

* Re: pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (13 preceding siblings ...)
  2021-04-29 14:41 ` [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus ericonr
@ 2021-04-29 14:41 ` ericonr
  2021-04-29 14:45 ` [PR REVIEW] " noarchwastaken
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-29 14:41 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-829296889

Comment:
And please have everything in a single commit.

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (14 preceding siblings ...)
  2021-04-29 14:41 ` ericonr
@ 2021-04-29 14:45 ` noarchwastaken
  2021-04-29 14:49 ` ericonr
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-29 14:45 UTC (permalink / raw)
  To: ml

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

New review comment by noarchwastaken on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r623122708

Comment:
There is no `/usr/share/man/man1/pa-info.1`, is that OK?

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (15 preceding siblings ...)
  2021-04-29 14:45 ` [PR REVIEW] " noarchwastaken
@ 2021-04-29 14:49 ` ericonr
  2021-04-29 14:55 ` [PR PATCH] [Updated] " noarchwastaken
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-29 14:49 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r623126597

Comment:
Then `vmove` it outside of the loop ;)

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

* Re: [PR PATCH] [Updated] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (16 preceding siblings ...)
  2021-04-29 14:49 ` ericonr
@ 2021-04-29 14:55 ` noarchwastaken
  2021-04-29 14:59 ` [PR REVIEW] " noarchwastaken
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-29 14:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/noarchwastaken/void-packages pulseaudio-utils
https://github.com/void-linux/void-packages/pull/30507

pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
Split pulseaudio utilities from the main `pulseaudio` package, useful
for `pipewire-pulse`.

Closes #29576
Closes #29405

One question: Should the `bash` and `zsh` completions be split into `-utils`? Without it, only installing `-utils` and trying to autocomplete will result in errors like `zsh: _pulseaudio: function definition file not found`

<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl (crossbuild)
  - [ ] armv7l
  - [ ] armv6l-musl


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

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

From b984629be82dcfaba7eb6c41d5b85943cd267ffe Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Mon, 26 Apr 2021 01:32:02 -0400
Subject: [PATCH 1/2] pulseaudio: split pulseaudio-utils

Split pulseaudio utilities from the main `pulseaudio` package, useful
for pipewire-pulse.

Closes #29576
---
 srcpkgs/pulseaudio-utils    |  1 +
 srcpkgs/pulseaudio/template | 20 ++++++++++++++++++--
 2 files changed, 19 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/pulseaudio-utils

diff --git a/srcpkgs/pulseaudio-utils b/srcpkgs/pulseaudio-utils
new file mode 120000
index 000000000000..0153a53dd727
--- /dev/null
+++ b/srcpkgs/pulseaudio-utils
@@ -0,0 +1 @@
+pulseaudio
\ No newline at end of file
diff --git a/srcpkgs/pulseaudio/template b/srcpkgs/pulseaudio/template
index 554e241e73ab..3535e75cc19d 100644
--- a/srcpkgs/pulseaudio/template
+++ b/srcpkgs/pulseaudio/template
@@ -1,7 +1,7 @@
 # Template file for 'pulseaudio'
 pkgname=pulseaudio
 version=14.2
-revision=3
+revision=4
 build_style=meson
 # XXX: new version should be able to enable systemd functionality using elogind
 configure_args="-Djack=enabled -Dlirc=disabled -Dhal-compat=false -Dorc=enabled
@@ -15,7 +15,7 @@ makedepends="$(vopt_if avahi avahi-libs-devel) eudev-libudev-devel fftw-devel ja
  libcap-devel libcap-progs libglib-devel libltdl-devel openssl-devel
  libsndfile-devel libsoxr-devel orc-devel sbc-devel speex-devel tdb-devel
  webrtc-audio-processing-devel xcb-util-devel check-devel"
-depends="rtkit"
+depends="pulseaudio-utils>=${version}_${revision} rtkit"
 conf_files="/etc/pulse/*"
 short_desc="Featureful, general-purpose sound server"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -76,3 +76,19 @@ pulseaudio-devel_package() {
 		vmove usr/share/vala
 	}
 }
+
+pulseaudio-utils_package() {
+	short_desc+=" - utilities"
+	pkg_install() {
+		for b in pa-info pacat pacmd pactl padsp pamon paplay parec \
+				 parecord pasuspender pax11publish; do
+			vmove usr/bin/$b
+		done
+		for b in pacat pacmd pactl padsp pamon paplay parec \
+				 parecord pasuspender pax11publish; do
+			vmove usr/share/man/man1/${b}.1
+		done
+		vmove usr/share/bash-completion
+		vmove usr/share/zsh
+	}
+}

From b271cdcf09927dda449f31e1cbf54d41c3ab6a5b Mon Sep 17 00:00:00 2001
From: noarchwastaken <noarch@n0ar.ch>
Date: Wed, 28 Apr 2021 12:14:31 -0400
Subject: [PATCH 2/2] pulseaudio: document optional dependency
 `python3-PyQt5-dbus`

---
 srcpkgs/pulseaudio/files/README.voidlinux | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/srcpkgs/pulseaudio/files/README.voidlinux b/srcpkgs/pulseaudio/files/README.voidlinux
index 360e8c1c4ccb..68bcd10179c3 100644
--- a/srcpkgs/pulseaudio/files/README.voidlinux
+++ b/srcpkgs/pulseaudio/files/README.voidlinux
@@ -1,3 +1,7 @@
 The system service `/etc/sv/pulseaudio` provided by the pulseaudio package is
 only needed in rare cases and should be avoided in most setups for performance
 and security reasons.
+
+Optional dependencies:
+
+* `python3-PyQt5-dbus` for running `qpaeq`

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

* Re: [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (17 preceding siblings ...)
  2021-04-29 14:55 ` [PR PATCH] [Updated] " noarchwastaken
@ 2021-04-29 14:59 ` noarchwastaken
  2021-04-29 15:03 ` noarchwastaken
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-29 14:59 UTC (permalink / raw)
  To: ml

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

New review comment by noarchwastaken on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#discussion_r623136385

Comment:
> Then `vmove` it outside of the loop ;)

r/todayilearned

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

* Re: pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (18 preceding siblings ...)
  2021-04-29 14:59 ` [PR REVIEW] " noarchwastaken
@ 2021-04-29 15:03 ` noarchwastaken
  2021-04-29 15:23 ` ericonr
  2021-04-29 15:24 ` [PR PATCH] [Merged]: " ericonr
  21 siblings, 0 replies; 23+ messages in thread
From: noarchwastaken @ 2021-04-29 15:03 UTC (permalink / raw)
  To: ml

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

New comment by noarchwastaken on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-829313940

Comment:
I noticed that we are using tab indentation, so maybe I shouldn't align the second line of the loop and assuming everyone uses 4-space tabs...

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

* Re: pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (19 preceding siblings ...)
  2021-04-29 15:03 ` noarchwastaken
@ 2021-04-29 15:23 ` ericonr
  2021-04-29 15:24 ` [PR PATCH] [Merged]: " ericonr
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-29 15:23 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30507#issuecomment-829332694

Comment:
For the future, we can consider moving the localization stuff to one of the subpackages so more people can take advantage of them.

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

* Re: [PR PATCH] [Merged]: pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
  2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
                   ` (20 preceding siblings ...)
  2021-04-29 15:23 ` ericonr
@ 2021-04-29 15:24 ` ericonr
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-04-29 15:24 UTC (permalink / raw)
  To: ml

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

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

pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus
https://github.com/void-linux/void-packages/pull/30507

Description:
Split pulseaudio utilities from the main `pulseaudio` package, useful
for `pipewire-pulse`.

Closes #29576
Closes #29405

One question: Should the `bash` and `zsh` completions be split into `-utils`? Without it, only installing `-utils` and trying to autocomplete will result in errors like `zsh: _pulseaudio: function definition file not found`

<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl (crossbuild)
  - [ ] armv7l
  - [ ] armv6l-musl


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

end of thread, other threads:[~2021-04-29 15:24 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-26  6:17 [PR PATCH] New package: pulseaudio-utils-14.2_4 noarchwastaken
2021-04-26  9:25 ` st3r4g
2021-04-26 13:44 ` ericonr
2021-04-26 14:15 ` noarchwastaken
2021-04-26 14:16 ` [PR PATCH] [Updated] " noarchwastaken
2021-04-27 23:47 ` pulseaudio: split pulseaudio-utils ericonr
2021-04-28 12:17 ` [PR REVIEW] " ericonr
2021-04-28 12:17 ` ericonr
2021-04-28 12:17 ` ericonr
2021-04-28 12:18 ` ericonr
2021-04-28 12:23 ` ericonr
2021-04-28 12:23 ` ericonr
2021-04-28 15:47 ` [PR PATCH] [Updated] " noarchwastaken
2021-04-28 16:15 ` noarchwastaken
2021-04-29 14:41 ` [PR REVIEW] pulseaudio: split pulseaudio-utils, document optional dependency python3-PyQt5-dbus ericonr
2021-04-29 14:41 ` ericonr
2021-04-29 14:45 ` [PR REVIEW] " noarchwastaken
2021-04-29 14:49 ` ericonr
2021-04-29 14:55 ` [PR PATCH] [Updated] " noarchwastaken
2021-04-29 14:59 ` [PR REVIEW] " noarchwastaken
2021-04-29 15:03 ` noarchwastaken
2021-04-29 15:23 ` ericonr
2021-04-29 15:24 ` [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).