mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
python3: fix create_manifest to handle pycache folders
We have a couple of python modules that contain folders themselves, for that reason they also contain a __pycache__ folder inside those directories, since we include the whole folder in the manifest, the pycache directories end up with the files and not the cache files. This patch catches that and adds the directories to the correct structure. (From OE-Core rev: df9401e7e69ce162e257e827d67eb217666e532d) Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
dfd5dc1f55
commit
5d288d286e
@@ -737,21 +737,21 @@
|
||||
"${libdir}/python3.5/__pycache__/poplib.*.pyc",
|
||||
"${libdir}/python3.5/__pycache__/smtplib.*.pyc",
|
||||
"${libdir}/python3.5/__pycache__/telnetlib.*.pyc",
|
||||
"${libdir}/python3.5/__pycache__/uuid.*.pyc"
|
||||
"${libdir}/python3.5/__pycache__/uuid.*.pyc",
|
||||
"${libdir}/python3.5/http/__pycache__",
|
||||
"${libdir}/python3.5/urllib/__pycache__"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python3.5/base64.py",
|
||||
"${libdir}/python3.5/ftplib.py",
|
||||
"${libdir}/python3.5/hmac.py",
|
||||
"${libdir}/python3.5/http",
|
||||
"${libdir}/python3.5/http/__pycache__",
|
||||
"${libdir}/python3.5/mimetypes.py",
|
||||
"${libdir}/python3.5/nntplib.py",
|
||||
"${libdir}/python3.5/poplib.py",
|
||||
"${libdir}/python3.5/smtplib.py",
|
||||
"${libdir}/python3.5/telnetlib.py",
|
||||
"${libdir}/python3.5/urllib",
|
||||
"${libdir}/python3.5/urllib/__pycache__",
|
||||
"${libdir}/python3.5/uuid.py"
|
||||
],
|
||||
"rdepends": [
|
||||
@@ -1088,11 +1088,12 @@
|
||||
"summary": "Python typing support"
|
||||
},
|
||||
"unittest": {
|
||||
"cached": [],
|
||||
"cached": [
|
||||
"${libdir}/python3.5/unittest/__pycache__"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python3.5/unittest",
|
||||
"${libdir}/python3.5/unittest/",
|
||||
"${libdir}/python3.5/unittest/__pycache__"
|
||||
"${libdir}/python3.5/unittest/"
|
||||
],
|
||||
"rdepends": [
|
||||
"core",
|
||||
@@ -1132,11 +1133,12 @@
|
||||
"summary": "Python basic XML support"
|
||||
},
|
||||
"xmlrpc": {
|
||||
"cached": [],
|
||||
"files": [
|
||||
"${libdir}/python3.5/xmlrpc",
|
||||
"cached": [
|
||||
"${libdir}/python3.5/xmlrpc/__pycache__"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python3.5/xmlrpc"
|
||||
],
|
||||
"rdepends": [
|
||||
"core",
|
||||
"xml"
|
||||
|
||||
Reference in New Issue
Block a user