The current system python in the docker baseimage is py3.9, while the targetpython and hostpython built by p4a are py3.8, and this was causing linker issues in the pyqt5 build. It is also cleaner IMHO to have p4a handle what is needed for a recipe instead of assuming it is available in the system. (and I think this is how other existing recipes work) fixes https://github.com/spesmilo/electrum/issues/8016
14 lines
454 B
Python
14 lines
454 B
Python
from pythonforandroid.recipes.packaging import PackagingRecipe
|
|
|
|
|
|
assert PackagingRecipe._version == "21.3"
|
|
assert PackagingRecipe.depends == ["setuptools", "pyparsing", "python3"]
|
|
assert PackagingRecipe.python_depends == []
|
|
|
|
|
|
class PackagingRecipePinned(PackagingRecipe):
|
|
sha512sum = "2e3aa276a4229ac7dc0654d586799473ced9761a83aa4159660d37ae1a2a8f30e987248dd0e260e2834106b589f259a57ce9936eef0dcc3c430a99ac6b663e05"
|
|
|
|
|
|
recipe = PackagingRecipePinned()
|