-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
97 lines (64 loc) · 3.11 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# -*- Makefile -*-
-include $(buildTop)/share/dws/prefix.mk
srcDir ?= .
installTop ?= $(if $(VIRTUAL_ENV),$(VIRTUAL_ENV),$(abspath $(srcDir))/.venv)
binDir ?= $(installTop)/bin
libDir ?= $(installTop)/lib
CONFIG_DIR ?= $(installTop)/etc/testsite
RUN_DIR ?= $(installTop)/var/run
installDirs ?= install -d
installFiles ?= install -p -m 644
DOCKER ?= docker
PYTHON := python
PIP := pip
TWINE := twine
DB_NAME ?= $(RUN_DIR)/db.sqlite
$(info Path to python executable (i.e. PYTHON) while running make: $(shell which $(PYTHON)))
MANAGE := TESTSITE_SETTINGS_LOCATION=$(CONFIG_DIR) RUN_DIR=$(RUN_DIR) $(PYTHON) manage.py
# Django 1.7,1.8 sync tables without migrations by default while Django 1.9
# requires a --run-syncdb argument.
# Implementation Note: We have to wait for the config files to be installed
# before running the manage.py command (else missing SECRECT_KEY).
RUNSYNCDB = $(if $(findstring --run-syncdb,$(shell cd $(srcDir) && $(MANAGE) migrate --help 2>/dev/null)),--run-syncdb,)
install::
cd $(srcDir) && $(PIP) install .
install-conf:: $(DESTDIR)$(CONFIG_DIR)/credentials \
$(DESTDIR)$(CONFIG_DIR)/gunicorn.conf
dist::
$(PYTHON) -m build
$(TWINE) check dist/*
$(TWINE) upload dist/*
build-assets: vendor-assets-prerequisites
clean:: clean-dbs
[ ! -f $(srcDir)/package-lock.json ] || rm $(srcDir)/package-lock.json
find $(srcDir) -name '__pycache__' -exec rm -rf {} +
find $(srcDir) -name '*~' -exec rm -rf {} +
clean-dbs:
[ ! -f $(DB_NAME) ] || rm $(DB_NAME)
doc:
$(installDirs) build/docs
cd $(srcDir) && DJAODJIN_SECRET_KEY=`$(PYTHON) -c 'import sys ; from random import choice ; sys.stdout.write("".join([choice("abcdefghijklmnopqrstuvwxyz0123456789") for i in range(50)]))'` sphinx-build -b html ./docs $(PWD)/build/docs
initdb: clean-dbs
$(installDirs) $(dir $(DB_NAME))
cd $(srcDir) && $(MANAGE) migrate $(RUNSYNCDB) --noinput
# !!! Attention !!!
# You will need to run `make initdb` before running `package-docker` in order
# to create the dummy db.sqilte file to package.
package-docker: build-assets
cd $(srcDir) && $(DOCKER) build $(DOCKER_OPTS) .
vendor-assets-prerequisites:
$(DESTDIR)$(CONFIG_DIR)/credentials: $(srcDir)/testsite/etc/credentials
$(installDirs) $(dir $@)
@if [ ! -f $@ ] ; then \
sed \
-e "s,\%(SECRET_KEY)s,`$(PYTHON) -c 'import sys ; from random import choice ; sys.stdout.write("".join([choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^*-_=+") for i in range(50)]))'`," \
-e "s,\%(DJAODJIN_SECRET_KEY)s,`$(PYTHON) -c 'import sys ; from random import choice ; sys.stdout.write("".join([choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^*-_=+") for i in range(50)]))'`," \
$< > $@ ; \
else \
echo "warning: We are keeping $@ intact but $< contains updates that might affect behavior of the testsite." ; \
fi
$(DESTDIR)$(CONFIG_DIR)/gunicorn.conf: $(srcDir)/testsite/etc/gunicorn.conf
$(installDirs) $(dir $@)
[ -f $@ ] || sed -e 's,%(RUN_DIR)s,$(RUN_DIR),' $< > $@
-include $(buildTop)/share/dws/suffix.mk
.PHONY: all check dist doc install build-assets vendor-assets-prerequisites