Skip to content

Commit 64e6fa9

Browse files
committed
Merge branch 'master' of github.com:kivy/python-for-android
2 parents a2cfa1a + 3e5c2a0 commit 64e6fa9

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

pythonforandroid/archs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def get_env(self, with_flags_in_cc=True):
111111

112112
env['ARCH'] = self.arch
113113

114-
if self.ctx.python_recipe.from_crystax:
114+
if self.ctx.python_recipe and self.ctx.python_recipe.from_crystax:
115115
env['CRYSTAX_PYTHON_VERSION'] = self.ctx.python_recipe.version
116116

117117
return env

pythonforandroid/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ def build_recipes(build_order, python_modules, ctx):
564564
# 4) biglink everything
565565
# AND: Should make this optional
566566
info_main('# Biglinking object files')
567-
if not ctx.python_recipe.from_crystax:
567+
if not ctx.python_recipe or not ctx.python_recipe.from_crystax:
568568
biglink(ctx, arch)
569569
else:
570570
info('NDK is crystax, skipping biglink (will this work?)')

pythonforandroid/recipes/ipaddress/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class IpaddressRecipe(PythonRecipe):
55
name = 'ipaddress'
6-
version = '1.0.15'
6+
version = '1.0.16'
77
url = 'https://pypi.python.org/packages/source/i/ipaddress/ipaddress-{version}.tar.gz'
88

99
depends = ['python2']
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from pythonforandroid.toolchain import PythonRecipe
2+
3+
"""
4+
Privacy with BitTorrent and resilient to shut down
5+
6+
http://www.tribler.org
7+
"""
8+
class LibTriblerRecipe(PythonRecipe):
9+
10+
version = 'devel'
11+
12+
url = 'git+https://github.com/Tribler/tribler.git'
13+
14+
depends = ['apsw', 'cherrypy', 'cryptography', 'decorator', 'feedparser',
15+
'ffmpeg', 'libnacl', 'libsodium', 'libtorrent', 'm2crypto',
16+
'netifaces', 'openssl', 'pyasn1', 'pil', 'pycrypto', 'pyleveldb',
17+
'python2', 'requests', 'twisted']
18+
19+
site_packages_name = 'Tribler'
20+
21+
22+
recipe = LibTriblerRecipe()

0 commit comments

Comments
 (0)