Browse Source

Add TERMUX_PKG_REVISION check to lint-packages.py

android-5
Fredrik Fornwall 7 years ago
parent
commit
c12c0e408f
  1. 8
      scripts/lint-packages.py

8
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__':

Loading…
Cancel
Save