blob: f3f25f0dbafffcb254cd0f12ceb04ec0e3562c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Regexes to match against the build log
$bug_matches = {
"com\\.sun\\.tools\\.javac\\.Main is not on the classpath" => "err_javacmissing", # e.g. gnu-getopt
"Unable to find a javac compiler" => "err_javacmissing", # e.g. fmj
"role: org\\.apache\\.maven\\.Maven" => "err_maven", # e.g. XmlSchema
"required file './depcomp' not found" => "err_depcomp", # e.g. admesh
"depcomp: No such file or directory" => "err_depcomp", # e.g. asteroids3D
"aclocal-1.\\d+: command not found" => "err_oldautoconf", # e.g. argtable2
"Empty %files file.*\\.debugfiles.list" => "err_debuglist", # e.g. kon2
"Empty %files file.*\\.lang" => "err_findlang",
"Installed \\(but unpackaged\\) file\\(s\\) found" => "err_unpackagedfile", # e.g. flvtool2
"^ File not found:" => "err_packagedfilemissing",
"SyntaxError: Missing parentheses in call to 'print'." => "err_python3", # e.g. pyzy
"ERROR: ambiguous python shebang" => "err_python3", # e.g. scid
"libtool: compile: unable to infer tagged configuration" => "err_libtool", # e.g. mcal
}
|