Skip to content

Commit

Permalink
Add pkgconfig detection pattern for rust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bwarden committed Jun 25, 2024
1 parent 381dfd8 commit a5d3013
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions autospec/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ def __init__(self, download_path):
(r"No rule to make target `(.*)',", 0, None),
(r"Package (.*) was not found in the pkg-config search path.", 0, 'pkgconfig'),
(r"Package '([a-zA-Z0-9\-:]*)', required by '.*', not found", 0, 'pkgconfig'),
(r"The file `([a-zA-Z0-9\-:]*)\.pc` needs to be installed and the PKG_CONFIG_PATH environment variable must contain its parent directory\.", 0, 'pkgconfig'),
(r"Package which this enhances but not available for checking: ['‘]([a-zA-Z0-9\-]*)['’]", 0, 'R'),
(r"Perhaps you should add the directory containing `([a-zA-Z0-9\-:]*)\.pc'", 0, 'pkgconfig'),
(r"Program (.*) found: NO", 0, None),
Expand Down

0 comments on commit a5d3013

Please sign in to comment.