summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2022-08-07 13:22:56 -0700
committerDan Fandrich <dan@coneharvesters.com>2022-08-07 13:22:56 -0700
commitdab7405f1c70b49c492940311e15e9c100b74d6a (patch)
tree994d80b4e7bed694cd8c17961a249742108e5920
parent18620c7b79192454db6aeca0ce5858d7d1ec11fe (diff)
downloadautobuild-dab7405f1c70b49c492940311e15e9c100b74d6a.tar
autobuild-dab7405f1c70b49c492940311e15e9c100b74d6a.tar.gz
autobuild-dab7405f1c70b49c492940311e15e9c100b74d6a.tar.bz2
autobuild-dab7405f1c70b49c492940311e15e9c100b74d6a.tar.xz
autobuild-dab7405f1c70b49c492940311e15e9c100b74d6a.zip
Add err_egginfomissinguser/danf/bugscan
-rw-r--r--bugscan.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/bugscan.rb b/bugscan.rb
index 3421e28..2bbba0f 100644
--- a/bugscan.rb
+++ b/bugscan.rb
@@ -10,7 +10,6 @@ $bug_matches = {
"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
"%py2_build" => "err_python3", # e.g. obapps
@@ -29,7 +28,9 @@ $bug_matches = {
"format not a string literal and no format arguments" => "err_literalformat", # e.g. bcunit
"multiple definition of .*enum fsconfig_command" => "err_mountcompat",
"redefinition of .*struct mount_attr" => "err_mountcompat",
+ "error: File not found:.*.egg-info" => "err_egginfomissing", # e.g. sword
# The following have more specific matches above
+ "^ File not found:" => "err_packagedfilemissing",
"multiple definition of" => "err_multipledefinition",
}