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:22:16 +0000 |
commit | 8243ebdbb7bccc4f9c6598ad7ccf991deb9039ed (patch) | |
tree | 27f2fb4ec30d759bf0290ed31048f3e66e57c01c /scripts/contrib | |
parent | 5776eea84d7cd9c54e3fcf14f10299d20bd52199 (diff) | |
download | poky-8243ebdbb7bccc4f9c6598ad7ccf991deb9039ed.tar.gz |
python-3-manifest: split out typing
This allows us to use typing.py without having to add the whole
python3-misc package.
(From OE-Core rev: 66c282541a13f2d1224d3ba933a953c0f613fb2a)
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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__": | |||
388 | m.addPackage( "${PN}-tkinter", "Python Tcl/Tk bindings", "${PN}-core", | 388 | m.addPackage( "${PN}-tkinter", "Python Tcl/Tk bindings", "${PN}-core", |
389 | "lib-dynload/_tkinter.*.so lib-tk tkinter" ) # package | 389 | "lib-dynload/_tkinter.*.so lib-tk tkinter" ) # package |
390 | 390 | ||
391 | m.addPackage( "${PN}-typing", "Python typing support", "${PN}-core", | ||
392 | "typing.*" ) | ||
393 | |||
391 | m.addPackage( "${PN}-unittest", "Python unit testing framework", "${PN}-core ${PN}-stringold ${PN}-lang ${PN}-io ${PN}-difflib ${PN}-pprint ${PN}-shell", | 394 | m.addPackage( "${PN}-unittest", "Python unit testing framework", "${PN}-core ${PN}-stringold ${PN}-lang ${PN}-io ${PN}-difflib ${PN}-pprint ${PN}-shell", |
392 | "unittest/" ) | 395 | "unittest/" ) |
393 | 396 | ||