diff options
author | Anders Darander <anders@chargestorm.se> | 2017-01-27 09:18:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:20 +0000 |
commit | 66c282541a13f2d1224d3ba933a953c0f613fb2a (patch) | |
tree | bb17c738355f05b3f93406732ad92049dd64113a /scripts/contrib | |
parent | d0e9013f6c68104369de940f5dd8a6ef76cd0210 (diff) | |
download | openembedded-core-66c282541a13f2d1224d3ba933a953c0f613fb2a.tar.gz openembedded-core-66c282541a13f2d1224d3ba933a953c0f613fb2a.tar.bz2 openembedded-core-66c282541a13f2d1224d3ba933a953c0f613fb2a.zip |
python-3-manifest: split out typing
This allows us to use typing.py without having to add the whole
python3-misc package.
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/contrib')
-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 55bda1973f..5e2eeb7bef 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -388,6 +388,9 @@ if __name__ == "__main__": m.addPackage( "${PN}-tkinter", "Python Tcl/Tk bindings", "${PN}-core", "lib-dynload/_tkinter.*.so lib-tk tkinter" ) # package + m.addPackage( "${PN}-typing", "Python typing support", "${PN}-core", + "typing.*" ) + m.addPackage( "${PN}-unittest", "Python unit testing framework", "${PN}-core ${PN}-stringold ${PN}-lang ${PN}-io ${PN}-difflib ${PN}-pprint ${PN}-shell", "unittest/" ) |