From 39795762f53c78080fd88cba3814ef3851b96c4c Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Sun, 24 May 2026 23:17:14 +0300 Subject: [PATCH] xupnpd: add version check override Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin --- multimedia/xupnpd/test-version.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 multimedia/xupnpd/test-version.sh diff --git a/multimedia/xupnpd/test-version.sh b/multimedia/xupnpd/test-version.sh new file mode 100755 index 0000000000..c15f29e5c3 --- /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