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:
William Douglas
2018-07-31 23:18:07 +00:00
committed by William Douglas
parent 31ae7588f0
commit 8e05db8265
+3 -3
View File
@@ -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():