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
|
|
|
DESCRIPTION = "This unary stack contains the dynamic_reconfigure package which provides a means to \
|
|
|
|
change node parameters at any time without having to restart the node."
|
2013-06-10 21:03:22 +08:00
|
|
|
SECTION = "devel"
|
|
|
|
LICENSE = "BSD"
|
2018-04-06 14:18:17 +08:00
|
|
|
LIC_FILES_CHKSUM = "file://package.xml;beginline=11;endline=11;md5=d566ef916e9dedc494f5f793a6690ba5"
|
2013-06-10 21:03:22 +08:00
|
|
|
|
2018-06-13 04:06:43 +08:00
|
|
|
DEPENDS = "roscpp std-msgs roslib ${PYTHON_PN}-rospkg"
|
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
|
|
|
|
2013-08-13 22:12:40 +08:00
|
|
|
SRC_URI = "https://github.com/ros/${ROS_SPN}/archive/${PV}.tar.gz;downloadfilename=${ROS_SP}.tar.gz"
|
2018-04-06 14:18:17 +08:00
|
|
|
SRC_URI[md5sum] = "c8205d14f3084e1dae677bc0812bb769"
|
|
|
|
SRC_URI[sha256sum] = "873c29fcd1d4731c4d76f29513a7fca87f9262ad9aca064e22423a92294a6121"
|
2016-09-23 15:28:06 +08:00
|
|
|
|
2013-08-13 22:12:40 +08:00
|
|
|
S = "${WORKDIR}/${ROS_SP}"
|
2013-06-10 21:03:22 +08:00
|
|
|
|
|
|
|
inherit catkin
|
2013-08-13 22:12:40 +08:00
|
|
|
|
2014-03-07 15:15:09 +08:00
|
|
|
RDEPENDS_${PN} = "roslib rosservice"
|