Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | SUMMARY = "The Swiss Army knife of Python web development" |
| 2 | DESCRIPTION = "\ |
| 3 | Werkzeug started as simple collection of various utilities for WSGI \ |
| 4 | applications and has become one of the most advanced WSGI utility modules. \ |
| 5 | It includes a powerful debugger, full featured request and response objects, \ |
| 6 | HTTP utilities to handle entity tags, cache control headers, HTTP dates, \ |
| 7 | cookie handling, file uploads, a powerful URL routing system and a bunch \ |
| 8 | of community contributed addon modules." |
| 9 | HOMEPAGE = "http://werkzeug.pocoo.org/" |
Brad Bishop | 2d39a06 | 2019-10-28 08:33:36 -0400 | [diff] [blame] | 10 | LICENSE = "BSD-3-Clause" |
Brad Bishop | 87b3cb8 | 2019-11-15 16:35:37 -0500 | [diff] [blame] | 11 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 12 | |
Brad Bishop | 87b3cb8 | 2019-11-15 16:35:37 -0500 | [diff] [blame] | 13 | SRC_URI[md5sum] = "5b23b4953efc4f52b1d0b33af6f7cd2d" |
| 14 | SRC_URI[sha256sum] = "7280924747b5733b246fe23972186c6b348f9ae29724135a6dfc1e53cea433e7" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 15 | |
| 16 | PYPI_PACKAGE = "Werkzeug" |
| 17 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 18 | CLEANBROKEN = "1" |
| 19 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 20 | PACKAGES =+ "${PN}-tests" |
| 21 | FILES_${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 Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 28 | RDEPENDS_${PN} += " \ |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 29 | ${PYTHON_PN}-datetime \ |
| 30 | ${PYTHON_PN}-difflib \ |
| 31 | ${PYTHON_PN}-email \ |
| 32 | ${PYTHON_PN}-html \ |
| 33 | ${PYTHON_PN}-io \ |
| 34 | ${PYTHON_PN}-json \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 35 | ${PYTHON_PN}-netclient \ |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 36 | ${PYTHON_PN}-netserver \ |
| 37 | ${PYTHON_PN}-numbers \ |
| 38 | ${PYTHON_PN}-pkgutil \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 39 | ${PYTHON_PN}-pprint \ |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 40 | ${PYTHON_PN}-threading \ |
| 41 | ${PYTHON_PN}-unixadmin \ |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 42 | " |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 43 | |
| 44 | RDEPENDS_${PN}-tests = " \ |
| 45 | ${PN} \ |
| 46 | ${PYTHON_PN}-unittest \ |
| 47 | " |