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

"apt-get source" for packages.ros.org?

asked 2011-12-28 07:21:02 -0500

martyvona gravatar image

Where are the sources (*.orig.tar.gz, *.diff.gz, and *.dsc files) for the debs on packages.ros.org?

Specifically, how to make "apt-get source" do the right thing for packages from this repository? Adding the obvious deb-src line to ros-latest.list doesn't seem to help (see below). Poking around on the packages.ros.org http interface, it looks to me like the sources have not been uploaded.

Packages I care about include ROS dependencies like assimp, yaml-cpp, and eigen. For example,

$ apt-cache policy libassimp2
libassimp2:
  Installed: 2.0.0.6-ubuntu1~lucid1
  Candidate: 2.0.0.6-ubuntu1~lucid1
  Version table:
 *** 2.0.0.6-ubuntu1~lucid1 0
      500 http://packages.ros.org/ros/ubuntu/ lucid/main Packages
      100 /var/lib/dpkg/status
$ cat /etc/apt/sources.list.d/ros-latest.list 
deb http://packages.ros.org/ros/ubuntu lucid main
$ apt-get source libassimp2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Picking 'assimp' as source package instead of 'libassimp2'
E: Unable to find a source package for assimp
$ sudo vi /etc/apt/sources.list.d/ros-latest.list
$ cat /etc/apt/sources.list.d/ros-latest.list
deb http://packages.ros.org/ros/ubuntu lucid main
deb-src http://packages.ros.org/ros/ubuntu lucid main
$ sudo apt-get update
...
Ign http://packages.ros.org lucid/main Packages
Ign http://packages.ros.org lucid/main Sources
Hit http://packages.ros.org lucid/main Packages
Get:1 http://packages.ros.org lucid/main Sources [20B]
Fetched 20B in 1s (14B/s)
Reading package lists... Done
$ apt-get source libassimp2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Picking 'assimp' as source package instead of 'libassimp2'
E: Unable to find a source package for assimp
edit retag flag offensive close merge delete

3 Answers

Sort by ยป oldest newest most voted
1

answered 2014-09-14 18:38:20 -0500

130s gravatar image

updated 2014-12-09 19:47:33 -0500

tfoote gravatar image

Just a follow-up; with the current package repository of ros.org (Sep 2014), you can obtain the source of the released packages by simply apt-get source. No deb-src needed. I documented it here.

Update 12/10/2014) deb-src seems to be required. I updated the link above too.

Edit with full instructions:

You just need to explicitly specify deb-src entry in the apt sources:

For example update /etc/apt/sources.list.d/ros_latest.list as follows:

  deb http://packages.ros.org/ros/ubuntu precise main
+ deb-src http://packages.ros.org/ros/ubuntu precise main

This assumes precise substitute your applicable ubuntu distro.

$ apt-get source ros-hydro-laser-pipeline

This downloads from the server all the files in the released version of the package (i.e. things not installed in the installation rule (e.g. CMakeLists.txt) are also included).

edit flag offensive delete link more

Comments

This does not seem to work for me. I'm running Hydro on 12.04, e.g., both

apt-get source ros-hydro-gmapping

and

apt-get source ros-hydro-slam-gmapping

return E: Unable to find a source package for ros-hydro-slam-gmapping.

Am I missing something?

damjan gravatar image damjan  ( 2014-12-09 18:16:40 -0500 )edit

@damjan I've updated my post above.

130s gravatar image 130s  ( 2014-12-09 19:06:04 -0500 )edit

@130s that's not an appropriate place to put that information. Placing that at the end of the procedural instructions will distract/confuse beginner users as it's not necessary/useful for them to get started. It should be documented for power users, where I think this thread is pretty good.

tfoote gravatar image tfoote  ( 2014-12-09 19:37:57 -0500 )edit

I would also highly recommend using rosinstall generator instead of apt-get source for fetching packages as you will get a version controlled source.

tfoote gravatar image tfoote  ( 2014-12-09 19:42:33 -0500 )edit

I pulled the full content in here and promoted this answer. It's already the top search result for apt-get dsc ros https://www.google.com/search?q=apt-g...

tfoote gravatar image tfoote  ( 2014-12-09 19:50:13 -0500 )edit

@tfoote Very much agreed.

130s gravatar image 130s  ( 2014-12-09 21:16:47 -0500 )edit
1

answered 2011-12-29 04:20:43 -0500

tfoote gravatar image

You will find the source for all the ros released stacks in the release repository https://code.ros.org/svn/release/download/stacks/

The existing infrastructure for 3rd party packages are quite ad hoc at the moment. We are redesigning the system to make the whole process easier.

In the mean time you can find the stacks you are looking for in gitbuildpackage repos: * Eigen is from debian upstream http://anonscm.debian.org/gitweb/?p=debian-science/packages/eigen3.git;a=summary cloned at https://kforge.ros.org/rosrelease/eigen3debs * yaml-cpp https://kforge.ros.org/rosrelease/yamlcppdebs * assimp is pulled from launchpad https://launchpad.net/~openrave/+archive/release

edit flag offensive delete link more
1

answered 2011-12-28 10:02:05 -0500

dornhege gravatar image

Looks the same for me.

This doesn't exactly fix your problem, but you can usually download the source code from each packages wiki entry and overlay the installed version with the sources by putting the local source directory to the front of the ROS_PACKAGE_PATH.

edit flag offensive delete link more

Comments

I want to rebuild the debs for a robot that runs an armel cpu and that may need custom patches in some cases. The original "upstream" source is only part of that. I also need the debian control files and especially the patchsets applied when the ros.org debs were built.
martyvona gravatar image martyvona  ( 2011-12-29 00:02:07 -0500 )edit

Question Tools

4 followers

Stats

Asked: 2011-12-28 07:21:02 -0500

Seen: 8,155 times

Last updated: Dec 09 '14