X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/de35794692ec58d6b19a6e13e62c087b5324c812..8e60e2ea15a7ae14cad7c669999014798112ada0:/scripts/lint-packages.py diff --git a/scripts/lint-packages.py b/scripts/lint-packages.py index dc48a3de..5cfbe538 100755 --- a/scripts/lint-packages.py +++ b/scripts/lint-packages.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 import os +import re import sys def main(): @@ -26,7 +27,12 @@ def validate_package(package_name, lines): line_number = 1 for line in lines: if line.endswith(' \n'): - print('Line ' + str(line_number) + ' has trailing whitespace: ' + package_name) + print(package_name + ': Line ' + str(line_number) + ' has trailing whitespace') + if line.startswith('TERMUX_PKG_REVISION='): + value = line[len('TERMUX_PKG_REVISION='):].strip() + if not re.match('[0-9]+', value): + print(package_name + ': strange TERMUX_PKG_REVISION value "' + value + '"') + line_number += 1 if __name__ == '__main__':