public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [flatpaks/flatpak-runtime] f45: resolve-files.py: Adjust for pipewire packaging changes
@ 2026-09-11 14:41 Kalev Lember
0 siblings, 0 replies; only message in thread
From: Kalev Lember @ 2026-09-11 14:41 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : flatpaks/flatpak-runtime
Branch : f45
Commit : 60c07ff5bf871c6bdaba1eeba9d05fb807c3c057
Author : Kalev Lember <klember@redhat.com>
Date : 2021-06-28T13:01:29+02:00
Stats : +7/-1 in 1 file(s)
URL : https://src.fedoraproject.org/flatpaks/flatpak-runtime/c/60c07ff5bf871c6bdaba1eeba9d05fb807c3c057?branch=f45
Log:
resolve-files.py: Adjust for pipewire packaging changes
---
diff --git a/tools/resolve-files.py b/tools/resolve-files.py
index db535a7..5635e0b 100755
--- a/tools/resolve-files.py
+++ b/tools/resolve-files.py
@@ -151,7 +151,7 @@ bin_ignore = [
'paplay', 'parec', 'parecord', 'pax11publish',
# pipewire-utils
- 'pw-cat', 'pw-cli', 'pw-dot', 'pw-dump', 'pw-metadata', 'pw-mididump', 'pw-midiplay', 'pw-midirecord', 'pw-mon', 'pw-play', 'pw-profiler', 'pw-record', 'pw-reserve', 'pw-top',
+ 'pw-cat', 'pw-cli', 'pw-dot', 'pw-dump', 'pw-link', 'pw-loopback', 'pw-metadata', 'pw-mididump', 'pw-midiplay', 'pw-midirecord', 'pw-mon', 'pw-play', 'pw-profiler', 'pw-record', 'pw-reserve', 'pw-top',
'spa-acp-tool', 'spa-inspect', 'spa-json-dump', 'spa-monitor', 'spa-resample',
# pipewire-pulseaudio should only be installed on the host
@@ -288,6 +288,12 @@ nspr_include = [
]
rename.update({ '/usr/include/' + x: '/usr/include/nspr4/' + x for x in nspr_include })
+# pipewire jack libraries are installed in a non-standard path
+jack_libraries = [
+ 'libjack.so', 'libjacknet.so', 'libjackserver.so'
+]
+rename.update({ '/usr/lib64/' + x: '/usr/lib64/pipewire-0.3/jack/' + x for x in jack_libraries })
+
# These plugins in the freedesktop runtime pull in gstreamer-plugins-bad-free-extras, which
# in turn pulls in a lot more dependencies. If they are useful, they should be moved
# to gstreamer-plugins-bad-free.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-11 14:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-11 14:41 [flatpaks/flatpak-runtime] f45: resolve-files.py: Adjust for pipewire packaging changes Kalev Lember
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox