This repository has been archived by the owner on Nov 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
271 lines (221 loc) · 10.1 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
# =============================================================================
# @file Makefile
# @brief Makefile for some steps in creating new releases on GitHub
# @date 2021-10-16
# @license Please see the file named LICENSE in the project directory
# @website https://github.com/mhucka/taupe
# =============================================================================
.ONESHELL: # Run all commands in the same shell.
.SHELLFLAGS += -e # Exit at the first error.
# This Makefile uses syntax that needs at least GNU Make version 3.82.
# The following test is based on the approach posted by Eldar Abusalimov to
# Stack Overflow in 2012 at https://stackoverflow.com/a/12231321/743730
ifeq ($(filter undefine,$(value .FEATURES)),)
$(error Unsupported version of Make. \
This Makefile does not work properly with GNU Make $(MAKE_VERSION); \
it needs GNU Make version 3.82 or later)
endif
# Before we go any further, test if certain programs are available.
# The following is based on the approach posted by Jonathan Ben-Avraham to
# Stack Overflow in 2014 at https://stackoverflow.com/a/25668869
programs_needed = awk curl gh git jq sed python3 pyinstaller pandoc inliner create-dmg
TEST := $(foreach p,$(programs_needed),\
$(if $(shell which $(p)),_,$(error Cannot find program "$(p)")))
# Set some basic variables. These are quick to set; we set additional
# variables using "set-vars" but only when the others are needed.
name := $(strip $(shell awk -F "=" '/^name/ {print $$2}' setup.cfg))
version := $(strip $(shell awk -F "=" '/^version/ {print $$2}' setup.cfg))
url := $(strip $(shell awk -F "=" '/^url/ {print $$2}' setup.cfg))
desc := $(strip $(shell awk -F "=" '/^description / {print $$2}' setup.cfg))
author := $(strip $(shell awk -F "=" '/^author / {print $$2}' setup.cfg))
email := $(strip $(shell awk -F "=" '/^author_email/ {print $$2}' setup.cfg))
license := $(strip $(shell awk -F "=" '/^license / {print $$2}' setup.cfg))
platform := $(strip $(shell python3 -c 'import sys; print(sys.platform)'))
os := $(subst $(platform),darwin,macos)
branch := $(shell git rev-parse --abbrev-ref HEAD)
initfile := $(name)/__init__.py
distdir := dist/$(os)
builddir := build/$(os)
# Print help if no command is given ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help:
@echo 'Available commands:'
@echo ''
@echo 'make'
@echo 'make help'
@echo ' Print this summary of available commands.'
@echo ''
@echo 'make report'
@echo ' Print variables set in this Makefile from various sources.'
@echo ' This is useful to verify the values that have been parsed.'
@echo ''
@echo 'make lint'
@echo ' Run Python linters like flake8.'
@echo ''
@echo 'make test'
@echo ' Run pytest.'
@echo ''
@echo 'make install'
@echo ' Install the project in dev mode.'
@echo ''
@echo 'make release'
@echo ' Do a release on GitHub. This will push changes to GitHub,'
@echo ' open an editor to let you edit release notes, and run'
@echo ' "gh release create" followed by "gh release upload".'
@echo ' Note: this will NOT upload to PyPI, nor create binaries.'
@echo ''
@echo 'make packages'
@echo ' Create the distribution files for PyPI.'
@echo ' Do this manually to check that everything looks okay before.'
@echo ' After doing this, do a "make test-pypi".'
@echo ''
@echo 'make test-pypi'
@echo ' Upload distribution to test.pypi.org.'
@echo ' Do this before doing "make pypi" for real.'
@echo ''
@echo 'make pypi'
@echo ' Upload distribution to pypi.org.'
@echo ''
@echo 'make clean'
@echo ' Clean up various files generated by this Makefile.'
@echo ''
@echo 'make really-clean'
@echo ' Like "make clean", but more so.'
@echo ''
@echo 'make completely-clean'
@echo ' The ultimate in cleaning.'
# Gather additional values we sometimes need ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# These variables take longer to compute, and for some actions like "make help"
# they are unnecessary and annoying to wait for.
.SILENT: vars
vars:
$(info Gathering data -- this takes a few moments ...)
$(eval repo := $(strip $(shell gh repo view | head -1 | cut -f2 -d':')))
$(eval api_url := https://api.github.com)
$(eval id := $(shell curl -s $(api_url)/repos/$(repo) | jq '.id'))
$(info Gathering data -- this takes a few moments ... Done.)
report: vars
@echo name = $(name)
@echo version = $(version)
@echo url = $(url)
@echo desc = $(desc)
@echo author = $(author)
@echo email = $(email)
@echo license = $(license)
@echo branch = $(branch)
@echo repo = $(repo)
@echo id = $(id)
@echo initfile = $(initfile)
@echo distdir = $(distdir)
@echo builddir = $(builddir)
# make lint & make test ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lint:
flake8 taupe
test tests:;
pytest -v --cov=taupe -l tests/
# make install ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
install:
python3 install -e .[dev]
# make release ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
release: | test-branch release-on-github print-instructions
test-branch:;
ifneq ($(branch),main)
$(error Current git branch != main. Merge changes into main first!)
endif
update-init:;
@sed -i .bak -e "s|^\(__version__ *=\).*|\1 '$(version)'|" $(initfile)
@sed -i .bak -e "s|^\(__description__ *=\).*|\1 '$(desc)'|" $(initfile)
@sed -i .bak -e "s|^\(__url__ *=\).*|\1 '$(url)'|" $(initfile)
@sed -i .bak -e "s|^\(__author__ *=\).*|\1 '$(author)'|" $(initfile)
@sed -i .bak -e "s|^\(__email__ *=\).*|\1 '$(email)'|" $(initfile)
@sed -i .bak -e "s|^\(__license__ *=\).*|\1 '$(license)'|" $(initfile)
update-meta:;
@sed -i .bak -e "/version/ s/[0-9].[0-9][0-9]*.[0-9][0-9]*/$(version)/" codemeta.json
update-citation:;
$(eval date := $(shell date "+%F"))
@sed -i .bak -e "/^date-released/ s/[0-9][0-9-]*/$(date)/" CITATION.cff
@sed -i .bak -e "/^version/ s/[0-9].[0-9][0-9]*.[0-9][0-9]*/$(version)/" CITATION.cff
edited := codemeta.json $(initfile) CITATION.cff
commit-updates:;
git add $(edited)
git diff-index --quiet HEAD $(edited) || \
git commit -m"Update stored version number" $(edited)
release-on-github: | vars update-init update-meta update-citation commit-updates
$(eval tmp_file := $(shell mktemp /tmp/release-notes-$(name).XXXX))
git push -v --all
git push -v --tags
@$(info ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓)
@$(info ┃ Write release notes in the file that gets opened in your ┃)
@$(info ┃ editor. Close the editor to complete the release process. ┃)
@$(info ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛)
sleep 2
$(EDITOR) $(tmp_file)
gh release create v$(version) -t "Release $(version)" -F $(tmp_file)
print-instructions: vars
@$(info ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓)
@$(info ┃ Next steps: ┃)
@$(info ┃ 1. Check https://github.com/$(repo)/releases )
@$(info ┃ 2. Wait a few seconds to let web services do their work ┃)
@$(info ┃ 3. Run "make packages" & check the results ┃)
@$(info ┃ 4. Run "make test-pypi" to push to test.pypi.org ┃)
@$(info ┃ 5. Check https://test.pypi.org/project/$(name) )
@$(info ┃ 6. Run "make pypi" to push to pypi for real ┃)
@$(info ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛)
packages: vars
-mkdir -p $(builddir) $(distdir)
python3 setup.py sdist --dist-dir $(distdir)
python3 setup.py bdist_wheel --dist-dir $(distdir)
python3 -m twine check $(distdir)/$(name)-$(version).tar.gz
# Note: for the next action to work, the repository "testpypi" needs to be
# defined in your ~/.pypirc file. Here is an example file:
#
# [distutils]
# index-servers =
# pypi
# testpypi
#
# [testpypi]
# repository = https://test.pypi.org/legacy/
# username = YourPyPIlogin
# password = YourPyPIpassword
#
# You could copy-paste the above to ~/.pypirc, substitute your user name and
# password, and things should work after that. See the following for more info:
# https://packaging.python.org/en/latest/specifications/pypirc/
test-pypi: packages
python3 -m twine upload --verbose --repository testpypi \
$(distdir)/$(name)-$(version)*.{whl,gz}
pypi: packages
python3 -m twine upload $(distdir)/$(name)-$(version)*.{gz,whl}
# Cleanup and miscellaneous directives ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
clean: clean-dist clean-build clean-release clean-other
@echo ✨ Cleaned! ✨
really-clean: clean really-clean-dist really-clean-build
completely-clean: really-clean clean-other
rm -rf build dist
clean-build:;
rm -rf $(builddir)/lib $(builddir)/bdist.*
clean-dist: vars
rm -fr $(distdir)/$(name) $(distdir)/$(name)-$(version)-py3-none-any.whl
really-clean-build: clean-build
rm -rf $(builddir)/*.*
really-clean-dist: clean-dist
rm -fr $(distdir)/*.*
clean-release:;
rm -rf $(name).egg-info codemeta.json.bak $(initfile).bak README.md.bak
clean-other:;
rm -fr __pycache__ $(name)/__pycache__ .eggs
rm -rf .cache
rm -rf .pytest_cache
.PHONY: release release-on-github update-init update-meta update-citation \
print-instructions packages clean test-pypi pypi extra-files dmg \
pyinstaller clean clean-dist clean-build clean-release clean-other \
really-clean really-clean-dist really-clean-build completely-clean
.PHONY: help vars report release test-branch \
update-init update-meta update-citation commit-updates \
release-on-github print-instructions update-doi \
packages test-pypi pypi clean really-clean completely-clean \
clean-dist really-clean-dist clean-build really-clean-build \
clean-release clean-other dmg pyinstaller extra-files
.SILENT: clean clean-dist clean-build clean-release clean-other really-clean \
really-clean-dist really-clean-build completely-clean