-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change handling of unmapped platform packages for OpenEmbedded (#232)
- Use ${ROS_UNRESOLVED_PLATFORM_PKG_<PLATFORM_PKG>} as the mapped value when <PLATFORM_PKG> isn't resolved by entries in rosdep/*.yaml and add assignments of the form ROS_UNRESOLVED_PLATFORM_PKG_<PLATFORM_PKG> = "UNRESOLVED-<PLATFORM_PKG>" to conf/ros-distro/include/<ROS_DISTRO>/generated-ros-distro.inc . These assignments are then manually overridden in conf/ros-distro/include/<ROS_DISTRO>/ros-distro.inc as the mappings are determined. This make possible rapid iteration because superflore need not be rerun until rosdep/*.yaml are updated with all of the new mappings. - Drop using the OpenEmbedded Layer Index to guess the mapping of an unresolved platform package. It would often guess wrong, requiring a rerun of superflore. This change means that there is no longer a dependency on "bs4" and that yoctoRecipe.rosdep_cache is now only used to generate rosdep-resolved.yaml . - Also, rename generate_rosdistro_conf() to generate_ros_distro_inc() so that it corresponds to the name of the file it generates. - This commit resolves issue #223. Signed-off-by: Martin Jansa <[email protected]>
- Loading branch information
1 parent
6f2ac10
commit 6bddf7f
Showing
6 changed files
with
60 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,4 @@ docker | |
pyyaml | ||
pygithub | ||
catkin_pkg | ||
bs4 | ||
rospkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ | |
'pyyaml', | ||
'pygithub', | ||
'catkin_pkg >= 0.4.0', | ||
'bs4', | ||
'rospkg >= 1.1.8', | ||
] | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.