forked from translate/translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
92 lines (78 loc) · 2.95 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
DOCS_DIR = docs
FORMATS=--formats=bztar
.PHONY: all build docs requirements help publish-pypi sort-imports
all: help
build: docs
python setup.py sdist ${FORMATS}
docs:
# Make sure that the submodule with docs theme is pulled and up-to-date.
git submodule update --init
# The following creates the HTML docs.
# NOTE: cd and make must be in the same line.
cd ${DOCS_DIR}; make SPHINXOPTS="-T -W -q -j 4" html ${TAIL}
docs-review: docs
python -mwebbrowser file://$(shell pwd)/${DOCS_DIR}/_build/html/index.html
publish-pypi:
python setup.py sdist ${FORMATS} upload
sort-imports:
isort -rc .
help:
@echo "Help"
@echo "----"
@echo
@echo " build - create sdist with required prep"
@echo " docs - build Sphinx docs"
@echo " docs-review - launch webbrowser to review docs"
@echo " requirements - (re)generate pinned and minimum requirements"
@echo " sort-imports - sort Python imports"
@echo " publish-pypi - publish on PyPI"
@echo " test - run unit test suite"
@echo " test-functional - run the functional test suite"
# Perform forced build using -W for the (.PHONY) requirements target
requirements:
$(MAKE) -W $(REQFILE) requirements/min-versions.txt requirements.txt
REQS=.reqs
REQFILE=requirements/recommended.txt
requirements.txt: $(REQFILE)
@set -e; \
case `pip --version` in \
"pip 0"*|"pip 1.[012]"*) \
virtualenv --no-site-packages --clear $(REQS); \
source $(REQS)/bin/activate; \
echo starting clean install of requirements from PyPI; \
pip install --use-mirrors -r $(REQFILE); \
: trap removes partial/empty target on failure; \
trap 'if [ "$$?" != 0 ]; then rm -f $@; fi' 0; \
pip freeze | grep -v '^wsgiref==' | sort > $@ ;; \
*) \
: only pip 1.3.1+ processes --download recursively; \
rm -rf $(REQS); mkdir $(REQS); \
echo starting download of requirements from PyPI; \
pip install --download $(REQS) -r $(REQFILE); \
: trap removes partial/empty target on failure; \
trap 'if [ "$$?" != 0 ]; then rm -f $@; fi' 0; \
(cd $(REQS) && ls *.tar* | \
sed -e 's/-\([0-9]\)/==\1/' -e 's/\.tar.*$$//') > $@; \
esac;
requirements/min-versions.txt: requirements/*.txt
@if grep -q '>[0-9]' $^; then \
echo "Use '>=' not '>' for requirements"; exit 1; \
fi
@echo "creating $@"
@echo "# Automatically generated: DO NOT EDIT" > $@
@echo "# Regenerate using 'make requirements'" >> $@
@echo "# ====================================" >> $@
@echo "# Minimum Requirements" >> $@
@echo "# ====================================" >> $@
@echo "#" >> $@
@echo "# These are the minimum versions of dependencies that the developers" >> $@
@echo "# claim will work." >> $@
@echo "#" >> $@
@echo "# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" >> $@
@echo "#" >> $@
@echo >> $@
@cat $^ | sed -n '/=/{s/>=/==/;s/,<.*//;s/,!=.*//;p;};/^[-#]/d;/^$$/d;/=/d;p;' >> $@
test:
@py.test --boxed -r EfsxX
test-functional:
@tests/cli/run_tests.sh