From 3e57528b0b5ea9aa6bcf980c23f4cbaa839d5a9f Mon Sep 17 00:00:00 2001 From: Alberto Planas Date: Fri, 26 Sep 2014 14:58:46 +0200 Subject: [PATCH] Adds openSUSE support for developer documentation Support for openSUSE documentation is updated in this patch. Change-Id: I3606c999fd1a17df975d9dd734c2582841ecc152 --- doc/source/dev/dev-quickstart.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index b895c72ef0..5f235b6a07 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -23,6 +23,9 @@ Install prerequisites:: sudo easy_install nose sudo pip install virtualenv setuptools-git flake8 tox testrepository + # openSUSE/SLE 12: + sudo zypper install git git-review libffi-devel libmysqlclient-devel libopenssl-devel libxml2-devel libxslt-devel postgresql-devel python-devel python-flake8 python-nose python-pip python-setuptools-git python-testrepository python-tox python-virtualenv + You may need to explicitly upgrade virtualenv if you've installed the one from your OS distribution and it is too old (tox will complain). You can upgrade it individually, if you need to:: @@ -88,6 +91,10 @@ First, install a few system prerequisites:: sudo yum install rabbitmq-server sudo service rabbitmq-server start + # openSUSE/SLE 12: + sudo zypper install rabbitmq-server + sudo systemctl start rabbitmq-server.service + # optionally, install mysql-server # Ubuntu/Debian: @@ -97,6 +104,10 @@ First, install a few system prerequisites:: # sudo yum install mysql-server # sudo service mysqld start + # openSUSE/SLE 12: + # sudo zypper install mariadb + # sudo systemctl start mysql.service + Next, clone the client and install it within a virtualenv as well:: # from your home or source directory