~~~~~~~~~~~~~~~~
- Initial effort
-*- coding: utf-8 -*-
:Project: hurm -- Release related targets
:Created: mar 16 feb 2016 09:48:15 CET
:Author: Lele Gaifax <lelemetapensiero.it>
:License: GNU General Public License version 3 or later
:Copyright: © 2016 Lele Gaifax
PYTHON ?= $(BINDIR)python
BUMPER := $(BINDIR)bump_version
VERSION_TXT := version.txt
VERSION = $(shell cat $(VERSION_TXT))
.PHONY: assert-clean-tree
assert-clean-tree:
(test -z "$(shell git status -s --untracked=no)" || \
(echo "UNCOMMITTED STAFF" && false))
.PHONY: assert-master-branch
assert-master-branch:
(test "$(shell git rev-parse --abbrev-ref HEAD)" = "master" || \
(echo "NOT IN MASTER BRANCH" && false))
.PHONY: release
release: assert-master-branch assert-clean-tree
$(BUMPER) $(VERSION_TXT)
echo ">>>"
echo ">>> Do your duties (update CHANGES.rst for example), then"
echo ">>> execute âmake tag-releaseâ."
echo ">>>"
.PHONY: tag-release
tag-release: assert-master-branch check-release-date check-long-description-markup
git commit -a -m "Release $(VERSION)"
git tag -a -m "Version $(VERSION)" v$(VERSION)
.PHONY: check-long-description-markup
check-long-description-markup:
$(PYTHON) setup.py check -r -s
.PHONY: check-release-date
check-release-date:
fgrep -q "$(VERSION) ($(shell date --iso-8601))" CHANGES.rst \
|| (echo "ERROR: release date of version $(VERSION) not set in CHANGES.rst"; exit 1)
.PHONY: pypi-upload
pypi-upload: assert-master-branch assert-clean-tree production
$(PYTHON) setup.py sdist upload
.PHONY: publish
publish: pypi-upload
git push
git push --tags