From dab7405f1c70b49c492940311e15e9c100b74d6a Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sun, 7 Aug 2022 13:22:56 -0700 Subject: Add err_egginfomissing --- bugscan.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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", } -- cgit v1.2.1