diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2016-06-29 10:01:24 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-07-01 15:26:21 +0200 |
commit | c37648bac43344750bdff130cb3cda97fa9152f5 (patch) | |
tree | 34b022620806bfb2eeb205fb85b3864aef98496a /package/python-tornado/Config.in | |
parent | b0eb6bf447379ad14a826b0c7aee87c636367c6b (diff) | |
download | buildroot-c37648bac43344750bdff130cb3cda97fa9152f5.tar.gz buildroot-c37648bac43344750bdff130cb3cda97fa9152f5.zip |
python-tornado: fix runtime dependencies
According to setup.py tornado requires backports.ssl_match_hostname
for Python < 3.2 and certifi for Python < 3.4.
Actually both requirements are optional and tornado alone can work
without them, but Python packages like python-circus check requirements
at runtime and though they don't use this funtionality, they insist on
having these packages installed.
An upstream patch fixes backports.ssl_match_hostname dependency and
selecting python-certifi for Python 2 fixes certifi dependency till
this is fixed upstream.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-tornado/Config.in')
-rw-r--r-- | package/python-tornado/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/python-tornado/Config.in b/package/python-tornado/Config.in index 3ead2afa6d..a0ee78fb7a 100644 --- a/package/python-tornado/Config.in +++ b/package/python-tornado/Config.in @@ -1,9 +1,10 @@ config BR2_PACKAGE_PYTHON_TORNADO bool "python-tornado" - select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON # runtime - select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 # runtime + select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON + select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 select BR2_PACKAGE_PYTHON_SINGLEDISPATCH if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON_BACKPORTS_ABC if BR2_PACKAGE_PYTHON # runtime + select BR2_PACKAGE_PYTHON_CERTIFI if BR2_PACKAGE_PYTHON # runtime help Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. |