summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-03-17 22:35:30 -0700
committerKhem Raj <raj.khem@gmail.com>2021-03-22 09:18:51 -0700
commit484cac1e4e8b5c1ee974b8ab35b74a0234e29f36 (patch)
tree0b0f609e11973e36d6a7d661902c6c764378e3e2 /meta-python
parentbf52cc1f9e9d970ddd676d6b9b887d87e55f35fc (diff)
downloadmeta-openembedded-484cac1e4e8b5c1ee974b8ab35b74a0234e29f36.tar.gz
python3-werkzeug: Delete recipe for 1.0.0
1.0.1 is already in Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-devtools/python/python3-werkzeug_1.0.0.bb50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta-python/recipes-devtools/python/python3-werkzeug_1.0.0.bb b/meta-python/recipes-devtools/python/python3-werkzeug_1.0.0.bb
deleted file mode 100644
index 3e4374ed4b..0000000000
--- a/meta-python/recipes-devtools/python/python3-werkzeug_1.0.0.bb
+++ /dev/null
@@ -1,50 +0,0 @@
1SUMMARY = "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/"
10LICENSE = "BSD-3-Clause"
11LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
12
13SRC_URI[md5sum] = "305f75c4a88c96dcdc5654bf2d01bc05"
14SRC_URI[sha256sum] = "169ba8a33788476292d04186ab33b01d6add475033dfc07215e6d219cc077096"
15
16PYPI_PACKAGE = "Werkzeug"
17
18inherit pypi setuptools3
19
20CLEANBROKEN = "1"
21
22PACKAGES =+ "${PN}-tests"
23FILES_${PN}-tests+= " \
24 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/test* \
25 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/__pycache__/test* \
26 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/contrib/test* \
27 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/contrib/__pycache__/test* \
28"
29
30RDEPENDS_${PN} += " \
31 ${PYTHON_PN}-datetime \
32 ${PYTHON_PN}-difflib \
33 ${PYTHON_PN}-email \
34 ${PYTHON_PN}-html \
35 ${PYTHON_PN}-io \
36 ${PYTHON_PN}-json \
37 ${PYTHON_PN}-misc \
38 ${PYTHON_PN}-netclient \
39 ${PYTHON_PN}-netserver \
40 ${PYTHON_PN}-numbers \
41 ${PYTHON_PN}-pkgutil \
42 ${PYTHON_PN}-pprint \
43 ${PYTHON_PN}-threading \
44 ${PYTHON_PN}-unixadmin \
45"
46
47RDEPENDS_${PN}-tests = " \
48 ${PN} \
49 ${PYTHON_PN}-unittest \
50"