-
Notifications
You must be signed in to change notification settings - Fork 114
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
Update to build Lunar + QT5 + Ogre 1.9 + Gazebo 8 #84
Merged
Merged
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b2c848f
First stab at getting a build for lunar+qt5.
mikepurvis 4b1a789
Add DCMAKE_FIND_FRAMEWORK=LAST
mikepurvis d1bdaf2
Opencv3 from homebrew.
mikepurvis 307963d
Fix Qt5 and pyqt/sip stuff.
mikepurvis 8ac3501
Fix check macro issue.
mikepurvis 1584eab
Patch rviz for the check macro issue.
mikepurvis 99abe9a
Update the travis configuration.
mikepurvis dc3c195
Reorder and comment the rosdeps.
mikepurvis e2ae14e
Explicit python2, drop python shim.
mikepurvis 925fb2a
Experimental CircleCI configuration.
mikepurvis 757606a
Fix path on travis.
mikepurvis a4fc88e
Don't install opencv3 from rosdep.
mikepurvis 51d71ec
Fix PYTHON_EXECUTABLE typo.
mikepurvis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
gazebo: | ||
libogre-dev: | ||
osx: | ||
homebrew: | ||
packages: [gazebo7] | ||
packages: [ogre1.9] | ||
libpng-dev: | ||
osx: | ||
homebrew: | ||
packages: [libpng] | ||
libwebp-dev: | ||
osx: | ||
homebrew: | ||
packages: [webp] | ||
python: | ||
osx: | ||
homebrew: | ||
|
@@ -10,21 +18,72 @@ python: | |
packages: [pip, setuptools, nose] | ||
python-imaging: | ||
osx: | ||
homebrew: | ||
packages: [homebrew/python/pillow] | ||
pip: | ||
packages: [pillow] | ||
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. This isn't actually necessary; it's present here: |
||
python-matplotlib: | ||
osx: | ||
homebrew: | ||
packages: [homebrew/python/matplotlib] | ||
packages: [homebrew/science/matplotlib] | ||
python-numpy: | ||
osx: | ||
homebrew: | ||
packages: [homebrew/python/numpy] | ||
python-scapy: | ||
packages: [numpy] | ||
python-scipy: | ||
osx: | ||
homebrew: | ||
packages: [homebrew/python/scapy] | ||
python-scipy: | ||
packages: [scipy] | ||
python-wxtools: | ||
osx: | ||
homebrew: | ||
packages: [wxmac] | ||
|
||
# Use Gazebo 8 instead of 7. | ||
gazebo7: | ||
osx: | ||
homebrew: | ||
packages: [gazebo8] | ||
libgazebo7-dev: | ||
osx: | ||
homebrew: | ||
packages: [gazebo8] | ||
|
||
libqt5-opengl-dev: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
libqt5-opengl: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
libqt5-core: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
python-qt5-bindings-gl: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
python-qt5-bindings-webkit: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
libqt5-gui: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
libqt5-widgets: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
qtbase5-dev: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
qt5-qmake: | ||
osx: | ||
homebrew: | ||
packages: [] | ||
python-qt5-bindings: | ||
osx: | ||
homebrew: | ||
packages: [homebrew/python/scipy] | ||
packages: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
# This wrapper allows rosdep to call pip and it actually be | ||
# the pip2 that's part of brewed Python, rather than the missing | ||
# system pip. | ||
pip2 $@ | ||
exit $? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
# This wrapper allows scripts to call python and it actually be | ||
# the python2 that's brewed Python, rather than system python. | ||
python2 $@ | ||
exit $? |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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'll push these changes upstream into rosdistro's rosdep.
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.
ros/rosdistro#16130