-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
115 lines (96 loc) · 3.69 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
#!/usr/bin/env bash
.PHONY: all test clean
SHELL := /bin/bash
all:
$(MAKE) clean_build build
$(MAKE) clean_build openvim
$(MAKE) clean_build build_lite
$(MAKE) clean_build lite
openvim: package_openvim
lite: package_lib_openvim
clean: clean_build
rm -rf .build
clean_build:
rm -rf build
find osm_openvim -name '*.pyc' -delete
find osm_openvim -name '*.pyo' -delete
prepare_lite:
#pip install --user --upgrade setuptools
mkdir -p build
#VER1=$(shell git describe | sed -e 's/^v//' |cut -d- -f1); \
#VER2=$(shell git describe | cut -d- -f2); \
#VER3=$(shell git describe | cut -d- -f3); \
#echo "$$VER1.dev$$VER2+$$VER3" > build/OVIM_VERSION
cp tox.ini build/
cp MANIFEST.in build/
#sed -i "s/include OPENVIM_VERSION/include OVIM_VERSION/g" build/MANIFEST.in
sed -i "s/recursive-include osm_openvim/recursive-include lib_osm_openvim/g" build/MANIFEST.in
sed -i "s/include openflow/include openflow-lib/g" build/MANIFEST.in
sed -i '/include openvimd/d' build/MANIFEST.in
sed -i '/include openvim/d' build/MANIFEST.in
cp README_lite.rst build/README.rst
cp setup_lite.py build/setup.py
cp stdeb_lite.cfg build/stdeb.cfg
cp -r osm_openvim/ build/lib_osm_openvim
rm build/lib_osm_openvim/httpserver.py
rm build/lib_osm_openvim/openvimd.cfg
cp -r database_utils build/lib_osm_openvim/
cp -r scripts build/lib_osm_openvim/
cp openflow build/openflow-lib
sed -i "s/from osm_openvim/from lib_osm_openvim/g" build/openflow-lib
sed -i "s/import osm_openvim/import lib_osm_openvim/g" build/openflow-lib
sed -i "s/import osm_openvim; print osm_openvim\.__path__\[0\]/import lib_osm_openvim; print lib_osm_openvim\.__path__\[0\]/g" build/lib_osm_openvim/database_utils/migrate_vim_db.sh
sed -i "s/__import__(\"osm_openvim\.\"/__import__(\"lib_osm_openvim\.\"/g" build/lib_osm_openvim/ovim.py
prepare:
#pip install --user --upgrade setuptools
mkdir -p build
#VER1=$(shell git describe | sed -e 's/^v//' |cut -d- -f1); \
#VER2=$(shell git describe | cut -d- -f2); \
#VER3=$(shell git describe | cut -d- -f3); \
#echo "$$VER1.dev$$VER2+$$VER3" > build/OPENVIM_VERSION
cp tox.ini build/
cp MANIFEST.in build/
cp README.rst build/
cp setup.py build/
cp stdeb.cfg build/
cp -r osm_openvim/ build/
cp -r scripts build/osm_openvim/
cp -r database_utils build/osm_openvim/
cp -r templates build/osm_openvim/
cp -r test build/osm_openvim/
cp -r charm build/osm_openvim/
cp openflow build/
cp openvim build/
cp openvimd build/
build: prepare
python -m py_compile build/osm_openvim/*.py
#cd build && tox -e flake8
build_lite: prepare_lite
python -m py_compile build/lib_osm_openvim/*.py
#cd build && tox -e flake8
pip: build
cd build && ./setup.py sdist
pip_lite: build_lite
cd build && ./setup.py sdist
package_openvim: prepare
#apt-get install -y python-stdeb
cd build && python setup.py --command-packages=stdeb.command sdist_dsc --with-python2=True
cd build && cp osm_openvim/scripts/python-osm-openvim.postinst deb_dist/osm-openvim*/debian/
cd build/deb_dist/osm-openvim* && dpkg-buildpackage -rfakeroot -uc -us
mkdir -p .build
cp build/deb_dist/python-*.deb .build/
package_lib_openvim: prepare_lite
#apt-get install -y python-stdeb
#cd build && python setup.py --command-packages=stdeb.command sdist_dsc --with-python2=True
#cd build/deb_dist/lib-osm-openvim* && dpkg-buildpackage -rfakeroot -uc -us
cd build && python setup.py --command-packages=stdeb.command bdist_deb
mkdir -p .build
cp build/deb_dist/python-*.deb .build/
snap:
echo "Nothing to be done yet"
install: clean build
#cd build/dist; pip install --user osm_openvim*
cd build/dist; pip install osm_openvim*
install_lite: clean build_lite
#cd build/dist; pip install --user lib_osm_openvim-*
cd build/dist; pip install lib_osm_openvim-*