lbry-android-sdk/p4a/pythonforandroid/recipes/xeddsa/remove_dependencies.patch
Akinwale Ariwodola 8b2694efb7
New build (#508)
* fix build for openssl 1.1.1b required for sdk
(cherry picked from commit aa49e3b2755b97b6331cdbbb89efc954de8d5977)

* use js code from master

* fix openssl recipe and tweak build
(cherry picked from commit 6e94c27021c7bd7b1e880c2fc314850e36a5a38e)

* remove unused build recipes
(cherry picked from commit f5c0577bdb175bfc0990602936bbc9e2052e1f25)
2019-03-30 21:58:45 +01:00

16 lines
678 B
Diff

diff -urN XEdDSA-0.4.4.ori/setup.py XEdDSA-0.4.4/setup.py
--- XEdDSA-0.4.4.ori/setup.py 2018-09-23 16:08:35.000000000 +0200
+++ XEdDSA-0.4.4/setup.py 2018-10-30 08:21:23.338790184 +0100
@@ -22,9 +22,8 @@
author_email = "tim@cifg.io",
license = "MIT",
packages = find_packages(),
- install_requires = [ "cffi>=1.9.1", "pynacl>=1.0.1" ],
- setup_requires = [ "cffi>=1.9.1" ],
- cffi_modules = [ os.path.join("ref10", "build.py") + ":ffibuilder" ],
+ install_requires = ["pynacl>=1.0.1" ],
+ setup_requires = [],
python_requires = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
include_package_data = True,
zip_safe = False,