From: Chris Larson Date: Mon, 15 Nov 2010 23:03:21 +0000 (-0700) Subject: checkbashisms: add initial class to run against ${S} X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd2d95283d2b1e78fc0842ae07618a69ce5b5ac3;p=openembedded.git checkbashisms: add initial class to run against ${S} Currently requires that you already have checkbashisms available somewhere in your PATH. Runs against all '#!/bin/sh' scripts in ${S}, to attempt to find and fix issues with /bin/sh not being bash. Signed-off-by: Chris Larson --- diff --git a/classes/checkbashisms.bbclass b/classes/checkbashisms.bbclass new file mode 100644 index 0000000000..3a38e34d52 --- /dev/null +++ b/classes/checkbashisms.bbclass @@ -0,0 +1,32 @@ +python do_checkbashisms () { + import re + import oe.process + import oe.path + + def readline(path): + try: + return iter(open(path, "r")).next() + except StopIteration: + pass + + shebang = re.compile("^#! */bin/sh$") + errors = False + srcdir = d.getVar("S", True) + for path in oe.path.find(srcdir): + line = readline(path) + if line and shebang.match(line): + try: + output = oe_run(d, ["checkbashisms", path]) + except oe.process.ExecutionError, exc: + if not errors: + errors = True + bb.note(str(exc)) + + if errors: + bb.fatal("bashisms were identified, aborting") +} +addtask checkbashisms after do_patch + +do_checkbashisms_all[recrdeptask] = "do_checkbashisms" +do_checkbashisms_all[nostamp] = "1" +addtask checkbashisms_all after do_checkbashisms