mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-15 01:43:36 +03:00
APKBUILD was rebased onto the latest verstion in Alpine aports (1.50.0-r3) [ci:skip-build]: bug in CI prevents it from completing, but builds fine locally
15 lines
348 B
Bash
15 lines
348 B
Bash
#!/bin/sh
|
|
|
|
ver_old=$2
|
|
|
|
if [ "$(apk version -t "$ver_old" '1.34.0-r3')" = '<' ]; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* NetworkManager plugins adsl, bluetooth, ovs, ppp, wwan (mobile broadband),
|
|
* and wifi have been split into subpackages. If you use some of them, install
|
|
* the corresponding packages (e.g. 'apk add networkmanager-wifi').
|
|
*
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|