Files
packages/lang/python/python-pyserial/test-version.sh
T
George Sapkin 31247cdbe5 python-pyserial: 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>
2026-05-17 14:35:31 +03:00

16 lines
173 B
Bash
Executable File

#!/bin/sh
# shellckeck shell=busybox
case "$PKG_NAME" in
python3-pyserial|\
python3-pyserial-src)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac