ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
2

Rosdep with custom package

asked 2015-12-01 09:37:47 -0500

Aridane gravatar image

Hi everyone!

I have some ROS packages that contain dependencies on several packages that can be installed using rosdep install. On the other hand, one of those dependencies is with a custom package that contains only custom message definitions [my_custom_msgs].

The problem I have is that if I list "my_custom_msgs" as a run_depend / buid_depend, "rosdep install -a" fails saying cannot locate rosdep definition for my_custom_msgs, and, of course, if I remove it from the rund_depend / build_depend, I cannot build this package.

Is there a way of making rosdep install ignore dependencies on custom packages?

Cheers, Aridane

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2015-12-01 09:56:36 -0500

gvdhoorn gravatar image

Is there a way of making rosdep install ignore dependencies on custom packages?

No, but you can ask it to ignore packages which already exist in the source space of the target workspace (typically used with --from-paths):

rosdep install --ignore-src .. PKG

Anything that is a run_ or build_depend and is already present in the source space will then be assumed to be fulfilling that dependency (and cause rosdep to not go and try to resolve it in the 'official' database).

edit flag offensive delete link more

Comments

I realise this answer may be a bit pedantic, but I wanted to (implicitly) point out that there is no such thing as 'custom' packages for rosdep. It either checks all pkgs, or none. The only thing you can do is ask it to ignore things in the source space. The end result is the same though.

gvdhoorn gravatar image gvdhoorn  ( 2015-12-02 02:42:31 -0500 )edit

Don't worry about that, the answer is perfect! Tahnk you very much.

Aridane gravatar image Aridane  ( 2015-12-02 03:46:17 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2015-12-01 09:37:47 -0500

Seen: 996 times

Last updated: Dec 01 '15