Brad Bishop | f32f3c8 | 2015-11-09 14:43:12 -0500 | [diff] [blame] | 1 | SUMMARY = "Fast and simple WSGI-framework for small web-applications." |
| 2 | DESCRIPTION = "Bottle is a fast and simple micro-framework for small web \ |
| 3 | applications. It offers request dispatching (Routes) with url parameter \ |
| 4 | support, templates, a built-in HTTP Server and adapters for many third \ |
| 5 | party WSGI/HTTP-server and template engines - all in a single file and \ |
| 6 | with no dependencies other than the Python Standard Library." |
| 7 | HOMEPAGE = "http://bottlepy.org/" |
| 8 | SECTION = "devel/python" |
| 9 | LICENSE = "MIT" |
| 10 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=94b9b2cc7e46ccea87e00af8970826b5" |
| 11 | |
| 12 | inherit allarch |
| 13 | inherit setuptools |
Brad Bishop | e7ef0c3 | 2018-03-16 11:16:46 -0400 | [diff] [blame] | 14 | inherit pypi |
Brad Bishop | f32f3c8 | 2015-11-09 14:43:12 -0500 | [diff] [blame] | 15 | |
Brad Bishop | 4be27dc | 2016-09-10 11:43:30 -0400 | [diff] [blame] | 16 | RDEPENDS_${PN} += " \ |
Brad Bishop | ecdb1b9 | 2018-06-07 18:54:29 -0400 | [diff] [blame] | 17 | python-email \ |
Brad Bishop | 4be27dc | 2016-09-10 11:43:30 -0400 | [diff] [blame] | 18 | python-json \ |
| 19 | python-netserver \ |
| 20 | " |
Brad Bishop | 4f83349 | 2015-11-13 09:08:41 -0500 | [diff] [blame] | 21 | |
| 22 | PROVIDES += "${PN}-app" |
Patrick Williams | 8939943 | 2016-09-13 22:14:18 -0500 | [diff] [blame] | 23 | PACKAGE_BEFORE_PN += "${PN}-app" |
Brad Bishop | 4f83349 | 2015-11-13 09:08:41 -0500 | [diff] [blame] | 24 | |
| 25 | SUMMARY_${PN}-app = "${SRCNAME} app" |
| 26 | RDEPENDS_${PN}-app = "${PN}" |
Patrick Williams | 8939943 | 2016-09-13 22:14:18 -0500 | [diff] [blame] | 27 | FILES_${PN}-app = "${bindir}/bottle.py*" |
Brad Bishop | f32f3c8 | 2015-11-09 14:43:12 -0500 | [diff] [blame] | 28 | |
| 29 | BBCLASSEXTEND = "nativesdk" |