diff options
author | Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de> | 2013-06-28 11:57:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-28 11:02:41 +0100 |
commit | 524572af7eab6a05f470de485fe092f500132292 (patch) | |
tree | 086aeee7f0b310a5310c9b8b0830b6747fda3a99 /meta | |
parent | 29e55997caeb9c6367f9a340e153f829228f36ed (diff) | |
download | poky-524572af7eab6a05f470de485fe092f500132292.tar.gz |
python-argparse: adding runtime dependency on python-codecs
When typing 'import argparse' in the python shell on a minimal image
with only the python-argparse recipe installed, python reports:
Python 2.7.3 (default, Jun 27 2013, 08:26:25)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import argparse;
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/site-packages/argparse.py", line 91, in <module>
from gettext import gettext as _
ImportError: No module named gettext
The python-argparse recipe requires the python gettext module,
which is currently provided by python-codecs.
Hence, this commit adds python-codecs as runtime dependency to
resolve the issue.
(From OE-Core rev: 8d0e84bdfaf63ad61be7b015dd55dacccfa9132c)
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-argparse_1.2.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python-argparse_1.2.1.bb b/meta/recipes-devtools/python/python-argparse_1.2.1.bb index 752ad64a38..1f07738547 100644 --- a/meta/recipes-devtools/python/python-argparse_1.2.1.bb +++ b/meta/recipes-devtools/python/python-argparse_1.2.1.bb | |||
@@ -3,8 +3,8 @@ SECTION = "devel/python" | |||
3 | LICENSE = "PSF" | 3 | LICENSE = "PSF" |
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=09d08bb5b7047e2688ea3faad6408aa8" | 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=09d08bb5b7047e2688ea3faad6408aa8" |
5 | SRCNAME = "argparse" | 5 | SRCNAME = "argparse" |
6 | PR = "r3" | 6 | PR = "r4" |
7 | RDEPENDS_${PN} += "python-textutils" | 7 | RDEPENDS_${PN} += "python-codecs python-textutils" |
8 | 8 | ||
9 | SRC_URI = "http://argparse.googlecode.com/files/${SRCNAME}-${PV}.tar.gz" | 9 | SRC_URI = "http://argparse.googlecode.com/files/${SRCNAME}-${PV}.tar.gz" |
10 | SRC_URI[md5sum] = "2fbef8cb61e506c706957ab6e135840c" | 10 | SRC_URI[md5sum] = "2fbef8cb61e506c706957ab6e135840c" |