python-tornado: new package

Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Ryan Barnett 2013-12-11 21:27:06 +01:00 committed by Peter Korsgaard
parent 50872e2dbe
commit d75b18128b
3 changed files with 22 additions and 0 deletions

View File

@ -409,6 +409,7 @@ source "package/python-serial/Config.in"
source "package/python-setuptools/Config.in"
source "package/python-simplejson/Config.in"
source "package/python-thrift/Config.in"
source "package/python-tornado/Config.in"
source "package/python-versiontools/Config.in"
endmenu
endif

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_TORNADO
bool "python-tornado"
depends on BR2_PACKAGE_PYTHON
help
Tornado is a Python web framework and asynchronous networking
library, originally developed at FriendFeed.
http://www.tornadoweb.org

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-tornado
#
################################################################################
PYTHON_TORNADO_VERSION = 3.1.1
PYTHON_TORNADO_SOURCE = tornado-$(PYTHON_TORNADO_VERSION).tar.gz
PYTHON_TORNADO_SITE = https://pypi.python.org/packages/source/t/tornado
PYTHON_TORNADO_LICENSE = Apache-v2
PYTHON_TORNADO_SETUP_TYPE = setuptools
$(eval $(python-package))