home » zplus/dokk.git
ID: 2e3de257ad3fc6a000bc84d8fefb80212d861eab
65 lines — 1K — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/aio-libs/aiohttp-remotes.git

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

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

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

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

repository:
	git clone ${REPOSITORY} repository

v1.1.0 v1.2.0: check_env_vars venv-3.10 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r requirements/dev.txt
	pip install "sphinx == 5"
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

v1.0.0: check_env_vars venv-3.8 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r requirements/dev.txt
	pip install "sphinx == 5"
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

v0.1.2: check_env_vars venv-3.6 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r requirements/dev.txt
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

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