aboutsummaryrefslogtreecommitdiffstats
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:12 +0000
commit65a85c7db3de8d16ff91a5208a59cc2202d34e5b (patch)
tree87f6181e1bd0ce04472a2aac90af808236aa73f5 /meta/recipes-devtools/python/python
parent54ac820b8a639950ccb534dcd9d6eaf8b2b736e0 (diff)
downloadopenembedded-core-contrib-65a85c7db3de8d16ff91a5208a59cc2202d34e5b.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) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
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 @@
"re",
"resource",
"robotparser",
+ "runpy",
"shell",
"smtpd",
"sqlite3",
@@ -815,6 +816,16 @@
],
"summary": "Python robots.txt parser"
},
+ "runpy": {
+ "files": [
+ "${libdir}/python2.7/runpy.py"
+ ],
+ "rdepends": [
+ "core",
+ "pkgutil"
+ ],
+ "summary": "Python helper for locating/executing scripts in module namespace"
+ },
"shell": {
"files": [
"${libdir}/python2.7/cmd.py",
@@ -1029,4 +1040,4 @@
],
"summary": "Python zlib compression support"
}
-} \ No newline at end of file
+}