Files
poky/meta/recipes-devtools
Lukas Bulwahn d9efe9c485 python-multiprocessing: adding runtime dependencies
As python-multiprocessing requires python-threading and
python-pickle, this commit adds them as runtime dependency.

The observed behavior was:

When typing 'import multiprocessing' in the python shell on a
minimal image with only the python-multiprocessing recipe installed,
python reports at first:

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 multiprocessing;
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/multiprocessing/__init__.py", line 65, in <module>
    from multiprocessing.util import SUBDEBUG, SUBWARNING
  File "/usr/lib/python2.7/multiprocessing/util.py", line 38, in <module>
    import threading        # we want threading to install it's
ImportError: No module named threading

After adding python-threading as runtime dependency and rebuilding
the image, 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 multiprocessing;
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/multiprocessing/__init__.py", line 84, in <module>
    import _multiprocessing
ImportError: No module named cPickle

(From OE-Core master rev: e913412ca0ff01cb654757c8199e8859f15b7cf7)

(From OE-Core rev: e2abc675180a919a88c531f3801c3cd5d3f96206)

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-07-09 10:53:57 +01:00
..
2013-03-22 16:54:37 +00:00
2013-01-07 11:09:36 +00:00
2013-03-18 13:18:21 +00:00
2013-01-07 13:38:29 +00:00
2013-02-28 23:15:51 +00:00
2013-02-01 15:54:03 +00:00
2013-03-05 13:14:56 +00:00
2013-02-04 13:18:27 +00:00
2013-02-06 09:37:26 +00:00
2011-11-29 11:22:04 +00:00
2013-01-28 14:49:05 +00:00
2013-02-04 13:18:26 +00:00
2013-03-22 17:01:30 +00:00
2013-01-07 13:38:27 +00:00
2013-03-01 13:03:28 +00:00
2013-04-02 17:57:07 +01:00
2013-05-22 17:14:04 +01:00
2013-03-18 13:18:24 +00:00
2012-12-26 11:34:09 +00:00
2013-02-04 16:42:49 +00:00
2011-12-08 15:24:32 +00:00
2012-08-19 10:46:39 +01:00
2013-03-23 17:40:27 +00:00