diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2017-07-01 16:31:03 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-01 17:54:19 +0200 |
commit | e518b38936fb836bebf7f2274c6d6cdc704e119a (patch) | |
tree | e118c74782bd625a368167734ee7201b93955b68 /support/scripts/checkpackagelib/base.py | |
parent | 27b7bd6ad04b34b9bbcce5fb9e29677bc2afc606 (diff) | |
download | buildroot-e518b38936fb836bebf7f2274c6d6cdc704e119a.tar.gz buildroot-e518b38936fb836bebf7f2274c6d6cdc704e119a.zip |
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" <yann.morin.1998@free.fr>
Cc: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/scripts/checkpackagelib/base.py')
-rw-r--r-- | support/scripts/checkpackagelib/base.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/support/scripts/checkpackagelib/base.py b/support/scripts/checkpackagelib/base.py deleted file mode 100644 index 7669775f06..0000000000 --- a/support/scripts/checkpackagelib/base.py +++ /dev/null @@ -1,16 +0,0 @@ -# See support/scripts/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 |