forked from cloudmesh/cloudmesh-pi-burn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
158 lines (129 loc) · 3.71 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
package=pi-burn
UNAME=$(shell uname)
VERSION=`head -1 VERSION`
define banner
@echo
@echo "###################################"
@echo $(1)
@echo "###################################"
endef
all: install
flake8:
cd ..; flake8 --max-line-length 124 --ignore=E722 cloudmesh-$(package)/cloudmesh
cd ..; flake8 --max-line-length 124 --ignore=E722 cloudmesh-$(package)/tests
install:
pip install -e .
readme:
cms markdown -p numbers ./README.md
cms man readme -p --toc
cms man readme -p --tag="MANUAL-BURN" --command=burn
cms man readme -p --tag="MANUAL-BRIDGE" --command=bridge
cms man readme -p --tag="MANUAL-HOST" --command=host
cms man readme -p --tag="MANUAL-PI" --command=pi
cms man readme -p --tag="MANUAL-SSH" --command=ssh
source:
cd ../cloudmesh.cmd5; make source
$(call banner, "Install cloudmesh-{package}")
pip install -e . -U
cms help
#requirements:
# echo "cloudmesh-cmd5" > tmp.txt
# echo "cloudmesh-sys" >> tmp.txt
# echo "cloudmesh-inventory" >> tmp.txt
# echo "cloudmesh-configuration" >> tmp.txt
# # pip-compile setup.py
# #fgrep -v "# via" requirements.txt | fgrep -v "cloudmesh" >> tmp.txt
# mv tmp.txt requirements.txt
# -git commit -m "update requirements" requirements.txt
# -git push
manual:
mkdir -p docs-source/source/manual
cms help > /tmp/commands.rst
echo "Commands" > docs-source/source/manual/commands.rst
echo "========" >> docs-source/source/manual/commands.rst
echo >> docs-source/source/manual/commands.rst
tail -n +4 /tmp/commands.rst >> docs-source/source/manual/commands.rst
cms man --kind=rst burn > docs-source/source/manual/admin.rst
cms man --kind=rst foo > docs-source/source/manual/banner.rst
doc:
rm -rf docs
mkdir -p dest
cd docs-source; make html
cp -r docs-source/build/html/ docs
view:
open docs/index.html
#
# TODO: BUG: This is broken
#
#pylint:
# mkdir -p docs/qc/pylint/cm
# pylint --output-format=html cloudmesh > docs/qc/pylint/cm/cloudmesh.html
# pylint --output-format=html cloud > docs/qc/pylint/cm/cloud.html
clean:
$(call banner, "CLEAN")
rm -rf dist
rm -rf *.zip
rm -rf *.egg-info
rm -rf *.eggs
rm -rf docs/build
rm -rf build
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
rm -rf .tox
rm -f *.whl
######################################################################
# PYPI
######################################################################
twine:
pip install -U twine
dist:
python setup.py sdist bdist_wheel
twine check dist/*
patch: clean
$(call banner, "bbuild")
bump2version --no-tag --allow-dirty patch
python setup.py sdist bdist_wheel
git push
# git push origin master --tags
twine check dist/*
twine upload --repository testpypi dist/*
# $(call banner, "install")
# sleep 10
# pip install --index-url https://test.pypi.org/simple/ cloudmesh-$(package) -U
#make
#git commit -m "update documentation" docs
#git push
minor: clean
$(call banner, "minor")
bump2version minor --allow-dirty
@cat VERSION
@echo
release: clean
$(call banner, "release")
-git tag "v$(VERSION)"
-git push origin master --tags
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --repository pypi dist/*
$(call banner, "install")
@cat VERSION
@echo
#sleep 10
#pip install -U cloudmesh-common
dev:
bump2version --new-version "$(VERSION)-dev0" part --allow-dirty
bump2version patch --allow-dirty
@cat VERSION
@echo
reset:
bump2version --new-version "4.0.0-dev0" part --allow-dirty
upload:
twine check dist/*
twine upload dist/*
pip:
pip install --index-url https://test.pypi.org/simple/ cloudmesh-$(package) -U
# --extra-index-url https://test.pypi.org/simple
log:
$(call banner, log)
gitchangelog | fgrep -v ":dev:" | fgrep -v ":new:" > ChangeLog
git commit -m "chg: dev: Update ChangeLog" ChangeLog
git push