mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-16 02:05:11 +03:00
Unfortunately there are some code paths that are required to support socket activation, and they are only enabled at build time with -Dsystemd=enabled. On the bright side, service/socket unit files are included... Also note that I disabled test on armv7 since they fail in our CI using qemu on x86_64. They pass in Alpine on native armv7.
14 lines
385 B
Bash
14 lines
385 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
|