7c05e50ca7
Recipes known to be broken should be part of `BROKEN_RECIPES` and have a dedicated issue. Demonstrates with `distribute` recipe that was modified but will be skipped. Refs: #466, #467 and #468
19 lines
604 B
Python
19 lines
604 B
Python
BROKEN_RECIPES = set(
|
|
[
|
|
# no attribute 'SourceFileLoader'
|
|
# https://github.com/kivy/kivy-ios/issues/466
|
|
"distribute",
|
|
# 'distutils.core' is not a package
|
|
# https://github.com/kivy/kivy-ios/issues/467
|
|
"markupsafe",
|
|
# depends on markupsafe
|
|
# https://github.com/kivy/kivy-ios/issues/466
|
|
"jinja2",
|
|
# bad install directory or PYTHONPATH
|
|
# https://github.com/kivy/kivy-ios/issues/468
|
|
"werkzeug",
|
|
]
|
|
)
|
|
|
|
# recipes that were already built will be skipped
|
|
CORE_RECIPES = set(["kivy", "hostpython3", "python3"])
|