From 12b01bad564eafc4d90cfa0a2ef3a38025fdec6c Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Thu, 14 May 2026 20:06:30 +0300 Subject: [PATCH] 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 --- libs/libcap-ng/test-version.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 libs/libcap-ng/test-version.sh diff --git a/libs/libcap-ng/test-version.sh b/libs/libcap-ng/test-version.sh new file mode 100755 index 0000000000..c63b25c8aa --- /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