Commit 6beca5837253726204adc6e399d2069ebad1ffc0

Authored by Alexandre Barbosa
Committed by Sergio Oliveira
1 parent c638579c

Download colab-plugins without pip

Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Signed-off-by: Paulo Tada <paulohtfs@gmail.com>
Showing 2 changed files with 6 additions and 6 deletions   Show diff stats
Makefile
... ... @@ -39,5 +39,7 @@ distclean:
39 39 downloadtar:
40 40 mkdir -p $(DISTDIR)
41 41 wget https://pypi.python.org/packages/source/p/pip/pip-1.5.6.tar.gz -O $(DISTDIR)/pip-1.5.6.tar.gz
  42 + wget https://github.com/colab/colab-noosfero-plugin/archive/v0.1.zip -O $(DISTDIR)/colab-noosfero-plugin-0.1.zip
  43 + wget https://github.com/colab/colab-gitlab-plugin/archive/v0.1.zip -O $(DISTDIR)/colab-gitlab-plugin-0.1.zip
  44 + wget https://gitlab.com/softwarepublico/colab-spb-plugin/repository/archive.tar.gz?ref=v0.1 -O $(DISTDIR)/colab-spb-plugin-0.1.tar.gz
42 45 pip install --download $(DISTDIR) -r requirements.txt
43   - pip install --download $(DISTDIR) -r requirements-colab-plugins.txt --no-deps
... ...
requirements-colab-plugins.txt
1   --e git+https://github.com/colab/colab-noosfero-plugin.git@v0.1#egg=colab-noofero-plugin
2   -
3   --e git+https://github.com/colab/colab-gitlab-plugin.git@v0.1#egg=colab-gitlab-plugin
4   -
5   --e git+https://gitlab.com/softwarepublico/colab-spb-plugin.git@v0.1#egg=colab-spb-plugin
  1 +colab-noosfero-plugin==0.1.0
  2 +colab-gitlab-plugin==0.1.0
  3 +colab-spb-plugin==0.1.0
... ...