From: Josef Schlehofer Date: Tue, 30 Jun 2026 12:36:24 +0000 (+0200) Subject: uspot: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d3dd4cb9fb8c8a90d887010dac8f2a5ebfc28b3c;p=openwrt-packages.git uspot: add version check override None of the uspot executables (radius-client, uspot, uspot-das) expose the package version via --version or --help flags. This causes the generic CI tests to fail with "No executables in the package provided version". Add a test-version.sh to skip the version probe for the uspot, uspotfilter and uspot-www subpackages. Signed-off-by: Josef Schlehofer --- diff --git a/net/uspot/test-version.sh b/net/uspot/test-version.sh new file mode 100755 index 000000000..c43c2d20d --- /dev/null +++ b/net/uspot/test-version.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +# shellcheck shell=busybox + +# uspot executables (radius-client, uspot, uspot-das) do not expose the +# package version via --version or --help. Skip the generic version probe. + +case "$PKG_NAME" in +uspot|uspotfilter|uspot-www) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac