From 31247cdbe54e66e4157b1a4a9acc4ab5e7e9b4c7 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Mon, 11 May 2026 22:49:42 +0300 Subject: [PATCH] python-pyserial: 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-pyserial/test-version.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 lang/python/python-pyserial/test-version.sh diff --git a/lang/python/python-pyserial/test-version.sh b/lang/python/python-pyserial/test-version.sh new file mode 100755 index 0000000000..54624c5c10 --- /dev/null +++ b/lang/python/python-pyserial/test-version.sh @@ -0,0 +1,15 @@ +#!/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