forked from mgedmin/profilehooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
96 lines (87 loc) · 3.15 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
PYTHON = python
FILE_WITH_METADATA = profilehooks.py
FILE_WITH_VERSION = setup.py
FILE_WITH_CHANGELOG = CHANGES.rst
.PHONY: default
default:
@echo "Nothing to build here"
.PHONY: test check
test check:
$(PYTHON) test_profilehooks.py
.PHONY: coverage
coverage:
coverage run --source=profilehooks test_profilehooks.py
coverage report
.PHONY: test-all-pythons
test-all-pythons:
# poor man's tox -- why not use the real thing instead?
set -e; \
for ver in 2.6 2.7 3.0 3.1 3.2 3.3; do \
if which python$$ver > /dev/null; then \
$(MAKE) test PYTHON=python$$ver; \
else \
echo "=================================="; \
echo "Skipping python$$ver, not available."; \
echo "=================================="; \
fi; \
done
.PHONY: preview-pypi-description
preview-pypi-description:
# pip install restview, if missing
restview -e "$(PYTHON) setup.py --long-description"
.PHONY: dist
dist:
$(PYTHON) setup.py sdist
.PHONY: distcheck
distcheck:
# Bit of a chicken-and-egg here, but if the tree is unclean, make
# distcheck will fail.
@test -z "`git status -s 2>&1`" || { echo; echo "Your working tree is not clean" 1>&2; git status; exit 1; }
make dist
pkg_and_version=`$(PYTHON) setup.py --name`-`$(PYTHON) setup.py --version` && \
rm -rf tmp && \
mkdir tmp && \
git archive --format=tar --prefix=tmp/tree/ HEAD | tar -xf - && \
cd tmp && \
tar xvzf ../dist/$$pkg_and_version.tar.gz && \
diff -ur $$pkg_and_version tree -x PKG-INFO -x setup.cfg -x '*.egg-info' && \
cd $$pkg_and_version && \
make dist check && \
cd .. && \
mkdir one two && \
cd one && \
tar xvzf ../../dist/$$pkg_and_version.tar.gz && \
cd ../two/ && \
tar xvzf ../$$pkg_and_version/dist/$$pkg_and_version.tar.gz && \
cd .. && \
diff -ur one two -x SOURCES.txt && \
cd .. && \
rm -rf tmp && \
echo "sdist seems to be ok"
.PHONY: releasechecklist
releasechecklist:
@ver_line='__version__ = "'`$(PYTHON) setup.py --version`'"' && \
grep -q "^$$ver_line$$" $(FILE_WITH_METADATA) || { \
echo "$(FILE_WITH_METADATA) doesn't specify $$ver_line"; exit 1; }
@date_line='__date__ = "'`date +%Y-%m-%d`'"' && \
grep -q "^$$date_line$$" $(FILE_WITH_METADATA) || { \
echo "$(FILE_WITH_METADATA) doesn't specify $$date_line"; exit 1; }
@$(PYTHON) setup.py --version | grep -qv dev || { \
echo "Please remove the 'dev' suffix from the version number in $(FILE_WITH_VERSION)"; exit 1; }
@$(PYTHON) setup.py --long-description | rst2html --exit-status=2 > /dev/null
@ver_and_date="`$(PYTHON) setup.py --version` (`date +%Y-%m-%d`)" && \
grep -q "^$$ver_and_date$$" $(FILE_WITH_CHANGELOG) || { \
echo "$(FILE_WITH_CHANGELOG) has no entry for $$ver_and_date"; exit 1; }
make distcheck
.PHONY: release
release: releasechecklist
# I'm chicken so I won't actually do these things yet
@echo "Please run"
@echo
@echo " $(PYTHON) setup.py sdist register upload && git tag `$(PYTHON) setup.py --version`"
@echo
@echo "Please increment the version number in $(FILE_WITH_VERSION)"
@echo "and add a new empty entry at the top of the changelog in $(FILE_WITH_CHANGELOG), then"
@echo
@echo ' git commit -a -m "Post-release version bump" && git push && git push --tags'
@echo