@@ -9,7 +9,57 @@ class TargetPython(Enum):
9
9
# recipes that currently break the build
10
10
# a recipe could be broken for a target Python and not for the other,
11
11
# hence we're maintaining one list per Python target
12
- BROKEN_RECIPES_PYTHON2 = set ([])
12
+ BROKEN_RECIPES_PYTHON2 = set ([
13
+ # pythonhelpers.h:12:18: fatal error: string: No such file or directory
14
+ 'atom' ,
15
+ # https://github.com/kivy/python-for-android/issues/550
16
+ 'audiostream' ,
17
+ 'brokenrecipe' ,
18
+ # https://github.com/kivy/python-for-android/issues/1409
19
+ 'enaml' ,
20
+ 'evdev' ,
21
+ # distutils.errors.DistutilsError
22
+ # Could not find suitable distribution for Requirement.parse('cython')
23
+ 'ffpyplayer' ,
24
+ 'flask' ,
25
+ 'groestlcoin_hash' ,
26
+ 'hostpython3crystax' ,
27
+ # https://github.com/kivy/python-for-android/issues/1398
28
+ 'ifaddrs' ,
29
+ # https://github.com/kivy/python-for-android/issues/1354
30
+ 'kivent_core' , 'kivent_cymunk' , 'kivent_particles' , 'kivent_polygen' ,
31
+ 'kiwisolver' ,
32
+ # system dependencies autoconf, libtool
33
+ 'libexpat' ,
34
+ 'libgeos' ,
35
+ # https://github.com/kivy/python-for-android/issues/1399
36
+ 'libglob' ,
37
+ # system dependencies cmake and compile error
38
+ 'libmysqlclient' ,
39
+ 'libsecp256k1' ,
40
+ 'libtribler' ,
41
+ # system dependencies gettext, pkg-config
42
+ 'libzbar' ,
43
+ 'ndghttpsclient' ,
44
+ 'm2crypto' ,
45
+ 'netifaces' ,
46
+ 'Pillow' ,
47
+ # https://github.com/kivy/python-for-android/issues/1405
48
+ 'psycopg2' ,
49
+ 'pygame' ,
50
+ # most likely some setup in the Docker container, because it works in host
51
+ 'pyjnius' , 'pyopenal' ,
52
+ 'pyproj' ,
53
+ 'pysdl2' ,
54
+ 'pyzmq' ,
55
+ 'secp256k1' ,
56
+ 'shapely' ,
57
+ 'twisted' ,
58
+ 'vlc' ,
59
+ 'websocket-client' ,
60
+ 'zeroconf' ,
61
+ 'zope' ,
62
+ ])
13
63
BROKEN_RECIPES_PYTHON3_CRYSTAX = set ([
14
64
# not yet python3crystax compatible
15
65
'apsw' , 'atom' , 'boost' , 'brokenrecipe' , 'cdecimal' , 'cherrypy' ,
@@ -39,7 +89,8 @@ class TargetPython(Enum):
39
89
'icu' ,
40
90
# https://github.com/kivy/python-for-android/issues/1354
41
91
'kivent_core' , 'kivent_cymunk' , 'kivent_particles' , 'kivent_polygen' ,
42
- 'kivy' ,
92
+ # system dependencies autoconf, libtool
93
+ 'libexpat' ,
43
94
# https://github.com/kivy/python-for-android/issues/1405
44
95
'libpq' , 'psycopg2' ,
45
96
'netifaces' ,
0 commit comments