forked from komuw/sewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
97 lines (68 loc) · 2.92 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
# we may need something other than the system default here
# use $ PYTHON=python3 make ... for example
python = python
ifdef PYTHON
python = ${PYTHON}
endif
# invoke these using ${python} -m to avoid yet more xxxx3 naming issues
twine = ${python} -m twine
pip = ${python} -m pip
coverage = ${python} -m coverage
black = ${python} -m black
pylint = ${python} -m pylint
mypy = ${python} -m mypy
VERSION_STRING=$$(sed -n -e '/"version"/ s/.*version": *"\([^"]*\)".*/\1/p' <sewer/meta.json)
.PHONY: build
build: # build distribution artifacts
rm -rf build
rm -rf dist
rm -rf sewer.egg-info
${python} setup.py sdist
${python} setup.py bdist_wheel
uploadtest: build # build and upload to pypi-test
@${twine} upload dist/* -r testpypi
@${pip} install -U -i https://testpypi.python.org/pypi sewer
release2pypi: build upload2pypi release-tag # build & upload to pypi
@echo "${pip} install -U sewer"
.PHONY: upload2pypi release-tag
upload2pypi:
${twine} upload dist/*
release-tag:
@printf "\n creating git tag: $(VERSION_STRING) \n"
@printf "\n with commit message, see Changelong: https://github.com/komuw/sewer/blob/master/CHANGELOG.md \n" && git tag -a "$(VERSION_STRING)" -m "see Changelong: https://github.com/komuw/sewer/blob/master/CHANGELOG.md"
@printf "\n git push the tag::\n" && git push --all -u --follow-tags
# TESTS - target "test" runs the unit tests under coverage and reports both.
TDATA = tests/data
.PHONY: clean coverage format-check lint mypy
test: testdata coverage mypy lint format-check
testdata: rsatestkeys secptestkeys
-mkdir tests/tmp
coverage: clean
@printf "\n coverage erase::\n" && ${coverage} erase
@printf "\n coverage run::\n" && ${coverage} run
@printf "\n coverage report::\n" && ${coverage} report --show-missing --fail-under=85
clean:
find . -type f -name *.pyc -delete | echo
-rm -r tests/tmp
-mkdir tests/tmp
mypy:
${mypy} sewer/client.py sewer/cli.py
lint:
@printf "\n run pylint::\n" && ${pylint} --enable=E --disable=W,R,C --unsafe-load-any-extension=y ${LINTARGS} sewer/
format-check:
@printf "\n run black::\n" && ${black} --check .
rsatestkeys: ${TDATA}/rsa2048.pem ${TDATA}/rsa3072.pem ${TDATA}/rsa4096.pem
${TDATA}/rsa2048.pem:
openssl genpkey -out ${TDATA}/rsa2048.pem -algorithm RSA -pkeyopt rsa_keygen_bits:2048
${TDATA}/rsa3072.pem:
openssl genpkey -out ${TDATA}/rsa3072.pem -algorithm RSA -pkeyopt rsa_keygen_bits:3072
${TDATA}/rsa4096.pem:
openssl genpkey -out ${TDATA}/rsa4096.pem -algorithm RSA -pkeyopt rsa_keygen_bits:4096
secptestkeys: ${TDATA}/secp256r1.pem ${TDATA}/secp384r1.pem
${TDATA}/secp256r1.pem:
openssl genpkey -out ${TDATA}/secp256r1.pem -algorithm EC -pkeyopt ec_paramgen_curve:P-256
${TDATA}/secp384r1.pem:
openssl genpkey -out ${TDATA}/secp384r1.pem -algorithm EC -pkeyopt ec_paramgen_curve:P-384
# not actually useful with LE at this time
${TDATA}/secp521r1.pem:
openssl genpkey -out ${TDATA}/secp521r1.pem -algorithm EC -pkeyopt ec_paramgen_curve:P-521