-
Notifications
You must be signed in to change notification settings - Fork 132
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
[Melodic] workaround missing dependencies #782
[Melodic] workaround missing dependencies #782
Conversation
unfortunately, the comment-approach does not work for these packages... |
I guess we will not be able to get a |
ae8125b
to
4fb4e32
Compare
4fb4e32
to
a0a5ef9
Compare
d651363
to
b33709d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it got a bit messier than I thought in the beginning, but now I think I got a version that allows us to support/check kinetic
and melodic
compatibility
we cannot release cob_robots
into melodic
(for now), though
and we will need for ros/rosdistro#21966 to get merged
@ipa-fez @ipa-jba @ipa-jcl @ipa-mjp @ipa-mah @ipa-rmb
any opinions on this PR?
- git: | ||
local-name: realsense2_substitute | ||
uri: https://github.com/ipa320/realsense.git | ||
version: realsense2_substitute |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is needed because realsense2_camera
is not released into kinetic
(although, I commented that dependency again)
- git: | ||
local-name: realsense_substitute | ||
uri: https://github.com/ipa320/realsense.git | ||
version: realsense_substitute |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is needed because realsense_camera
is not released into melodic
- git: | ||
local-name: realsense2_substitute | ||
uri: https://github.com/ipa320/realsense.git | ||
version: realsense2_substitute |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is needed because realsense2_camera
is not released into melodic
(although, I commented that dependency again)
@@ -13,6 +13,6 @@ | |||
<remap from="$(arg name)_node/intensity" to="$(arg name)/depth/intensity"/> | |||
<remap from="$(arg name)_node/ios" to="$(arg name)/depth/ios"/> | |||
<remap from="$(arg name)_node/points" to="$(arg name)/depth/points"/> | |||
</node> | |||
</node--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not feel responsible for this repo anymore...all robots using it, could stay on the indigo_dev
branch and still use kinetic
@@ -15,13 +15,13 @@ | |||
|
|||
<group unless="$(arg sim)"> | |||
<!-- universal robot python driver --> | |||
<node unless="$(arg use_modern_driver)" ns="arm/joint_trajectory_controller" pkg="ur_driver" type="driver.py" name="ur_driver" args="$(arg robot_ip) $(arg reverse_port)" output="screen"> | |||
<!--node unless="$(arg use_modern_driver)" ns="arm/joint_trajectory_controller" pkg="ur_driver" type="driver.py" name="ur_driver" args="$(arg robot_ip) $(arg reverse_port)" output="screen"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ur_driver
is not supported anymore
@@ -33,7 +33,7 @@ | |||
<exec_depend>raw_description</exec_depend> | |||
<exec_depend>robot_state_publisher</exec_depend> | |||
<exec_depend>rviz</exec_depend> | |||
<exec_depend>ur_description</exec_depend> | |||
<!--exec_depend>ur_description</exec_depend--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ur_description
is not released into melodic
...all robots using it, could stay on the indigo_dev
branch and still use kinetic
<exec_depend>spacenav_node</exec_depend> | ||
<exec_depend>tf2_ros</exec_depend> | ||
<exec_depend>theora_image_transport</exec_depend> <!-- needed by the cameras to publish the compressed topics --> | ||
<exec_depend>topic_tools</exec_depend> | ||
<exec_depend>twist_mux</exec_depend> | ||
<exec_depend>ur_driver</exec_depend> | ||
<!--exec_depend>ur_driver</exec_depend--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ur_driver
is not released into melodic
...all robots using it, could stay on the indigo_dev
branch and still use kinetic
<exec_depend>robot_state_publisher</exec_depend> | ||
<exec_depend>rosserial_python</exec_depend> | ||
<exec_depend>rosserial_server</exec_depend> | ||
<exec_depend>rostopic</exec_depend> | ||
<exec_depend>rplidar_ros</exec_depend> | ||
<exec_depend>rviz</exec_depend> | ||
<exec_depend>sick_visionary_t_driver</exec_depend> | ||
<!--exec_depend>sick_visionary_t_driver</exec_depend--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sick_visionary_t_driver
is not released into melodic
...all robots using it, could stay on the indigo_dev
branch and still use kinetic
Looks OK to me. |
65376ac
to
ca45da9
Compare
ca45da9
to
2de9fe9
Compare
Fine to me, thanks for your explanations! |
in #780 we introduced a new default branch
kinetic_dev
with is supposed to supporte bothkinetic
andmelodic
distrosunfortunately,
universal_robots
is not yet released intomelodic
and also theur_driver
is no longer maintained - in favor ofur_modern_driver
thus, I commented everything
ur_X
-related in order to achieve the envisaged dual-distro-compatibilitythis means that on the real robot hardware (
raw3-1
only),kinetic_dev
will not workhowever, the "old"
indigo_dev
branch is stillkinetic
-compatible and has theur_X
stuff includedthus, when using this branch,
raw3-1
can still be operated as is...as long ascob_robot
is not switched tocob_robots/kinetic_dev
@ipa-jba @ipa-fez @ipa-jcl @ipa-mjp @ipa-mah @ipa-rmb FYI