7 changed files with 29 additions and 11 deletions
@ -0,0 +1,18 @@ |
|||||||
|
import os |
||||||
|
|
||||||
|
from pythonforandroid.recipes.ply import PlyRecipe |
||||||
|
from pythonforandroid.util import load_source |
||||||
|
|
||||||
|
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py')) |
||||||
|
|
||||||
|
|
||||||
|
assert PlyRecipe._version == "3.11" |
||||||
|
assert PlyRecipe.depends == ['packaging'] |
||||||
|
assert PlyRecipe.python_depends == [] |
||||||
|
|
||||||
|
|
||||||
|
class PlyRecipePinned(util.InheritedRecipeMixin, PlyRecipe): |
||||||
|
sha512sum = "37e39a4f930874933223be58a3da7f259e155b75135f1edd47069b3b40e5e96af883ebf1c8a1bbd32f914a9e92cfc12e29fec05cf61b518f46c1d37421b20008" |
||||||
|
|
||||||
|
|
||||||
|
recipe = PlyRecipePinned() |
||||||
@ -1,13 +1,13 @@ |
|||||||
from pythonforandroid.recipes.pyqt_builder import PyQtBuilderRecipe |
from pythonforandroid.recipes.pyqt_builder import PyQtBuilderRecipe |
||||||
|
|
||||||
|
|
||||||
assert PyQtBuilderRecipe._version == "1.12.2" |
assert PyQtBuilderRecipe._version == "1.14.1" |
||||||
assert PyQtBuilderRecipe.depends == ["sip", "packaging", "python3"] |
assert PyQtBuilderRecipe.depends == ["sip", "packaging", "python3"] |
||||||
assert PyQtBuilderRecipe.python_depends == [] |
assert PyQtBuilderRecipe.python_depends == [] |
||||||
|
|
||||||
|
|
||||||
class PyQtBuilderRecipePinned(PyQtBuilderRecipe): |
class PyQtBuilderRecipePinned(PyQtBuilderRecipe): |
||||||
sha512sum = "022f2cd40c100543c4b442fc5b27bbf2ec853d94b531f8f6dc1d7f92b07bcc20e8f0a4eb64feb96d094ba0d5f01fddcc8aed23ddf67a61417e07983a73918230" |
sha512sum = "4de9be2c42f38fbc22d46a31dd6da37c02620bb112a674ef846a4eb7f862715852e1d7328da1e0d0e33f78475166fe3c690e710e18bfeb48f840f137831a2182" |
||||||
|
|
||||||
|
|
||||||
recipe = PyQtBuilderRecipePinned() |
recipe = PyQtBuilderRecipePinned() |
||||||
|
|||||||
@ -1,13 +1,13 @@ |
|||||||
from pythonforandroid.recipes.sip import SipRecipe |
from pythonforandroid.recipes.sip import SipRecipe |
||||||
|
|
||||||
|
|
||||||
assert SipRecipe._version == "6.5.1" |
assert SipRecipe._version == "6.7.7" |
||||||
assert SipRecipe.depends == ["setuptools", "packaging", "toml", "python3"] |
assert SipRecipe.depends == ["setuptools", "packaging", "toml", "ply", "python3"], SipRecipe.depends |
||||||
assert SipRecipe.python_depends == [] |
assert SipRecipe.python_depends == [] |
||||||
|
|
||||||
|
|
||||||
class SipRecipePinned(SipRecipe): |
class SipRecipePinned(SipRecipe): |
||||||
sha512sum = "2d6f225e653873462d97dfdc85bd308a26b66996e1bb98e2c3aa60a3b260db745021f1d3182db8e943fd216ee27a2f65731b96d287e94f8f2e7972c5df971c69" |
sha512sum = "b41a1e53e8bad1fca08eda2c89b8a7cabe6cb9e54d0ddeba0c718499b0288633fb6b90128d54f3df2420e20bb217d3df224750d30e865487d2b0a640fba82444" |
||||||
|
|
||||||
|
|
||||||
recipe = SipRecipePinned() |
recipe = SipRecipePinned() |
||||||
|
|||||||
Loading…
Reference in new issue