8000 Minor fixes in build logic by native-api · Pull Request #197 · opencv/opencv-python · GitHub
[go: up one dir, main page]

Skip to content

Minor fixes in build logic #197

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

Merged
merged 11 commits into from
Jun 17, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
JSON format change for formula without any bottles
  • Loading branch information
native-api committed May 3, 2019
commit e1523c845ed4f17029d7a97671ca49b630d3c6c7
2 changes: 1 addition & 1 deletion travis_osx_brew_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function _brew_parse_package_info {
revision=data["revision"]
# in bottle''s json, revision is included into version; here, they are separate
print data["versions"]["stable"]+("_"+str(revision) if revision else "")
bottle_data=data["bottle"]["stable"]
bottle_data=data["bottle"].get("stable",{"rebuild":"","files":{}})
print bottle_data["rebuild"]
print bottle_data["files"].get(sys.argv[2],{"sha256":"!?"})["sha256"] #prevent losing trailing blank line to command substitution
' \
Expand Down
0