diff options
author | Ross Burton <ross.burton@intel.com> | 2018-09-28 17:06:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-01 13:04:49 +0100 |
commit | 4612cb45ba3d025093a4118f71e50b99f66d3e94 (patch) | |
tree | 3898addc71d5c620c568e39042c6c7acf7d58500 | |
parent | f27fc7f336d3a136a278757d14a46a0ff8f8b2d7 (diff) | |
download | poky-4612cb45ba3d025093a4118f71e50b99f66d3e94.tar.gz |
python: move sqlite module into python-sqlite
The module was accidentally included in python-misc.
Also re-run create_manifest to update the dependencies of python-sqlite3,
causing some whitespace changes.
[ YOCTO #12933 ]
(From OE-Core rev: 9c2b1a0bfc8783052b5dda344cc334b9c13736f5)
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/python2-manifest.json | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json index 1e7004e05e..260fa6f80d 100644 --- a/meta/recipes-devtools/python/python/python2-manifest.json +++ b/meta/recipes-devtools/python/python/python2-manifest.json | |||
@@ -1,18 +1,18 @@ | |||
1 | { | 1 | { |
2 | "tests": { | 2 | "tests": { |
3 | "summary": "Python test suite", | 3 | "summary": "Python test suite", |
4 | "rdepends": [ | 4 | "rdepends": [ |
5 | "core", | 5 | "core", |
6 | "modules" | 6 | "modules" |
7 | ], | 7 | ], |
8 | "files": [ | 8 | "files": [ |
9 | "${libdir}/python2.7/*/test", | 9 | "${libdir}/python2.7/*/test", |
10 | "${libdir}/python2.7/*/tests", | 10 | "${libdir}/python2.7/*/tests", |
11 | "${libdir}/python2.7/idlelib/idle_test/", | 11 | "${libdir}/python2.7/idlelib/idle_test/", |
12 | "${libdir}/python2.7/test" | 12 | "${libdir}/python2.7/test" |
13 | ], | 13 | ], |
14 | "cached": [] | 14 | "cached": [] |
15 | }, | 15 | }, |
16 | "2to3": { | 16 | "2to3": { |
17 | "summary": "Python automated Python 2 to 3 code translator", | 17 | "summary": "Python automated Python 2 to 3 code translator", |
18 | "rdepends": [ | 18 | "rdepends": [ |
@@ -881,10 +881,12 @@ | |||
881 | "sqlite3": { | 881 | "sqlite3": { |
882 | "summary": "Python Sqlite3 database support", | 882 | "summary": "Python Sqlite3 database support", |
883 | "rdepends": [ | 883 | "rdepends": [ |
884 | "core" | 884 | "core", |
885 | "datetime" | ||
885 | ], | 886 | ], |
886 | "files": [ | 887 | "files": [ |
887 | "${libdir}/python2.7/lib-dynload/_sqlite3.so" | 888 | "${libdir}/python2.7/lib-dynload/_sqlite3.so", |
889 | "${libdir}/python2.7/sqlite3" | ||
888 | ] | 890 | ] |
889 | }, | 891 | }, |
890 | "stringold": { | 892 | "stringold": { |
@@ -1041,4 +1043,4 @@ | |||
1041 | "${libdir}/python2.7/lib-dynload/zlib.so" | 1043 | "${libdir}/python2.7/lib-dynload/zlib.so" |
1042 | ] | 1044 | ] |
1043 | } | 1045 | } |
1044 | } | 1046 | } \ No newline at end of file |