Skip to content

Commit 381636a

Browse files
authored
Merge pull request kivy#1410 from AndreMiras/feature/ticket1402_broken_recipe_list_python2
List of broken recipes for python2, fixes kivy#1402
2 parents 3927772 + 0baee31 commit 381636a

File tree

1 file changed

+53
-2
lines changed

1 file changed

+53
-2
lines changed

ci/constants.py

Lines changed: 53 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,57 @@ class TargetPython(Enum):
99
# recipes that currently break the build
1010
# a recipe could be broken for a target Python and not for the other,
1111
# 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+
])
1363
BROKEN_RECIPES_PYTHON3_CRYSTAX = set([
1464
# not yet python3crystax compatible
1565
'apsw', 'atom', 'boost', 'brokenrecipe', 'cdecimal', 'cherrypy',
@@ -39,7 +89,8 @@ class TargetPython(Enum):
3989
'icu',
4090
# https://github.com/kivy/python-for-android/issues/1354
4191
'kivent_core', 'kivent_cymunk', 'kivent_particles', 'kivent_polygen',
42-
'kivy',
92+
# system dependencies autoconf, libtool
93+
'libexpat',
4394
# https://github.com/kivy/python-for-android/issues/1405
4495
'libpq', 'psycopg2',
4596
'netifaces',

0 commit comments

Comments
 (0)