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.
18 lines
570 B
18 lines
570 B
import os |
|
|
|
from pythonforandroid.recipes.openssl import OpenSSLRecipe |
|
from pythonforandroid.util import load_source |
|
|
|
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py')) |
|
|
|
|
|
assert OpenSSLRecipe.depends == [] |
|
assert OpenSSLRecipe.python_depends == [] |
|
|
|
|
|
class OpenSSLRecipePinned(util.InheritedRecipeMixin, OpenSSLRecipe): |
|
url_version = "1.1.1w" |
|
sha512sum = "b4c625fe56a4e690b57b6a011a225ad0cb3af54bd8fb67af77b5eceac55cc7191291d96a660c5b568a08a2fbf62b4612818e7cca1bb95b2b6b4fc649b0552b6d" |
|
|
|
|
|
recipe = OpenSSLRecipePinned()
|
|
|