Commit 8f9e0a941c17acb706b2002df77c72dc22b059e3
Exists in
master
and in
67 other branches
Merge branch 'master' of portal.softwarepublico.gov.br:softwarepublico/softwarepublico into copr
Showing
20 changed files
with
39 additions
and
20 deletions
Show diff stats
docs/Makefile
... | ... | @@ -6,27 +6,33 @@ all: |
6 | 6 | |
7 | 7 | SPB_ENV ?= local |
8 | 8 | |
9 | +build_dir = _build/$(SPB_ENV) | |
10 | + | |
9 | 11 | # autogenerated DNS documentation |
10 | -BUILT += _build/dns.rst | |
11 | -_build/dns.rst: ../test/dns_test.sh | |
12 | +BUILT += $(build_dir)/dns.rst | |
13 | +$(build_dir)/dns.rst: ../test/dns_test.sh | |
14 | + mkdir -p $(build_dir) | |
12 | 15 | (cd .. && sh test/dns_test.sh --doc) > $@ |
13 | 16 | |
14 | -BUILT += $(patsubst %.svg, _build/%.png, $(wildcard *.svg)) | |
15 | -_build/%.png: %.png | |
17 | +BUILT += $(patsubst %.svg, $(build_dir)/%.png, $(wildcard *.svg)) | |
18 | +$(build_dir)/%.png: %.png | |
19 | + mkdir -p $(build_dir) | |
16 | 20 | cp $< $@ |
17 | 21 | |
18 | 22 | arquitetura.png: |
19 | 23 | inkscape --export-area-page --export-width=800 --export-width=600 --export-png=$@ $< |
20 | 24 | |
21 | -BUILT += $(patsubst %.in, _build/%, $(wildcard *.in)) | |
22 | -_build/%: %.in build.rb | |
25 | +BUILT += $(patsubst %.in, $(build_dir)/%, $(wildcard *.in)) | |
26 | +$(build_dir)/%: %.in build.rb | |
27 | + mkdir -p $(build_dir) | |
23 | 28 | ruby -p build.rb $< > $@ || ($(RM) $@; false) |
24 | 29 | |
25 | 30 | CLEAN_FILES += $(BUILT) |
26 | 31 | |
27 | 32 | html latexpdf: $(BUILT) |
28 | - $(MAKE) -C _build $@ BUILDDIR=$(SPB_ENV) | |
33 | + mkdir -p $(build_dir) | |
34 | + $(MAKE) -C $(build_dir) -f ../Makefile $@ | |
29 | 35 | |
30 | 36 | clean: |
31 | 37 | $(RM) $(BUILT) |
32 | - $(MAKE) -C _build $@ | |
38 | + $(RM) -r $(build_dir) | ... | ... |
src/noosfero-spb/Makefile
src/pkg-rpm/bottle/bottle.spec
src/pkg-rpm/colab-deps/colab-deps.spec
src/pkg-rpm/colab-spb-theme/colab-spb-theme.spec
src/pkg-rpm/colab/colab.spec
src/pkg-rpm/fcgi/fcgi.spec
src/pkg-rpm/fcgiwrap/fcgiwrap.spec
1 | 1 | %global gitcommit 333ff99 |
2 | 2 | Name: fcgiwrap |
3 | 3 | Version: 1.1.0 |
4 | +Release: 3 | |
4 | 5 | Summary: Simple FastCGI wrapper for CGI scripts |
5 | 6 | License: MIT |
6 | 7 | URL: http://nginx.localdomain.pl/ |
... | ... | @@ -8,7 +9,7 @@ Group: System Environment/Daemons |
8 | 9 | |
9 | 10 | Source0: fcgiwrap-%{version}.tar.gz |
10 | 11 | |
11 | -BuildRequires: autoconf | |
12 | +BuildRequires: automake | |
12 | 13 | BuildRequires: fcgi-devel |
13 | 14 | Requires: spawn-fcgi |
14 | 15 | ... | ... |
src/pkg-rpm/gitlab-deps/gitlab-deps.spec
src/pkg-rpm/gitlab-shell/gitlab-shell.spec
src/pkg-rpm/gitlab/gitlab.spec
src/pkg-rpm/libev/libev.spec
... | ... | @@ -4,6 +4,7 @@ |
4 | 4 | Name: libev |
5 | 5 | Summary: High-performance event loop/event model with lots of features |
6 | 6 | Version: 4.15 |
7 | +Release: 5.1 | |
7 | 8 | License: BSD or GPLv2+ |
8 | 9 | URL: http://software.schmorp.de/pkg/libev.html |
9 | 10 | Source0: http://dist.schmorp.de/libev/Attic/%{name}-%{version}.tar.gz | ... | ... |
src/pkg-rpm/mailman-api/mailman-api.spec
1 | 1 | %define name mailman-api |
2 | -%define version 0.3c1 | |
3 | -%define unmangled_version 0.3c1 | |
4 | -%define release 10 | |
2 | +%define version 0.3rc2 | |
3 | +%define unmangled_version 0.3rc2 | |
5 | 4 | |
6 | 5 | Summary: REST API daemon to interact with Mailman 2 |
7 | 6 | Name: %{name} |
... | ... | @@ -15,8 +14,9 @@ BuildArch: noarch |
15 | 14 | Vendor: Sergio Oliveira <sergio@tracy.com.br> |
16 | 15 | Requires: mailman, python >= 2.7, python-paste >= 1.7.5.1, bottle >= 0.11.6 |
17 | 16 | Url: http://pypi.python.org/pypi/mailman-api/ |
18 | - | |
17 | +Release: 10 | |
19 | 18 | BuildRequires: python >= 2.7, python-devel >= 2.7, python-setuptools >= 0.9.8 |
19 | +BuildRequires: systemd-units | |
20 | 20 | |
21 | 21 | %description |
22 | 22 | mailman-api | ... | ... |
src/pkg-rpm/noosfero-deps/noosfero-deps.spec
src/pkg-rpm/noosfero-spb/noosfero-spb.spec
src/pkg-rpm/noosfero/noosfero.spec
src/pkg-rpm/redis/redis.spec
src/pkg-rpm/solr/solr.spec
src/pkg-rpm/spawn-fcgi/spawn-fcgi.spec