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

source code for robot_upstart that is distributed with ros humble

asked 2023-03-06 20:00:27 -0500

wintermute gravatar image

Hello,

Where can I find the source code for robot_upstart that comes with humble? I have checked the github repository pointed in package.xml, but it was for ros 1, and there was no ros 2 or humble branch.

Best Regards, C.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-03-06 22:35:56 -0500

marguedas gravatar image

The source of truth is the rosdistro file. If we look at the humble/distribution.yaml file and find the package of interest robot_upstartwe see this: https://github.com/ros/rosdistro/blob...

  robot_upstart:
doc:
  type: git
  url: https://github.com/clearpathrobotics/robot_upstart.git
  version: foxy-devel
release:
  tags:
    release: release/humble/{package}/{version}
  url: https://github.com/clearpath-gbp/robot_upstart-release.git
  version: 1.0.2-1
source:
  type: git
  url: https://github.com/clearpathrobotics/robot_upstart.git
  version: foxy-devel
status: maintained

The source section shows us the source code comes from the repository https://github.com/clearpathrobotics/robot_upstart.git and the branch is foxy-devel

edit flag offensive delete link more

Comments

To add to this: for released packages (which robot_upstart is, see the release stanza in the YAML snippet included in @marguedas' answer), you could also follow wiki/DebianPackageSources.

deb-src entries (and apt-get source) can be used with ROS 1 and ROS 2, as they share the same package infrastructure.

At that point, a simple apt-get source ros-humble-robot-upstart should get you the source archive.

gvdhoorn gravatar image gvdhoorn  ( 2023-03-07 01:25:26 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2023-03-06 20:00:27 -0500

Seen: 173 times

Last updated: Mar 06 '23