You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
759 B
19 lines
759 B
import os |
|
|
|
from pythonforandroid.recipes.qt6 import Qt6Recipe |
|
|
|
from pythonforandroid.util import load_source |
|
|
|
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py')) |
|
|
|
assert Qt6Recipe._version == "6.4.3" |
|
# assert Qt6Recipe._version == "6.5.3" |
|
assert Qt6Recipe.depends == ['python3', 'hostqt6'] |
|
assert Qt6Recipe.python_depends == [] |
|
|
|
class Qt6RecipePinned(util.InheritedRecipeMixin, Qt6Recipe): |
|
sha512sum = "0bdbe8b9a43390c98cf19e851ec5394bc78438d227cf9d0d7a3748aee9a32a7f14fc46f52d4fa283819f21413567080aee7225c566af5278557f5e1992674da3" |
|
# sha512sum = "ca8ea3b81c121886636988275f7fa8ae6d19f7be02669e63ab19b4285b611057a41279db9532c25ae87baa3904b010e1db68b899cd0eda17a5a8d3d87098b4d5" |
|
|
|
|
|
recipe = Qt6RecipePinned()
|
|
|