Commit eda77fe3de785c2c2f47249a8677696b4bb46a02

Authored by Paulo Tada
1 parent c940ff7c
Exists in master

Bump colab-deps and plugins versions

* colab-deps 1.12.13 >> 1.12.14
* colab-noosfero-plugin 0.2.5 >> 0.2.6
* colab-gitlab-plugin 0.2.5 >> 0.2.6
* colab-mezuro-plugin 0.1.2 >> 0.1.3

Signed-off-by: Alessandro Caetano <alessandro.caetanob@gmail.com>
Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Showing 2 changed files with 17 additions and 11 deletions   Show diff stats
Makefile
1 1 NAME = colab-deps
2   -VERSION = 1.12.13
  2 +VERSION = 1.12.14
3 3 PREFIX = /usr
4 4 TARGET = $(DESTDIR)$(PREFIX)/lib/colab
5 5 DISTDIR = $(NAME)-$(VERSION)
6 6 TARBALL = dist/$(DISTDIR).tar.gz
7 7  
  8 +# TAGS
  9 +PIP = 1.5.6
  10 +NOOSFERO_PLUGIN = 0.2.6
  11 +GITLAB_PLUGIN = 0.2.6
  12 +MEZURO_PLUGIN = 0.1.3
  13 +SUPERARCHIVES_PLUGIN = 0.1.0
8 14  
9 15 all: virtualenv
10   - ./build/bin/pip install --no-index --find-links=$(DISTDIR) pip==1.5.6
  16 + ./build/bin/pip install --no-index --find-links=$(DISTDIR) pip==$(PIP)
11 17 ./build/bin/pip install --no-index --find-links=$(DISTDIR) --use-wheel -r requirements.txt
12 18 ./build/bin/pip install --no-index --find-links=$(DISTDIR) --no-deps -r requirements-colab-plugins.txt
13 19 virtualenv --relocatable ./build
... ... @@ -25,7 +31,7 @@ install:
25 31  
26 32 sdist: $(TARBALL)
27 33  
28   -$(TARBALL):
  34 +$(TARBALL): downloadtar
29 35 mkdir -p $$(dirname $(TARBALL))
30 36 $(RM) $(TARBALL)
31 37 tar czf $(TARBALL) $(SOURCES) $(DISTDIR)
... ... @@ -36,11 +42,11 @@ distclean:
36 42  
37 43 downloadtar: virtualenv
38 44 mkdir -p $(DISTDIR)
39   - wget https://pypi.python.org/packages/source/p/pip/pip-1.5.6.tar.gz -O $(DISTDIR)/pip-1.5.6.tar.gz
40   - wget https://github.com/colab/colab-noosfero-plugin/archive/v0.2.5.zip -O $(DISTDIR)/colab-noosfero-plugin-0.2.5.zip
41   - wget https://github.com/colab/colab-gitlab-plugin/archive/v0.2.5.zip -O $(DISTDIR)/colab-gitlab-plugin-0.2.5.zip
42   - wget https://github.com/colab/colab-mezuro-plugin/archive/v0.1.2.zip -O $(DISTDIR)/colab-mezuro-plugin-0.1.2.zip
43   - wget https://github.com/colab/colab-superarchives-plugin/archive/master.zip -O $(DISTDIR)/colab-superarchives-plugin-0.1.0.zip
  45 + wget https://pypi.python.org/packages/source/p/pip/pip-$(PIP).tar.gz -O $(DISTDIR)/pip-$(PIP).tar.gz
  46 + wget https://github.com/colab/colab-noosfero-plugin/archive/v$(NOOSFERO_PLUGIN).zip -O $(DISTDIR)/colab-noosfero-plugin-$(NOOSFERO_PLUGIN).zip
  47 + wget https://github.com/colab/colab-gitlab-plugin/archive/v$(GITLAB_PLUGIN).zip -O $(DISTDIR)/colab-gitlab-plugin-$(GITLAB_PLUGIN).zip
  48 + wget https://github.com/colab/colab-mezuro-plugin/archive/v$(MEZURO_PLUGIN).zip -O $(DISTDIR)/colab-mezuro-plugin-$(MEZURO_PLUGIN).zip
  49 + wget https://github.com/colab/colab-superarchives-plugin/archive/v$(SUPERARCHIVES_PLUGIN).zip -O $(DISTDIR)/colab-superarchives-plugin-$(SUPERARCHIVES_PLUGIN).zip
44 50 ./build/bin/pip install --download $(DISTDIR) -r requirements.txt
45 51  
46 52 .PHONY: virtualenv
... ...
requirements-colab-plugins.txt
1   -colab-noosfero-plugin==0.2.5
2   -colab-gitlab-plugin==0.2.5
3   -colab-mezuro-plugin==0.1.2
  1 +colab-noosfero-plugin==0.2.6
  2 +colab-gitlab-plugin==0.2.6
  3 +colab-mezuro-plugin==0.1.3
4 4 colab-superarchives-plugin==0.1.0
... ...