blob: e630fdd098662b8efa40dfc0db9cf33770fb2333 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "The Swiss Army knife of Python web development"
2DESCRIPTION = "\
3Werkzeug started as simple collection of various utilities for WSGI \
4applications and has become one of the most advanced WSGI utility modules. \
5It includes a powerful debugger, full featured request and response objects, \
6HTTP utilities to handle entity tags, cache control headers, HTTP dates, \
7cookie handling, file uploads, a powerful URL routing system and a bunch \
8of community contributed addon modules."
9HOMEPAGE = "http://werkzeug.pocoo.org/"
Brad Bishop2d39a062019-10-28 08:33:36 -040010LICENSE = "BSD-3-Clause"
Brad Bishop316dfdd2018-06-25 12:45:53 -040011LIC_FILES_CHKSUM = "file://LICENSE;md5=ed9a0b7c0254616d72dadb98b293ef1b"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050012
Brad Bishop316dfdd2018-06-25 12:45:53 -040013SRC_URI[md5sum] = "6d20b5be2d245be4ac7706cc390d130c"
14SRC_URI[sha256sum] = "c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050015
16PYPI_PACKAGE = "Werkzeug"
17
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018CLEANBROKEN = "1"
19
Brad Bishop316dfdd2018-06-25 12:45:53 -040020PACKAGES =+ "${PN}-tests"
21FILES_${PN}-tests+= " \
22 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/test* \
23 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/__pycache__/test* \
24 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/contrib/test* \
25 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/contrib/__pycache__/test* \
26"
27
Patrick Williamsb48b7b42016-08-17 15:04:38 -050028RDEPENDS_${PN} += " \
Patrick Williamsddad1a12017-02-23 20:36:32 -060029 ${PYTHON_PN}-datetime \
30 ${PYTHON_PN}-difflib \
31 ${PYTHON_PN}-email \
32 ${PYTHON_PN}-html \
33 ${PYTHON_PN}-io \
34 ${PYTHON_PN}-json \
Brad Bishop316dfdd2018-06-25 12:45:53 -040035 ${PYTHON_PN}-netclient \
Patrick Williamsddad1a12017-02-23 20:36:32 -060036 ${PYTHON_PN}-netserver \
37 ${PYTHON_PN}-numbers \
38 ${PYTHON_PN}-pkgutil \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050039 ${PYTHON_PN}-pprint \
Patrick Williamsddad1a12017-02-23 20:36:32 -060040 ${PYTHON_PN}-threading \
41 ${PYTHON_PN}-unixadmin \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050042"
Brad Bishop316dfdd2018-06-25 12:45:53 -040043
44RDEPENDS_${PN}-tests = " \
45 ${PN} \
46 ${PYTHON_PN}-unittest \
47"