diff --git a/0001-Revert-treewide-meson.build-use-feature.allowed.patch b/0001-Revert-treewide-meson.build-use-feature.allowed.patch new file mode 100644 index 0000000000000000000000000000000000000000..4b721baddd8c70b5151a040d2d73ae5eb93652ca --- /dev/null +++ b/0001-Revert-treewide-meson.build-use-feature.allowed.patch @@ -0,0 +1,276 @@ +From 768eb72fa8eb5a4597adc60d2649cf2e5f564247 Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Fri, 18 Feb 2022 10:27:40 +0100 +Subject: [PATCH] Revert "treewide: meson.build: use feature.allowed()" + +This reverts commit cc7305351202424a2800425d86ae9c9b72aefa15. +--- + man/meson.build | 2 +- + meson.build | 14 +++++++------- + spa/meson.build | 4 ++-- + spa/plugins/bluez5/meson.build | 18 +++++++++--------- + spa/plugins/meson.build | 18 +++++++++--------- + spa/plugins/support/meson.build | 2 +- + src/daemon/systemd/meson.build | 4 ++-- + src/gst/meson.build | 2 +- + src/meson.build | 4 ++-- + src/tools/meson.build | 2 +- + 10 files changed, 35 insertions(+), 35 deletions(-) + +diff --git a/man/meson.build b/man/meson.build +index 54d1c5eca..8e6e7dbe4 100644 +--- a/man/meson.build ++++ b/man/meson.build +@@ -19,7 +19,7 @@ manpages = [ + 'pw-profiler.1.rst.in', + ] + +-if get_option('pipewire-jack').allowed() ++if not get_option('pipewire-jack').disabled() + manpages += 'pw-jack.1.rst.in' + endif + +diff --git a/meson.build b/meson.build +index 3c88c2427..b033059e9 100644 +--- a/meson.build ++++ b/meson.build +@@ -336,7 +336,7 @@ endforeach + gst_dp_found = gst_dep.length() > 0 + summary({'gstreamer-device-provider': gst_dp_found}, bool_yn: true, section: 'Backend') + +-cdata.set('HAVE_GSTREAMER_DEVICE_PROVIDER', get_option('gstreamer-device-provider').allowed()) ++cdata.set('HAVE_GSTREAMER_DEVICE_PROVIDER', not get_option('gstreamer-device-provider').disabled()) + + webrtc_dep = dependency('webrtc-audio-processing', + version : ['>= 0.2', '< 1.0'], +@@ -382,10 +382,10 @@ cdata.set('HAVE_LILV', lilv_lib.found()) + + installed_tests_metadir = pipewire_datadir / 'installed-tests' / pipewire_name + installed_tests_execdir = pipewire_libexecdir / 'installed-tests' / pipewire_name +-installed_tests_enabled = get_option('installed_tests').allowed() ++installed_tests_enabled = not get_option('installed_tests').disabled() + installed_tests_template = files('template.test.in') + +-if get_option('tests').allowed() ++if not get_option('tests').disabled() + gstack = find_program('gstack', required : false) + cdata.set('HAVE_GSTACK', gstack.found()) + endif +@@ -394,17 +394,17 @@ subdir('po') + subdir('spa') + subdir('src') + +-if get_option('tests').allowed() ++if not get_option('tests').disabled() + subdir('test') + endif + + configure_file(output : 'config.h', + configuration : cdata) + +-if get_option('pipewire-jack').allowed() ++if not get_option('pipewire-jack').disabled() + subdir('pipewire-jack') + endif +-if get_option('pipewire-v4l2').allowed() ++if not get_option('pipewire-v4l2').disabled() + subdir('pipewire-v4l2') + endif + +@@ -415,7 +415,7 @@ if alsa_dep.found() + endif + + generate_manpages = false +-if get_option('man').allowed() ++if not get_option('man').disabled() + rst2man = find_program('rst2man', required: false) + if not rst2man.found() + rst2man = find_program('rst2man.py', required: get_option('man')) +diff --git a/spa/meson.build b/spa/meson.build +index 1931d35b1..2404748df 100644 +--- a/spa/meson.build ++++ b/spa/meson.build +@@ -31,7 +31,7 @@ pkgconfig.generate(filebase : 'lib@0@'.format(spa_name), + + subdir('include') + +-if get_option('spa-plugins').allowed() ++if not get_option('spa-plugins').disabled() + udevrulesdir = get_option('udevrulesdir') + if udevrulesdir == '' + # absolute path, otherwise meson prepends the prefix +@@ -74,6 +74,6 @@ endif + + subdir('tools') + subdir('tests') +-if get_option('examples').allowed() ++if not get_option('examples').disabled() + subdir('examples') + endif +diff --git a/spa/plugins/bluez5/meson.build b/spa/plugins/bluez5/meson.build +index 4567b67dd..7a1e12ec7 100644 +--- a/spa/plugins/bluez5/meson.build ++++ b/spa/plugins/bluez5/meson.build +@@ -6,12 +6,12 @@ foreach dep: bluez5_deps + endforeach + + cdata.set('HAVE_BLUEZ_5_BACKEND_NATIVE', +- get_option('bluez5-backend-hsp-native').allowed() or +- get_option('bluez5-backend-hfp-native').allowed()) +-cdata.set('HAVE_BLUEZ_5_BACKEND_HSP_NATIVE', get_option('bluez5-backend-hsp-native').allowed()) +-cdata.set('HAVE_BLUEZ_5_BACKEND_HFP_NATIVE', get_option('bluez5-backend-hfp-native').allowed()) +-cdata.set('HAVE_BLUEZ_5_BACKEND_OFONO', get_option('bluez5-backend-ofono').allowed()) +-cdata.set('HAVE_BLUEZ_5_BACKEND_HSPHFPD', get_option('bluez5-backend-hsphfpd').allowed()) ++ not get_option('bluez5-backend-hsp-native').disabled() or ++ not get_option('bluez5-backend-hfp-native').disabled()) ++cdata.set('HAVE_BLUEZ_5_BACKEND_HSP_NATIVE', not get_option('bluez5-backend-hsp-native').disabled()) ++cdata.set('HAVE_BLUEZ_5_BACKEND_HFP_NATIVE', not get_option('bluez5-backend-hfp-native').disabled()) ++cdata.set('HAVE_BLUEZ_5_BACKEND_OFONO', not get_option('bluez5-backend-ofono').disabled()) ++cdata.set('HAVE_BLUEZ_5_BACKEND_HSPHFPD', not get_option('bluez5-backend-hsphfpd').disabled()) + cdata.set('HAVE_BLUEZ_5_HCI', dependency('bluez', version: '< 6', required: false).found()) + + bluez5_sources = [ +@@ -34,18 +34,18 @@ bluez5_data = ['bluez-hardware.conf'] + + install_data(bluez5_data, install_dir : spa_datadir / 'bluez5') + +-if get_option('bluez5-backend-hsp-native').allowed() or get_option('bluez5-backend-hfp-native').allowed() ++if not get_option('bluez5-backend-hsp-native').disabled() or not get_option('bluez5-backend-hfp-native').disabled() + if libusb_dep.found() + bluez5_deps += libusb_dep + endif + bluez5_sources += ['backend-native.c'] + endif + +-if get_option('bluez5-backend-ofono').allowed() ++if not get_option('bluez5-backend-ofono').disabled() + bluez5_sources += ['backend-ofono.c'] + endif + +-if get_option('bluez5-backend-hsphfpd').allowed() ++if not get_option('bluez5-backend-hsphfpd').disabled() + bluez5_sources += ['backend-hsphfpd.c'] + endif + +diff --git a/spa/plugins/meson.build b/spa/plugins/meson.build +index fcf007aa9..0b581b29b 100644 +--- a/spa/plugins/meson.build ++++ b/spa/plugins/meson.build +@@ -1,16 +1,16 @@ + if alsa_dep.found() + subdir('alsa') + endif +-if get_option('audioconvert').allowed() ++if not get_option('audioconvert').disabled() + subdir('audioconvert') + endif +-if get_option('audiomixer').allowed() ++if not get_option('audiomixer').disabled() + subdir('audiomixer') + endif +-if get_option('control').allowed() ++if not get_option('control').disabled() + subdir('control') + endif +-if get_option('audiotestsrc').allowed() ++if not get_option('audiotestsrc').disabled() + subdir('audiotestsrc') + endif + if bluez_dep.found() +@@ -22,19 +22,19 @@ endif + if jack_dep.found() + subdir('jack') + endif +-if get_option('support').allowed() ++if not get_option('support').disabled() + subdir('support') + endif +-if get_option('test').allowed() ++if not get_option('test').disabled() + subdir('test') + endif +-if get_option('videoconvert').allowed() ++if not get_option('videoconvert').disabled() + subdir('videoconvert') + endif +-if get_option('videotestsrc').allowed() ++if not get_option('videotestsrc').disabled() + subdir('videotestsrc') + endif +-if get_option('volume').allowed() ++if not get_option('volume').disabled() + subdir('volume') + endif + if vulkan_headers +diff --git a/spa/plugins/support/meson.build b/spa/plugins/support/meson.build +index 1672d38df..b810b283c 100644 +--- a/spa/plugins/support/meson.build ++++ b/spa/plugins/support/meson.build +@@ -23,7 +23,7 @@ spa_support_lib = shared_library('spa-support', + install_dir : spa_plugindir / 'support') + spa_support_dep = declare_dependency(link_with: spa_support_lib) + +-if get_option('evl').allowed() ++if not get_option('evl').disabled() + evl_inc = include_directories('/usr/evl/include') + evl_lib = cc.find_library('evl', + dirs: ['/usr/evl/lib/'], +diff --git a/src/daemon/systemd/meson.build b/src/daemon/systemd/meson.build +index 482a44c4b..89ad2f6dc 100644 +--- a/src/daemon/systemd/meson.build ++++ b/src/daemon/systemd/meson.build +@@ -1,6 +1,6 @@ +-if get_option('systemd-system-service').allowed() ++if not get_option('systemd-system-service').disabled() + subdir('system') + endif +-if get_option('systemd-user-service').allowed() ++if not get_option('systemd-user-service').disabled() + subdir('user') + endif +diff --git a/src/gst/meson.build b/src/gst/meson.build +index fd552f6cb..709dc0f1c 100644 +--- a/src/gst/meson.build ++++ b/src/gst/meson.build +@@ -8,7 +8,7 @@ pipewire_gst_sources = [ + 'gstpipewiresrc.c', + ] + +-if get_option('gstreamer-device-provider').allowed() ++if not get_option('gstreamer-device-provider').disabled() + pipewire_gst_sources += [ 'gstpipewiredeviceprovider.c' ] + endif + +diff --git a/src/meson.build b/src/meson.build +index cefc329eb..2fb73fd59 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -3,10 +3,10 @@ subdir('pipewire') + subdir('daemon') + subdir('tools') + subdir('modules') +-if get_option('examples').allowed() ++if not get_option('examples').disabled() + subdir('examples') + endif +-if get_option('tests').allowed() ++if not get_option('tests').disabled() + subdir('tests') + endif + +diff --git a/src/tools/meson.build b/src/tools/meson.build +index 02514c253..038231fcd 100644 +--- a/src/tools/meson.build ++++ b/src/tools/meson.build +@@ -34,7 +34,7 @@ if ncurses_dep.found() + endif + + build_pw_cat = false +-if get_option('pw-cat').allowed() and sndfile_dep.found() ++if not get_option('pw-cat').disabled() and sndfile_dep.found() + build_pw_cat = true + + pwcat_sources = [ +-- +2.34.1 + diff --git a/0001-conf-disable-bluez5.patch b/0001-conf-disable-bluez5.patch deleted file mode 100644 index 022f8d77843b4f5edf99e5fc2a40c1d11b3137e4..0000000000000000000000000000000000000000 --- a/0001-conf-disable-bluez5.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 13945e27434951366960dd3a0461c58487df82a2 Mon Sep 17 00:00:00 2001 -From: Wim Taymans -Date: Mon, 30 Mar 2020 15:32:04 +0200 -Subject: [PATCH] conf: disable bluez5 - -Disable bluetooth handling by default to avoid causing -conflicts with pulseaudio. ---- - src/daemon/pipewire.conf.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon/pipewire.conf.in b/src/daemon/pipewire.conf.in -index 574cba4f..4ecec24f 100644 ---- a/src/daemon/pipewire.conf.in -+++ b/src/daemon/pipewire.conf.in -@@ -71,4 +71,4 @@ create-object spa-node-factory factory.name=support.node.driver node.name=Dummy - # Execute the given program. This is usually used to start the - # session manager. run the session manager with -h for options - # --exec pipewire-media-session # -d alsa-seq,alsa-pcm,bluez5,metadata -+exec pipewire-media-session -d bluez5 # -d alsa-seq,alsa-pcm,metadata --- -2.26.2 - diff --git a/0001-meson-drop-required-version.patch b/0001-meson-drop-required-version.patch new file mode 100644 index 0000000000000000000000000000000000000000..68efac5af35d2544ad0ac0e146a94a47aba8eb94 --- /dev/null +++ b/0001-meson-drop-required-version.patch @@ -0,0 +1,25 @@ +From 753e97fe5823aa441b996015f44ddba3e400855d Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Fri, 18 Feb 2022 10:18:30 +0100 +Subject: [PATCH] meson: drop required version + +--- + meson.build | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/meson.build b/meson.build +index 440845e37..3c88c2427 100644 +--- a/meson.build ++++ b/meson.build +@@ -1,7 +1,7 @@ + project('pipewire', ['c' ], + version : '0.3.47', + license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], +- meson_version : '>= 0.59.0', ++ meson_version : '>= 0.58.2', + default_options : [ 'warning_level=3', + 'c_std=gnu99', + 'cpp_std=c++17', +-- +2.34.1 + diff --git a/pipewire-0.3.47.tar.gz b/pipewire-0.3.47.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..f48e307373f8119d70a58eb1f99cd257edeb68fd Binary files /dev/null and b/pipewire-0.3.47.tar.gz differ diff --git a/pipewire-0.3.6.tar.gz b/pipewire-0.3.6.tar.gz deleted file mode 100644 index e790a3cd3f18eb3df21cf1497a391d0dcb5d3c49..0000000000000000000000000000000000000000 Binary files a/pipewire-0.3.6.tar.gz and /dev/null differ diff --git a/pipewire-jack-allow-old-meson.patch b/pipewire-jack-allow-old-meson.patch new file mode 100644 index 0000000000000000000000000000000000000000..d7bb457f7ea040647768ca636ee075fdbcd44fc8 --- /dev/null +++ b/pipewire-jack-allow-old-meson.patch @@ -0,0 +1,59 @@ +From 26e63ca2e1d71491cd4e459b8890607b4a4bdd83 Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Fri, 18 Feb 2022 10:14:11 +0100 +Subject: [PATCH] jack: allow build on old meson of jack.pc + +Warn about reduced functionality. +--- + pipewire-jack/src/meson.build | 32 ++++++++++++++++++++------------ + 1 file changed, 20 insertions(+), 12 deletions(-) + +diff --git a/pipewire-jack/src/meson.build b/pipewire-jack/src/meson.build +index bb1a7f0e9..4dfae3d39 100644 +--- a/pipewire-jack/src/meson.build ++++ b/pipewire-jack/src/meson.build +@@ -69,21 +69,29 @@ pipewire_jacknet = shared_library('jacknet', + + if get_option('jack-devel') == true + if meson.version().version_compare('<0.59.0') +- error( ++ warning( + ''' +- Before version 0.59.0 Meson creates a wrong jack pkg-config file. +- For that reason this is now an error. Please update Meson, +- if you want to have JACK development files. ++ Before version 0.59.0 Meson creates a wrong jack pkg-config file ++ for server development. Please update Meson, if you want to have ++ JACK development files for server. + ''') +- endif + +- pkgconfig.generate(filebase : 'jack', +- libraries : [pipewire_jack, pipewire_jackserver], +- name : 'jack', +- description : 'PipeWire JACK API', +- version : '1.9.17', +- extra_cflags : '-D_REENTRANT', +- unescaped_variables: ['server_libs=-L${libdir} -ljackserver', 'jack_implementation=pipewire']) ++ pkgconfig.generate(filebase : 'jack', ++ libraries : [pipewire_jack, pipewire_jackserver], ++ name : 'jack', ++ description : 'PipeWire JACK API', ++ version : '1.9.17', ++ extra_cflags : '-D_REENTRANT', ++ variables: ['server_libs=-L${libdir} -ljackserver', 'jack_implementation=pipewire']) ++ else ++ pkgconfig.generate(filebase : 'jack', ++ libraries : [pipewire_jack, pipewire_jackserver], ++ name : 'jack', ++ description : 'PipeWire JACK API', ++ version : '1.9.17', ++ extra_cflags : '-D_REENTRANT', ++ unescaped_variables: ['server_libs=-L${libdir} -ljackserver', 'jack_implementation=pipewire']) ++ endif + endif + + if sdl_dep.found() +-- +2.34.1 + diff --git a/pipewire.spec b/pipewire.spec index 3df624dcd495b3356aa55f2e81685fcd4be76a39..5add2b6872011cb2c0c04fc50a3f7d87d4eefed5 100644 --- a/pipewire.spec +++ b/pipewire.spec @@ -1,10 +1,18 @@ +%global majorversion 0 +%global minorversion 3 +%global microversion 47 + %global apiversion 0.3 %global spaversion 0.2 +%global soversion 0 +%global libversion %{soversion}.%(bash -c '((intversion = (%{minorversion} * 100) + %{microversion})); echo ${intversion}').0 + +# For rpmdev-bumpspec and releng automation +%global baserelease 2 -#global snap 20141103 -#global gitrel 327 -#global gitcommit aec811798cd883a454b9b5cd82c77831906bbd2d -#global shortcommit %(c=%{gitcommit}; echo ${c:0:5}) +#global snapdate 20210107 +#global gitcommit b17db2cebc1a5ab2c01851d29c05f79cd2f262bb +#global shortcommit %(c=%{gitcommit}; echo ${c:0:7}) # https://bugzilla.redhat.com/983606 %global _hardened_build 1 @@ -12,36 +20,44 @@ # where/how to apply multilib hacks %global multilib_archs x86_64 %{ix86} ppc64 ppc s390x s390 sparc64 sparcv9 ppc64le -%global enable_alsa 1 +# Build conditions for various features +%bcond_without alsa +%bcond_without vulkan +%bcond_without v4l2 + +# Features disabled for RHEL 8 +%if 0%{?rhel} && 0%{?rhel} < 9 +%bcond_with pulse +%bcond_with jack +%else +%bcond_without pulse +%bcond_without jack +%endif -%if 0%{?fedora} -%global enable_jack 1 -%global enable_pulse 1 -%global enable_vulkan 1 +# Features disabled for RHEL +%if 0%{?rhel} +%bcond_with jackserver_plugin +%else +%bcond_without jackserver_plugin %endif -# libpulse and libjack subpackages shouldn't have library provides -# as the files they ship are not in the linker path. We also have -# to exclude requires or else the subpackages wind up requiring the -# libs they're no longer providing -# FIXME: the jack-audio-connection-kit and pulseaudio subpackages -# should get the auto-generated Provides: instead, but they do not, -# either with or without the lines below, not sure how to fix that -%global __provides_exclude_from ^%{_libdir}/pipewire-%{apiversion}/.*$ -%global __requires_exclude_from ^%{_libdir}/pipewire-%{apiversion}/.*$ +# Disabled for RHEL < 10 and Fedora < 36 +%if (0%{?rhel} && 0%{?rhel} < 10) || (0%{?fedora} && 0%{?fedora} < 36) +%bcond_with libcamera_plugin +%else +%bcond_without libcamera_plugin +%endif Name: pipewire Summary: Media Sharing Server -Version: 0.3.6 -Release: 1%{?snap:.%{snap}git%{shortcommit}}%{?dist} +Version: %{majorversion}.%{minorversion}.%{microversion} +Release: %{baserelease}%{?snapdate:.%{snapdate}git%{shortcommit}}%{?dist} License: MIT URL: https://pipewire.org/ -%if 0%{?gitrel} -# git clone git://anongit.freedesktop.org/gstreamer/pipewire -# cd pipewire; git reset --hard %{gitcommit}; ./autogen.sh; make; make distcheck -Source0: pipewire-%{version}-%{gitrel}-g%{shortcommit}.tar.gz +%if 0%{?snapdate} +Source0: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/%{gitcommit}/pipewire-%{shortcommit}.tar.gz %else -Source0: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/%{version}/pipewire-%{version}.tar.gz +Source0: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/%{version}/pipewire-%{version}.tar.gz %endif ## upstream patches @@ -49,10 +65,18 @@ Source0: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/%{version}/p ## upstreamable patches ## fedora patches -Patch0: 0001-conf-disable-bluez5.patch +## rhel patches +### Allow Meson < 0.59.0 to work for pipewire-jack +### N.B.: Remove this patch once Meson is upgraded in RHEL +Patch50001: pipewire-jack-allow-old-meson.patch +Patch50002: 0001-meson-drop-required-version.patch +Patch50003: 0001-Revert-treewide-meson.build-use-feature.allowed.patch + +BuildRequires: gettext BuildRequires: meson >= 0.49.0 BuildRequires: gcc +BuildRequires: gcc-c++ BuildRequires: pkgconfig BuildRequires: pkgconfig(libudev) BuildRequires: pkgconfig(dbus-1) @@ -63,29 +87,40 @@ BuildRequires: pkgconfig(gstreamer-base-1.0) >= 1.10.0 BuildRequires: pkgconfig(gstreamer-plugins-base-1.0) >= 1.10.0 BuildRequires: pkgconfig(gstreamer-net-1.0) >= 1.10.0 BuildRequires: pkgconfig(gstreamer-allocators-1.0) >= 1.10.0 -%if 0%{?enable_vulkan} +# libldac is not built on x390x, see rhbz#1677491 +%ifnarch s390x +BuildRequires: pkgconfig(ldacBT-enc) +BuildRequires: pkgconfig(ldacBT-abr) +%endif +BuildRequires: pkgconfig(fdk-aac) +%if %{with vulkan} BuildRequires: pkgconfig(vulkan) %endif BuildRequires: pkgconfig(bluez) -BuildRequires: systemd-devel >= 184 +BuildRequires: systemd-devel BuildRequires: alsa-lib-devel BuildRequires: libv4l-devel BuildRequires: doxygen -BuildRequires: xmltoman +BuildRequires: python3-docutils BuildRequires: graphviz BuildRequires: sbc-devel BuildRequires: libsndfile-devel +BuildRequires: ncurses-devel +BuildRequires: pulseaudio-libs-devel +BuildRequires: avahi-devel +BuildRequires: pkgconfig(webrtc-audio-processing) >= 0.2 +BuildRequires: libusb-devel +BuildRequires: readline-devel +BuildRequires: libcanberra-devel Requires(pre): shadow-utils Requires: %{name}-libs%{?_isa} = %{version}-%{release} -Requires: systemd >= 184 +Requires: systemd Requires: rtkit - -# https://bugzilla.redhat.com/983606 -%global _hardened_build 1 - -## enable systemd activation -%global systemd 1 +# A virtual Provides so we can swap session managers +Requires: pipewire-session-manager +# Prefer WirePlumber for session manager +Suggests: wireplumber %description PipeWire is a multimedia server for Linux and other Unix like operating @@ -95,6 +130,7 @@ systems. Summary: Libraries for PipeWire clients License: MIT Recommends: %{name}%{?_isa} = %{version}-%{release} +Obsoletes: %{name}-libpulse < %{version}-%{release} %description libs This package contains the runtime libraries for any application that wishes @@ -104,6 +140,7 @@ to interface with a PipeWire media server. Summary: GStreamer elements for PipeWire License: MIT Recommends: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description gstreamer This package contains GStreamer elements to interface with a @@ -133,44 +170,64 @@ Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description utils This package contains command line utilities for the PipeWire media server. -%if 0%{?enable_alsa} +%if %{with alsa} %package alsa Summary: PipeWire media server ALSA support License: MIT Recommends: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-libs%{?_isa} = %{version}-%{release} +%if ! (0%{?fedora} && 0%{?fedora} < 34) +# Ensure this is provided by default to route all audio +Supplements: %{name} = %{version}-%{release} +# Replace PulseAudio and JACK ALSA plugins with PipeWire +## N.B.: If alsa-plugins gets updated in F33, this will need to be bumped +Obsoletes: alsa-plugins-jack < 1.2.2-5 +Obsoletes: alsa-plugins-pulseaudio < 1.2.2-5 +%endif %description alsa This package contains an ALSA plugin for the PipeWire media server. %endif -%if 0%{?enable_jack} -%package libjack -Summary: PipeWire libjack library -License: MIT -Recommends: %{name}%{?_isa} = %{version}-%{release} -Requires: %{name}-libs%{?_isa} = %{version}-%{release} -BuildRequires: jack-audio-connection-kit-devel >= 1.9.10 -# Renamed in F32 -Obsoletes: pipewire-jack < 0.2.96-2 - -%description libjack -This package contains a PipeWire replacement for JACK audio connection kit -"libjack" library. - +%if %{with jack} %package jack-audio-connection-kit Summary: PipeWire JACK implementation License: MIT Recommends: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-libjack%{?_isa} = %{version}-%{release} -BuildRequires: jack-audio-connection-kit-devel >= 1.9.10 Conflicts: jack-audio-connection-kit Conflicts: jack-audio-connection-kit-dbus -Provides: jack-audio-connection-kit +# Fixed jack subpackages +Conflicts: %{name}-libjack < 0.3.13-6 +Conflicts: %{name}-jack-audio-connection-kit < 0.3.13-6 +# Replaces libjack subpackage +Obsoletes: %{name}-libjack < 0.3.19-2 +Provides: %{name}-libjack = %{version}-%{release} +Provides: %{name}-libjack%{?_isa} = %{version}-%{release} +%if ! (0%{?fedora} && 0%{?fedora} < 34) +# Ensure this is provided by default to route all audio +Supplements: %{name} = %{version}-%{release} +# Replace JACK with PipeWire-JACK +## N.B.: If jack gets updated in F33, this will need to be bumped +Obsoletes: jack-audio-connection-kit < 1.9.16-2 +%endif %description jack-audio-connection-kit This package provides a JACK implementation based on PipeWire +%package jack-audio-connection-kit-devel +Summary: Development files for %{name}-jack-audio-connection-kit +License: MIT +Requires: %{name}-jack-audio-connection-kit%{?_isa} = %{version}-%{release} +Conflicts: jack-audio-connection-kit-devel +Enhances: %{name}-jack-audio-connection-kit + +%description jack-audio-connection-kit-devel +This package provides development files for building JACK applications +using PipeWire's JACK library. +%endif + +%if %{with jackserver_plugin} %package plugin-jack Summary: PipeWire media server JACK support License: MIT @@ -183,69 +240,106 @@ Requires: jack-audio-connection-kit This package contains the PipeWire spa plugin to connect to a JACK server. %endif -%if 0%{?enable_pulse} -%package libpulse -Summary: PipeWire libpulse library +%if %{with libcamera_plugin} +%package plugin-libcamera +Summary: PipeWire media server libcamera support License: MIT +BuildRequires: libcamera-devel +BuildRequires: libdrm-devel Recommends: %{name}%{?_isa} = %{version}-%{release} Requires: %{name}-libs%{?_isa} = %{version}-%{release} -BuildRequires: pulseaudio-libs-devel -# Renamed in F32 -Obsoletes: pipewire-pulseaudio < 0.2.96-2 +Requires: libcamera +Requires: libdrm -%description libpulse -This package contains a PipeWire replacement for PulseAudio "libpulse" library. +%description plugin-libcamera +This package contains the PipeWire spa plugin to access cameras through libcamera. +%endif +%if %{with pulse} %package pulseaudio Summary: PipeWire PulseAudio implementation License: MIT Recommends: %{name}%{?_isa} = %{version}-%{release} -Requires: %{name}-libpulse%{?_isa} = %{version}-%{release} -BuildRequires: pulseaudio-libs-devel -Conflicts: pulseaudio-libs -Conflicts: pulseaudio-libs-glib2 -Provides: pulseaudio-libs -Provides: pulseaudio-libs-glib2 +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: pulseaudio-utils +BuildRequires: pulseaudio-libs +Conflicts: pulseaudio +# Fixed pulseaudio subpackages +Conflicts: %{name}-libpulse < 0.3.13-6 +Conflicts: %{name}-pulseaudio < 0.3.13-6 +%if ! (0%{?fedora} && 0%{?fedora} < 34) +# Ensure this is provided by default to route all audio +Supplements: %{name} = %{version}-%{release} +# Replace PulseAudio with PipeWire-PulseAudio +## N.B.: If pulseaudio gets updated in F33, this will need to be bumped +Obsoletes: pulseaudio < 14.2-3 +Obsoletes: pulseaudio-esound-compat < 14.2-3 +Obsoletes: pulseaudio-module-bluetooth < 14.2-3 +Obsoletes: pulseaudio-module-gconf < 14.2-3 +Obsoletes: pulseaudio-module-gsettings < 14.2-3 +Obsoletes: pulseaudio-module-jack < 14.2-3 +Obsoletes: pulseaudio-module-lirc < 14.2-3 +Obsoletes: pulseaudio-module-x11 < 14.2-3 +Obsoletes: pulseaudio-module-zeroconf < 14.2-3 +Obsoletes: pulseaudio-qpaeq < 14.2-3 +%endif + +# Virtual Provides to support swapping between PipeWire-PA and PA +Provides: pulseaudio-daemon +Conflicts: pulseaudio-daemon +Provides: pulseaudio-module-bluetooth +Provides: pulseaudio-module-jack %description pulseaudio This package provides a PulseAudio implementation based on PipeWire %endif -%prep -%setup -q -T -b0 -n %{name}-%{version}%{?gitrel:-%{gitrel}-g%{shortcommit}} +%if %{with v4l2} +%package v4l2 +Summary: PipeWire media server v4l2 LD_PRELOAD support +License: MIT +Recommends: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} + +%description v4l2 +This package contains an LD_PRELOAD library that redirects v4l2 applications to +PipeWire. +%endif -%patch0 -p1 -b .0000 +%prep +%autosetup -p1 %{?snapdate:-n %{name}-%{gitcommit}} %build %meson \ - -D docs=true -D man=true -D gstreamer=true -D systemd=true \ - %{!?enable_jack:-D jack=false -D pipewire-jack=false} \ - %{!?enable_pulse:-D pipewire-pulseaudio=false} \ - %{!?enable_alsa:-D pipewire-alsa=false} \ - %{!?enable_vulkan:-D vulkan=false} + -D docs=enabled -D man=enabled -D gstreamer=enabled -D systemd=enabled \ + -D gstreamer-device-provider=disabled -D sdl2=disabled \ + -D audiotestsrc=disabled -D videotestsrc=disabled \ + -D volume=disabled -D bluez5-codec-aptx=disabled -D roc=disabled \ + -D raop=disabled -D lv2=disabled \ +%ifarch s390x + -D bluez5-codec-ldac=disabled \ +%endif + %{!?with_media_session:-D session-managers=[]} \ + %{!?with_jack:-D pipewire-jack=disabled} \ + %{!?with_jackserver_plugin:-D jack=disabled} \ + %{!?with_libcamera_plugin:-D libcamera=disabled} \ + %{?with_jack:-D jack-devel=true} \ + %{!?with_alsa:-D pipewire-alsa=disabled} \ + %{?with_vulkan:-D vulkan=enabled} +%meson_build %install %meson_install -mkdir %{buildroot}%{_userunitdir}/sockets.target.wants -ln -s ../pipewire.socket %{buildroot}%{_userunitdir}/sockets.target.wants/pipewire.socket - -%if 0%{?enable_jack} -ln -s pipewire-%{apiversion}/jack/libjack.so.0 %{buildroot}%{_libdir}/libjack.so.0.1.0 -ln -s libjack.so.0.1.0 %{buildroot}%{_libdir}/libjack.so.0 -ln -s pipewire-%{apiversion}/jack/libjackserver.so.0 %{buildroot}%{_libdir}/libjackserver.so.0.1.0 -ln -s libjackserver.so.0.1.0 %{buildroot}%{_libdir}/libjackserver.so.0 -ln -s pipewire-%{apiversion}/jack/libjacknet.so.0 %{buildroot}%{_libdir}/libjacknet.so.0.1.0 -ln -s libjacknet.so.0.1.0 %{buildroot}%{_libdir}/libjacknet.so.0 -%endif +%if %{with jack} +mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d/ +echo %{_libdir}/pipewire-%{apiversion}/jack/ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/pipewire-jack-%{_arch}.conf +%else +rm %{buildroot}%{_datadir}/pipewire/jack.conf -%if 0%{?enable_pulse} -ln -s pipewire-%{apiversion}/pulse/libpulse.so.0 %{buildroot}%{_libdir}/libpulse.so.0 -ln -s pipewire-%{apiversion}/pulse/libpulse-simple.so.0 %{buildroot}%{_libdir}/libpulse-simple.so.0 -ln -s pipewire-%{apiversion}/pulse/libpulse-mainloop-glib.so.0 %{buildroot}%{_libdir}/libpulse-mainloop-glib.so.0 %endif -%if 0%{?enable_alsa} +%if %{with alsa} mkdir -p %{buildroot}%{_sysconfdir}/alsa/conf.d/ cp %{buildroot}%{_datadir}/alsa/alsa.conf.d/50-pipewire.conf \ %{buildroot}%{_sysconfdir}/alsa/conf.d/50-pipewire.conf @@ -253,11 +347,21 @@ cp %{buildroot}%{_datadir}/alsa/alsa.conf.d/99-pipewire-default.conf \ %{buildroot}%{_sysconfdir}/alsa/conf.d/99-pipewire-default.conf %endif -%check -%ifarch s390x -# FIXME: s390x FAIL: pw-test-stream, pw-test-endpoint -%global tests_nonfatal 1 +%if ! %{with pulse} +# If the PulseAudio replacement isn't being offered, delete the files +rm %{buildroot}%{_bindir}/pipewire-pulse +rm %{buildroot}%{_userunitdir}/pipewire-pulse.* +rm %{buildroot}%{_datadir}/pipewire/pipewire-pulse.conf %endif + +%find_lang %{name} + +# upstream should use udev.pc +mkdir -p %{buildroot}%{_prefix}/lib/udev/rules.d +mv -fv %{buildroot}/lib/udev/rules.d/90-pipewire-alsa.rules %{buildroot}%{_prefix}/lib/udev/rules.d + + +%check %meson_test || TESTS_ERROR=$? if [ "${TESTS_ERROR}" != "" ]; then echo "test failed" @@ -270,28 +374,49 @@ getent passwd pipewire >/dev/null || \ useradd -r -g pipewire -d %{_localstatedir}/run/pipewire -s /sbin/nologin -c "PipeWire System Daemon" pipewire exit 0 -%ldconfig_scriptlets libs +%post +%systemd_user_post pipewire.service +%systemd_user_post pipewire.socket + +%triggerun -- %{name} < 0.3.6-2 +# This is for upgrades from previous versions which had a static symlink. +# The %%post scriptlet above only does anything on initial package installation. +# Remove before F33. +systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || : + +%if %{with pulse} +%post pulseaudio +%systemd_user_post pipewire-pulse.service +%systemd_user_post pipewire-pulse.socket +%endif %files %license LICENSE COPYING %doc README.md -%if 0%{?systemd} %{_userunitdir}/pipewire.* -%{_userunitdir}/sockets.target.wants/pipewire.socket -%endif %{_bindir}/pipewire -%{_bindir}/pipewire-media-session %{_mandir}/man1/pipewire.1* -%dir %{_sysconfdir}/pipewire/ -%config(noreplace) %{_sysconfdir}/pipewire/pipewire.conf +%{_mandir}/man1/pipewire-pulse.1.gz +%dir %{_datadir}/pipewire/ +%{_datadir}/pipewire/pipewire.conf +%{_datadir}/pipewire/minimal.conf +%{_datadir}/pipewire/filter-chain/*.conf %{_mandir}/man5/pipewire.conf.5* -%files libs +%files libs -f %{name}.lang %license LICENSE COPYING %doc README.md %{_libdir}/libpipewire-%{apiversion}.so.* %{_libdir}/pipewire-%{apiversion}/libpipewire-*.so +%dir %{_datadir}/alsa-card-profile/ +%dir %{_datadir}/alsa-card-profile/mixer/ +%{_datadir}/alsa-card-profile/mixer/paths/ +%{_datadir}/alsa-card-profile/mixer/profile-sets/ +%dir %{_datadir}/spa-0.2/ +%{_datadir}/spa-0.2/bluez5/bluez-hardware.conf +%{_prefix}/lib/udev/rules.d/90-pipewire-alsa.rules %dir %{_libdir}/spa-%{spaversion} +%{_libdir}/spa-%{spaversion}/aec/ %{_libdir}/spa-%{spaversion}/alsa/ %{_libdir}/spa-%{spaversion}/audioconvert/ %{_libdir}/spa-%{spaversion}/audiomixer/ @@ -300,9 +425,11 @@ exit 0 %{_libdir}/spa-%{spaversion}/support/ %{_libdir}/spa-%{spaversion}/v4l2/ %{_libdir}/spa-%{spaversion}/videoconvert/ -%if 0%{?enable_vulkan} +%if %{with vulkan} %{_libdir}/spa-%{spaversion}/vulkan/ %endif +%{_datadir}/pipewire/client.conf +%{_datadir}/pipewire/client-rt.conf %files gstreamer %{_libdir}/gstreamer-1.0/libgstpipewire.* @@ -320,15 +447,21 @@ exit 0 %files utils %{_bindir}/pw-mon %{_bindir}/pw-metadata +%{_bindir}/pw-dsdplay %{_bindir}/pw-mididump %{_bindir}/pw-midiplay %{_bindir}/pw-midirecord %{_bindir}/pw-cli %{_bindir}/pw-dot %{_bindir}/pw-cat +%{_bindir}/pw-dump +%{_bindir}/pw-link +%{_bindir}/pw-loopback %{_bindir}/pw-play %{_bindir}/pw-profiler %{_bindir}/pw-record +%{_bindir}/pw-reserve +%{_bindir}/pw-top %{_mandir}/man1/pw-mon.1* %{_mandir}/man1/pw-cli.1* %{_mandir}/man1/pw-cat.1* @@ -337,95 +470,388 @@ exit 0 %{_mandir}/man1/pw-mididump.1* %{_mandir}/man1/pw-profiler.1* -%{_bindir}/spa-monitor +%{_bindir}/spa-acp-tool %{_bindir}/spa-inspect +%{_bindir}/spa-json-dump +%{_bindir}/spa-monitor +%{_bindir}/spa-resample -%if 0%{?enable_alsa} +%if %{with alsa} %files alsa %{_libdir}/alsa-lib/libasound_module_pcm_pipewire.so +%{_libdir}/alsa-lib/libasound_module_ctl_pipewire.so %{_datadir}/alsa/alsa.conf.d/50-pipewire.conf %{_datadir}/alsa/alsa.conf.d/99-pipewire-default.conf %config(noreplace) %{_sysconfdir}/alsa/conf.d/50-pipewire.conf %config(noreplace) %{_sysconfdir}/alsa/conf.d/99-pipewire-default.conf %endif -%if 0%{?enable_jack} -%files libjack -%{_libdir}/pipewire-%{apiversion}/jack/libjack.so* -%{_libdir}/pipewire-%{apiversion}/jack/libjacknet.so* -%{_libdir}/pipewire-%{apiversion}/jack/libjackserver.so* +%if %{with jack} +%files jack-audio-connection-kit %{_bindir}/pw-jack %{_mandir}/man1/pw-jack.1* +%{_libdir}/pipewire-%{apiversion}/jack/libjack.so.* +%{_libdir}/pipewire-%{apiversion}/jack/libjacknet.so.* +%{_libdir}/pipewire-%{apiversion}/jack/libjackserver.so.* +%{_datadir}/pipewire/jack.conf +%{_sysconfdir}/ld.so.conf.d/pipewire-jack-%{_arch}.conf + +%files jack-audio-connection-kit-devel +%{_includedir}/jack/ +%{_libdir}/pipewire-%{apiversion}/jack/libjack.so +%{_libdir}/pipewire-%{apiversion}/jack/libjacknet.so +%{_libdir}/pipewire-%{apiversion}/jack/libjackserver.so +%{_libdir}/pkgconfig/jack.pc +%endif -%files jack-audio-connection-kit -%{_libdir}/libjack.so.* -%{_libdir}/libjackserver.so.* -%{_libdir}/libjacknet.so.* - +%if %{with jackserver_plugin} %files plugin-jack %{_libdir}/spa-%{spaversion}/jack/ %endif -%if 0%{?enable_pulse} -%files libpulse -%{_libdir}/pipewire-%{apiversion}/pulse/libpulse.so* -%{_libdir}/pipewire-%{apiversion}/pulse/libpulse-simple.so* -%{_libdir}/pipewire-%{apiversion}/pulse/libpulse-mainloop-glib.so* -%{_bindir}/pw-pulse -%{_mandir}/man1/pw-pulse.1* +%if %{with libcamera_plugin} +%files plugin-libcamera +%{_libdir}/spa-%{spaversion}/libcamera/ +%endif +%if %{with pulse} %files pulseaudio -%{_libdir}/libpulse.so.0 -%{_libdir}/libpulse-simple.so.0 -%{_libdir}/libpulse-mainloop-glib.so.0 +%{_bindir}/pipewire-pulse +%{_mandir}/man1/pipewire-pulse.1.* +%{_userunitdir}/pipewire-pulse.* +%{_datadir}/pipewire/pipewire-pulse.conf +%endif + +%if %{with v4l2} +%files v4l2 +%{_bindir}/pw-v4l2 +%{_libdir}/pipewire-%{apiversion}/v4l2/libpw-v4l2.so %endif %changelog -* Tue Jun 23 2020 Wim Taymans - 0.3.6-1 -- Update to 0.3.6 -- Resolves: rhbz#1832347 +* Fri Mar 11 2022 Wim Taymans - 0.3.47-2 +- Add pulseaudio-utils as Requires for pipewire-pulseaudio + Resolves: rhbz#2059874 + +* Fri Feb 18 2022 Wim Taymans - 0.3.47-1 +- Update to 0.3.47 + Resolves: rhbz#2055694 + +* Mon Nov 15 2021 Neal Gompa - 0.3.40-1 +- Update to version 0.3.40 which drops media-session service for WirePlumber + Resolves: rhbz#2022694 + +* Thu Sep 16 2021 Wim Taymans - 0.3.32-3 +- Perform default systemd actions for media-session service. + Resolves: rhbz#1992712 + +* Mon Aug 09 2021 Mohan Boddu - 0.3.32-2 +- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags + Related: rhbz#1991688 + +* Wed Jul 21 2021 Neal Gompa - 0.3.32-1 +- Update to 0.3.32 + Resolves: rhbz#1956854 + +* Sat Apr 24 2021 Neal Gompa - 0.3.26-1 +- Update to 0.3.26 +- Add jack-devel subpackage, enable JACK support on RHEL 9+ (#1945951) + +* Fri Apr 16 2021 Mohan Boddu - 0.3.24-5 +- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 + +* Thu Mar 25 2021 Wim Taymans - 0.3.24-4 +- Apply some critical upstream patches + +* Thu Mar 25 2021 Kalev Lember - 0.3.24-3 +- Fix RHEL build + +* Thu Mar 25 2021 Kalev Lember - 0.3.24-2 +- Move individual config files to the subpackages that make use of them -* Mon Jun 15 2020 Wim Taymans - 0.3.5-3 -- Rebuild -- Resolves: rhbz#1832347 +* Thu Mar 18 2021 Wim Taymans - 0.3.24-1 +- Update to 0.3.24 -* Tue May 19 2020 Wim Taymans - 0.3.5-2 -- Disable vulkan -- Resolves: rhbz#1832347 +* Tue Mar 09 2021 Wim Taymans - 0.3.23-2 +- Add patch to enable UCM Microphones -* Tue May 19 2020 Wim Taymans - 0.3.5-1 +* Thu Mar 04 2021 Wim Taymans - 0.3.23-1 +- Update to 0.3.23 + +* Wed Feb 24 2021 Wim Taymans - 0.3.22-7 +- Add patch to sample destroy use after free + +* Wed Feb 24 2021 Wim Taymans - 0.3.22-6 +- Add patch for jack names + +* Mon Feb 22 2021 Wim Taymans - 0.3.22-5 +- Add some critical patches + +* Fri Feb 19 2021 Neal Gompa - 0.3.22-4 +- Replace more PulseAudio modules on upgrade in F34+ + +* Fri Feb 19 2021 Neal Gompa - 0.3.22-3 +- Replace ALSA plugins and PulseAudio modules on upgrade in F34+ + +* Fri Feb 19 2021 Neal Gompa - 0.3.22-2 +- Replace JACK and PulseAudio on upgrade in F34+ + Reference: https://fedoraproject.org/wiki/Changes/DefaultPipeWire + +* Thu Feb 18 2021 Wim Taymans - 0.3.22-1 +- Update to 0.3.22 +- disable sdl2 examples + +* Thu Feb 04 2021 Wim Taymans - 0.3.21-2 +- Add some upstream patches +- Fixes rhbz#1925138 + +* Wed Feb 03 2021 Wim Taymans - 0.3.21-1 +- Update to 0.3.21 + +* Wed Jan 27 2021 Fedora Release Engineering - 0.3.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jan 20 2021 Wim Taymans - 0.3.20-1 +- Update to 0.3.20 +- Fix baseversion +- Add gettext dependency + +* Tue Jan 12 2021 Neal Gompa - 0.3.19-4 +- Rework conditional build to fix ELN builds + +* Sat Jan 9 2021 Evan Anderson - 0.3.19-3 +- Add LDAC and AAC dependency to enhance Bluetooth support + +* Thu Jan 7 2021 Neal Gompa - 0.3.19-2 +- Obsolete useless libjack subpackage with jack-audio-connection-kit subpackage + +* Tue Jan 5 2021 Wim Taymans - 0.3.19-1 +- Update to 0.3.19 +- Add ncurses-devel BR + +* Tue Dec 15 2020 Wim Taymans - 0.3.18-1 +- Update to 0.3.18 + +* Fri Nov 27 2020 Wim Taymans - 0.3.17-2 +- Add some more Provides: for pulseaudio + +* Thu Nov 26 2020 Wim Taymans - 0.3.17-1 +- Update to 0.3.17 + +* Tue Nov 24 2020 Neal Gompa - 0.3.16-4 +- Add 'pulseaudio-daemon' Provides + Conflicts to pipewire-pulseaudio +- Remove useless ldconfig macros that expand to nothing + +* Fri Nov 20 2020 Wim Taymans - 0.3.16-3 +- Fix Requires for pipewire-pulseaudio +- Fixes rhbz#1899945 + +* Fri Nov 20 2020 Wim Taymans - 0.3.16-2 +- Add patch to fix crash in kwin, Fixes rhbz#1899826 + +* Thu Nov 19 2020 Wim Taymans - 0.3.16-1 +- Update to 0.3.16 + +* Wed Nov 4 2020 Wim Taymans - 0.3.15-2 +- Add patch to fix screen sharing for old clients + +* Wed Nov 4 2020 Wim Taymans - 0.3.15-1 +- Update to 0.3.15 + +* Sun Nov 1 2020 Wim Taymans - 0.3.14-2 +- Add some pulse server patches + +* Fri Oct 30 2020 Wim Taymans - 0.3.14-1 +- Update to 0.3.14 + +* Sun Oct 18 2020 Neal Gompa - 0.3.13-6 +- Fix jack and pulseaudio subpackages to generate dependencies properly + +* Tue Oct 13 2020 Wim Taymans - 0.3.13-5 +- Disable device provider for now +- Fixes rhbz#1884260 + +* Thu Oct 1 2020 Wim Taymans - 0.3.13-4 +- Add patches for some crasher bugs +- Fixes rhbz#1884177 + +* Tue Sep 29 2020 Wim Taymans - 0.3.13-3 +- Add patch to improve pulse compatibility + +* Mon Sep 28 2020 Jeff Law - 0.3.13-2 +- Re-enable LTO as upstream GCC target/96939 has been fixed + +* Mon Sep 28 2020 Wim Taymans - 0.3.13-1 +- Update to 0.3.13 + +* Fri Sep 18 2020 Wim Taymans - 0.3.12-1 +- Update to 0.3.12 + +* Fri Sep 11 2020 Wim Taymans - 0.3.11-2 +- Add some patches to improve pulse compatibility + +* Thu Sep 10 2020 Wim Taymans - 0.3.11-1 +- Update to 0.3.11 + +* Mon Aug 17 2020 Wim Taymans - 0.3.10-1 +- Update to 0.3.10 + +* Tue Aug 04 2020 Wim Taymans - 0.3.9-1 +- Update to 0.3.9 + +* Tue Aug 04 2020 Wim Taymans - 0.3.8-3 +- Add patch to avoid segfault when iterating ports. +- Fixes #1865827 + +* Wed Jul 29 2020 Wim Taymans - 0.3.8-2 +- Add patch for fix chrome audio hicups +- Add patch for infinite loop in device add/remove +- Disable LTO on armv7 + +* Tue Jul 28 2020 Wim Taymans - 0.3.8-1 +- Update to 0.3.8 + +* Tue Jul 21 2020 Wim Taymans - 0.3.7-2 +- Add patch to avoid crash when clearing metadata + +* Tue Jul 21 2020 Wim Taymans - 0.3.7-1 +- Update to 0.3.7 + +* Wed Jun 10 2020 Wim Taymans - 0.3.6-2 +- Use systemd presets to enable pipewire.socket +- Remove duplicate hardened_build flags +- Add meson build again +- Fix -gstreamer subpackage Requires: + +* Wed Jun 10 2020 Wim Taymans - 0.3.6-1 +- Update to 0.3.6 +- Add new man pages +- Only build vulkan/pulse/jack in Fedora. + +* Mon May 11 2020 Wim Taymans - 0.3.5-1 - Update to 0.3.5 -- Disable pulse and jack -- Add patch to work with meson 0.49 -- Add patch to fix neon compilation -- Resolves: rhbz#1832347 -* Fri Oct 18 2019 David King - 0.2.7-1 -- Rebase to 0.2.7 (#1748331) +* Fri May 01 2020 Adam Williamson - 0.3.4-2 +- Suppress library provides from pipewire-lib{pulse,jack} -* Fri Jan 11 2019 Wim Taymans - 0.2.5-1 -- Update to 0.2.5 -- Revert patch that requires too new meson +* Thu Apr 30 2020 Wim Taymans - 0.3.4-1 +- Update to 0.3.4 +- Add 2 more packages that replace libjack and libpulse + +* Tue Mar 31 2020 Wim Taymans - 0.3.2-3 +- Add patch to unsubscribe unused sequencer ports +- Change config to only disable bluez5 handling by default. + +* Mon Mar 30 2020 Wim Taymans - 0.3.2-2 +- Add config to disable alsa and bluez5 handling by default. + +* Thu Mar 26 2020 Wim Taymans - 0.3.2-1 +- Update to 0.3.2 + +* Fri Mar 06 2020 Wim Taymans - 0.3.1-1 +- Update to 0.3.1 + +* Thu Feb 20 2020 Wim Taymans - 0.3.0-1 +- Update to 0.3.0 +- Add libpulse-simple-pw.so + +* Wed Feb 19 2020 Wim Taymans - 0.2.97-1 +- Update to 0.2.97 +- Change download link + +* Tue Feb 18 2020 Kalev Lember - 0.2.96-2 +- Rename subpackages so that libjack-pw is in -libjack + and libpulse-pw is in -libpulse +- Split libspa-jack.so out to -plugin-jack subpackage +- Avoid hard-requiring the daemon from any of the library subpackages + +* Tue Feb 11 2020 Wim Taymans - 0.2.96-1 +- Update to 0.2.96 +- Split -gstreamer package +- Enable aarch64 tests again + +* Fri Feb 07 2020 Wim Taymans - 0.2.95-1 +- Update to 0.2.95 +- Disable test on aarch64 for now + +* Wed Feb 05 2020 Wim Taymans - 0.2.94-1 +- Update to 0.2.94 +- Move pipewire modules to -libs +- Add pw-profiler +- Add libsndfile-devel as a BR + +* Thu Jan 30 2020 Fedora Release Engineering - 0.2.92-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 28 2020 Wim Taymans - 0.2.93-1 +- Update to 0.2.93 + +* Wed Jan 15 2020 Wim Taymans - 0.2.92-1 +- Update to 0.2.92 + +* Wed Jan 15 2020 Wim Taymans - 0.2.91-1 +- Update to 0.2.91 +- Add some more BR +- Fix some unit tests + +* Mon Jan 13 2020 Wim Taymans - 0.2.90-1 +- Update to 0.2.90 + +* Thu Nov 28 2019 Kalev Lember - 0.2.7-2 +- Move spa plugins to -libs subpackage + +* Thu Sep 26 2019 Wim Taymans - 0.2.7-1 +- Update to 0.2.7 + +* Mon Sep 16 2019 Kalev Lember - 0.2.6-5 +- Don't require the daemon package for -devel subpackage +- Move pipewire.conf man page to the daemon package + +* Fri Jul 26 2019 Fedora Release Engineering - 0.2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jun 19 2019 Wim Taymans - 0.2.6-3 +- Add patch to reuse fd in pipewiresrc +- Add patch for device provider +- Add patch to disable extra security checks until portal is fixed. + +* Tue Jun 04 2019 Kalev Lember - 0.2.6-2 +- Split libpipewire and the gstreamer plugin out to -libs subpackage + +* Wed May 22 2019 Wim Taymans - 0.2.6-1 +- Update to 0.2.6 +- Add patch for alsa-lib 1.1.9 include path + +* Sat Feb 02 2019 Fedora Release Engineering - 0.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jan 04 2019 Wim Taymans - 0.2.5-2 - Add patch to avoid invalid conversion error with C++ compilers -- Resolves: #1664569 -* Fri Nov 30 2018 Wim Taymans - 0.2.4-1 +* Thu Nov 22 2018 Wim Taymans - 0.2.5-1 +- Update to 0.2.5 + +* Thu Nov 22 2018 Wim Taymans - 0.2.4-1 - Update to 0.2.4 -- Add defines for cursor and bitmap metadata -- Revert patch that requires too new meson -- Resolves: #1655028 * Thu Oct 18 2018 Wim Taymans - 0.2.3-2 - Add systemd socket activation -- Resolves: #1639871 -* Fri Oct 12 2018 Wim Taymans - 0.2.3-1 +* Thu Aug 30 2018 Wim Taymans - 0.2.3-1 - Update to 0.2.3 -- Resolves: #1638046 -* Wed Aug 01 2018 Wim Taymans - 0.2.2-1 +* Tue Jul 31 2018 Wim Taymans - 0.2.2-1 - Update to 0.2.2 +* Fri Jul 20 2018 Wim Taymans - 0.2.1-1 +- Update to 0.2.1 + +* Tue Jul 17 2018 Wim Taymans - 0.2.0-1 +- Update to 0.2.0 + +* Fri Jul 13 2018 Fedora Release Engineering - 0.1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Tue Feb 27 2018 Wim Taymans - 0.1.9-1 - Update to 0.1.9