Github messages for voidlinux
 help / color / mirror / Atom feed
From: noarchwastaken <noarchwastaken@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] New package: pulseaudio-utils-14.2_4
Date: Mon, 26 Apr 2021 08:17:02 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-30507@inbox.vuxu.org> (raw)

[-- 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
+	}
+}

             reply	other threads:[~2021-04-26  6:17 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-26  6:17 noarchwastaken [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-30507@inbox.vuxu.org \
    --to=noarchwastaken@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).