forked from privacyidea/privacyidea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
178 lines (154 loc) · 7.28 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
177
178
info:
@echo "make clean - remove all automatically created files"
@echo "make epydoc - create the API documentation"
@echo "make doc-man - create the documentation as man-page"
@echo "make doc-html - create the documentation as html"
@echo "make pypi - upload package to pypi"
@echo "make debianzie - prepare the debian build environment in DEBUILD"
@echo "make builddeb - build .deb file locally on ubuntu 14.04LTS!"
@echo "make centos - build .rpm file to be used with CentOS 7"
@echo "make jessie - build .deb file for Debian Jessie"
@echo "make venvdeb - build .deb file, that contains the whole setup in a virtualenv."
@echo "make linitian - run lintian on debian package"
@echo "make translate - translate WebUI"
@echo " This is to be used with debian Wheezy"
@echo "make ppa-dev - upload to launchpad development repo"
#VERSION=1.3~dev5
SHORT_VERSION=2.13~dev0
#SHORT_VERSION=2.10~dev7
VERSION_JESSIE=${SHORT_VERSION}
VERSION=${SHORT_VERSION}
SERIES="trusty xenial"
LOCAL_SERIES=`lsb_release -a | grep Codename | cut -f2`
SRCDIRS=deploy authmodules migrations doc tests tools privacyidea
SRCFILES=setup.py MANIFEST.in Makefile Changelog LICENSE pi-manage requirements.txt
clean:
find . -name \*.pyc -exec rm {} \;
rm -fr build/
rm -fr dist/
rm -fr DEBUILD
rm -fr RHBUILD
rm -fr cover
rm -f .coverage
(cd doc; make clean)
setversion:
vim Makefile
vim setup.py
vim deploy/debian-ubuntu/changelog
vim deploy/debian-virtualenv/changelog
vim doc/conf.py
vim Changelog
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
@echo "Please set a tag like: git tag 3.17"
translate:
grunt nggettext_extract
(cd po; msgmerge de.po template.pot > tmp.po; mv tmp.po de.po)
(cd po; msgmerge it.po template.pot > tmp.po; mv tmp.po it.po)
poedit po/de.po
poedit po/it.po
grunt nggettext_compile
pypi:
make doc-man
python setup.py sdist upload
epydoc:
#pydoctor --add-package privacyidea --make-html
epydoc --html privacyidea -o API
depdoc:
#sfood privacyidea | sfood-graph | dot -Tpng -o graph.png
dot -Tpng dependencies.dot -o dependencies.png
doc-man:
(cd doc; make man)
(cd doc/installation/system/pimanage; make man)
doc-html:
(cd doc; make html)
centos:
make clean
mkdir RHBUILD
mkdir -p RHBUILD/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
# create tarball
mkdir -p RHBUILD/SOURCES/privacyidea-${VERSION}
rsync -a --exclude=".*" --exclude="privacyIDEA.egg-info" --exclude="RHBUILD" --exclude="debian" --exclude="dist" --exclude="build" \
--exclude="tests" . RHBUILD/SOURCES/privacyidea-${VERSION} || true
# We are using the same config file as in debia an replace it in setup.py
cp deploy/centos/pi.cfg RHBUILD/SOURCES/privacyidea-${VERSION}/deploy/centos/
# pack the modified source
(cd RHBUILD/SOURCES/; tar -zcf privacyidea-${VERSION}.tar.gz privacyidea-${VERSION})
rm -fr RHBUILD/SOURCES/privacyidea-${VERSION}
# copy spec file
cp deploy/centos/privacyidea.spec RHBUILD/SPECS
# build it
rpmbuild --define "_topdir $(CURDIR)/RHBUILD" -ba RHBUILD/SPECS/privacyidea.spec
debianize:
make clean
make doc-man
mkdir -p DEBUILD/privacyidea.org/debian
cp -r ${SRCDIRS} ${SRCFILES} DEBUILD/privacyidea.org || true
# We need to touch this, so that our config files
# are written to /etc
touch DEBUILD/privacyidea.org/PRIVACYIDEA_PACKAGE
cp LICENSE DEBUILD/privacyidea.org/debian/copyright
cp LICENSE DEBUILD/privacyidea.org/debian/python-privacyidea.copyright
cp LICENSE DEBUILD/privacyidea.org/debian/privacyidea-all.copyright
cp authmodules/FreeRADIUS/copyright DEBUILD/privacyidea.org/debian/privacyidea-radius.copyright
cp authmodules/simpleSAMLphp/LICENSE DEBUILD/privacyidea.org/debian/privacyidea-simplesamlphp.copyright
(cd DEBUILD; tar -zcf python-privacyidea_${SHORT_VERSION}.orig.tar.gz --exclude=privacyidea.org/debian privacyidea.org)
(cd DEBUILD; tar -zcf python-privacyidea_${VERSION}.orig.tar.gz --exclude=privacyidea.org/debian privacyidea.org)
(cd DEBUILD; tar -zcf python-privacyidea_${VERSION_JESSIE}.orig.tar.gz --exclude=privacyidea.org/debian privacyidea.org)
(cd DEBUILD; tar -zcf privacyidea-venv_${VERSION}.orig.tar.gz --exclude=privacyidea.org/debian privacyidea.org)
builddeb-nosign:
make debianize
cp -r deploy/debian-ubuntu/* DEBUILD/privacyidea.org/debian/
sed -e s/"trusty) trusty; urgency"/"$(LOCAL_SERIES)) $(LOCAL_SERIES); urgency"/g deploy/debian-ubuntu/changelog > DEBUILD/privacyidea.org/debian/changelog
(cd DEBUILD/privacyidea.org; debuild -b -i -us -uc)
builddeb:
make debianize
################## Renew the changelog
cp -r deploy/debian-ubuntu/* DEBUILD/privacyidea.org/debian/
sed -e s/"trusty) trusty; urgency"/"$(LOCAL_SERIES)) $(LOCAL_SERIES); urgency"/g deploy/debian-ubuntu/changelog > DEBUILD/privacyidea.org/debian/changelog
################# Build
(cd DEBUILD/privacyidea.org; debuild --no-lintian)
jessie:
make debianize
cp -r deploy/debian-jessie/* DEBUILD/privacyidea.org/debian/
(cd DEBUILD/privacyidea.org; debuild --no-lintian)
venvdeb:
make debianize
cp -r deploy/debian-virtualenv/* DEBUILD/privacyidea.org/debian/
sed -e s/"trusty) trusty; urgency"/"$(LOCAL_SERIES)) $(LOCAL_SERIES); urgency"/g deploy/debian-virtualenv/changelog > DEBUILD/privacyidea.org/debian/changelog
(cd DEBUILD/privacyidea.org; DH_VIRTUALENV_INSTALL_ROOT=/opt/privacyidea dpkg-buildpackage -us -uc)
lintian:
(cd DEBUILD; lintian -i -I --show-overrides python-privacyidea_2.*_amd64.changes)
ppa-dev:
################### Check for the series
@echo "You need to specify a parameter series like $(SERIES)"
echo $(SERIES) | grep $(series)
################## Renew the changelog
cp deploy/debian-ubuntu/changelog DEBUILD/privacyidea.org/debian/
sed -e s/"trusty) trusty; urgency"/"$(series)) $(series); urgency"/g deploy/debian-ubuntu/changelog > DEBUILD/privacyidea.org/debian/changelog
################# Build
(cd DEBUILD/privacyidea.org; debuild -sa -S)
################ Upload to launchpad:
dput ppa:privacyidea/privacyidea-dev DEBUILD/python-privacyidea_${VERSION}*_source.changes
ppa-dev-all:
make debianize
for series in $(SERIES); do \
cp deploy/debian-ubuntu/changelog DEBUILD/privacyidea.org/debian/ ; \
sed -e s/"trusty) trusty; urgency"/"$(LOCAL_SERIES)) $(LOCAL_SERIES); urgency"/g deploy/debian-ubuntu/changelog > DEBUILD/privacyidea.org/debian/changelog ; \
(cd DEBUILD/privacyidea.org; debuild) ; \
dput ppa:privacyidea/privacyidea-dev DEBUILD/python-privacyidea_${VERSION}*_source.changes; \
done
ppa:
cp deploy/debian-ubuntu/changelog DEBUILD/privacyidea.org/debian/
sed -e s/"trusty) trusty; urgency"/"$(series)) $(series); urgency"/g deploy/debian-ubuntu/changelog > DEBUILD/privacyidea.org/debian/changelog
################# Build
(cd DEBUILD/privacyidea.org; debuild -sa -S)
################ Upload to launchpad:
dput ppa:privacyidea/privacyidea DEBUILD/python-privacyidea_${VERSION}*_source.changes
ppa-all:
make debianize
for series in $(SERIES); do \
cp deploy/debian-ubuntu/changelog DEBUILD/privacyidea.org/debian/ ; \
sed -e s/"trusty) trusty; urgency"/"$(LOCAL_SERIES)) $(LOCAL_SERIES); urgency"/g deploy/debian-ubuntu/changelog > DEBUILD/privacyidea.org/debian/changelog ; \
(cd DEBUILD/privacyidea.org; debuild) ; \
dput ppa:privacyidea/privacyidea DEBUILD/python-privacyidea_${VERSION}-*_source.changes; \
done