forked from plone/plone.volto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
127 lines (100 loc) · 3.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
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
### Defensive settings for make:
# https://tech.davis-hansson.com/p/make/
SHELL:=bash
.ONESHELL:
.SHELLFLAGS:=-xeu -o pipefail -O inherit_errexit -c
.SILENT:
.DELETE_ON_ERROR:
MAKEFLAGS+=--warn-undefined-variables
MAKEFLAGS+=--no-builtin-rules
# We like colors
# From: https://coderwall.com/p/izxssa/colored-makefile-for-golang-projects
RED=`tput setaf 1`
GREEN=`tput setaf 2`
RESET=`tput sgr0`
YELLOW=`tput setaf 3`
PLONE5=5.2.10
PLONE6=6.0.6
CODE_QUALITY_VERSION=1.0.1
LINT=docker run --rm -v "$(PWD)":/github/workspace plone/code-quality:${CODE_QUALITY_VERSION} check
PACKAGE_NAME=plone.volto
PACKAGE_PATH=src/
CHECK_PATH=setup.py $(PACKAGE_PATH)
all: build
# Add the following 'help' target to your Makefile
# And add help text after each target name starting with '\#\#'
.PHONY: help
help: ## This help message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
bin/pip:
@echo "$(GREEN)==> Setup Virtual Env$(RESET)"
python3 -m venv .
bin/pip install -U pip wheel
bin/black bin/isort bin/pyroma bin/zpretty: bin/pip
@echo "$(GREEN)==> Install Code Quality tools$(RESET)"
bin/pip install -r https://raw.githubusercontent.com/plone/code-quality/v$(CODE_QUALITY_VERSION)/requirements.txt
@echo "$(GREEN)==> Install pre-commit hook$(RESET)"
echo -e '#!/usr/bin/env bash\nmake lint' > .git/hooks/pre-commit && chmod ug+x .git/hooks/pre-commit
bin/i18ndude: bin/pip
@echo "$(GREEN)==> Install i18ndude$(RESET)"
bin/pip install i18ndude
.PHONY: build-plone-5.2
build-plone-5.2: bin/pip bin/black ## Build Plone 5.2
@echo "$(GREEN)==> Build with Plone 5.2$(RESET)"
bin/pip install Plone plone.app.testing -c https://dist.plone.org/release/$(PLONE5)/constraints.txt
bin/pip install -e ".[test]"
bin/mkwsgiinstance -d . -u admin:admin
.PHONY: build-plone-6.0
build-plone-6.0: bin/pip bin/black ## Build Plone 6.0
@echo "$(GREEN)==> Build with Plone 6.0$(RESET)"
bin/pip install Plone plone.app.testing -c https://dist.plone.org/release/$(PLONE6)/constraints.txt
bin/pip install -e ".[test]"
bin/pip install zest.releaser[recommended] zestreleaser.towncrier
bin/mkwsgiinstance -d . -u admin:admin
.PHONY: build
build: build-plone-6.0 ## Build Plone 6.0
.PHONY: clean
clean: ## Remove old virtualenv and creates a new one
@echo "$(RED)==> Cleaning environment and build$(RESET)"
rm -rf bin lib lib64 include share etc var inituser pyvenv.cfg .installed.cfg
.PHONY: black
black: bin/black ## Format codebase
bin/black $(CHECK_PATH)
.PHONY: isort
isort: bin/isort ## Format imports in the codebase
bin/isort $(CHECK_PATH)
.PHONY: zpretty
zpretty: bin/zpretty ## Format xml and zcml with zpretty
find "${PACKAGE_PATH}" -name '*.xml' | xargs bin/zpretty -x -i
find "${PACKAGE_PATH}" -name '*.zcml' | xargs bin/zpretty -z -i
.PHONY: format
format: black isort zpretty ## Format the codebase according to our standards
.PHONY: i18n
i18n: bin/i18ndude ## update translations
./scripts/update_translations.sh
.PHONY: lint
lint: lint-isort lint-black lint-flake8 lint-zpretty ## check code style
.PHONY: lint-black
lint-black: ## validate black formating
$(LINT) black "$(CHECK_PATH)"
.PHONY: lint-flake8
lint-flake8: ## validate black formating
$(LINT) flake8 "$(CHECK_PATH)"
.PHONY: lint-isort
lint-isort: ## validate using isort
$(LINT) isort "$(CHECK_PATH)"
.PHONY: lint-pyroma
lint-pyroma: ## validate using pyroma
$(LINT) .
.PHONY: lint-zpretty
lint-zpretty: ## validate ZCML/XML using zpretty
$(LINT) zpretty "$(PACKAGE_PATH)"
.PHONY: test
test: ## run tests
PYTHONWARNINGS=ignore ./bin/zope-testrunner --auto-color --auto-progress --test-path $(PACKAGE_PATH)
.PHONY: start
start: ## Start a Plone instance on localhost:8080
PYTHONWARNINGS=ignore ./bin/runwsgi etc/zope.ini
.PHONY: release
release: ## Make a release
./bin/fullrelease