-
Notifications
You must be signed in to change notification settings - Fork 2k
VLC recepie, sdl2 bootstaps improvements #480
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
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
836327c
added .aar bundle (binary distribution of an Android Library Project)…
f3668e0
fixed aar support for recipes
0369158
added .aar bundle (binary distribution of an Android Library Project)…
05d1aea
fixed aar support for recipes
5933feb
Merge branch 'master' of https://github.com/ibobalo/python-for-android
28bb26c
cosmetic pygame log spam removed
60acd88
experimental recipe for VLC mediapleyer support
ab8bf58
recipes code cosmetic
ce4ea62
code cosmetic
cc50d62
cosmetic fixed minor logging in pygame bootstrap
fdcf5e7
added sdl2 bootstrap meta and presplash
c86c80f
sdl2 bootstrap default presplash image added
9bc52b6
fix for android native in sdl2 bootstrap transparent surface
ibobalo f891bdc
cosmetic toolchain logging outputs
ibobalo 0284511
cosmetic toolchain log output beautification
ibobalo d891395
Merge remote-tracking branch 'upstream/master'
ibobalo 9a036bb
added wakelock option for sdl2 bootstrap
ibobalo 1a36bc0
toolchain log output cosmetic
ibobalo 4275955
toolchain log output cosmetic
ibobalo f9b3976
toolchain log output cosmetic
ibobalo d1f1654
vlc recipe procompiled aar bundle handling improved
ibobalo e800908
toolchain log output cosmetic
ibobalo 07b61c5
toolchain: improved functions to apply recipe patches
ibobalo e3f0f2e
toolchain log output cosmetic
ibobalo a614b14
Merge remote-tracking branch 'upstream/master'
ibobalo 8ae6758
cosmetic logs
ibobalo 406b236
Merge remote-tracking branch 'upstream/master'
ibobalo 5bdaf52
toolchain log output cosmetic
ibobalo 02f0a87
Merge remote-tracking branch 'upstream/master'
ibobalo 8f04c7b
Merge remote-tracking branch 'upstream/master'
ibobalo 4407cfa
toolchain log output cosmetic
ibobalo 5fdbbd6
Merge remote-tracking branch 'upstream/master'
ibobalo f80d1f6
Merge remote-tracking branch 'upstream/master' into master
ibobalo 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
What do these extra arguments do? I thought they would be sh arguments, but couldn't find them.
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.
its new args of shprint. for pretty log optputs.
_tail mean show only N last lines of stdout. stderr will out full. like
command args | tail 10
_filterout mean do not print stdout lines matching regexp. like command
args | grep -v -e "re"
also _filter available
and _critical mean stop processing immediate after error, and do not
re-raise exception.
all this changes tot effect commands execution (except critical), just
butify its printout
2015-11-27 0:40 GMT+02:00 Alexander Taylor notifications@github.com:
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.
Do you have a reason for limiting to the last 10 lines? If we're passing the output through to the user, don't we want to pass all of it (or, if debug is not enabled, none of it)?
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.
1 its ok to drop patchall
2 presplash it was just experiment, actually no presplash code for sdl2 so
it is my fault to commit unused image
3. some commands produce really long outputs > 1000 lines. it was a big
problem for me to find error reason.
actually, in current state of p4a there no stdout listing at all (even id
debug) - just exception traceback and shortened last line. so, 10 lines is
much better then zero ?
anyway feel free to increase it to any reasonable number of lines you want
:)
2015-11-27 0:56 GMT+02:00 Alexander Taylor notifications@github.com:
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.
Okay, ignore my last reply, I understand better now and it seems good (though is there a reason for picking this tail number in particular?).