From: Alexandru Ardelean Date: Thu, 14 May 2026 17:06:30 +0000 (+0300) Subject: libcap-ng-bin: add test-version.sh to skip version check X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=12b01bad564eafc4d90cfa0a2ef3a38025fdec6c;p=openwrt-packages.git libcap-ng-bin: add test-version.sh to skip version check captest, filecap, netcap and pscap (libcap-ng-bin) do not print the package version string (0.8.4), causing generic version check failures in CI. Signed-off-by: Alexandru Ardelean --- diff --git a/libs/libcap-ng/test-version.sh b/libs/libcap-ng/test-version.sh new file mode 100755 index 000000000..c63b25c8a --- /dev/null +++ b/libs/libcap-ng/test-version.sh @@ -0,0 +1,5 @@ +#!/bin/sh +case "$1" in +captest|filecap|netcap|pscap) exit 0 ;; +*) echo "Untested package: $1" >&2; exit 1 ;; +esac