| 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/" | 
|  | 10 | LICENSE = "BSD" | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ed9a0b7c0254616d72dadb98b293ef1b" | 
| Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 12 |  | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 13 | SRC_URI[md5sum] = "6d20b5be2d245be4ac7706cc390d130c" | 
|  | 14 | SRC_URI[sha256sum] = "c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c" | 
| 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 | " |