summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-flask_3.0.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-flask_3.0.2.bb11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb b/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb
index 300ca99ddc..99524b437b 100644
--- a/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb
@@ -8,10 +8,14 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
8 8
9SRC_URI[sha256sum] = "822c03f4b799204250a7ee84b1eddc40665395333973dfb9deebfe425fefcb7d" 9SRC_URI[sha256sum] = "822c03f4b799204250a7ee84b1eddc40665395333973dfb9deebfe425fefcb7d"
10 10
11SRC_URI += " \
12 file://run-ptest \
13"
14
11UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/Flask" 15UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/Flask"
12UPSTREAM_CHECK_REGEX = "/Flask/(?P<pver>(\d+[\.\-_]*)+)" 16UPSTREAM_CHECK_REGEX = "/Flask/(?P<pver>(\d+[\.\-_]*)+)"
13 17
14inherit pypi python_setuptools_build_meta 18inherit pypi python_setuptools_build_meta ptest
15 19
16CLEANBROKEN = "1" 20CLEANBROKEN = "1"
17 21
@@ -23,3 +27,8 @@ RDEPENDS:${PN} = " \
23 python3-profile \ 27 python3-profile \
24 python3-werkzeug \ 28 python3-werkzeug \
25" 29"
30
31do_install_ptest() {
32 install -d ${D}${PTEST_PATH}/tests
33 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
34}