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