mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
generate-manifest-3.4.py: Add fractions to ${PN}-numbers
python-cryptography requires fractions module which is currently unpackaged. (From OE-Core rev: ad26b363fc333c4853f5e76b8660dacebea2d27b) Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
19149e67e8
commit
2912ad738b
@@ -155,7 +155,7 @@ FILES_${PN}-netserver="${libdir}/python3.4/cgi.* ${libdir}/python3.4/*HTTPServer
|
|||||||
|
|
||||||
SUMMARY_${PN}-numbers="Python number APIs"
|
SUMMARY_${PN}-numbers="Python number APIs"
|
||||||
RDEPENDS_${PN}-numbers="${PN}-core ${PN}-lang ${PN}-re"
|
RDEPENDS_${PN}-numbers="${PN}-core ${PN}-lang ${PN}-re"
|
||||||
FILES_${PN}-numbers="${libdir}/python3.4/decimal.* ${libdir}/python3.4/numbers.* "
|
FILES_${PN}-numbers="${libdir}/python3.4/decimal.* ${libdir}/python3.4/fractions.* ${libdir}/python3.4/numbers.* "
|
||||||
|
|
||||||
SUMMARY_${PN}-pickle="Python serialisation/persistence support"
|
SUMMARY_${PN}-pickle="Python serialisation/persistence support"
|
||||||
RDEPENDS_${PN}-pickle="${PN}-core ${PN}-codecs ${PN}-io ${PN}-re"
|
RDEPENDS_${PN}-pickle="${PN}-core ${PN}-codecs ${PN}-io ${PN}-re"
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ if __name__ == "__main__":
|
|||||||
"cgi.* *HTTPServer.* SocketServer.*" )
|
"cgi.* *HTTPServer.* SocketServer.*" )
|
||||||
|
|
||||||
m.addPackage( "${PN}-numbers", "Python number APIs", "${PN}-core ${PN}-lang ${PN}-re",
|
m.addPackage( "${PN}-numbers", "Python number APIs", "${PN}-core ${PN}-lang ${PN}-re",
|
||||||
"decimal.* numbers.*" )
|
"decimal.* fractions.* numbers.*" )
|
||||||
|
|
||||||
m.addPackage( "${PN}-pickle", "Python serialisation/persistence support", "${PN}-core ${PN}-codecs ${PN}-io ${PN}-re",
|
m.addPackage( "${PN}-pickle", "Python serialisation/persistence support", "${PN}-core ${PN}-codecs ${PN}-io ${PN}-re",
|
||||||
"pickle.* shelve.* lib-dynload/cPickle.*.so pickletools.*" )
|
"pickle.* shelve.* lib-dynload/cPickle.*.so pickletools.*" )
|
||||||
|
|||||||
Reference in New Issue
Block a user