python-tabulate: add version check override

Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
George Sapkin
2026-05-11 22:57:13 +03:00
parent 31247cdbe5
commit 1130219346
+15
View File
@@ -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