From: George Sapkin Date: Sun, 24 May 2026 20:17:14 +0000 (+0300) Subject: xupnpd: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=39795762f53c78080fd88cba3814ef3851b96c4c;p=openwrt-packages.git xupnpd: add version check override Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin --- diff --git a/multimedia/xupnpd/test-version.sh b/multimedia/xupnpd/test-version.sh new file mode 100755 index 000000000..c15f29e5c --- /dev/null +++ b/multimedia/xupnpd/test-version.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +# shellcheck shell=busybox + +case "$PKG_NAME" in +xupnpd) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac