blob: 44b25ce5e031460b5788533459d065fe3a927461 (
plain)
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
|
#-----------------------------------------------------------------------------
# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
#
# netaddr library build script
#
SHELL = /bin/bash
.PHONY = default clean dist doc download test
default:
@echo 'Please select a build target.'
clean:
@echo 'cleaning up temporary files'
rm -rf dist/
rm -rf build/
rm -rf docs/build/
rm -rf netaddr.egg-info/
find . -name '*.pyc' -exec rm -f {} ';'
find . -name '*.pyo' -exec rm -f {} ';'
dist: clean
@echo 'building netaddr release'
python setup.py develop
@echo 'building source distributions'
python setup.py sdist
@echo 'building wheel package'
pip install --upgrade pip
pip install wheel
python setup.py bdist_wheel --universal
doc:
@echo 'building documentation'
pip install sphinx
pip install -r docs/requirements.txt
python setup.py develop
cd docs/ && $(MAKE) -f Makefile clean html
cd docs/build/html && zip -r ../netaddr.zip *
download:
@echo 'downloading latest IEEE data'
cd netaddr/eui/ && wget http://standards-oui.ieee.org/oui/oui.txt -O oui.txt
cd netaddr/eui/ && wget http://standards-oui.ieee.org/iab/iab.txt -O iab.txt
@echo 'rebuilding IEEE data file indices'
python netaddr/eui/ieee.py
@echo 'downloading latest IANA data'
cd netaddr/ip/ && wget https://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.xml -O ipv4-address-space.xml
cd netaddr/ip/ && wget https://www.iana.org/assignments/ipv6-address-space/ipv6-address-space.xml -O ipv6-address-space.xml
cd netaddr/ip/ && wget https://www.iana.org/assignments/multicast-addresses/multicast-addresses.xml -O multicast-addresses.xml
cd netaddr/ip/ && wget https://www.iana.org/assignments/ipv6-unicast-address-assignments/ipv6-unicast-address-assignments.xml -O ipv6-unicast-address-assignments.xml
register:
@echo 'releasing netaddr'
python setup_egg.py register
push_tags:
@echo 'syncing tags'
git push --tags
ci: test_with_junitxml lint
lint: setup_check
setup_check:
python setup.py check
test: clean
@echo 'running test suite'
pip install -r requirements.txt
py.test netaddr/tests
test_with_junitxml: clean
@echo 'running test suite with JUnit XML output'
py.test -vv --junitxml=junit.xml
|