blob: e292d93bbca9d02fe104d71595375ae696a7de79 [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 Bishop87b3cb82019-11-15 16:35:37 -050011LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050012
Brad Bishop87b3cb82019-11-15 16:35:37 -050013SRC_URI[md5sum] = "5b23b4953efc4f52b1d0b33af6f7cd2d"
14SRC_URI[sha256sum] = "7280924747b5733b246fe23972186c6b348f9ae29724135a6dfc1e53cea433e7"
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"