-
Notifications
You must be signed in to change notification settings - Fork 132
/
Makefile
140 lines (112 loc) · 6 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
VERSION=3.4.2
BUILD=1
PYTHON=$(shell which python2.7 || which python27 || which python2.6 || which python26 || which python)
PYTHON_VERSION=$(shell ${PYTHON} -c "from distutils.sysconfig import get_python_version; print(get_python_version())")
prefix=/usr/local
bindir=${prefix}/bin
libdir=${prefix}/lib
pydir=$(shell ${PYTHON} pydir.py ${libdir})
mandir=${prefix}/share/man
sysconfdir=${prefix}/etc
all: bin/blueprint-template blueprint/frontend/mustache.sh
bin/blueprint-template: bin/blueprint-template.mustache
pydir=$(pydir) mustache.sh/bin/mustache.sh <$< >$@
chmod 755 $@
blueprint/frontend/mustache.sh: mustache.sh/lib/mustache.sh
install -m644 $< $@
clean:
rm -f bin/blueprint-template blueprint/frontend/mustache.sh
rm -rf \
*.deb \
setup.py blueprint-$(VERSION) build dist *.egg *.egg-info \
man/man*/*.html
find . -name \*.pyc -delete
test:
nosetests --nocapture --with-coverage --cover-package=blueprint
install: install-bin install-lib install-man install-sysconf
install-bin:
install -d $(DESTDIR)$(bindir)
find bin -type f -printf %P\\n | while read PROGNAME \
; do \
{ \
head -n1 bin/$$PROGNAME | sed "s@#!/usr/bin/python@#!$(PYTHON)@"; \
tail -n+2 bin/$$PROGNAME; \
} >$(DESTDIR)$(bindir)/$$PROGNAME; \
chmod 755 $(DESTDIR)$(bindir)/$$PROGNAME; \
done
install-lib:
find blueprint -type d -printf %P\\0 | xargs -0r -I__ install -d $(DESTDIR)$(pydir)/blueprint/__
find blueprint -type f -name \*.py -printf %P\\0 | xargs -0r -I__ install -m644 blueprint/__ $(DESTDIR)$(pydir)/blueprint/__
install -m644 blueprint/frontend/cfn.json $(DESTDIR)$(pydir)/blueprint/frontend/
install -m644 blueprint/frontend/mustache.sh $(DESTDIR)$(pydir)/blueprint/frontend/
find blueprint/frontend/blueprint-template.d -type f -name \*.sh -printf %P\\0 | xargs -0r -I__ install -m644 blueprint/frontend/blueprint-template.d/__ $(DESTDIR)$(pydir)/blueprint/frontend/blueprint-template.d/__
PYTHONPATH=$(DESTDIR)$(pydir) $(PYTHON) -mcompileall $(DESTDIR)$(pydir)/blueprint
install-man:
find man -type d -printf %P\\0 | xargs -0r -I__ install -d $(DESTDIR)$(mandir)/__
find man -type f -name \*.[12345678] -printf %P\\0 | xargs -0r -I__ install -m644 man/__ $(DESTDIR)$(mandir)/__
find man -type f -name \*.[12345678] -printf %P\\0 | xargs -0r -I__ gzip -f $(DESTDIR)$(mandir)/__
install-sysconf:
find etc -type d -printf %P\\0 | xargs -0r -I__ install -d $(DESTDIR)$(sysconfdir)/__
find etc -type f -printf %P\\0 | xargs -0r -I__ install -m644 etc/__ $(DESTDIR)$(sysconfdir)/__
uninstall: uninstall-bin uninstall-lib uninstall-man uninstall-sysconf
uninstall-bin:
find bin -type f -printf %P\\0 | xargs -0r -I__ rm -f $(DESTDIR)$(bindir)/__
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(bindir) || true
uninstall-lib:
find blueprint -type f -name \*.py -printf %P\\0 | xargs -0r -I__ rm -f $(DESTDIR)$(pydir)/blueprint/__ $(DESTDIR)$(pydir)/blueprint/__c
rm -f $(DESTDIR)$(pydir)/blueprint/frontend/cfn.json
rm -f $(DESTDIR)$(pydir)/blueprint/frontend/mustache.sh
find blueprint/frontend/blueprint-template.d -type f -name \*.sh -printf %P\\0 | xargs -0r -I__ rm -f $(DESTDIR)$(pydir)/blueprint/frontend/blueprint-template.d/__
find blueprint -depth -mindepth 1 -type d -printf %P\\0 | xargs -0r -I__ rmdir $(DESTDIR)$(pydir)/blueprint/__ || true
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(pydir)/blueprint || true
uninstall-man:
find man -type f -name \*.[12345678] -printf %P\\0 | xargs -0r -I__ rm -f $(DESTDIR)$(mandir)/__.gz
find man -depth -mindepth 1 -type d -printf %P\\0 | xargs -0r -I__ rmdir $(DESTDIR)$(mandir)/__ || true
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(mandir) || true
uninstall-sysconf:
find etc -type f -printf %P\\0 | xargs -0r -I__ rm -f $(DESTDIR)$(sysconfdir)/__
find etc -depth -mindepth 1 -type d -printf %P\\0 | xargs -0r -I__ rmdir $(DESTDIR)$(sysconfdir)/__ || true
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(sysconfdir) || true
build:
sudo make build-deb
make build-pypi
build-deb:
make clean all install prefix=/usr sysconfdir=/etc DESTDIR=debian
FPM_EDITOR="echo 'Replaces: blueprint-io' >>" fpm -s dir -t deb -C debian \
-n blueprint -v $(VERSION)-$(BUILD)py$(PYTHON_VERSION) -a all \
-d git-core \
-d python$(PYTHON_VERSION) \
-m "Richard Crowley <[email protected]>" \
--url "https://github.com/devstructure/blueprint" \
--description "Reverse-engineer server configuration." \
--edit .
make uninstall prefix=/usr sysconfdir=/etc DESTDIR=debian
build-pypi:
VERSION=$(VERSION) mustache.sh/bin/mustache.sh <setup.py.mustache >setup.py
$(PYTHON) setup.py bdist_egg
deploy: deploy-deb deploy-pypi
deploy-deb:
scp blueprint_$(VERSION)-$(BUILD)py$(PYTHON_VERSION)_all.deb [email protected]:
make deploy-deb-$(PYTHON_VERSION)
ssh -t [email protected] rm blueprint_$(VERSION)-$(BUILD)py$(PYTHON_VERSION)_all.deb
deploy-deb-2.6:
ssh -t [email protected] freight add blueprint_$(VERSION)-$(BUILD)py$(PYTHON_VERSION)_all.deb apt/lenny apt/squeeze apt/lucid apt/maverick
ssh -t [email protected] freight cache apt/lenny apt/squeeze apt/lucid apt/maverick
deploy-deb-2.7:
ssh -t [email protected] freight add blueprint_$(VERSION)-$(BUILD)py$(PYTHON_VERSION)_all.deb apt/natty apt/oneiric apt/precise
ssh -t [email protected] freight cache apt/natty apt/oneiric apt/precise
deploy-pypi:
$(PYTHON) setup.py sdist upload
man:
find man -name \*.ronn | PATH="$(HOME)/work/ronn/bin:$(PATH)" RUBYLIB="$(HOME)/work/ronn/lib" xargs -n1 ronn --manual=Blueprint --organization=DevStructure --style=toc
gh-pages: man
mkdir -p gh-pages
find man -name \*.html | xargs -I__ mv __ gh-pages/
git checkout -q gh-pages
cp -R gh-pages/* ./
rm -rf gh-pages
git add .
git commit -m "Rebuilt manual."
git push origin gh-pages
git checkout -q master
.PHONY: all clean test install install-bin install-lib install-man install-sysconf uninstall uninstall-bin uninstall-lib uninstall-man uninstall-sysconf build build-deb build-pypi deploy deploy-deb deploy-deb-2.6 deploy-deb-2.7 deploy-pypi man gh-pages