From 1130219346e731d7470dfbbc2ec7df10e8372a47 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Mon, 11 May 2026 22:57:13 +0300 Subject: [PATCH] python-tabulate: add version check override Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin --- lang/python/python-tabulate/test-version.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 lang/python/python-tabulate/test-version.sh diff --git a/lang/python/python-tabulate/test-version.sh b/lang/python/python-tabulate/test-version.sh new file mode 100755 index 0000000000..77f701d732 --- /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