-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Recipe for argon2-cffi #2398
Merged
Merged
Recipe for argon2-cffi #2398
Changes from 6 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
d5d8944
testing argon2-cffi
Arjun-Somvanshi 1f6c5f4
retrying argon2-cffi test
Arjun-Somvanshi d3a2710
Update __init__.py
Arjun-Somvanshi 50de293
Update __init__.py
Arjun-Somvanshi 06720ee
Using CompiledComponentsPythonRecipe
Arjun-Somvanshi 10e6bca
Using CompiledComponentsPythonRecipe
Arjun-Somvanshi e23be18
Update __init__.py
Arjun-Somvanshi bc05d83
Update __init__.py
Arjun-Somvanshi 8fbb4cd
adding the extra lines
Arjun-Somvanshi a396f06
removing whitespace from line 10 (jeez)
Arjun-Somvanshi 1c2fb73
url change cause the extras of argon2 were excluded
Arjun-Somvanshi 023dc26
Update __init__.py
Arjun-Somvanshi 981c01b
remove @version
Arjun-Somvanshi ff3f43f
added build_cmd
Arjun-Somvanshi f5146fd
Update __init__.py
Arjun-Somvanshi 5b37ba7
Recipe for argon2-cffi
Arjun-Somvanshi bc4381b
argon2-cffi recipe
Arjun-Somvanshi 9e0f0b9
argon2-cffi recipe final changes
Arjun-Somvanshi 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from pythonforandroid.recipe import CompiledComponentsPythonRecipe | ||
|
||
class Argon2Recipe(CompiledComponentsPythonRecipe): | ||
version = '20.1.0' | ||
url = 'https://github.com/hynek/argon2-cffi/archive/master.zip' | ||
depends = ['setuptools', 'cffi'] | ||
call_hostpython_via_targetpython = False | ||
|
||
recipe = Argon2Recipe() |
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.
flake8 requires an extra blank line here.
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
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.
it doesn't like the fact that the "blank line" contains whitespace.