aboutsummaryrefslogtreecommitdiffstats
path: root/toaster-requirements.txt
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-07-17 15:30:17 +0100
committerAlexandru DAMIAN <alexandru.damian@intel.com>2014-07-23 18:13:05 +0100
commitb5789c7ea7e6d1a4b67ec60fc0e4233ec543ba3a (patch)
treec4d798adc6888b7a6e2af1bd975788bb24b886aa /toaster-requirements.txt
parent1868d5635b517e0fe1b874674ea7a78910b26e2e (diff)
downloadbitbake-b5789c7ea7e6d1a4b67ec60fc0e4233ec543ba3a.tar.gz
toaster-requirements.txt: document requirements for the python environment
Since Toaster adds a number of specific requirements managed by pip, we document these requirements in order to be able to run bitbake and toaster under virtualenv. The target here is to break the dependency on distro packages for specific python libraries. In order to start bitbake/Toaster in a distro-independent manner, we use virtualenv and pip. We add venv to the .gitignore list to make room for the virtualenv deployment in this directory. Use this command sequence to setup the virtualenv: $ virtualenv venv $ . venv/bin/activate $ cat toaster-requirements.txt | xargs pip install bitbake and Toaster will then run normally under virtualenv. We also fix bugs related to toaster starting in managed mode through this script: * toaster will not use bldcontrol application in interactive mode * a proper message will be displayed if toaster detects a managed start request in a build environment Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Diffstat (limited to 'toaster-requirements.txt')
-rw-r--r--toaster-requirements.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/toaster-requirements.txt b/toaster-requirements.txt
new file mode 100644
index 000000000..19b529372
--- /dev/null
+++ b/toaster-requirements.txt
@@ -0,0 +1,4 @@
+Django==1.6
+South==0.8.4
+argparse==1.2.1
+wsgiref==0.1.2