Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore iceoryx_binding_c rosdep key #50

Merged
merged 1 commit into from
Mar 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bazel_ros2_rules/ros2/compute_system_rosdeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
#
# This is necessary because:
# - Some non-ROS packages don't always install their package manifests
# (cyclonedds, fastcdr, fastrtps, urdfdom_headers)
# (cyclonedds, fastcdr, fastrtps, iceoryx_binding_c, urdfdom_headers)
# - Group dependencies aren't supported everywhere and are hard-coded in
# some packages (rti-connext-dds-5.3.1)
#
# See https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Binary.html
# for further reference.
SKIPPED_ROSDEP_KEYS = {
'cyclonedds', 'fastcdr', 'fastrtps',
'cyclonedds', 'fastcdr', 'fastrtps', 'iceoryx_binding_c',
'rti-connext-dds-5.3.1', 'urdfdom_headers'}


Expand Down