-
Notifications
You must be signed in to change notification settings - Fork 914
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
[noetic] Restrict boost dependencies to components used #1871
Changes from all commits
4d2cfed
cb9ee17
5cc6b76
a7a4096
af0a9fd
3192823
54062df
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 |
---|---|---|
|
@@ -20,7 +20,11 @@ | |
<author>Jeremy Leibs</author> | ||
<author>James Bowman</author> | ||
|
||
<depend>boost</depend> | ||
<depend>libboost-date-time-dev</depend> | ||
<depend>libboost-filesystem-dev</depend> | ||
<depend>libboost-program-options-dev</depend> | ||
<depend>libboost-regex-dev</depend> | ||
<depend>libboost-thread-dev</depend> | ||
Comment on lines
-23
to
+27
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. Could we split this into Did you not do this on purpose? 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. Purposeful 😬 , currently I just replaced the keys without changing the scope of the tags. I figured that when splitting the It could be done in this PR though, it was just out of scope of my first pass |
||
<depend>rosbag_storage</depend> | ||
<depend>rosconsole</depend> | ||
<depend>roscpp</depend> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,8 @@ | |
|
||
#include <cstdio> | ||
|
||
#include <boost/filesystem.hpp> | ||
|
||
#include <gtest/gtest.h> | ||
|
||
#include <gpgme.h> | ||
|
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.
Moving to format 2 would permit deduplicating these.
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.
Agreed moving to format 2 for all packages would be a nice improvement.
Regarding deduplication: in the context of Generating ‘dev’ and runtime artefacts from ROS packages we're aiming for not using the
<depend>
tag to be able to generate pure runtime packages without bringing in all the dev dependencies.