mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
generate-manifest-2.7.py: Add fractions to ${PN}-numbers
python-cryptography requires fractions module which is currently unpackaged. (From OE-Core rev: ac09a1830fffb6aded499ade55c039e35202867e) Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
df59ac227e
commit
86cbe081a5
|
|
@ -175,7 +175,7 @@ FILES_${PN}-netserver="${libdir}/python2.7/cgi.* ${libdir}/python2.7/*HTTPServer
|
|||
|
||||
SUMMARY_${PN}-numbers="Python number APIs"
|
||||
RDEPENDS_${PN}-numbers="${PN}-core ${PN}-lang ${PN}-re"
|
||||
FILES_${PN}-numbers="${libdir}/python2.7/decimal.* ${libdir}/python2.7/numbers.* "
|
||||
FILES_${PN}-numbers="${libdir}/python2.7/decimal.* ${libdir}/python2.7/fractions.* ${libdir}/python2.7/numbers.* "
|
||||
|
||||
SUMMARY_${PN}-pickle="Python serialisation/persistence support"
|
||||
RDEPENDS_${PN}-pickle="${PN}-core ${PN}-codecs ${PN}-io ${PN}-re"
|
||||
|
|
|
|||
|
|
@ -314,7 +314,7 @@ if __name__ == "__main__":
|
|||
"cgi.* *HTTPServer.* SocketServer.*" )
|
||||
|
||||
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",
|
||||
"pickle.* shelve.* lib-dynload/cPickle.so pickletools.*" )
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user