2022-03-10 03:27:31 -05:00
|
|
|
|
# Builds PEP files to HTML using sphinx
|
2009-01-27 15:05:05 -05:00
|
|
|
|
|
2023-07-12 11:28:43 -04:00
|
|
|
|
# You can set these variables from the command line.
|
|
|
|
|
PYTHON = python3
|
|
|
|
|
VENVDIR = .venv
|
2024-08-04 11:31:04 -04:00
|
|
|
|
UV = uv
|
2023-11-03 03:24:48 -04:00
|
|
|
|
# synchronise with render.yml -> deploy step
|
|
|
|
|
BUILDDIR = build
|
2023-07-12 11:28:43 -04:00
|
|
|
|
SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build
|
|
|
|
|
BUILDER = html
|
2024-02-08 11:43:54 -05:00
|
|
|
|
JOBS = auto
|
2023-07-12 11:28:43 -04:00
|
|
|
|
SOURCES =
|
2024-08-04 11:31:04 -04:00
|
|
|
|
REQUIREMENTS = requirements.txt
|
2024-05-28 02:00:19 -04:00
|
|
|
|
SPHINXERRORHANDLING = --fail-on-warning --keep-going --warning-file sphinx-warnings.txt
|
2023-07-12 11:28:43 -04:00
|
|
|
|
|
2024-05-28 02:00:19 -04:00
|
|
|
|
ALLSPHINXOPTS = --builder $(BUILDER) \
|
|
|
|
|
--jobs $(JOBS) \
|
2023-11-03 03:24:48 -04:00
|
|
|
|
$(SPHINXOPTS) $(SPHINXERRORHANDLING) \
|
|
|
|
|
peps $(BUILDDIR) $(SOURCES)
|
2021-01-13 20:40:00 -05:00
|
|
|
|
|
2023-01-19 09:39:28 -05:00
|
|
|
|
## html to render PEPs to "pep-NNNN.html" files
|
|
|
|
|
.PHONY: html
|
|
|
|
|
html: venv
|
2023-07-12 11:28:43 -04:00
|
|
|
|
$(SPHINXBUILD) $(ALLSPHINXOPTS)
|
2000-09-06 21:29:32 -04:00
|
|
|
|
|
2023-02-03 14:34:17 -05:00
|
|
|
|
## htmlview to open the index page built by the html target in your browser
|
|
|
|
|
.PHONY: htmlview
|
|
|
|
|
htmlview: html
|
|
|
|
|
$(PYTHON) -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('build/index.html'))"
|
|
|
|
|
|
2024-05-28 01:47:37 -04:00
|
|
|
|
.PHONY: ensure-sphinx-autobuild
|
|
|
|
|
ensure-sphinx-autobuild: venv
|
2024-06-04 14:51:59 -04:00
|
|
|
|
$(call ensure_package,sphinx-autobuild)
|
2024-05-28 01:47:37 -04:00
|
|
|
|
|
2023-11-12 06:48:34 -05:00
|
|
|
|
## htmllive to rebuild and reload HTML files in your browser
|
|
|
|
|
.PHONY: htmllive
|
|
|
|
|
htmllive: SPHINXBUILD = $(VENVDIR)/bin/sphinx-autobuild
|
2024-05-28 02:00:19 -04:00
|
|
|
|
# Arbitrarily selected ephemeral port between 49152–65535
|
|
|
|
|
# to avoid conflicts with other processes:
|
|
|
|
|
htmllive: SPHINXERRORHANDLING = --re-ignore="/\.idea/|/venv/|/pep-0000.rst|/topic/" --open-browser --delay 0 --port 55302
|
2024-08-04 11:31:04 -04:00
|
|
|
|
htmllive: _ensure-sphinx-autobuild html
|
2023-11-12 06:48:34 -05:00
|
|
|
|
|
2023-01-19 09:39:28 -05:00
|
|
|
|
## dirhtml to render PEPs to "index.html" files within "pep-NNNN" directories
|
|
|
|
|
.PHONY: dirhtml
|
2023-07-12 11:28:43 -04:00
|
|
|
|
dirhtml: BUILDER = dirhtml
|
2023-11-03 03:24:48 -04:00
|
|
|
|
dirhtml: html
|
2016-06-23 18:57:01 -04:00
|
|
|
|
|
2023-11-03 03:24:48 -04:00
|
|
|
|
## linkcheck to check validity of links within PEP sources
|
|
|
|
|
.PHONY: linkcheck
|
2024-05-25 09:48:58 -04:00
|
|
|
|
linkcheck: BUILDER = linkcheck
|
|
|
|
|
linkcheck: html
|
2023-11-03 03:24:48 -04:00
|
|
|
|
|
2022-10-31 08:34:37 -04:00
|
|
|
|
## clean to remove the venv and build files
|
2022-10-22 03:43:53 -04:00
|
|
|
|
.PHONY: clean
|
2022-03-11 23:17:08 -05:00
|
|
|
|
clean: clean-venv
|
2022-07-10 16:41:05 -04:00
|
|
|
|
-rm -rf build topic
|
2000-11-06 10:30:47 -05:00
|
|
|
|
|
2022-10-31 08:34:37 -04:00
|
|
|
|
## clean-venv to remove the venv
|
2022-10-22 03:43:53 -04:00
|
|
|
|
.PHONY: clean-venv
|
2022-03-11 23:17:08 -05:00
|
|
|
|
clean-venv:
|
|
|
|
|
rm -rf $(VENVDIR)
|
2021-06-08 19:11:26 -04:00
|
|
|
|
|
2022-10-31 08:34:37 -04:00
|
|
|
|
## venv to create a venv with necessary tools
|
2022-10-22 03:43:53 -04:00
|
|
|
|
.PHONY: venv
|
2022-03-11 23:17:08 -05:00
|
|
|
|
venv:
|
|
|
|
|
@if [ -d $(VENVDIR) ] ; then \
|
|
|
|
|
echo "venv already exists."; \
|
|
|
|
|
echo "To recreate it, remove it first with \`make clean-venv'."; \
|
|
|
|
|
else \
|
2024-03-19 15:53:43 -04:00
|
|
|
|
echo "Creating venv in $(VENVDIR)"; \
|
2024-08-04 11:31:04 -04:00
|
|
|
|
if $(UV) --version >/dev/null 2>&1; then \
|
|
|
|
|
$(UV) venv $(VENVDIR); \
|
|
|
|
|
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS); \
|
2024-05-29 10:35:25 -04:00
|
|
|
|
else \
|
|
|
|
|
$(PYTHON) -m venv $(VENVDIR); \
|
|
|
|
|
$(VENVDIR)/bin/python3 -m pip install --upgrade pip; \
|
2024-08-04 11:31:04 -04:00
|
|
|
|
$(VENVDIR)/bin/python3 -m pip install -r $(REQUIREMENTS); \
|
2024-05-29 10:35:25 -04:00
|
|
|
|
fi; \
|
2022-03-11 23:17:08 -05:00
|
|
|
|
echo "The venv has been created in the $(VENVDIR) directory"; \
|
|
|
|
|
fi
|
|
|
|
|
|
2024-08-04 11:31:04 -04:00
|
|
|
|
.PHONY: _ensure-package
|
|
|
|
|
_ensure-package: venv
|
|
|
|
|
if $(UV) --version >/dev/null 2>&1; then \
|
|
|
|
|
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install $(PACKAGE); \
|
2024-05-29 10:35:25 -04:00
|
|
|
|
else \
|
2024-08-04 11:31:04 -04:00
|
|
|
|
$(VENVDIR)/bin/python3 -m pip install $(PACKAGE); \
|
2024-06-04 14:51:59 -04:00
|
|
|
|
fi
|
2024-08-04 11:31:04 -04:00
|
|
|
|
|
|
|
|
|
.PHONY: _ensure-pre-commit
|
|
|
|
|
_ensure-pre-commit:
|
|
|
|
|
make _ensure-package PACKAGE=pre-commit
|
|
|
|
|
|
|
|
|
|
.PHONY: _ensure-sphinx-autobuild
|
|
|
|
|
_ensure-sphinx-autobuild:
|
|
|
|
|
make _ensure-package PACKAGE=sphinx-autobuild
|
2024-05-29 10:35:25 -04:00
|
|
|
|
|
2022-10-31 08:34:37 -04:00
|
|
|
|
## lint to lint all the files
|
2022-10-22 03:43:53 -04:00
|
|
|
|
.PHONY: lint
|
2024-08-04 11:31:04 -04:00
|
|
|
|
lint: _ensure-pre-commit
|
2022-03-11 23:17:08 -05:00
|
|
|
|
$(VENVDIR)/bin/python3 -m pre_commit run --all-files
|
|
|
|
|
|
2022-10-31 08:34:37 -04:00
|
|
|
|
## test to test the Sphinx extensions for PEPs
|
2022-10-22 03:43:53 -04:00
|
|
|
|
.PHONY: test
|
2022-04-26 15:07:20 -04:00
|
|
|
|
test: venv
|
|
|
|
|
$(VENVDIR)/bin/python3 -bb -X dev -W error -m pytest
|
|
|
|
|
|
2022-10-31 08:34:37 -04:00
|
|
|
|
## spellcheck to check spelling
|
2022-10-22 03:43:53 -04:00
|
|
|
|
.PHONY: spellcheck
|
2024-06-04 14:51:59 -04:00
|
|
|
|
spellcheck: venv
|
|
|
|
|
$(call ensure_package,pre_commit)
|
2022-03-11 23:17:08 -05:00
|
|
|
|
$(VENVDIR)/bin/python3 -m pre_commit run --all-files --hook-stage manual codespell
|
2022-10-31 08:34:37 -04:00
|
|
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
|
help : Makefile
|
|
|
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
|
|
|
@sed -n 's/^##//p' $<
|