-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
152 lines (115 loc) · 4.66 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
# Makefile for Python development & CI
# You need: black, flake8, pylint, mdl (installable via gem).
#
# The first part of the Makefile is related (and actually, auto-generated) to Pelican.
#
SHELL := /bin/bash
PY?=python3
PELICAN?=pelican
PELICANOPTS=
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/output
CONFFILE=$(BASEDIR)/pelicanconf.py
PUBLISHCONF=$(BASEDIR)/publishconf.py
GITHUB_PAGES_BRANCH=main
DEBUG ?= 0
ifeq ($(DEBUG), 1)
PELICANOPTS += -D
endif
RELATIVE ?= 0
ifeq ($(RELATIVE), 1)
PELICANOPTS += --relative-urls
endif
SERVER ?= "0.0.0.0"
PORT ?= 0
ifneq ($(PORT), 0)
PELICANOPTS += -p $(PORT)
endif
help:
@echo 'Makefile for a pelican Web site '
@echo ' '
@echo 'Usage: '
@echo ' make html (re)generate the web site '
@echo ' make clean remove the generated files '
@echo ' make regenerate regenerate files upon modification '
@echo ' make publish generate using production settings '
@echo ' make serve [PORT=8000] serve site at http://localhost:8000'
@echo ' make serve-global [SERVER=0.0.0.0] serve (as root) to $(SERVER):80 '
@echo ' make devserver [PORT=8000] serve and regenerate together '
@echo ' make devserver-global regenerate and serve on 0.0.0.0 '
@echo ' make github upload the web site via gh-pages '
@echo ' '
@echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html '
@echo 'Set the RELATIVE variable to 1 to enable relative urls '
@echo ' '
html:
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
clean:
[ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)"
regenerate:
"$(PELICAN)" -r "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
serve:
"$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
serve-global:
"$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS) -b $(SERVER)
devserver:
"$(PELICAN)" -lr "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
devserver-global:
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -b 0.0.0.0
publish:
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(PUBLISHCONF)" $(PELICANOPTS)
github: publish
ghp-import -m "Generate Pelican site" -b $(GITHUB_PAGES_BRANCH) "$(OUTPUTDIR)"
git push origin $(GITHUB_PAGES_BRANCH)
.PHONY: html help clean regenerate serve serve-global devserver publish github
#
# The second part of the Makefile is related to Python development/CI
#
test: lint unit-tests
venv-create:
[ -d $(BASEDIR)/.venv ] || python3 -m venv $(BASEDIR)/.venv
lint: black-ci flake8 pylint-shorter readme-lint
install:
@echo 'Going to install Python requirements'
pip install --upgrade pip
pip install -r requirements.txt
@echo ''
@echo 'Going to install Pelican-related dependencies'
[ -d themes/Flex ] || git clone https://github.com/alexandrevicenzi/Flex themes/Flex
[ -d pelican-plugins ] || git clone --recursive https://github.com/getpelican/pelican-plugins
@echo ''
@echo 'Going to load static content and custom settings into Pelican theme'
cp -r flex_modified/* themes/Flex/templates
black:
black --line-length 99 --exclude="pelican-plugins|themes|.venv" .
black-ci:
echo -e "\n# Diff for each file:"; \
black --line-length 99 --exclude="pelican-plugins|themes|.venv" --diff .; \
echo -e "\n# Status:"; \
black --line-length 99 --exclude="pelican-plugins|themes|.venv" --check .
flake8:
flake8 --extend-exclude .venv,build
PYLINT_FILES = `find . \
-path './docs' -prune -o \
-path './.venv' -prune -o \
-path './build' -prune -o \
-path './themes' -prune -o \
-path './pelican-plugins' -prune -o \
-name '*.py' -print`;
pylint:
python3 -m pylint $(PYLINT_FILES)
pylint-shorter:
python3 -m pylint --disable=bad-continuation --enable=useless-suppression $(PYLINT_FILES)
readme-lint:
mdl README.md
unit-tests:
echo "Unit tests are not implemented for this project"
# python3 -m pytest -rxXs --cov
clean-all: clean
find . -name '*.pyc' -delete
find . -name '*.pyo' -delete
find . -name '.pytest_cache' -type d | xargs rm -rf
find . -name '__pycache__' -type d | xargs rm -rf
find . -name '.coverage' -delete
find . -name '.ipynb_checkpoints' -type d | xargs rm -rf