diff options
author | Matt Fleming <matt.fleming@intel.com> | 2014-06-06 09:52:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 10:24:07 +0100 |
commit | 5f0634a2709bf8c4382c79b190e8b09f91dff8d7 (patch) | |
tree | 6a48700c7381863070853fc2e49387088957eb09 /scripts | |
parent | 22f422fb9b4db611d09335837489c0a01947ad0e (diff) | |
download | poky-5f0634a2709bf8c4382c79b190e8b09f91dff8d7.tar.gz |
generate-manifest-2.7.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: b3dae96d9fdb4e26101f6f7edc6e65989375a5a2)
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-2.7.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/contrib/python/generate-manifest-2.7.py b/scripts/contrib/python/generate-manifest-2.7.py index 4356ad0ddd..65486d8ec4 100755 --- a/scripts/contrib/python/generate-manifest-2.7.py +++ b/scripts/contrib/python/generate-manifest-2.7.py | |||
@@ -266,6 +266,9 @@ if __name__ == "__main__": | |||
266 | m.addPackage( "${PN}-html", "Python HTML processing support", "${PN}-core", | 266 | m.addPackage( "${PN}-html", "Python HTML processing support", "${PN}-core", |
267 | "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) | 267 | "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) |
268 | 268 | ||
269 | m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core", | ||
270 | "importlib" ) | ||
271 | |||
269 | m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", | 272 | m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", |
270 | "lib-dynload/gdbm.so" ) | 273 | "lib-dynload/gdbm.so" ) |
271 | 274 | ||