Compare commits
38 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c171d1ad4 | ||
|
|
8a8c6a6acc | ||
|
|
4a3edf69d6 | ||
|
|
ed75548dc0 | ||
|
|
dfcbf50d99 | ||
|
|
99a986ef28 | ||
|
|
4947626050 | ||
|
|
eb63ac11b0 | ||
|
|
197849b5e8 | ||
|
|
74393aa64b | ||
|
|
ecf0b6f6ca | ||
|
|
4bb6d7aad6 | ||
|
|
06c7427f56 | ||
|
|
79e2102f82 | ||
|
|
b3e3efff94 | ||
|
|
02fbc193fc | ||
|
|
6647526561 | ||
|
|
a6053577df | ||
| 9e9bc62594 | |||
|
|
0d00e50a0b | ||
|
|
947f45b076 | ||
|
|
e284ce71db | ||
|
|
29da608bf6 | ||
|
|
f036e88691 | ||
|
|
a08e66d4e1 | ||
| f44cbf0fb3 | |||
|
|
09be2ae0b9 | ||
|
|
4bb0095bc1 | ||
|
|
970fce2ace | ||
|
|
f3af28bd7d | ||
|
|
69daa7cfd9 | ||
|
|
a9a4a8681b | ||
|
|
575d148b81 | ||
|
|
430f1e13d9 | ||
|
|
429220caec | ||
|
|
2a8e67b693 | ||
|
|
ee0be42313 | ||
|
|
9ae7e1ebef |
2 changed files with 123 additions and 11 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (wireplumber-0.4.14.tar.bz2) = 51dc830d4dfe000cf6091d728d9ce6248585f5fae729536d611f85a0981722b9ab7f13322b516dc9988cdc15e0859f946aa0b78a35ad13a67e2de8082e6d5549
|
||||
SHA512 (wireplumber-0.5.14.tar.bz2) = 49c2813b6374a327e1d15b79a56aa8a0f31049f4b7f13cc3cc85858dc498099556928d8347080ad3135c7b0575334deeaf343cdec6ecfe6a7734f442b97d4b40
|
||||
|
|
|
|||
132
wireplumber.spec
132
wireplumber.spec
|
|
@ -1,6 +1,6 @@
|
|||
Name: wireplumber
|
||||
Version: 0.4.14
|
||||
Release: 1%{?dist}
|
||||
Version: 0.5.14
|
||||
Release: 2%{?dist}
|
||||
Summary: A modular session/policy manager for PipeWire
|
||||
|
||||
License: MIT
|
||||
|
|
@ -52,6 +52,13 @@ Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Recommends: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description doc
|
||||
This package contains the documentation for WirePlumber.
|
||||
|
||||
%description
|
||||
WirePlumber is a modular session/policy manager for PipeWire and a
|
||||
GObject-based high-level library that wraps PipeWire's API, providing
|
||||
|
|
@ -76,6 +83,9 @@ managing PipeWire.
|
|||
# Create local config skeleton
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/wireplumber/{bluetooth.lua.d,common,main.lua.d,policy.lua.d}
|
||||
|
||||
# Create missing empty system config dirs for other packages to drop files in
|
||||
mkdir -p %{buildroot}%{_datadir}/wireplumber/wireplumber.conf.d
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
%posttrans
|
||||
|
|
@ -101,26 +111,128 @@ fi
|
|||
%dir %{_sysconfdir}/wireplumber/main.lua.d
|
||||
%dir %{_sysconfdir}/wireplumber/policy.lua.d
|
||||
%{_datadir}/wireplumber/
|
||||
%{_datadir}/zsh/site-functions/_wpctl
|
||||
%{_datadir}/bash-completion/completions/wpctl
|
||||
%{_userunitdir}/wireplumber.service
|
||||
%{_userunitdir}/wireplumber@.service
|
||||
|
||||
%files libs -f %{name}.lang
|
||||
%license LICENSE
|
||||
%dir %{_libdir}/wireplumber-0.4/
|
||||
%{_libdir}/wireplumber-0.4/libwireplumber-*.so
|
||||
%{_libdir}/libwireplumber-0.4.so.*
|
||||
%{_libdir}/girepository-1.0/Wp-0.4.typelib
|
||||
%dir %{_libdir}/wireplumber-0.5/
|
||||
%{_libdir}/wireplumber-0.5/libwireplumber-*.so
|
||||
%{_libdir}/libwireplumber-0.5.so.*
|
||||
%{_libdir}/girepository-1.0/Wp-0.5.typelib
|
||||
|
||||
%files devel
|
||||
%{_includedir}/wireplumber-0.4/
|
||||
%{_libdir}/libwireplumber-0.4.so
|
||||
%{_libdir}/pkgconfig/wireplumber-0.4.pc
|
||||
%{_datadir}/gir-1.0/Wp-0.4.gir
|
||||
%{_includedir}/wireplumber-0.5/
|
||||
%{_libdir}/libwireplumber-0.5.so
|
||||
%{_libdir}/pkgconfig/wireplumber-0.5.pc
|
||||
%{_datadir}/gir-1.0/Wp-0.5.gir
|
||||
|
||||
%files doc
|
||||
%{_datadir}/doc/wireplumber/
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Wed Apr 01 2026 Wim Taymans <wtaymans@redhat.com> - 0.5.14-1
|
||||
- wireplumber 0.5.14
|
||||
|
||||
* Mon Mar 16 2026 Tom Callaway <spot@fedoraproject.org> - 0.5.13-2
|
||||
- rebuild for lua 5.5
|
||||
|
||||
* Mon Jan 19 2026 Wim Taymans <wtaymans@redhat.com> - 0.5.13-1
|
||||
- wireplumber 0.5.13
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Oct 10 2025 Wim Taymans <wtaymans@redhat.com> - 0.5.12-1
|
||||
- wireplumber 0.5.12
|
||||
|
||||
* Fri Sep 05 2025 Wim Taymans <wtaymans@redhat.com> - 0.5.11-1
|
||||
- wireplumber 0.5.11
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Wed May 21 2025 Wim Taymans <wtaymans@redhat.com> - 0.5.10-1
|
||||
- wireplumber 0.5.10
|
||||
|
||||
* Mon May 19 2025 Wim Taymans <wtaymans@redhat.com> - 0.5.9-1
|
||||
- wireplumber 0.5.9
|
||||
|
||||
* Fri Feb 07 2025 Wim Taymans <wtaymans@redhat.com> - 0.5.8-1
|
||||
- wireplumber 0.5.8
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Dec 17 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.7-1
|
||||
- wireplumber 0.5.7
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Fri Jun 28 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.5-1
|
||||
- wireplumber 0.5.5
|
||||
|
||||
* Wed Jun 26 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.4-1
|
||||
- wireplumber 0.5.4
|
||||
|
||||
* Sat Jun 01 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.3-1
|
||||
- wireplumber 0.5.3
|
||||
|
||||
* Mon Apr 22 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.2-1
|
||||
- wireplumber 0.5.2
|
||||
|
||||
* Thu Apr 18 2024 Neal Gompa <ngompa@fedoraproject.org> - 0.5.1-2
|
||||
- Backport support for loading external WpConf from disk
|
||||
|
||||
* Tue Apr 02 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.1-1
|
||||
- wireplumber 0.5.1
|
||||
|
||||
* Mon Mar 25 2024 Adam Williamson <awilliam@redhat.com> - 0.5.0-2
|
||||
- Backport MR #620 to fix issues with bluetooth headsets etc.
|
||||
- Resolves: rhbz#2269343
|
||||
|
||||
* Mon Mar 18 2024 Wim Taymans <wtaymans@redhat.com> - 0.5.0-1
|
||||
- wireplumber 0.5.0
|
||||
|
||||
* Mon Mar 11 2024 Wim Taymans <wtaymans@redhat.com> - 0.4.90-1
|
||||
- wireplumber 0.4.90
|
||||
|
||||
* Thu Jan 25 2024 Wim Taymans <wtaymans@redhat.com> - 0.4.81-1
|
||||
- wireplumber 0.4.81
|
||||
|
||||
* Mon Dec 4 2023 Wim Taymans <wtaymans@redhat.com> - 0.4.17-1
|
||||
- wireplumber 0.4.17
|
||||
|
||||
* Mon Dec 4 2023 Hector Martin <marcan@fedoraproject.org> - 0.4.16-2
|
||||
- Create and own /usr/share/wireplumber/wireplumber.conf.d
|
||||
|
||||
* Thu Nov 23 2023 Wim Taymans <wtaymans@redhat.com> - 0.4.16-1
|
||||
- wireplumber 0.4.16
|
||||
|
||||
* Tue Nov 7 2023 Hector Martin <marcan@fedoraproject.org> - 0.4.15-2
|
||||
- Add upstream patch to enable node hiding
|
||||
|
||||
* Thu Oct 12 2023 Wim Taymans <wtaymans@redhat.com> - 0.4.15-1
|
||||
- wireplumber 0.4.15
|
||||
|
||||
* Fri Sep 08 2023 Peter Hutterer <peter.hutterer@redhat.com>
|
||||
- SPDX migration: mark as done
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Mar 9 2023 Wim Taymans <wim.taymans@redhat.com> - 0.4.14-1
|
||||
- wireplumber 0.4.14
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.13-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Dec 13 2022 Wim Taymans <wim.taymans@redhat.com> - 0.4.13-1
|
||||
- wireplumber 0.4.13
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue