blob: b2e6d31bfb379db66e25212744acddfb897daa48 [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} += "\
18 python-wsgiref-standalone-util \
19 python-wsgiref-standalone-headers \
20 python-email-utils-standalone \
21 "
22
23BBCLASSEXTEND = "nativesdk"