Commit 1f81429f authored by Frank Hunleth's avatar Frank Hunleth Committed by Peter Korsgaard
Browse files

python-cherrypy: new package

parent cd3c6e26
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -514,6 +514,7 @@ menu "external python modules"
	source "package/python-certifi/Config.in"
	source "package/python-cffi/Config.in"
	source "package/python-cheetah/Config.in"
	source "package/python-cherrypy/Config.in"
	source "package/python-coherence/Config.in"
	source "package/python-configobj/Config.in"
	source "package/python-configshell-fb/Config.in"
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_CHERRYPY
	bool "python-cherrypy"
	select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON # runtime
	select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 # runtime
	select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON # runtime
	select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 # runtime
	help
	  A minimalist web framework

	  http://www.cherrypy.org
+3 −0
Original line number Diff line number Diff line
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=9772dbee426d656f01a13881e2b139d8, sha256 locally computed
md5	9772dbee426d656f01a13881e2b139d8  CherryPy-3.6.0.tar.gz
sha256	a149271819a15417104aa8f641ad5b96287070f0153e6ef2832a87e2c693d75d  CherryPy-3.6.0.tar.gz
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# python-cherrypy
#
################################################################################

PYTHON_CHERRYPY_VERSION = 3.6.0
PYTHON_CHERRYPY_SOURCE = CherryPy-$(PYTHON_CHERRYPY_VERSION).tar.gz
PYTHON_CHERRYPY_SITE = http://pypi.python.org/packages/source/C/CherryPy
PYTHON_CHERRYPY_LICENSE = BSD-3c
PYTHON_CHERRYPY_LICENSE_FILES = LICENSE.txt
PYTHON_CHERRYPY_SETUP_TYPE = distutils

$(eval $(python-package))