forked from svinota/pyroute2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
176 lines (155 loc) · 4.75 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# Copyright (c) 2013-2016 Peter V. Saveliev
#
# This file is part of pyroute2 project.
#
# Pyroute2 is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Pyroute2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Pyroute2; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
# Pyroute version and release
#
version ?= 0.4
release := $(shell git describe | sed 's/-[^-]*$$//;s/-/.post/')
##
# Python-related configuration
#
python ?= python
nosetests ?= nosetests
flake8 ?= flake8
setuplib ?= distutils.core
epydoc ?= epydoc
civm ?= civm
##
# Python -W flags:
#
# ignore -- completely ignore
# default -- default action
# all -- print all warnings
# module -- print the first warning occurence for a module
# once -- print each warning only once
# error -- fail on any warning
#
# Would you like to know more? See man 1 python
#
wlevel ?= once
##
# Other options
#
# root -- install root (default: platform default)
# lib -- lib installation target (default: platform default)
# coverage -- whether to produce html coverage (default: false)
# pdb -- whether to run pdb on errors (default: false)
# module -- run only the specified test module (default: run all)
#
ifdef root
override root := "--root=${root}"
endif
ifdef lib
override lib := "--install-lib=${lib}"
endif
all:
@echo targets:
@echo
@echo \* clean -- clean all generated files
@echo \* docs -- generate project docs \(requires sphinx\)
@echo \* test -- run functional tests \(see README.make.md\)
@echo \* install -- install lib into the system
@echo \* develop -- run \"setup.py develop\" \(requires setuptools\)
@echo
clean: clean-version
@rm -rf dist build MANIFEST
@rm -f docs-build.log
@rm -f docs/general.rst
@rm -f docs/changelog.rst
@rm -f docs/makefile.rst
@rm -f docs/report.rst
@rm -rf docs/api
@rm -rf docs/html
@rm -rf docs/doctrees
@[ -z "${keep_coverage}" ] && rm -f tests/.coverage ||:
@rm -rf tests/htmlcov
@[ -z "${keep_coverage}" ] && rm -rf tests/cover ||:
@rm -rf tests/examples
@rm -rf tests/pyroute2
@rm -f tests/*xml
@rm -rf tests/ci/results/test-*
@rm -rf pyroute2.egg-info
@rm -f python-pyroute2.spec
@find pyroute2 -name "*pyc" -exec rm -f "{}" \;
@find pyroute2 -name "*pyo" -exec rm -f "{}" \;
setup.ini:
@awk 'BEGIN {print "[setup]\nversion=${version}\nrelease=${release}\nsetuplib=${setuplib}"}' >setup.ini
clean-version:
@rm -f setup.ini
force-version: clean-version update-version
update-version: setup.ini
docs: clean force-version
@cp README.md docs/general.rst
@sed -i '1{s/.*docs\//.. image:: /;s/\ ".*/\n\ \ \ \ :align: right/}' docs/general.rst
@cp README.make.md docs/makefile.rst
@cp README.report.md docs/report.rst
@cp CHANGELOG.md docs/changelog.rst
@export PYTHONPATH=`pwd`; make -C docs html >docs-build.log 2>&1; unset PYTHONPATH
epydoc: docs
${epydoc} -v \
--no-frames \
-o docs/api \
--html \
--graph all \
--fail-on-docstring-warning \
pyroute2/
check_parameters:
@if [ ! -z "${skip_tests}" ]; then \
echo "'skip_tests' is deprecated, use 'skip=...' instead"; false; fi
test: check_parameters dist
@export PYTHON=${python}; \
export NOSE=${nosetests}; \
export FLAKE8=${flake8}; \
export WLEVEL=${wlevel}; \
export SKIP_TESTS=${skip}; \
export PDB=${pdb}; \
export COVERAGE=${coverage}; \
export MODULE=${module}; \
cd tests; \
./run.sh general eventlet integration
test-ci:
@${civm} tests/ci
test-platform:
@${python} -c "\
import logging;\
logging.basicConfig();\
from pyroute2.config.test_platform import TestCapsRtnl;\
from pprint import pprint;\
pprint(TestCapsRtnl().collect())"
upload: clean force-version docs
${python} setup.py sdist upload
dist: clean force-version docs
@${python} setup.py sdist >/dev/null 2>&1
install: clean force-version
${python} setup.py install ${root} ${lib}
# in order to get it working, one should install pyroute2
# with setuplib=setuptools, otherwise the project files
# will be silently left not uninstalled
uninstall: clean
${python} -m pip uninstall pyroute2
develop: setuplib = "setuptools"
develop: clean force-version
${python} setup.py develop
# 8<--------------------------------------------------------------------
#
# Packages
#
rpm: force-version
cp packages/RedHat/python-pyroute2.spec .
${python} setup.py sdist
rpmbuild -ta dist/*tar.gz