mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 04:05:15 +03:00
21 lines
524 B
Bash
21 lines
524 B
Bash
#!/bin/sh
|
|
|
|
ver_old="$2"
|
|
|
|
if [ "$(apk version -t "$ver_old" '0.3.33-r3')" = '<' ]; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* Pipewire bluez5 (Bluetooth) and FFmpeg SPA plugins, ALSA support, pw-* and
|
|
* spa-* tools have been moved to subpackages. If you use them, install
|
|
* pipewire-spa-bluez, pipewire-spa-ffmpeg, pipewire-alsa, pipewire-tools and/or
|
|
* pipewire-spa-tools, repsectively.
|
|
*
|
|
EOF
|
|
fi
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* The /usr/libexec/pipewire-launcher script will be removed in the future to replace it with OpenRC user-services.
|
|
*
|
|
EOF
|
|
|