From e518b38936fb836bebf7f2274c6d6cdc704e119a Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sat, 1 Jul 2017 16:31:03 +0200 Subject: tools: move check-package out of support/scripts/ Move it to the top-level tools/ directory, so that it is easier to find for users. Signed-off-by: "Yann E. MORIN" Cc: Ricardo Martincoski Cc: Thomas Petazzoni Cc: Arnout Vandecappelle Signed-off-by: Thomas Petazzoni --- tools/checkpackagelib/base.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/checkpackagelib/base.py (limited to 'tools/checkpackagelib/base.py') diff --git a/tools/checkpackagelib/base.py b/tools/checkpackagelib/base.py new file mode 100644 index 0000000000..4b376f0597 --- /dev/null +++ b/tools/checkpackagelib/base.py @@ -0,0 +1,16 @@ +# See tools/checkpackagelib/readme.txt before editing this file. + + +class _CheckFunction(object): + def __init__(self, filename, url_to_manual): + self.filename = filename + self.url_to_manual = url_to_manual + + def before(self): + pass + + def check_line(self, lineno, text): + pass + + def after(self): + pass -- cgit v1.2.3