From: George Sapkin Date: Mon, 11 May 2026 19:57:13 +0000 (+0300) Subject: python-tabulate: add version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=1130219346e731d7470dfbbc2ec7df10e8372a47;p=openwrt-packages.git python-tabulate: 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/lang/python/python-tabulate/test-version.sh b/lang/python/python-tabulate/test-version.sh new file mode 100755 index 000000000..77f701d73 --- /dev/null +++ b/lang/python/python-tabulate/test-version.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# shellckeck shell=busybox + +case "$PKG_NAME" in +python3-tabulate|\ +python3-tabulate-src) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac