forked from git-cola/git-cola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
317 lines (274 loc) · 8.24 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# The default target of this Makefile is...
.PHONY: all
all::
# Development
# -----------
# make V=1 # V=1 increases verbosity
# make develop # pip install --editable .
# make test [flags=...] # run tests; flags=-x fails fast, --ff failed first
# make test V=2 # run tests; V=2 increases test verbosity
# make doc # build docs
# make flake8 # python style checks
# make pylint [color=1] # run pylint; color=1 colorizes output
# make format # run the black python formatter
# make check [color=1] # run test, doc, flake8 and pylint
# make check file=<filename> # run checks on <filename>
#
# Release Prep
# ------------
# make pot # update main translation template
# make po # merge translations
# make i18n # make pot + make po
#
# Installation
# ------------
# make prefix=<path> install
# DESTDIR is also supported.
#
# The external commands used by this Makefile are...
BLACK = black
CP = cp
FIND = find
FLAKE8 = flake8
GREP = grep
GIT = git
MARKDOWN = markdown
MSGMERGE = msgmerge
MKDIR_P = mkdir -p
PIP = pip
PYTHON ?= python
PYTHON3 ?= python3
PYLINT = $(PYTHON) -B -m pylint
PYTEST = $(PYTHON) -B -m pytest
RM = rm -f
RM_R = rm -fr
RMDIR = rmdir
TAR = tar
TOX = tox
XARGS = xargs
XGETTEXT = xgettext
# Flags
# -----
ifdef V
VERBOSE = --verbose
ifeq ($(V),2)
TEST_VERBOSE = --verbose
VERBOSE_SHORT = -vv
else
VERBOSE_SHORT = -v
endif
else
QUIET = --quiet
endif
FLAKE8_FLAGS = $(VERBOSE)
PYTEST_FLAGS = $(QUIET) $(TEST_VERBOSE)
uname_S := $(shell uname -s)
ifneq ($(uname_S),Linux)
PYTEST_FLAGS += --ignore=cola/inotify.py
endif
TOX_FLAGS = $(VERBOSE_SHORT) --develop --skip-missing-interpreters
TOX_ENVS ?= py{36,37,38,39,310,311}
PYLINT_SCORE_FLAG := $(shell $(PYLINT) --score=no --help >/dev/null 2>&1 && echo " --score=no" || true)
PYLINT_FLAGS = --rcfile=.pylintrc
ifdef color
PYLINT_FLAGS += --output-format=colorized
endif
ifneq ($(PYLINT_SCORE_FLAGSCORE),)
PYLINT_FLAGS += $(PYLINT_SCORE_FLAG)
endif
# These values can be overridden on the command-line or via config.mak
prefix = $(HOME)
python_version := $(shell $(PYTHON) -c 'import sys; print("%s.%s" % sys.version_info[:2])')
python_lib = python$(python_version)/site-packages
pythondir = $(prefix)/lib/$(python_lib)
# DESTDIR =
cola_base := git-cola
cola_app_base= $(cola_base).app
cola_app = $(CURDIR)/$(cola_app_base)
cola_app_resources = $(cola_app)/Contents/Resources
# Read $(VERSION) from cola/_version.py and strip quotes.
include cola/_version.py
cola_version := $(subst ',,$(VERSION))
cola_dist := $(cola_base)-$(cola_version)
install_args =
ifdef DESTDIR
install_args += --root="$(DESTDIR)"
export DESTDIR
endif
install_args += --prefix="$(prefix)"
install_args += --disable-pip-version-check
export prefix
PYTHON_DIRS = cola
PYTHON_DIRS += test
ALL_PYTHON_DIRS = $(PYTHON_DIRS)
# User customizations
-include config.mak
all::
.PHONY: install
install:: all
$(PIP) $(QUIET) $(VERBOSE) install $(install_args) .
.PHONY: doc
doc::
$(MAKE) -C docs all
.PHONY: html
html::
$(MAKE) -C docs html
.PHONY: man
man::
$(MAKE) -C docs man
.PHONY: install-doc
install-doc::
$(MAKE) -C docs install
.PHONY: install-html
install-html::
$(MAKE) -C docs install-html
.PHONY: install-man
install-man::
$(MAKE) -C docs install-man
.PHONY: uninstall
uninstall::
$(RM) "$(DESTDIR)$(prefix)"/bin/cola
$(RM) "$(DESTDIR)$(prefix)"/bin/git-cola
$(RM) "$(DESTDIR)$(prefix)"/bin/git-cola-sequence-editor
$(RM) "$(DESTDIR)$(prefix)"/bin/git-dag
$(RM) "$(DESTDIR)$(prefix)"/share/applications/git-cola.desktop
$(RM) "$(DESTDIR)$(prefix)"/share/applications/git-cola-folder-handler.desktop
$(RM) "$(DESTDIR)$(prefix)"/share/applications/git-dag.desktop
$(RM) "$(DESTDIR)$(prefix)"/share/metainfo/git-dag.appdata.xml
$(RM) "$(DESTDIR)$(prefix)"/share/metainfo/git-cola.appdata.xml
$(RM) "$(DESTDIR)$(prefix)"/share/icons/hicolor/scalable/apps/git-cola.svg
$(RM_R) "$(DESTDIR)$(prefix)"/share/doc/git-cola
$(RM_R) "$(DESTDIR)$(pythondir)"/git_cola-*
$(RM_R) "$(DESTDIR)$(pythondir)"/cola
$(RMDIR) -p "$(DESTDIR)$(pythondir)" 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/applications 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/metainfo 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/doc 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/icons/hicolor/scalable/apps 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/icons/hicolor/scalable 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/icons/hicolor 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share/icons 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/share 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)"/bin 2>/dev/null || true
$(RMDIR) "$(DESTDIR)$(prefix)" 2>/dev/null || true
.PHONY: test
test::
$(PYTEST) $(PYTEST_FLAGS) $(flags) $(PYTHON_DIRS)
.PHONY: coverage
coverage::
$(PYTEST) $(PYTEST_FLAGS) --cov=cola $(flags) $(PYTHON_DIRS)
.PHONY: clean
clean::
$(FIND) $(ALL_PYTHON_DIRS) -name '*.py[cod]' -print0 | $(XARGS) -0 $(RM)
$(FIND) $(ALL_PYTHON_DIRS) -name __pycache__ -print0 | $(XARGS) -0 $(RM_R)
$(RM_R) build dist tags git-cola.app
$(MAKE) -C docs clean
# Update i18n files
.PHONY: i18n
i18n:: pot
i18n:: po
# Regenerate git-cola.pot with new translations
.PHONY: pot
pot::
$(XGETTEXT) \
--language=Python \
--keyword=N_ \
--no-wrap \
--omit-header \
--sort-output \
--output-dir cola/i18n \
--output git-cola.pot \
cola/*.py \
cola/*/*.py
# Update .po files with new translations from git-cola.pot
.PHONY: po
po::
for po in cola/i18n/*.po; \
do \
$(MSGMERGE) \
--no-wrap \
--no-fuzzy-matching \
--sort-output \
--output-file $$po.new \
$$po \
cola/i18n/git-cola.pot \
&& \
mv $$po.new $$po; \
\
done
# Build a git-cola.app bundle.
.PHONY: git-cola.app
git-cola.app::
cola_full_version := $(shell ./bin/git-cola version --brief)
git-cola.app::
$(MKDIR_P) $(cola_app)/Contents/MacOS
$(MKDIR_P) $(cola_app_resources)
$(PYTHON3) -m venv --copies $(cola_app_resources)
$(cola_app_resources)/bin/pip install --requirement requirements/requirements.txt
$(cola_app_resources)/bin/pip install --requirement requirements/requirements-optional.txt
$(cola_app_resources)/bin/pip install --requirement requirements/requirements-dev.txt
$(CP) contrib/darwin/Info.plist contrib/darwin/PkgInfo $(cola_app)/Contents
ifneq ($(cola_full_version),)
sed -i -e s/0.0.0.0/$(cola_full_version)/ $(cola_app)/Contents/Info.plist
endif
sed -i -e s/0.0.0/$(cola_version)/ $(cola_app)/Contents/Info.plist
$(CP) contrib/darwin/git-cola $(cola_app)/Contents/MacOS
$(CP) contrib/darwin/git-cola.icns $(cola_app)/Contents/Resources
$(MAKE) PIP=$(cola_app_resources)/bin/pip \
prefix=$(cola_app_resources) install
$(MAKE) SPHINXBUILD=$(cola_app_resources)/bin/sphinx-build \
prefix=$(cola_app_resources) install-doc
.PHONY: app-tarball
app-tarball:: git-cola.app
$(TAR) czf $(cola_dist).app.tar.gz $(cola_app_base)
# Preview the markdown using "make README.html"
%.html: %.md
$(MARKDOWN) $< >$@
.PHONY: flake8
flake8::
$(FLAKE8) --version
$(FLAKE8) $(FLAKE8_FLAGS) $(flags) \
$(ALL_PYTHON_DIRS) contrib
.PHONY: pylint
pylint::
$(PYLINT) --version
$(PYLINT) $(PYLINT_FLAGS) $(flags) \
$(ALL_PYTHON_DIRS)
# Pre-commit checks
.PHONY: check
ifdef file
check::
$(FLAKE8) $(FLAKE8_FLAGS) $(flags) $(file)
$(PYLINT) $(PYLINT_FLAGS) --output-format=colorized $(flags) $(file)
else
check:: all
check:: test
check:: doc
check:: flake8
check:: pylint
endif
.PHONY: format
format::
$(GIT) ls-files -- '*.py' | \
$(GREP) -v ^qtpy | \
$(XARGS) $(BLACK) --skip-string-normalization
# Run "make develop" from inside a newly created virtualenv to create an
# editable installation.
.PHONY: develop
develop::
$(PIP) install --editable .
.PHONY: requirements
requirements::
$(PIP) install --requirement requirements/requirements.txt
.PHONY: requirements-dev
requirements-dev::
$(PIP) install --requirement requirements/requirements-dev.txt
.PHONY: requirements-optional
requirements-optional::
$(PIP) install --requirement requirements/requirements-optional.txt
.PHONY: tox
tox::
$(TOX) $(TOX_FLAGS) --parallel auto -e "${TOX_ENVS}" $(flags)
.PHONY: tox-check
tox-check::
$(TOX) $(TOX_FLAGS) --parallel auto -e check $(flags)