blob: 72e055542b6ded37c39f145eb7812e8a9b4d5870 [file] [log] [blame]
Brad Bishop0823be62015-11-13 09:07:15 -05001SUMMARY = "Modern, multi-threaded and extensible web server."
2DESCRIPTION = "The Rocket web server is a server designed to handle the increased \
3needs of modern web applications implemented in pure Python. It can serve WSGI \
4applications and static files. Rocket has the ability to be extended to handle \
5different types of networked request-response jobs. Rocket runs on cPython 2.5- 3.x \
6and Jython 2.5 (without the need to run through the 2to3 translation tool). Rocket \
7is similar in purpose to Cherrypy’s Wsgiserver but with added flexibility and concurrency."
8HOMEPAGE = "http://launchpad.net/rocket"
9SECTION = "devel/python"
10LICENSE = "MIT"
11LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=b364bdf3116b1cbc1e30a6aff3224019"
12
13inherit allarch
14inherit setuptools
15
16S = "${WORKDIR}/${SRCNAME}-${PV}"
17RDEPENDS_${PN} += "\
Brad Bishop86605732015-11-18 10:56:38 -050018 python-wsgiref-util \
19 python-wsgiref-headers \
20 python-email-utils \
Brad Bishop4be27dc2016-09-10 11:43:30 -040021 python-netserver \
22 "
Brad Bishop0823be62015-11-13 09:07:15 -050023
24BBCLASSEXTEND = "nativesdk"