From 6306dc8351c19059c4c2a8e75bb5733e64532732 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Mon, 22 Aug 2016 00:52:46 -0700 Subject: python-3.5-manifest.inc: the signal module RDEPENDS on enum Fixed: $ python3 >>> import signal Traceback (most recent call last): File "", line 1, in File "/path/to/sdk/sysroots/x86_64-pokysdk-linux/usr/lib/python3.5/signal.py", line 4, in from enum import IntEnum as _IntEnum ImportError: No module named 'enum' Signed-off-by: Robert Yang Signed-off-by: Ross Burton --- scripts/contrib/python/generate-manifest-3.5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/contrib/python/generate-manifest-3.5.py') diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 3a88018c16..9f53dbe2fe 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -345,7 +345,7 @@ if __name__ == "__main__": m.addPackage( "${PN}-shell", "Python shell-like functionality", "${PN}-core ${PN}-re ${PN}-compression", "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" ) - m.addPackage( "${PN}-signal", "Python set handlers for asynchronous events support", "${PN}-core", + m.addPackage( "${PN}-signal", "Python set handlers for asynchronous events support", "${PN}-core ${PN}-enum", "signal.*" ) m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle ${PN}-threading ${PN}-signal ${PN}-selectors", -- cgit 1.2.3-korg