blob: d578c8b63c70642b0ebd84f3e2c36ca0a323a395 [file] [log] [blame]
Brad Bishopf32f3c82015-11-09 14:43:12 -05001SUMMARY = "Fast and simple WSGI-framework for small web-applications."
2DESCRIPTION = "Bottle is a fast and simple micro-framework for small web \
3applications. It offers request dispatching (Routes) with url parameter \
4support, templates, a built-in HTTP Server and adapters for many third \
5party WSGI/HTTP-server and template engines - all in a single file and \
6with no dependencies other than the Python Standard Library."
7HOMEPAGE = "http://bottlepy.org/"
8SECTION = "devel/python"
9LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=94b9b2cc7e46ccea87e00af8970826b5"
11
12inherit allarch
13inherit setuptools
14
Brad Bishop4f833492015-11-13 09:08:41 -050015S = "${WORKDIR}/${SRCNAME}-${PV}"
Brad Bishopf32f3c82015-11-09 14:43:12 -050016# bottle doesn't send email...it uses a utility in here to parse rfc1123 and rfc850 timestamps.
Brad Bishop4f833492015-11-13 09:08:41 -050017RDEPENDS_${PN} += "python-email-utils-standalone"
18
19PROVIDES += "${PN}-app"
20PACKAGES += "${PN}-app"
21
22SUMMARY_${PN}-app = "${SRCNAME} app"
23RDEPENDS_${PN}-app = "${PN}"
24FILES_${PN}-app = "${bindir}/bottle.py"
Brad Bishopf32f3c82015-11-09 14:43:12 -050025
26BBCLASSEXTEND = "nativesdk"