mirror of
https://github.com/clearlinux/autospec.git
synced 2026-08-26 18:35:57 +00:00
Stop setting catkin pkgconfig and buildreqs for certain patterns
Setting catkin on certain failed patterns was a mistake due to the patterns being more generic. Correct this error by not setting a requirement addition at this stage and letting later failed pattern detection catch these.
This commit is contained in:
committed by
William Douglas
parent
31ae7588f0
commit
8e05db8265
+3
-3
@@ -286,9 +286,9 @@ failed_pats = [
|
||||
r".*:(.*):[jar|pom]+:.* has not been downloaded from it before.*", 0, 'maven'),
|
||||
(r"\[WARNING\] The POM for .*:(.*):[jar|pom]+:.* is missing, no dependency information "
|
||||
r"available", 0, 'maven'),
|
||||
(r"^.*Could not find a package configuration file provided by \"(.*)\".*$", 0, 'catkin'),
|
||||
(r"^.*By not providing \"Find(.*).cmake\" in CMAKE_MODULE_PATH this.*$", 0, 'catkin'),
|
||||
(r"^.*\"(.*)\" with any of the following names.*$", 0, 'catkin')]
|
||||
(r"^.*Could not find a package configuration file provided by \"(.*)\".*$", 0, None),
|
||||
(r"^.*By not providing \"Find(.*).cmake\" in CMAKE_MODULE_PATH this.*$", 0, None),
|
||||
(r"^.*\"(.*)\" with any of the following names.*$", 0, None)]
|
||||
|
||||
|
||||
def get_metadata_conf():
|
||||
|
||||
Reference in New Issue
Block a user