1
0

android build: pin hashes of p4a recipes

This commit is contained in:
SomberNight
2021-04-24 16:32:06 +02:00
parent 5dcafaf082
commit c3ccfd7d19
22 changed files with 340 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
import os
from pythonforandroid.recipes.sqlite3 import Sqlite3Recipe
from pythonforandroid.util import load_source
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
assert Sqlite3Recipe._version == "3.34.1"
assert Sqlite3Recipe.depends == []
assert Sqlite3Recipe.python_depends == []
class Sqlite3RecipePinned(util.InheritedRecipeMixin, Sqlite3Recipe):
sha512sum = "8a936f1c34fc9036cadf5bd53f9ee594135c2efdef1d2c82bd4fdf3e0218afde710fc4c436cfc992687d008e6086a697da0487352ed88809d677e05d824940dd"
recipe = Sqlite3RecipePinned()