-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
299 lines (196 loc) · 9.27 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# -----------------------------------------------------------------------------
# description: General Python Makefile
# author: Daniel Kovacs <[email protected]>
# licence: MIT <https://opensource.org/licenses/MIT>
# version: 3.3
# supported: virtualenv, pytest
# -----------------------------------------------------------------------------
SHELL=/bin/bash
# -----------------------------------------------------------------------------
# package config
# -----------------------------------------------------------------------------
PACKAGE_HOME := .
PACAKGE_SOURCES := src
PACKAGE_TEST := test
PACKAGE_ENVIRONMENT_FILE := .environment
# -----------------------------------------------------------------------------
# build config
# -----------------------------------------------------------------------------
BUILD_DIST_DIR := $(PACKAGE_HOME)/dist
BUILD_TARGET := sdist
BUILD_ARGS :=
# -----------------------------------------------------------------------------
# python config
# -----------------------------------------------------------------------------
PYTHON_VERSION="python3"
# -----------------------------------------------------------------------------
# virtualenv config
# -----------------------------------------------------------------------------
VIRTUALENV_DIR := .virtualenv
# VIRTUALENV_HOME := $(PACKAGE_HOME)/$(VIRTUALENV_DIR)
VIRTUALENV_HOME := $(VIRTUALENV_DIR)
VIRTUALENV_ACTIVATE := $(VIRTUALENV_HOME)/bin/activate
# -----------------------------------------------------------------------
# define checkenv-start-validation
# -----------------------------------------------------------------------
define checkenv-start-validation
@echo "checking environment...."
@rm -f $(PACKAGE_ENVIRONMENT_FILE)
endef
# -----------------------------------------------------------------------
# define checkenv-command
# -----------------------------------------------------------------------
define checkenv-command
@printf "checking $(1)..." && (type $(1) >> $(PACKAGE_ENVIRONMENT_FILE) 2>&1 && echo "ok") || (echo "error: $(1) not found" >> $(PACKAGE_ENVIRONMENT_FILE) && echo "NOT FOUND" && true)
endef
# -----------------------------------------------------------------------
# define checkenv-validate
# -----------------------------------------------------------------------
define checkenv-validate
@(grep error $(PACKAGE_ENVIRONMENT_FILE) > /dev/null 2>&1 && rm -f $(PACKAGE_ENVIRONMENT_FILE) || true)
@( [ -f $(PACKAGE_ENVIRONMENT_FILE) ] || (echo "error: invalid environment configuration.\n\nPlease install the missing packages listed above.\n" && false) )
endef
# -----------------------------------------------------------------------
# target: _recheckenv
# -----------------------------------------------------------------------
_recheckenv::
@rm -f $(PACKAGE_ENVIRONMENT_FILE)
# -----------------------------------------------------------------------
# target: checkenv
# -----------------------------------------------------------------------
.PHONY: checkenv
checkenv:: _recheckenv $(PACKAGE_ENVIRONMENT_FILE)
# -----------------------------------------------------------------------
# target: $(PACKAGE_ENVIRONMENT_FILE)
# -----------------------------------------------------------------------
$(PACKAGE_ENVIRONMENT_FILE):: Makefile
$(call checkenv-start-validation)
$(call checkenv-command,git)
$(call checkenv-command,python)
$(call checkenv-command,pip)
$(call checkenv-command,virtualenv)
# # $(call checkenv-command,wget)
# # $(call checkenv-command,docker)
$(call checkenv-validate)
# -----------------------------------------------------------------------------
# clean
# -----------------------------------------------------------------------------
.PHONY:clean
clean::
rm -rf $(PACKAGE_ENVIRONMENT_FILE) $(VIRTUALENV_HOME) $(ASSETS_HOME) activate build dist .cache .eggs .tmp *.egg-info src/*.egg-info
find . -name "*.pyc" -exec rm -rf {} \; || true
find . -name "__pycache__" -exec rm -rf {} \; || true
# -----------------------------------------------------------------------------
# $(VIRTUALENV_HOME)
# -----------------------------------------------------------------------------
$(VIRTUALENV_HOME):: $(PACKAGE_ENVIRONMENT_FILE)
virtualenv --python $(PYTHON_VERSION) $@
ln -sf $(VIRTUALENV_ACTIVATE) activate
touch $@
# -----------------------------------------------------------------------------
# $(VIRTUALENV_HOME)/deps
# -----------------------------------------------------------------------------
$(VIRTUALENV_HOME)/deps:: requirements.txt $(VIRTUALENV_HOME)
source activate && pip install -r $<
source activate && pip install -e .
touch $@
# -----------------------------------------------------------------------------
# virtualenv
# -----------------------------------------------------------------------------
.PHONY: virtualenv
virtualenv: $(VIRTUALENV_HOME)
# -----------------------------------------------------------------------------
# deps
# -----------------------------------------------------------------------------
deps:: $(VIRTUALENV_HOME)/deps
# -----------------------------------------------------------------------------
# $(VIRTUALENV_HOME)/deps-%
# -----------------------------------------------------------------------------
$(VIRTUALENV_HOME)/deps-%:: requirements-%.txt $(VIRTUALENV_HOME)/deps
source activate && pip install -r $<
touch $@
# -----------------------------------------------------------------------------
# deps-test
# -----------------------------------------------------------------------------
deps-test:: $(VIRTUALENV_HOME)/deps-test
# -----------------------------------------------------------------------------
# deps-test
# -----------------------------------------------------------------------------
deps-build:: $(VIRTUALENV_HOME)/deps-build
# -----------------------------------------------------------------------
# target: test-modules
# -----------------------------------------------------------------------
.PHONY: test-modules
test-modules:: deps-test
source activate && pytest $(PACAKGE_SOURCES)/
# -----------------------------------------------------------------------
# target: test-e2e
# -----------------------------------------------------------------------
.PHONY: test-e2e
test-e2e:: deps-test
source activate && pytest test/
# -----------------------------------------------------------------------
# target: test
# -----------------------------------------------------------------------
.PHONY: test
test:: deps-test
source activate && pytest $(PACAKGE_SOURCES)/ $(PACKAGE_TEST)/
# -----------------------------------------------------------------------
# target: test-%
# -----------------------------------------------------------------------
test-%:: $(PACKAGE_TEST)/%_test.py deps deps-test
source activate && pytest $<
# -----------------------------------------------------------------------------
# shell
# -----------------------------------------------------------------------------
shell: deps
source activate && python -i shell.py
# -----------------------------------------------------------------------
# target: install
# -----------------------------------------------------------------------
install:: $(SOURCES)
./setup.py install
# -----------------------------------------------------------------------
# target: build
# -----------------------------------------------------------------------
dist:: $(SOURCES) deps deps-build
./setup.py $(BUILD_TARGET) $(BUILD_ARGS)
touch dist
# -----------------------------------------------------------------------
# target: build
# -----------------------------------------------------------------------
build:: dist
# -----------------------------------------------------------------------------
# setup
# -----------------------------------------------------------------------------
setup:: deps deps-test deps-build
# -----------------------------------------------------------------------------
# bump-%
# -----------------------------------------------------------------------------
bump-%:: deps-build
source activate && bumpversion --list --commit --tag $(subst bump-,,$@)
# -----------------------------------------------------------------------------
# release-minor
# -----------------------------------------------------------------------------
release-minor: test bump-minor build
# -----------------------------------------------------------------------------
# release-patch
# -----------------------------------------------------------------------------
release-patch: test bump-patch build
# -----------------------------------------------------------------------------
# release-major
# -----------------------------------------------------------------------------
release-major: test bump-major build
# -----------------------------------------------------------------------------
# release
# -----------------------------------------------------------------------------
release::release-minor
# -----------------------------------------------------------------------------
# release
# -----------------------------------------------------------------------------
publish:: dist
source activate && twine upload dist/*
# -----------------------------------------------------------------------
# include package specific targets (if there is any)
# -----------------------------------------------------------------------
-include package.mk