From bba6511427f3cdd14a2e28d7e3de764bfca42f5b Mon Sep 17 00:00:00 2001 From: Paul Brussee Date: Sat, 28 May 2016 18:08:31 +0200 Subject: [PATCH 1/3] add another dependency --- pythonforandroid/recipes/libtribler/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/libtribler/__init__.py b/pythonforandroid/recipes/libtribler/__init__.py index 7285dc9107..6e79ca5d6d 100644 --- a/pythonforandroid/recipes/libtribler/__init__.py +++ b/pythonforandroid/recipes/libtribler/__init__.py @@ -14,7 +14,7 @@ class LibTriblerRecipe(PythonRecipe): depends = ['apsw', 'cherrypy', 'cryptography', 'decorator', 'feedparser', 'ffmpeg', 'libnacl', 'libsodium', 'libtorrent', 'm2crypto', 'netifaces', 'openssl', 'pyasn1', 'pil', 'pycrypto', 'pyleveldb', - 'python2', 'requests', 'twisted'] + 'python2', 'requests', 'six', 'twisted'] site_packages_name = 'Tribler' From fefbb7fd6091fe41254ca5668dfa5eae184d9f8f Mon Sep 17 00:00:00 2001 From: Paul Brussee Date: Wed, 15 Jun 2016 17:20:34 +0200 Subject: [PATCH 2/3] add dependencies; split python dependencies; --- pythonforandroid/recipes/libtribler/__init__.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pythonforandroid/recipes/libtribler/__init__.py b/pythonforandroid/recipes/libtribler/__init__.py index 6e79ca5d6d..f7e872c373 100644 --- a/pythonforandroid/recipes/libtribler/__init__.py +++ b/pythonforandroid/recipes/libtribler/__init__.py @@ -11,10 +11,13 @@ class LibTriblerRecipe(PythonRecipe): url = 'git+https://github.com/Tribler/tribler.git' - depends = ['apsw', 'cherrypy', 'cryptography', 'decorator', 'feedparser', - 'ffmpeg', 'libnacl', 'libsodium', 'libtorrent', 'm2crypto', - 'netifaces', 'openssl', 'pyasn1', 'pil', 'pycrypto', 'pyleveldb', - 'python2', 'requests', 'six', 'twisted'] + depends = ['apsw', 'cryptography', 'ffmpeg', 'libsodium', 'libtorrent', 'm2crypto', + 'netifaces', 'openssl', 'pil', 'pycrypto', 'pyleveldb', 'python2', 'twisted', + ] + + python_depends = ['chardet', 'cherrypy', 'configobject', 'decorator', 'feedparser', + 'libnacl', 'pyasn1', 'requests', 'setuptools', 'six', + ] site_packages_name = 'Tribler' From acadf626f5034ea25fc56298f2d25c95c7574d87 Mon Sep 17 00:00:00 2001 From: Paul Brussee Date: Thu, 16 Jun 2016 22:46:31 +0200 Subject: [PATCH 3/3] fix typo wrong dependency --- pythonforandroid/recipes/libtribler/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/libtribler/__init__.py b/pythonforandroid/recipes/libtribler/__init__.py index f7e872c373..856aea3a26 100644 --- a/pythonforandroid/recipes/libtribler/__init__.py +++ b/pythonforandroid/recipes/libtribler/__init__.py @@ -15,8 +15,8 @@ class LibTriblerRecipe(PythonRecipe): 'netifaces', 'openssl', 'pil', 'pycrypto', 'pyleveldb', 'python2', 'twisted', ] - python_depends = ['chardet', 'cherrypy', 'configobject', 'decorator', 'feedparser', - 'libnacl', 'pyasn1', 'requests', 'setuptools', 'six', + python_depends = ['chardet', 'cherrypy', 'configobj', 'decorator', 'feedparser', + 'libnacl', 'pyasn1', 'requests', 'six', ] site_packages_name = 'Tribler'