-
Notifications
You must be signed in to change notification settings - Fork 385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
solve catkin_lint errors #176
base: kinetic-devel
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<package format="2"> | ||
<name>robotiq_2f_gripper_control</name> | ||
<version>1.0.0</version> | ||
<description>Package to control a 2-Finger Gripper from Robotiq inc.</description> | ||
<description><p>Package to control a 2-Finger Gripper from Robotiq inc.</p></description> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this a new thing for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (copy-paste) yes and no, catkin_lint gives a warning if the description of the package starts with "package for" or "package to" or "this package..." saying that this is the boilerplate informaion. I am not familiar with these packages and I don't feel comfortable changing their description, then I decided to add there a new format to makes catkin_lint happy.. |
||
<maintainer email="[email protected]">Jean-Philippe Roberge</maintainer> | ||
<license>BSD</license> | ||
<url type="website">http://ros.org/wiki/robotiq</url> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
|
||
<build_depend>angles</build_depend> | ||
<build_depend>message_generation</build_depend> | ||
<build_depend>gazebo</build_depend> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no, gazebo_ros is already listed. Catkin_lint gave the following error:
|
||
|
||
<exec_depend>message_runtime</exec_depend> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<package format="2"> | ||
<name>robotiq_3f_gripper_control</name> | ||
<version>1.0.0</version> | ||
<description>Package to control a 3F gripper Gripper from Robotiq inc.</description> | ||
<description><p>Package to control a 3F gripper Gripper from Robotiq inc.</p></description> | ||
<maintainer email="[email protected]">Jean-Philippe Roberge</maintainer> | ||
<license>BSD</license> | ||
<url type="website">http://ros.org/wiki/robotiq</url> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<package format="2"> | ||
<name>robotiq_ft_sensor</name> | ||
<version>1.0.0</version> | ||
<description>Package for reading data from a Robotiq Force Torque Sensor</description> | ||
<description><p>Package for reading data from a Robotiq Force Torque Sensor</p></description> | ||
<maintainer email="[email protected]">Jean-Philippe Roberge</maintainer> | ||
<author email="[email protected]">Jonathan Savoie</author> | ||
<url type="website">http://ros.org/wiki/robotiq</url> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would have probably left these alone, but if
catkin_lint
likes this better ..