ID: 80dfcc28639262605639b09e6789f80ae1796afb
46 lines
—
1K —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/aio-libs/aiomysql.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/aiomysql
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.10:
export PYENV_VERSION=3.10
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
v0.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 .
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
v0.1.1: check_env_vars venv-3.10 repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install -r requirements-dev.txt "sphinxcontrib-applehelp < 1.0.8" "sphinxcontrib-devhelp < 1.0.6" "sphinxcontrib-htmlhelp < 2.0.5" "sphinxcontrib-serializinghtml < 1.1.10" "sphinxcontrib-qthelp < 1.0.7"
pip install .
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|