forked from roddhjav/pass-import
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
74 lines (63 loc) · 2.79 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
DESTDIR ?= /
all:
@python3 setup.py build
@echo "pass-import was built successfully. You can now install it wit \"make install\""
install:
@python3 setup.py install --root="${DESTDIR}" --optimize=1 --skip-build
@echo "pass-import is installed succesfully"
local:
@python3 setup.py install --user --optimize=1
@echo "pass-import is localy installed succesfully."
@echo "Remember to set PASSWORD_STORE_ENABLE_EXTENSIONS to 'true' for the extension to be enabled."
tests:
@python3 -m green -vvv --run-coverage --termcolor --processes $(shell nproc)
@coverage html
lint:
@prospector --profile .prospector.yaml --strictness veryhigh \
-t dodgy -t mccabe -t pydocstyle -t pycodestyle \
-t profile-validator -t pyflakes -t pyroma \
pass_import/
@prospector --profile .prospector.yaml --strictness veryhigh \
-t dodgy -t mccabe -t pydocstyle -t pycodestyle \
-t profile-validator -t pyflakes -t pyroma \
share/__init__.py setup.py
@prospector --profile tests/assets/prospector.yaml --strictness veryhigh \
-t dodgy -t mccabe -t mypy -t pydocstyle -t pycodestyle \
-t profile-validator -t pyflakes -t pyroma \
tests/
security:
@bandit --ini .bandit -r pass_import tests setup.py share
export PYTHONPATH = ./
docs:
@python3 share/__init__.py
GPGKEY ?= 06A26D531D56C42D66805049C5469996F0DF68EC
PKGNAME := pass-extension-import
BUILDIR := /home/build/$(PKGNAME)
debian:
@docker stop debian &> /dev/null || true
@docker run --rm -tid --name debian --volume ${PWD}:${BUILDIR} \
--volume ${HOME}/.gnupg:/home/build/.gnupg debian &> /dev/null || true
@docker exec debian useradd -m -s /bin/bash -u $(shell id -u) build || true
@docker exec debian chown -R build:build /home/build
@docker exec debian apt-get update
@docker exec debian apt-get -qq -y --no-install-recommends upgrade
@docker exec debian apt-get -qq -y --no-install-recommends install \
build-essential debhelper fakeroot dh-python python3-setuptools
@docker exec -it --user build --workdir=${BUILDIR} debian \
dpkg-buildpackage -b -d -us -ui --sign-key=$(GPGKEY)
@docker exec -it --user build debian bash -c 'mv ~/${PKGNAME}*.* ~/${PKGNAME}'
@docker exec -it --user build debian bash -c 'mv ~/pass-import*.* ~/${PKGNAME}'
pip:
@python setup.py sdist bdist_wheel
@twine check dist/*
@gpg --detach-sign -a dist/*
@twine upload --sign --identity ${GPGKEY} dist/*
clean:
@rm -rf .coverage .mypy_cache .pybuild .ropeproject build config.json \
debian/.debhelper debian/debhelper* debian/pass-extension-import* \
debian/files *.deb *.buildinfo *.changes \
dist *.egg-info htmlcov pass_import/**/__pycache__/ */__pycache__/ \
__pycache__ session.baseline.sqlite session.sqlite \
tests/assets/gnupg/random_seed tests/assets/test-results/ \
tests/**/__pycache__/
.PHONY: install uninstall local tests lint security docs pip debian clean