From 5e4a2e5f1eb4a68d96666b7b4830ee7603e94f3f Mon Sep 17 00:00:00 2001 From: Arjan van de Ven Date: Thu, 14 Jun 2018 02:51:03 +0000 Subject: [PATCH] Add a few build match patterns, including meson --- autospec/config.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/autospec/config.py b/autospec/config.py index a0a9384..89a7118 100644 --- a/autospec/config.py +++ b/autospec/config.py @@ -179,6 +179,7 @@ failed_pats = [ (r"C library '(.*)' not found", 0, None), (r"Target '[a-zA-Z0-9\-]' can't be generated as '(.*)' could not be found", 0, None), (r"Program (.*) found: NO", 0, None), + (r"meson\.build\:162\:2\: ERROR: C library \'(.*)\' not found", 0, None), (r"Native dependency '(.*)' not found", 0, "pkgconfig"), (r"checking for library containing (.*)... no", 0, None), (r"checking for (.*?)\.\.\. not_found", 0, None), @@ -235,15 +236,15 @@ failed_pats = [ (r"Warning\: no usable ([a-zA-Z0-9]+) found", 0, None), (r"/usr/bin/env\: (.*)\: No such file or directory", 0, None), (r"make: ([a-zA-Z0-9].+): Command not found", 0, None), - (r"ERROR: dependencies.*'([a-zA-Z0-9\-]*)' are not available for package '.*'", 0, 'R'), + (r"ERROR: dependencies.*'([a-zA-Z0-9\-\.]*)' are not available for package '.*'", 0, 'R'), (r"Package which this enhances but not available for checking: '([a-zA-Z0-9\-]*)'", 0, 'R'), (r"Unknown packages '([a-zA-Z0-9\-]*)'.* in Rd xrefs", 0, 'R'), (r"Unknown package '([a-zA-Z0-9\-]*)'.* in Rd xrefs", 0, 'R'), - (r"ERROR: dependencies '([a-zA-Z0-9\-]*)'.* are not available for package '.*'", 0, 'R'), - (r"ERROR: dependencies '.*', '([a-zA-Z0-9\-]*)',.* are not available for package '.*'", 0, 'R'), - (r"ERROR: dependency '([a-zA-Z0-9\-]*)' is not available for package '.*'", 0, 'R'), - (r"there is no package called '([a-zA-Z0-9\-]*)'", 0, 'R'), - (r"you may need to install the ([a-zA-Z0-9\-:]*) module", 0, 'perl'), + (r"ERROR: dependencies '([a-zA-Z0-9\-\.]*)'.* are not available for package '.*'", 0, 'R'), + (r"ERROR: dependencies '.*', '([a-zA-Z0-9\-\.]*)',.* are not available for package '.*'", 0, 'R'), + (r"ERROR: dependency '([a-zA-Z0-9\-\.]*)' is not available for package '.*'", 0, 'R'), + (r"there is no package called '([a-zA-Z0-9\-\.]*)'", 0, 'R'), + (r"you may need to install the ([a-zA-Z0-9\-:\.]*) module", 0, 'perl'), (r" ! ([a-zA-Z:]+) is not installed", 0, 'perl'), (r"Warning: prerequisite ([a-zA-Z:]+) [0-9\.]+ not found.", 0, 'perl'), (r"Can't locate [a-zA-Z\/\.]+ in @INC "