summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2017-11-25 08:37:37 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-20 22:31:56 +0000
commit5dd24c1753716facf2d638b6cbec22bcee0c4aa3 (patch)
treefdabad7eef76e4d9fe2e158eb061a6b83185e71c /meta/recipes-devtools/python/python
parentb6777878ff03c3e956386020a19d11c875c835ae (diff)
downloadpoky-5dd24c1753716facf2d638b6cbec22bcee0c4aa3.tar.gz
python*-manifest.json: add dependencies, runpy
* runpy allows running modules/scripts with 'python -m foo' - create explicit python2 and 3 packages rather than the misc catchall * python3-setuptools and html.parser RDEPENDS on _markupbase - add to python3-core rather than misc catchall * pip3 RDEPENDS on plistlib, http.client - already packaged in python2, add to python3 - add http/ to -netclient * "pip3 install" RDEPENDS on encodingds.idna - encodings.idna packaged in -core, but missing: - stringprep (move from -codecs to -core) - unicodedata (move from -codecs to -core) (From OE-Core rev: 65a85c7db3de8d16ff91a5208a59cc2202d34e5b) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python')
-rw-r--r--meta/recipes-devtools/python/python/python2-manifest.json13
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
index 8ebc715fc1..03d4bbde6a 100644
--- a/meta/recipes-devtools/python/python/python2-manifest.json
+++ b/meta/recipes-devtools/python/python/python2-manifest.json
@@ -597,6 +597,7 @@
597 "re", 597 "re",
598 "resource", 598 "resource",
599 "robotparser", 599 "robotparser",
600 "runpy",
600 "shell", 601 "shell",
601 "smtpd", 602 "smtpd",
602 "sqlite3", 603 "sqlite3",
@@ -815,6 +816,16 @@
815 ], 816 ],
816 "summary": "Python robots.txt parser" 817 "summary": "Python robots.txt parser"
817 }, 818 },
819 "runpy": {
820 "files": [
821 "${libdir}/python2.7/runpy.py"
822 ],
823 "rdepends": [
824 "core",
825 "pkgutil"
826 ],
827 "summary": "Python helper for locating/executing scripts in module namespace"
828 },
818 "shell": { 829 "shell": {
819 "files": [ 830 "files": [
820 "${libdir}/python2.7/cmd.py", 831 "${libdir}/python2.7/cmd.py",
@@ -1029,4 +1040,4 @@
1029 ], 1040 ],
1030 "summary": "Python zlib compression support" 1041 "summary": "Python zlib compression support"
1031 } 1042 }
1032} \ No newline at end of file 1043}