Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] qemu: enable JACK Audio support
@ 2021-06-23 18:56 ScrelliCopter
  2021-06-25  1:11 ` [PR PATCH] [Updated] " ScrelliCopter
  2021-06-25 15:58 ` [PR PATCH] [Merged]: " ericonr
  0 siblings, 2 replies; 3+ messages in thread
From: ScrelliCopter @ 2021-06-23 18:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ScrelliCopter/void-packages qemu-jack
https://github.com/void-linux/void-packages/pull/31639

qemu: enable JACK Audio support
<!-- 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.)
- [x] 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/31639.patch is attached

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

From 8aeb48558f24ab1a4aa807294c05b288de084a17 Mon Sep 17 00:00:00 2001
From: a dinosaur <nick@a-dinosaur.com>
Date: Thu, 24 Jun 2021 04:46:45 +1000
Subject: [PATCH] qemu: enable JACK Audio support

---
 srcpkgs/qemu/template | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 0fadb41f609c..5205c4e2f5e6 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -2,7 +2,7 @@
 # This package should be updated together with qemu-user-static
 pkgname=qemu
 version=6.0.0
-revision=2
+revision=3
 build_style=configure
 hostmakedepends="gettext pkg-config perl python3 automake libtool flex
  python3-Sphinx texinfo ninja"
@@ -17,7 +17,8 @@ makedepends="libpng-devel libjpeg-turbo-devel pixman-devel snappy-devel
  $(vopt_if opengl 'libepoxy-devel libdrm-devel MesaLib-devel')
  $(vopt_if iscsi 'libiscsi-devel')
  $(vopt_if smartcard libcacard-devel) $(vopt_if numa 'libnuma-devel')
- $(vopt_if spice 'pcsclite-devel')"
+ $(vopt_if spice 'pcsclite-devel')
+ $(vopt_if jack 'jack-devel')"
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -31,8 +32,8 @@ nostrip_files="hppa-firmware.img openbios-ppc openbios-sparc32 openbios-sparc64
 # FIXME
 make_check=extended
 
-build_options="gtk3 opengl sdl2 spice virgl smartcard numa iscsi"
-build_options_default="opengl gtk3 virgl sdl2 numa iscsi"
+build_options="gtk3 opengl sdl2 spice virgl smartcard numa iscsi jack"
+build_options_default="opengl gtk3 virgl sdl2 numa iscsi jack"
 desc_option_sdl2="Enable SDL (2.x) video output"
 desc_option_spice="Enable support for SPICE"
 desc_option_virgl="Enable support for VirGL (A Virtual 3D GPU renderer)"
@@ -68,9 +69,12 @@ do_configure() {
 		want_sdl="--enable-sdl"
 		audio_sdl=",sdl"
 	fi
+	if [ $"build_option_jack" ]; then
+		audio_jack=",jack"
+	fi
 
 	./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec \
-		--enable-kvm --audio-drv-list=alsa,pa${audio_sdl} \
+		--enable-kvm --audio-drv-list=alsa,pa${audio_sdl}${audio_jack} \
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \

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

* Re: [PR PATCH] [Updated] qemu: enable JACK Audio support
  2021-06-23 18:56 [PR PATCH] qemu: enable JACK Audio support ScrelliCopter
@ 2021-06-25  1:11 ` ScrelliCopter
  2021-06-25 15:58 ` [PR PATCH] [Merged]: " ericonr
  1 sibling, 0 replies; 3+ messages in thread
From: ScrelliCopter @ 2021-06-25  1:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ScrelliCopter/void-packages qemu-jack
https://github.com/void-linux/void-packages/pull/31639

qemu: enable JACK Audio support
<!-- 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.)
- [x] 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/31639.patch is attached

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

From 8958001f3bfd50c2963fbc90f902dbd893889d6c Mon Sep 17 00:00:00 2001
From: a dinosaur <nick@a-dinosaur.com>
Date: Thu, 24 Jun 2021 04:46:45 +1000
Subject: [PATCH] qemu: enable JACK Audio support

---
 srcpkgs/qemu/template | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 0fadb41f609c..5205c4e2f5e6 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -2,7 +2,7 @@
 # This package should be updated together with qemu-user-static
 pkgname=qemu
 version=6.0.0
-revision=2
+revision=3
 build_style=configure
 hostmakedepends="gettext pkg-config perl python3 automake libtool flex
  python3-Sphinx texinfo ninja"
@@ -17,7 +17,8 @@ makedepends="libpng-devel libjpeg-turbo-devel pixman-devel snappy-devel
  $(vopt_if opengl 'libepoxy-devel libdrm-devel MesaLib-devel')
  $(vopt_if iscsi 'libiscsi-devel')
  $(vopt_if smartcard libcacard-devel) $(vopt_if numa 'libnuma-devel')
- $(vopt_if spice 'pcsclite-devel')"
+ $(vopt_if spice 'pcsclite-devel')
+ $(vopt_if jack 'jack-devel')"
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -31,8 +32,8 @@ nostrip_files="hppa-firmware.img openbios-ppc openbios-sparc32 openbios-sparc64
 # FIXME
 make_check=extended
 
-build_options="gtk3 opengl sdl2 spice virgl smartcard numa iscsi"
-build_options_default="opengl gtk3 virgl sdl2 numa iscsi"
+build_options="gtk3 opengl sdl2 spice virgl smartcard numa iscsi jack"
+build_options_default="opengl gtk3 virgl sdl2 numa iscsi jack"
 desc_option_sdl2="Enable SDL (2.x) video output"
 desc_option_spice="Enable support for SPICE"
 desc_option_virgl="Enable support for VirGL (A Virtual 3D GPU renderer)"
@@ -68,9 +69,12 @@ do_configure() {
 		want_sdl="--enable-sdl"
 		audio_sdl=",sdl"
 	fi
+	if [ $"build_option_jack" ]; then
+		audio_jack=",jack"
+	fi
 
 	./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec \
-		--enable-kvm --audio-drv-list=alsa,pa${audio_sdl} \
+		--enable-kvm --audio-drv-list=alsa,pa${audio_sdl}${audio_jack} \
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \

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

* Re: [PR PATCH] [Merged]: qemu: enable JACK Audio support
  2021-06-23 18:56 [PR PATCH] qemu: enable JACK Audio support ScrelliCopter
  2021-06-25  1:11 ` [PR PATCH] [Updated] " ScrelliCopter
@ 2021-06-25 15:58 ` ericonr
  1 sibling, 0 replies; 3+ messages in thread
From: ericonr @ 2021-06-25 15:58 UTC (permalink / raw)
  To: ml

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

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

qemu: enable JACK Audio support
https://github.com/void-linux/void-packages/pull/31639

Description:
<!-- 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.)
- [x] 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
-->


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

end of thread, other threads:[~2021-06-25 15:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-23 18:56 [PR PATCH] qemu: enable JACK Audio support ScrelliCopter
2021-06-25  1:11 ` [PR PATCH] [Updated] " ScrelliCopter
2021-06-25 15:58 ` [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).