Lines Matching +full:re +full:- +full:config
3 import re
15 FIND_INFRA_IN_PATCH = re.compile(r"^\+\$\(eval \$\((host-)?([^-]*)-package\)\)$")
38 FIND_INFRA_IN_MK = re.compile(r"^\$\(eval \$\((host-)?([^-]*)-package\)\)$")
73 # Unit-test parsing functions
77 """Generate all test-cases from a given test-suite.
159 """Given a path to an arch/Config.in.* file, parse it to get the list
166 if line == "config BR2_ARCH":
170 m = re.match(r"^\s*default \"([^\"]*)\".*", line)
180 'arch/Config.in.', and use that to determine the architecture a
184 if not re.match(r"^.*/arch/Config\.in\..*$", fname):
193 m = re.match(r"^package/pkg-([^.]*).mk$", fname)
200 """Given a list of file names, returns the config names
202 return {os.path.basename(fname[:-10])
279 cmd = ["git", "--git-dir", os.path.join(basepath, ".git"), "ls-files"]