diff options
author | Matt Fleming <matt.fleming@intel.com> | 2014-06-04 17:10:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 09:26:05 +0100 |
commit | 0fbc24bce8d1542f94e1add8c454c3a2abebb853 (patch) | |
tree | f06ccffe5a8b90354cab7522fff8f58d250359a1 /scripts/contrib/python | |
parent | 4e2cfdb6e09655aac76d4da2d1034e8c59bda387 (diff) | |
download | poky-0fbc24bce8d1542f94e1add8c454c3a2abebb853.tar.gz |
generate-manifest-3.3.py: Add importlib
importlib isn't currently included in any of the python packages, so
create a new one for recipes that require it.
Cc: Paul Eggleton <paul.eggleton@linux.intel.com>
(From OE-Core rev: b17d2e1838f1f1c3310926a4f3eed375898c60f3)
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib/python')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.3.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.3.py b/scripts/contrib/python/generate-manifest-3.3.py index 1586c46868..288def293d 100755 --- a/scripts/contrib/python/generate-manifest-3.3.py +++ b/scripts/contrib/python/generate-manifest-3.3.py | |||
@@ -261,6 +261,9 @@ if __name__ == "__main__": | |||
261 | m.addPackage( "${PN}-html", "Python HTML processing support", "${PN}-core", | 261 | m.addPackage( "${PN}-html", "Python HTML processing support", "${PN}-core", |
262 | "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) | 262 | "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) |
263 | 263 | ||
264 | m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core", | ||
265 | "importlib" ) | ||
266 | |||
264 | m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", | 267 | m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", |
265 | "lib-dynload/_gdbm.*.so" ) | 268 | "lib-dynload/_gdbm.*.so" ) |
266 | 269 | ||