Skip to content

Commit

Permalink
better handle p4a parent qt5 recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
accumulator committed Jan 5, 2023
1 parent 1e658b9 commit a4a2134
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion contrib/android/p4a_recipes/qt5/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import os

from pythonforandroid.recipes.qt5 import Qt5Recipe

from pythonforandroid.util import load_source

util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))

assert Qt5Recipe._version == "9b43a43ee96198674060c6b9591e515e2d27c28f"
assert Qt5Recipe.depends == ['python3']
assert Qt5Recipe.python_depends == []

recipe = Qt5Recipe()
class Qt5RecipePinned(util.InheritedRecipeMixin, Qt5Recipe):
pass

recipe = Qt5RecipePinned()

0 comments on commit a4a2134

Please sign in to comment.