diff options
author | Anders Darander <anders@chargestorm.se> | 2017-01-27 09:07:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:22:16 +0000 |
commit | db6977f72ca955de7ac50ceaea7e8cd880513a68 (patch) | |
tree | 64556daee9c0d31295b96c6e4064a963e1f56cd5 | |
parent | 64ab82509dd0950bd831fc3fecc332cd10bf9156 (diff) | |
download | poky-db6977f72ca955de7ac50ceaea7e8cd880513a68.tar.gz |
python-3-manifest: add _compat_pickle to python3-pickle
This allows us to depend on _compat_pickle.* wihtout having to add the whole
python3-misc.
(From OE-Core rev: 6c435672b27d1c97ce3776c98d073a92fde887cd)
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>
-rw-r--r-- | meta/recipes-devtools/python/python-3.5-manifest.inc | 2 | ||||
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python-3.5-manifest.inc b/meta/recipes-devtools/python/python-3.5-manifest.inc index 555ac8844d..8b64069a2f 100644 --- a/meta/recipes-devtools/python/python-3.5-manifest.inc +++ b/meta/recipes-devtools/python/python-3.5-manifest.inc | |||
@@ -167,7 +167,7 @@ FILES_${PN}-numbers="${libdir}/python3.5/decimal.* ${libdir}/python3.5/__pycache | |||
167 | 167 | ||
168 | SUMMARY_${PN}-pickle="Python serialisation/persistence support" | 168 | SUMMARY_${PN}-pickle="Python serialisation/persistence support" |
169 | RDEPENDS_${PN}-pickle="${PN}-core ${PN}-codecs ${PN}-io ${PN}-re" | 169 | RDEPENDS_${PN}-pickle="${PN}-core ${PN}-codecs ${PN}-io ${PN}-re" |
170 | FILES_${PN}-pickle="${libdir}/python3.5/pickle.* ${libdir}/python3.5/__pycache__/pickle.* ${libdir}/python3.5/shelve.* ${libdir}/python3.5/__pycache__/shelve.* ${libdir}/python3.5/lib-dynload/cPickle.*.so ${libdir}/python3.5/lib-dynload/__pycache__/cPickle.*.so ${libdir}/python3.5/pickletools.* ${libdir}/python3.5/__pycache__/pickletools.* " | 170 | FILES_${PN}-pickle="${libdir}/python3.5/_compat_pickle.* ${libdir}/python3.5/__pycache__/_compat_pickle.* ${libdir}/python3.5/pickle.* ${libdir}/python3.5/__pycache__/pickle.* ${libdir}/python3.5/shelve.* ${libdir}/python3.5/__pycache__/shelve.* ${libdir}/python3.5/lib-dynload/cPickle.*.so ${libdir}/python3.5/lib-dynload/__pycache__/cPickle.*.so ${libdir}/python3.5/pickletools.* ${libdir}/python3.5/__pycache__/pickletools.* " |
171 | 171 | ||
172 | SUMMARY_${PN}-pkgutil="Python package extension utility support" | 172 | SUMMARY_${PN}-pkgutil="Python package extension utility support" |
173 | RDEPENDS_${PN}-pkgutil="${PN}-core" | 173 | RDEPENDS_${PN}-pkgutil="${PN}-core" |
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 770ef754e6..1a06896b5c 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py | |||
@@ -329,7 +329,7 @@ if __name__ == "__main__": | |||
329 | "decimal.* fractions.* numbers.*" ) | 329 | "decimal.* fractions.* numbers.*" ) |
330 | 330 | ||
331 | m.addPackage( "${PN}-pickle", "Python serialisation/persistence support", "${PN}-core ${PN}-codecs ${PN}-io ${PN}-re", | 331 | m.addPackage( "${PN}-pickle", "Python serialisation/persistence support", "${PN}-core ${PN}-codecs ${PN}-io ${PN}-re", |
332 | "pickle.* shelve.* lib-dynload/cPickle.*.so pickletools.*" ) | 332 | "_compat_pickle.* pickle.* shelve.* lib-dynload/cPickle.*.so pickletools.*" ) |
333 | 333 | ||
334 | m.addPackage( "${PN}-pkgutil", "Python package extension utility support", "${PN}-core", | 334 | m.addPackage( "${PN}-pkgutil", "Python package extension utility support", "${PN}-core", |
335 | "pkgutil.*") | 335 | "pkgutil.*") |