home » zplus/dokk.git
ID: 23d4974eb8e598070efdac755a1ce230de4d3bd9
44 lines — 858B — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/Pylons/pyramid_tm.git

check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pylons-pyramid_tm
else
	$(error OUTPUT_PATH is undefined)
endif

venv-3.10:
	export PYENV_VERSION=3.10
	python3 -m venv venv

venv-3.6:
	export PYENV_VERSION=3.6
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

2.5: check_env_vars venv-3.10 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install .[docs]
	cd docs
	mkdir --parents "${OUTPUT_PATH}"
	sphinx-build -b dirhtml . "${OUTPUT_PATH}/$@"

0.12 1.1.1: check_env_vars venv-3.6 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install .[docs]
	cd docs
	mkdir --parents "${OUTPUT_PATH}"
	sphinx-build -b dirhtml . "${OUTPUT_PATH}/$@"

.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR: