diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-08-23 18:23:59 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-25 22:59:44 +0100 |
commit | f2b96001e074d26f5eb8711c2217a695fb02de4c (patch) | |
tree | 554f6b57985bdb26352728c9e1e88d4e9613ba60 /scripts | |
parent | e19a430da2ef60b2c6cf6a67210ec1a7b292c8ca (diff) | |
download | openembedded-core-f2b96001e074d26f5eb8711c2217a695fb02de4c.tar.gz openembedded-core-f2b96001e074d26f5eb8711c2217a695fb02de4c.tar.bz2 openembedded-core-f2b96001e074d26f5eb8711c2217a695fb02de4c.zip |
python-3.5-manifest: Add argparse module
Adding argparse module from Python's standard library. This allow use
argparse without installing all python-misc modules. For compatibility,
add python3-argparse as RDEPENDS to python3-misc.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 5798685a46..2906cc66d0 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -208,6 +208,9 @@ if __name__ == "__main__": m.addPackage( "${PN}-audio", "Python Audio Handling", "${PN}-core", "wave.* chunk.* sndhdr.* lib-dynload/ossaudiodev.*.so lib-dynload/audioop.*.so audiodev.* sunaudio.* sunau.* toaiff.*" ) + m.addPackage( "${PN}-argparse", "Python command line argument parser", "${PN}-core ${PN}-codecs ${PN}-textutils", + "argparse.*" ) + m.addPackage( "${PN}-asyncio", "Python Asynchronous I/O, event loop, coroutines and tasks", "${PN}-core", "asyncio" ) |