diff options
author | Samantha Jalabert <samantha.jalabert@syslinbit.com> | 2023-09-25 11:41:37 +0000 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-10-04 07:52:48 -0700 |
commit | f7b22577696dce96cc9e46bf3336a6aaf10c8f04 (patch) | |
tree | 904e1c92dd5c64e487e526dc12f8d80651c09a69 /meta-python/recipes-devtools | |
parent | 8ba57cb79c6c18da2ddd80e116a17c687bf286a9 (diff) | |
download | meta-openembedded-f7b22577696dce96cc9e46bf3336a6aaf10c8f04.tar.gz |
Remove python3-xmltodict
python3-xmltodict recipe is moved to openembedded-core.
Signed-off-by: Marta Rybczynska <mrybczynska@syslinbit.com>
Signed-off-by: Samantha Jalabert <samantha.jalabert@syslinbit.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 1fba08c2f7a8e37314edc381c958a30452130061)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-xmltodict/run-ptest | 3 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb | 29 |
2 files changed, 0 insertions, 32 deletions
diff --git a/meta-python/recipes-devtools/python/python3-xmltodict/run-ptest b/meta-python/recipes-devtools/python/python3-xmltodict/run-ptest deleted file mode 100644 index 3385d68939..0000000000 --- a/meta-python/recipes-devtools/python/python3-xmltodict/run-ptest +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pytest -o log_cli=true -o log_cli_level=INFO | sed -e 's/\[...%\]//g'| sed -e 's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPED/SKIP/g'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print $0}else{print}}' | ||
diff --git a/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb b/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb deleted file mode 100644 index a1f3957adc..0000000000 --- a/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | SUMMARY = "Makes working with XML feel like you are working with JSON" | ||
2 | HOMEPAGE = "https://github.com/martinblech/xmltodict" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=01441d50dc74476db58a41ac10cb9fa2" | ||
5 | |||
6 | SRC_URI[sha256sum] = "341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56" | ||
7 | |||
8 | PYPI_PACKAGE = "xmltodict" | ||
9 | |||
10 | inherit pypi setuptools3 ptest | ||
11 | |||
12 | SRC_URI += " \ | ||
13 | file://run-ptest \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS:${PN} += " \ | ||
17 | ${PYTHON_PN}-core \ | ||
18 | ${PYTHON_PN}-xml \ | ||
19 | ${PYTHON_PN}-io \ | ||
20 | " | ||
21 | |||
22 | RDEPENDS:${PN}-ptest += " \ | ||
23 | ${PYTHON_PN}-pytest \ | ||
24 | " | ||
25 | |||
26 | do_install_ptest() { | ||
27 | install -d ${D}${PTEST_PATH}/tests | ||
28 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
29 | } | ||