summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorLibo Chen <libo.chen.cn@windriver.com>2025-03-13 20:16:45 +0800
committerKhem Raj <raj.khem@gmail.com>2025-03-13 22:09:36 -0700
commit9fb66a8609afc7396f751dbdf32a862c921ba599 (patch)
tree864f3fe646598a5db9fde468d333f004eb6ffefd /meta-python
parentbbe435d1b5f18b43fe8f21cc74b6069b03dea0b1 (diff)
downloadmeta-openembedded-9fb66a8609afc7396f751dbdf32a862c921ba599.tar.gz
python3-gpt-image: add recipe
GPT Image is to create GUID Partition Table disk images on local disks. Written in pure Python gpt-image allows GPT disk images to be built on a local filesystem and exported to a destination device. This is useful for creating a disk image on SD Cards or embedded devices. Home page: https://pypi.org/project/gpt-image/ Signed-off-by: Libo Chen <libo.chen.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rwxr-xr-xmeta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest3
-rw-r--r--meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb30
2 files changed, 33 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest
new file mode 100755
index 0000000000..3385d68939
--- /dev/null
+++ b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest
@@ -0,0 +1,3 @@
1#!/bin/sh
2
3pytest -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-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb
new file mode 100644
index 0000000000..01e8091f6f
--- /dev/null
+++ b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb
@@ -0,0 +1,30 @@
1DESCRIPTION = "GPT Image is used to Create GUID Partition Table disk images \
2on local disks. Written in pure Python gpt-image allows GPT disk images to \
3be built on a local filesystem and exported to a destination device."
4SUMMARY = "GPT Image (pure python)"
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=db5f8de88d13d0917db21293d0e82e1d"
7
8SRC_URI += "\
9 file://run-ptest \
10"
11
12DEPENDS += "python3-pip"
13
14PYPI_PACKAGE = "gpt_image"
15SRC_URI[sha256sum] = "c06d8efc7cf8d6f3954c1c3d8544f494aa95da37fe04e38a9699ad3f57455f7e"
16
17inherit pypi setuptools3 python3native ptest
18
19do_install_ptest() {
20 install -d ${D}${PTEST_PATH}/tests
21 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
22}
23
24RDEPENDS:${PN}-ptest += " \
25 python3-pytest \
26"
27
28do_install:append() {
29 rm -fr ${D}${libdir}/python*/site-packages/gpt-image/__pycache__
30}