From 639d56b1c27c7bb18c5f9b65fdf2ad3faf9d7dfe Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Wed, 16 Jul 2014 17:50:00 -0300 Subject: [PATCH 1/3] =?UTF-8?q?Adicionadas=20dependencias=20do=20python-ld?= =?UTF-8?q?ap=20=C3=A0=20documentacao=20de=20instala=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d28dfe..4ccd2b9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,12 @@ Faça o checkout do projeto $ git clone https://github.com/interlegis/sigi.git -Instalando as dependências do arquivo `requirements.txt` +Instale as bibliotecas de sistema necessárias para usar o python-ldap +(vide http://www.python-ldap.org/doc/html/installing.html#prerequisites) + + $ sudo apt-get install python-dev libldap2-dev libssl-dev libsasl2-dev + +Instale as dependências do arquivo `requirements.txt` $ pip install -r requirements.txt From 7abd58306f6ff706dde03d315cea81adfa701938 Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Wed, 16 Jul 2014 17:53:09 -0300 Subject: [PATCH 2/3] Instalando googlecharts simplesmente via requirements.txt --- README.md | 6 ------ install.sh | 7 ------- requirements.txt | 2 +- 3 files changed, 1 insertion(+), 14 deletions(-) diff --git a/README.md b/README.md index 4ccd2b9..4c1c27c 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,6 @@ Instale as dependências do arquivo `requirements.txt` $ pip install -r requirements.txt -Install django-googlecharts - - $ git clone git://github.com/jacobian/django-googlecharts.git - $ cd django-googlecharts - $ python setup.py install - Install a app de reports generator $ git clone https://github.com/marinho/geraldo.git diff --git a/install.sh b/install.sh index cbaa212..17c33fe 100644 --- a/install.sh +++ b/install.sh @@ -23,13 +23,6 @@ source ./env/bin/activate echo "Isolando arquivos temporários..." mkdir tmp -echo "Instalando django-googlecharts..." -cd tmp/ -git clone git://github.com/jacobian/django-googlecharts.git -cd django-googlecharts -python setup.py install -cd .. - echo "Instalando geraldo reports..." git clone https://github.com/marinho/geraldo.git cd geraldo diff --git a/requirements.txt b/requirements.txt index f54d2fe..1c3e572 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ Pillow==2.5.1 django-auth-ldap==1.2.0 django-autoslug==1.7.2 django-extensions==1.3.8 -django-googlecharts==1.0-alpha-1 +git+git://github.com/jacobian/django-googlecharts.git@c542996cf9a7a097b447e1ce5a1a6b66bdad254f#egg=django_googlecharts-master django-localflavor==1.0 django-treemenus==0.9.1 eav-django==1.4.5 From 7f30d7ccb363a5159f2b01168f8f63af0b4f57c2 Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Thu, 17 Jul 2014 10:29:58 -0300 Subject: [PATCH 3/3] =?UTF-8?q?Usando=20git=20clone=20com=20protocolo=20gi?= =?UTF-8?q?t=20em=20docs=20e=20instala=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- install.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4c1c27c..14d9232 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Installation --------------- Faça o checkout do projeto - $ git clone https://github.com/interlegis/sigi.git + $ git clone git@github.com:interlegis/sigi.git Instale as bibliotecas de sistema necessárias para usar o python-ldap (vide http://www.python-ldap.org/doc/html/installing.html#prerequisites) @@ -24,7 +24,7 @@ Instale as dependências do arquivo `requirements.txt` Install a app de reports generator - $ git clone https://github.com/marinho/geraldo.git + $ git clone git@github.com:marinho/geraldo.git $ cd geraldo $ python setup.py install $ cp -Rfv reporting geraldo `python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"` diff --git a/install.sh b/install.sh index 17c33fe..94e9232 100644 --- a/install.sh +++ b/install.sh @@ -24,7 +24,7 @@ echo "Isolando arquivos temporários..." mkdir tmp echo "Instalando geraldo reports..." -git clone https://github.com/marinho/geraldo.git +git clone git@github.com:marinho/geraldo.git cd geraldo python setup.py install cp -Rfv reporting geraldo `python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"`