2014-08-19 15:09:47 +08:00
|
|
|
DESCRIPTION = "The pluginlib package provides tools for writing and dynamically loading plugins \
|
|
|
|
using the ROS build infrastructure."
|
2014-03-13 14:25:16 +08:00
|
|
|
SECTION = "devel"
|
|
|
|
LICENSE = "BSD & BSL-1.0"
|
|
|
|
LIC_FILES_CHKSUM = "file://package.xml;beginline=9;endline=10;md5=bbbb6ab628b1f3daee74dd9c62bee312"
|
|
|
|
|
improving formatting after automated style check
After running oe-stylize.py on all recipes in recipes-ros, this
commit improves the formatting of some recipes.
To achieve this, I executed these commands in recipes-ros:
find . -name *.bb | sed 's#\(.*\)#./oe-stylize.py \1 > \1_sanitized#' | sh
find . -name *.bb | sed 's#\(.*\)#diff -Naur \1 \1_sanitized#' | sh > diffs
Then, I manually inspected the diffs file, and improved the
recipes.
For the DESCRIPTION line in the addressed recipes, the line width
of 100 characters was chosen, as the LIC_FILES_CHKSUM line and
SRC_URI line usually are also around about 100 characters long.
Hence, choosing a shorter line width, e.g. 80 characters, would
have only created more line breaks, but not reduced the need to
use a file viewer with which 100 characters line width can be
displayed. For the github file and diff viewer and most editors
on reasonably-sized screens, 100 character line width is no
problem.
2014-08-12 12:55:51 +08:00
|
|
|
DEPENDS = "boost class-loader rosconsole roslib libtinyxml"
|
|
|
|
|
2014-03-13 14:25:16 +08:00
|
|
|
SRC_URI = "https://github.com/ros/${ROS_SPN}/archive/${PV}.tar.gz;downloadfilename=${ROS_SP}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "681c98bb532cbd663f56f59590dcdae5"
|
|
|
|
SRC_URI[sha256sum] = "096112e2e5063bfca583bfa4ba3e3f47b51befd5e4b6c3edcc8311986b39a70f"
|
|
|
|
|
|
|
|
inherit catkin
|