ID: 30e64a30cedf00719f207579f872f25d7c779288
41 lines
—
859B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/holgern/pyyawt.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/pyyawt
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.5:
export PYENV_VERSION=3.5
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
# This repo doesn't use tags for releases, therefore we checkout specific commits.
# The date is the commit's date.
2016-03-04-f4f64169: check_env_vars venv-3.5 repository
# Extract commit hash
commit_hash=$@
commit_hash=$${commit_hash:11}
source venv/bin/activate
cd repository
git checkout $${commit_hash}
pip install -r readthedocs-requirements.txt
pip install sphinx
pip install .
cd doc
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|