mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
python-3.5: Fix manifest to handle reprlib correctly
The current line is looking for py files in __pycache__ which is incorrect.
Fix it to correctly include the right files (modelled after ${PN}-signal).
Patch isn't relavent to later releases since manifest generation changed
significantly.
[YOCTO #12831]
(From OE-Core rev: 3638cb32ba9ba32b4d498fc31ab7fdf82f0d2495)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
8883ee32f2
commit
68a612b7d3
|
|
@ -194,7 +194,7 @@ FILES_${PN}-readline="${libdir}/python3.5/lib-dynload/readline.*.so ${libdir}/py
|
||||||
|
|
||||||
SUMMARY_${PN}-reprlib="Python alternate repr() implementation"
|
SUMMARY_${PN}-reprlib="Python alternate repr() implementation"
|
||||||
RDEPENDS_${PN}-reprlib="${PN}-core"
|
RDEPENDS_${PN}-reprlib="${PN}-core"
|
||||||
FILES_${PN}-reprlib="${libdir}/python3.5/reprlib.py ${libdir}/python3.5/__pycache__/reprlib.py "
|
FILES_${PN}-reprlib="${libdir}/python3.5/reprlib.* ${libdir}/python3.5/__pycache__/reprlib.* "
|
||||||
|
|
||||||
SUMMARY_${PN}-resource="Python resource control interface"
|
SUMMARY_${PN}-resource="Python resource control interface"
|
||||||
RDEPENDS_${PN}-resource="${PN}-core"
|
RDEPENDS_${PN}-resource="${PN}-core"
|
||||||
|
|
|
||||||
|
|
@ -371,7 +371,7 @@ if __name__ == "__main__":
|
||||||
"lib-dynload/readline.*.so rlcompleter.*" )
|
"lib-dynload/readline.*.so rlcompleter.*" )
|
||||||
|
|
||||||
m.addPackage( "${PN}-reprlib", "Python alternate repr() implementation", "${PN}-core",
|
m.addPackage( "${PN}-reprlib", "Python alternate repr() implementation", "${PN}-core",
|
||||||
"reprlib.py" )
|
"reprlib.*" )
|
||||||
|
|
||||||
m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core",
|
m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core",
|
||||||
"lib-dynload/resource.*.so" )
|
"lib-dynload/resource.*.so" )
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user