e9df5b0fc3
Drop python2 support. Remove python3-markupsafe host build as python2 host builds for markupsafe are not supported, python3 host builds are moved to python-markupsafe. Remove python3-jinja2 host build as python2 host builds for jinja2 are not supported, python3 host builds are moved to python-jinja2. Remove python3-mako host build as python2 host builds for mako are not supported, python3 host builds are moved to python-mako. Propagate reverse python3 dependency. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
18 lines
671 B
Plaintext
18 lines
671 B
Plaintext
config BR2_PACKAGE_PYTHON_FLASK
|
|
bool "python-flask"
|
|
depends on BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_CLICK # runtime
|
|
select BR2_PACKAGE_PYTHON_JINJA2 # runtime
|
|
select BR2_PACKAGE_PYTHON_WERKZEUG # runtime
|
|
select BR2_PACKAGE_PYTHON_ITSDANGEROUS # runtime
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
|
|
select BR2_PACKAGE_PYTHON_SSL if BR2_PACKAGE_PYTHON
|
|
select BR2_PACKAGE_PYTHON3_SSL if BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
|
|
select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
|
|
help
|
|
Flask is a microframework for Python based on Werkzeug,
|
|
Jinja 2 and good intentions.
|
|
|
|
https://palletsprojects.com/p/flask
|