diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2016-06-02 16:05:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-06-03 09:52:57 +0200 |
commit | 5e230f4b89fecbad9cda8dcd12b21769008de8e2 (patch) | |
tree | 6593f8a2a480674268812f86597f0f12b2d7fdcb /package/python-flask/Config.in | |
parent | 3cf0742ac111010501e15a98768c3d4c36068eae (diff) | |
download | buildroot-5e230f4b89fecbad9cda8dcd12b21769008de8e2.tar.gz buildroot-5e230f4b89fecbad9cda8dcd12b21769008de8e2.zip |
python-flask: bump to version 0.11
Change download location and rework dependencies, i.e.
select Python's zlib support and python-click package
and remove unneeded build-time dependencies.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-flask/Config.in')
-rw-r--r-- | package/python-flask/Config.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/package/python-flask/Config.in b/package/python-flask/Config.in index 4a955c4585..6f77913ed1 100644 --- a/package/python-flask/Config.in +++ b/package/python-flask/Config.in @@ -1,8 +1,11 @@ config BR2_PACKAGE_PYTHON_FLASK bool "python-flask" - select BR2_PACKAGE_PYTHON_WERKZEUG - select BR2_PACKAGE_PYTHON_JINJA2 - select BR2_PACKAGE_PYTHON_ITSDANGEROUS + 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_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. |