Commit 1030ea5a authored by Oli Vogt's avatar Oli Vogt Committed by Thomas Petazzoni
Browse files

python-flup: new package



This module is useful to implement a fastCGI webserver
Tested with ARM and Python 2.7.6

[Thomas: fix license informations.]

Signed-off-by: default avataroli vogt <oli.vogt.pub01@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent aa0c8be4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -473,6 +473,7 @@ menu "external python modules"
	source "package/python-crc16/Config.in"
	source "package/python-dialog/Config.in"
	source "package/python-dpkt/Config.in"
	source "package/python-flup/Config.in"
	source "package/python-id3/Config.in"
	source "package/python-ipy/Config.in"
	source "package/python-json-schema-validator/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_FLUP
	bool "python-flup"
	depends on BR2_PACKAGE_PYTHON
	help
	  flup provides of a collection of WSGI modules for Python.
	  It allows a webserver to use scgi-mod and fastcgi-mod
	  with python.

	  https://pypi.python.org/pypi/flup
+15 −0
Original line number Diff line number Diff line
################################################################################
#
# python-flup
#
################################################################################

PYTHON_FLUP_VERSION = 1.0.3.dev-20110405
PYTHON_FLUP_SOURCE = flup-$(PYTHON_FLUP_VERSION).tar.gz
PYTHON_FLUP_SITE = http://pypi.python.org/packages/source/f/flup

PYTHON_FLUP_LICENSE = BSD-2c

PYTHON_FLUP_SETUP_TYPE = setuptools

$(eval $(python-package))