Skip to content

Commit 2012ee6

Browse files
replabrobinAndreMiras
authored andcommitted
Adds Python3 support to reportlab, pyrxp and preppy
1 parent 91558c5 commit 2012ee6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pythonforandroid/recipes/preppy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PreppyRecipe(PythonRecipe):
55
version = '27b7085'
66
url = 'https://bitbucket.org/rptlab/preppy/get/{version}.tar.gz'
7-
depends = []
7+
depends = [('python2', 'python3crystax')]
88
patches = ['fix-setup.patch']
99
call_hostpython_via_targetpython = False
1010

pythonforandroid/recipes/pyrxp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PyRXPURecipe(CompiledComponentsPythonRecipe):
55
version = '2a02cecc87b9'
66
url = 'https://bitbucket.org/rptlab/pyrxp/get/{version}.tar.gz'
7-
depends = ['python2']
7+
depends = [('python2', 'python3crystax')]
88
patches = []
99

1010

pythonforandroid/recipes/reportlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class ReportLabRecipe(CompiledComponentsPythonRecipe):
88
version = 'c088826211ca'
99
url = 'https://bitbucket.org/rptlab/reportlab/get/{version}.tar.gz'
10-
depends = ['python2', 'freetype']
10+
depends = [('python2', 'python3crystax'), 'freetype']
1111

1212
def prebuild_arch(self, arch):
1313
if not self.is_patched(arch):

0 commit comments

Comments
 (0)