summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pylddwrap_1.2.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pylddwrap_1.2.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pylddwrap_1.2.2.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pylddwrap_1.2.2.bb b/meta-python/recipes-devtools/python/python3-pylddwrap_1.2.2.bb
new file mode 100644
index 0000000000..045ccb9f1e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pylddwrap_1.2.2.bb
@@ -0,0 +1,26 @@
1SUMMARY = "Recipe to embedded the Python PiP Package pylddwrap"
2HOMEPAGE = "https://pypi.org/project/pylddwrap"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=48fd6c978d39a38b3a04f45a1456d0fa"
5
6inherit pypi setuptools3
7PYPI_PACKAGE = "pylddwrap"
8SRC_URI[sha256sum] = "a70437fea7bca647c0e98161e1006ef49970267999c571b499760f1c43c6ba10"
9
10PR = "r0"
11
12RDEPENDS:${PN} += "python3-icontract"
13
14BBCLASSEXTEND = "native"
15
16do_install:append() {
17 # similarly to https://gitlab.com/akuster/meta-security/-/commit/0fd8e0f8cae612010bafecbff77ed9bb6f647a2d#4e154e295e639fd6c298ca644c75291eb99e0a57_0_16
18 # but delete it from prefix and delete requirements.txt as well.
19 # ERROR: QA Issue: python3-pylddwrap: Files/directories were installed but not shipped in any package:
20 # /usr/README.rst
21 # /usr/requirements.txt
22 # /usr/LICENSE
23 # Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
24 # python3-pylddwrap: 3 installed and not shipped files. [installed-vs-shipped]
25 rm -f ${D}${prefix}/README.rst ${D}${prefix}/requirements.txt ${D}${prefix}/LICENSE
26}