From a5d3013703f512d9c5f5c32c33dc00637d2a43d0 Mon Sep 17 00:00:00 2001 From: "Brett T. Warden" Date: Tue, 25 Jun 2024 13:13:03 -0700 Subject: [PATCH] Add pkgconfig detection pattern for rust dependencies --- autospec/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autospec/config.py b/autospec/config.py index 4e26b414..c2f17514 100644 --- a/autospec/config.py +++ b/autospec/config.py @@ -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),