From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
To: bitbake-devel@lists.openembedded.org
Subject: [PATCH] setup.py: Install concurrent too
Date: Thu, 2 Feb 2012 09:21:16 +0100 [thread overview]
Message-ID: <1328170876-12909-2-git-send-email-rep.dot.nop@gmail.com> (raw)
In-Reply-To: <1328170876-12909-1-git-send-email-rep.dot.nop@gmail.com>
I was getting:
Traceback (most recent call last):
File "/scratch/src/oe/bitbake/build/scripts-2.7/bitbake", line 39, in <module>
from bb import cooker
File "/scratch/src/oe/bitbake/build/lib/bb/cooker.py", line 35, in <module>
from concurrent import futures
ImportError: No module named concurrent
Command exited with non-zero status 1
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
---
setup.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/setup.py b/setup.py
index 3f9899e..e86ddd1 100755
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,8 @@ setup(name='bitbake',
requires = ["ply", "progressbar", "futures"],
package_dir = {"": "lib"},
packages = ["bb.server", "bb.parse.parse_py", "bb.parse", "bb.fetch",
- "bb.fetch2", "bb.ui.crumbs", "bb.ui", "bb.pysh", "bb", "prserv"],
+ "bb.fetch2", "bb.ui.crumbs", "bb.ui", "bb.pysh", "bb",
+ "prserv", "concurrent", "concurrent.futures"],
py_modules = ["codegen"],
scripts = ["bin/bitbake", "bin/bitbake-layers", "bin/bitbake-diffsigs", "bin/bitbake-prserv"],
data_files = [("share/bitbake", glob("conf/*") + glob("classes/*")),
--
1.7.8.3
next prev parent reply other threads:[~2012-02-02 8:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-02 8:21 [PATCH] Add missing module to installer Bernhard Reutner-Fischer
2012-02-02 8:21 ` Bernhard Reutner-Fischer [this message]
2012-02-09 23:01 ` [PATCH] setup.py: Install concurrent too Chris Larson
2012-02-02 15:22 ` [PATCH] Add missing module to installer Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1328170876-12909-2-git-send-email-rep.dot.nop@gmail.com \
--to=rep.dot.nop@gmail.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.