summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-10-22 10:49:40 -0200
committerKali Kaneko <kali@leap.se>2013-10-22 10:49:40 -0200
commite1fee7f497c5b31e88600aa2d8702b9fef78951d (patch)
treee533cb6aded5f9d83acd9a98f9616ff05bce541b /docs
parent96e2bcb0a103130b20026c2f943e16205867ec80 (diff)
Fixes to environment.rst. Closes: #4185
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/environment.rst57
-rw-r--r--docs/dev/quickstart.rst6
2 files changed, 49 insertions, 14 deletions
diff --git a/docs/dev/environment.rst b/docs/dev/environment.rst
index 8e6fd89d..596d833e 100644
--- a/docs/dev/environment.rst
+++ b/docs/dev/environment.rst
@@ -3,7 +3,7 @@
Setting up a development environment
====================================
-This document covers how to get an enviroment ready to contribute code to Bitmask.
+This document covers how to get an enviroment ready to contribute code to Bitmask, with some explanations of what are we doing in each step along the way. For just the meat, check the :ref:`quickstart <quickstart>` `section`.
Cloning the repo
----------------
@@ -58,10 +58,14 @@ Read more about it in the `project documentation page <http://pypi.python.org/py
Create and activate your dev environment
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-::
- $ virtualenv </path/to/new/environment>
- $ source </path/to/new/environment>/bin/activate
+You first create a virtualenv in any directory that you like::
+
+ $ mkdir ~/Virtualenvs
+ $ virtualenv ~/Virtualenvs/bitmask
+ $ source ~/Virtualenvs/bitmask/bin/activate
+
+.. TODO use virtualenvwrapper + isis non-sudo recipe here
.. _pysidevirtualenv:
@@ -74,14 +78,10 @@ As a workaround, you can run the following script after creating your virtualenv
$ pkg/postmkvenv.sh
-A second option if that does not work for you would be to install PySide globally and pass the ``--site-packages`` option when you are creating your virtualenv::
-
- $ apt-get install python-pyside
- $ virtualenv --site-packages .
+A second option if that does not work for you would be to install PySide globally and pass the ``--system-site-packages`` option when you are creating your virtualenv::
-After that, you must export ``LEAP_VENV_SKIP_PYSIDE`` to skip the isntallation::
-
- $ export LEAP_VENV_SKIP_PYSIDE=1
+ $ sudo apt-get install python-pyside
+ $ virtualenv --system-site-packages .
And now you are ready to proceed with the next section.
@@ -92,8 +92,32 @@ Install python dependencies
You can install python dependencies with ``pip``. If you do it inside your working environment, they will be installed avoiding the need for administrative permissions::
- $ pip install -r pkg/requirements.pip
+ $ (bitmask) pip install -r pkg/requirements.pip
+
+.. _makeresources:
+
+Install Bitmask
+---------------
+
+We will be using setuptools **development mode** inside the virtualenv. It will
+creaate a link from the local site-packages to your working directory. In this
+way, your changes will always be in the installation path without need to
+install the package you are working on.::
+ $ (bitmask) python2 setup.py develop
+
+After this step, your Bitmask launcher will be located at
+``~/Virtualenvs/bitmask/bin/bitmask``, and it will be in the path as long as you
+have sourced your virtualenv.
+
+Make resources
+--------------
+
+We also need to compile the resource files::
+
+ $ (bitmask) make resources
+
+.. TODO need to make translations too?
.. _copyscriptfiles:
@@ -129,3 +153,12 @@ If you are using linux and running a desktop other than unity or gnome, you migh
or if you are a kde user::
/usr/lib/kde4/libexec/polkit-kde-authentication-agent-1 &
+
+Running!
+--------
+
+If everything went well, you should be able to run your client by invoking
+``bitmask``. If it does not get launched, or you just want to see more verbose
+output, try the debug mode::
+
+ $ (bitmask) bitmask --debug
diff --git a/docs/dev/quickstart.rst b/docs/dev/quickstart.rst
index 8f0e90dd..978dc9e5 100644
--- a/docs/dev/quickstart.rst
+++ b/docs/dev/quickstart.rst
@@ -1,3 +1,5 @@
+.. _quickstart:
+
Quickstart
==========
@@ -56,11 +58,11 @@ Install python requirements::
Install the bitmask package in development mode inside the virtualenv::
- $ ./setup.py develop
+ $ python2 setup.py develop
Compile the resource files::
- $ make
+ $ make resources
Copy necessary files into system folders, with root privileges::