Antonio Larrosa
cde9ee6089
- Update to version 0.4.8: * Highlights: - Added bluetooth profile auto-switching support. Bluetooth headsets will now automatically switch to the HSP/HFP profile when making a call and go back to the A2DP profile after the call ends (#90) - Added an option (enabled by default) to auto-switch to echo-cancel virtual device nodes when the echo-cancel module is loaded in pipewire-pulse, if there is no other configured default node * Fixes: - Fixed a regression that prevented nodes from being selected as default when using the pro-audio profile (#163) - Fixed a regression that caused encoded audio streams to stall (#178) - Fixed restoring bluetooth device profiles * Library: - A new WpSpaJson API was added as a front-end to spa-json. This is also exposed to Lua, so that Lua scripts can natively parse and write data in the spa-json format * Misc: - wpctl can now list the configured default sources and sinks and has a new command that allows clearing those configured defaults, so that wireplumber goes back to choosing the default nodes based on node priorities - The restore-stream script now has its own configuration file in main.lua.d/40-stream-defaults.lua and has independent options for restoring properties and target nodes - The restore-stream script now supports rule-based configuration to disable restoring volume properties and/or OBS-URL: https://build.opensuse.org/request/show/952225 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/wireplumber?expand=0&rev=30
216 lines
7.2 KiB
RPMSpec
216 lines
7.2 KiB
RPMSpec
#
|
|
# spec file for package wireplumber
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define pipewire_minimum_version 0.3.43
|
|
%define apiver 0.4
|
|
%define apiver_str 0_4
|
|
%define sover 0
|
|
%define libwireplumber libwireplumber-%{apiver_str}-%{sover}
|
|
Name: wireplumber
|
|
Version: 0.4.8
|
|
Release: 0
|
|
Summary: Session / policy manager implementation for PipeWire
|
|
License: MIT
|
|
Group: Development/Libraries/C and C++
|
|
URL: https://gitlab.freedesktop.org/pipewire/wireplumber
|
|
Source0: wireplumber-%{version}.tar.xz
|
|
Source1: split-config-file.py
|
|
|
|
Patch100: reduce-meson-required-version.patch
|
|
# docs
|
|
BuildRequires: doxygen
|
|
BuildRequires: graphviz
|
|
BuildRequires: python3-lxml
|
|
# /docs
|
|
BuildRequires: cmake
|
|
BuildRequires: fdupes
|
|
BuildRequires: meson >= 0.54.0
|
|
BuildRequires: pipewire >= %{pipewire_minimum_version}
|
|
#!BuildIgnore: pipewire-session-manager
|
|
BuildRequires: pipewire-spa-plugins-0_2 >= %{pipewire_minimum_version}
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python3-base
|
|
BuildRequires: python3-lxml
|
|
BuildRequires: xmltoman
|
|
BuildRequires: pkgconfig(dbus-1)
|
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.62.0
|
|
BuildRequires: pkgconfig(gmodule-2.0)
|
|
BuildRequires: pkgconfig(gobject-2.0) >= 2.62
|
|
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
|
BuildRequires: pkgconfig(libpipewire-0.3) >= %{pipewire_minimum_version}
|
|
BuildRequires: pkgconfig(libsystemd)
|
|
BuildRequires: pkgconfig(lua)
|
|
BuildRequires: pkgconfig(systemd)
|
|
Requires: pipewire >= %{pipewire_minimum_version}
|
|
%if 0%{?suse_version} <= 1500
|
|
BuildRequires: gcc9
|
|
BuildRequires: gcc9-c++
|
|
%else
|
|
BuildRequires: gcc-c++
|
|
%endif
|
|
Provides: pipewire-session-manager
|
|
# Setup ALSA devices if pipewire handles pulseaudio connections.
|
|
Requires: (%{name}-audio if pipewire-pulseaudio)
|
|
|
|
%description
|
|
WirePlumber is a modular session / policy manager for PipeWire and
|
|
a GObject-based high-level library that wraps PipeWire's API,
|
|
providing convenience for writing the daemon's modules as well as
|
|
external tools for managing PipeWire.
|
|
|
|
%package audio
|
|
Summary: Session / policy manager implementation for PipeWire (audio support)
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{libwireplumber} = %{version}
|
|
Requires: %{name} = %{version}
|
|
Conflicts: pulseaudio
|
|
Recommends: pipewire-pulseaudio
|
|
|
|
%description audio
|
|
WirePlumber is a modular session / policy manager for PipeWire and
|
|
a GObject-based high-level library that wraps PipeWire's API,
|
|
providing convenience for writing the daemon's modules as well as
|
|
external tools for managing PipeWire.
|
|
|
|
This package enables the use of alsa devices in PipeWire.
|
|
|
|
%package devel
|
|
Summary: Session / policy manager implementation for PipeWire
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{libwireplumber} = %{version}
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
WirePlumber is a modular session / policy manager for PipeWire and
|
|
a GObject-based high-level library that wraps PipeWire's API,
|
|
providing convenience for writing the daemon's modules as well as
|
|
external tools for managing PipeWire.
|
|
|
|
This package provides all the necessary files for development with WirePlumber
|
|
|
|
%package -n %{libwireplumber}
|
|
Summary: Session / policy manager implementation for PipeWire
|
|
Group: System/Libraries
|
|
|
|
%description -n %{libwireplumber}
|
|
WirePlumber is a modular session / policy manager for PipeWire and
|
|
a GObject-based high-level library that wraps PipeWire's API,
|
|
providing convenience for writing the daemon's modules as well as
|
|
external tools for managing PipeWire.
|
|
|
|
This package provides the wireplumber shared library.
|
|
|
|
%package -n typelib-1_0-Wp-%{apiver_str}
|
|
Summary: Introspection bindings for libwireplumber
|
|
Group: System/Libraries
|
|
|
|
%description -n typelib-1_0-Wp-%{apiver_str}
|
|
WirePlumber is a modular session / policy manager for PipeWire and
|
|
a GObject-based high-level library that wraps PipeWire's API,
|
|
providing convenience for writing the daemon's modules as well as
|
|
external tools for managing PipeWire.
|
|
|
|
This package provides the GObject Introspection bindings for
|
|
the wireplumber shared library.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
pushd src/config/main.lua.d
|
|
python3 %{SOURCE1}
|
|
rm 90-enable-all.lua
|
|
popd
|
|
|
|
%build
|
|
%if %{pkg_vcmp gcc < 8}
|
|
export CC=gcc-9
|
|
%endif
|
|
%meson -Ddoc=disabled \
|
|
-Dsystem-lua=true \
|
|
-Delogind=disabled
|
|
%meson_build
|
|
|
|
%install
|
|
%meson_install
|
|
%fdupes -s %{buildroot}/%{_datadir}/doc/pipewire/html
|
|
|
|
%ifnarch %ix86 ppc64
|
|
%check
|
|
export XDG_RUNTIME_DIR=/tmp
|
|
%meson_test
|
|
%endif
|
|
|
|
%pre
|
|
%systemd_user_pre wireplumber.service
|
|
|
|
%post
|
|
%systemd_user_post wireplumber.service
|
|
|
|
%preun
|
|
%systemd_user_preun wireplumber.service
|
|
|
|
%postun
|
|
%systemd_user_postun wireplumber.service
|
|
|
|
%post -n %{libwireplumber} -p /sbin/ldconfig
|
|
%postun -n %{libwireplumber} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%{_bindir}/wireplumber
|
|
%{_bindir}/wpctl
|
|
%{_bindir}/wpexec
|
|
%dir %{_libdir}/wireplumber-%{apiver}
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-default-nodes-api.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-default-nodes.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-default-profile.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-device-activation.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-file-monitor-api.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-logind.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-lua-scripting.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-metadata.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-mixer-api.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-portal-permissionstore.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-reserve-device.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-si-audio-adapter.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-si-audio-endpoint.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-si-node.so
|
|
%{_libdir}/wireplumber-%{apiver}/libwireplumber-module-si-standard-link.so
|
|
%{_userunitdir}/wireplumber.service
|
|
%{_userunitdir}/wireplumber@.service
|
|
%{_datadir}/wireplumber
|
|
%exclude %{_datadir}/wireplumber/main.lua.d/90-2-1-enable-alsa.lua
|
|
|
|
%files audio
|
|
%{_datadir}/wireplumber/main.lua.d/90-2-1-enable-alsa.lua
|
|
|
|
%files devel
|
|
%{_includedir}/wireplumber-%{apiver}
|
|
%{_libdir}/libwireplumber-%{apiver}.so
|
|
%{_libdir}/pkgconfig/wireplumber-%{apiver}.pc
|
|
%{_datadir}/gir-1.0/Wp-%{apiver}.gir
|
|
|
|
%files -n typelib-1_0-Wp-%{apiver_str}
|
|
%{_libdir}/girepository-1.0/Wp-%{apiver}.typelib
|
|
|
|
%files -n %{libwireplumber}
|
|
%{_libdir}/libwireplumber-%{apiver}.so.%{sover}
|
|
%{_libdir}/libwireplumber-%{apiver}.so.%{sover}.*
|
|
|
|
%changelog
|