-
Notifications
You must be signed in to change notification settings - Fork 77
/
Makefile.am
192 lines (164 loc) · 6.47 KB
/
Makefile.am
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#
# Project Wok
#
# Copyright IBM Corp, 2013-2017
#
# Code derived from Project Kimchi
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
SUBDIRS = src ui docs contrib po tests
man_MANS = docs/wokd.8
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = --install -I m4
EXTRA_DIST = \
config.rpath \
autogen.sh \
COPYING.ASL2 \
COPYING.LGPL \
CONTRIBUTE.md \
VERSION \
fedora-dev-deps.list \
fedora-runtime-deps.list \
opensuse-leap-dev-deps.list \
opensuse-leap-runtime-deps.list \
debian-dev-deps.list \
debian-runtime-deps.list \
ubuntu-dev-deps.list \
ubuntu-runtime-deps.list \
build-aux/pkg-version \
check_ui_code_errors.sh \
check_spec_errors.sh \
$(NULL)
PEP8_BLACKLIST = *src/wok/plugins,*src/wok/config.py,*src/wok/i18n.py,*tests/test_config.py
SKIP_PYFLAKES_ERR = "\./src/wok/websocket\.py"
OS_DISTRO=$(shell sed -n -e '/^ID=/p' /etc/os-release | sed 's/ID=//g; s|["'\'']||g')
I18N_FILES = src/wok/i18n.py $(NULL)
check-local:
PYTHONPATH=src contrib/check_i18n.py $(I18N_FILES)
@if [ -d '.git' ]; then \
find . -path './.git' -prune -o \
-name '*.py' -o -name '*.py.in' | \
xargs $(PYFLAKES) | \
while read LINE; do echo "$$LINE"; false; done \
else \
find . -name '*.py' -o -name '*.py.in' | \
xargs $(PYFLAKES) | \
while read LINE; do echo "$$LINE"; false; done \
fi
$(PEP8) --version
$(PEP8) --filename '*.py,*.py.in' --exclude="$(PEP8_BLACKLIST)" .
/bin/bash check_ui_code_errors.sh
@if $(GIT) rev-parse &> /dev/null ; then \
echo "Whitespace verification ..."; \
git grep --cached -Il '' | \
grep -v '^ui/css/src/vendor/\|^ui/libs/' | xargs egrep '.* +$$' \
&& echo "ERROR: Whitespaces found" || echo "Ok"; \
fi;
@if [ -f $(RPMLINT) ]; then \
./check_spec_errors.sh; \
fi;
# Link built mo files in the source tree to enable use of translations from
# within the source tree
all-local:
while read L && test -n "$$L"; do \
dir=mo/$$L/LC_MESSAGES ; \
$(MKDIR_P) $$dir ; \
ln -sf ../../../po/$$L.gmo $$dir/wok.mo ; \
done < po/LINGUAS
#
# Packaging helpers
#
install-deb: install
cp -R $(top_srcdir)/contrib/DEBIAN $(DESTDIR)/
@if test -d "$(systemdsystemunitdir)" ; then \
$(MKDIR_P) $(DESTDIR)/$(systemdsystemunitdir); \
cp -R contrib/wokd.service.systemd \
$(DESTDIR)/$(systemdsystemunitdir)/wokd.service; \
else \
$(MKDIR_P) $(DESTDIR)/etc/init; \
cp -R $(top_srcdir)/contrib/wokd-upstart.conf.debian \
$(DESTDIR)/etc/init/wokd.conf; \
fi
$(MKDIR_P) $(DESTDIR)/$(localstatedir)/lib/wok/
$(MKDIR_P) $(DESTDIR)/usr/lib/firewalld/services
cp -R $(top_srcdir)/src/firewalld.xml \
$(DESTDIR)/usr/lib/firewalld/services/wokd.xml
deb: contrib/make-deb.sh
$(top_srcdir)/contrib/make-deb.sh
wok.spec: contrib/wok.spec.fedora contrib/wok.spec.suse
@if [[ $(OS_DISTRO) == "fedora" ]]; then \
ln -sf contrib/wok.spec.fedora $@ ; \
elif [[ $(OS_DISTRO) == "opensuse-leap" ]]; then \
ln -sf contrib/wok.spec.suse $@ ; \
else \
echo "Unable to select a spec file for RPM build" ; \
/bin/false ; \
fi
rpm: dist wok.spec
$(MKDIR_P) rpm/BUILD rpm/RPMS rpm/SOURCES rpm/SPECS rpm/SRPMS
cp $(top_srcdir)/wok.spec rpm/SPECS/wok.spec
cp $(DIST_ARCHIVES) rpm/SOURCES
rpmbuild -ba --define "_topdir `pwd`/rpm" rpm/SPECS/wok.spec
fedora-rpm: dist contrib/wok.spec.fedora
ln -sf contrib/wok.spec.fedora wok.spec
$(MAKE) rpm
suse-rpm: dist contrib/wok.spec.suse
ln -sf contrib/wok.spec.suse wok.spec
$(MAKE) rpm
ChangeLog:
@if $(GIT) rev-parse &> /dev/null ; then \
$(top_srcdir)/build-aux/genChangelog --release > $@; \
fi
install-data-local:
@if test -d "$(systemdsystemunitdir)" ; then \
mkdir -p $(DESTDIR)/$(systemdsystemunitdir); \
$(INSTALL_DATA) contrib/wokd.service.systemd $(DESTDIR)/$(systemdsystemunitdir)/wokd.service; \
else \
mkdir -p $(DESTDIR)/etc/init.d/; \
$(INSTALL_DATA) contrib/wokd.sysvinit $(DESTDIR)/etc/init.d/wokd; \
chmod +x $(DESTDIR)/etc/init.d/wokd; \
fi; \
mkdir -p $(DESTDIR)/usr/lib/firewalld/services/;
$(INSTALL_DATA) src/firewalld.xml $(DESTDIR)/usr/lib/firewalld/services/wokd.xml;
mkdir -p $(DESTDIR)/$(localstatedir)/lib/wok/
mkdir -p $(DESTDIR)/$(localstatedir)/log/wok/
touch $(DESTDIR)/$(localstatedir)/log/wok/wok-access.log
touch $(DESTDIR)/$(localstatedir)/log/wok/wok-error.log
mkdir -p $(DESTDIR)/etc/logrotate.d/
$(INSTALL_DATA) $(top_srcdir)/src/wok.logrotate $(DESTDIR)/etc/logrotate.d/wokd
mkdir -p $(DESTDIR)/etc/nginx/conf.d
$(INSTALL_DATA) $(top_srcdir)/src/nginx/wok.conf $(DESTDIR)/etc/nginx/conf.d/wok.conf
uninstall-local:
@if test -f $(systemdsystemunitdir)/wokd.service; then \
$(RM) $(DESTDIR)/$(systemdsystemunitdir)/wokd.service; \
elif test -f /etc/init.d/wokd; then \
$(RM) $(DESTDIR)/etc/init.d/wokd; \
$(RM) $(DESTDIR)/etc/init/wok.conf; \
fi; \
$(RM) $(DESTDIR)/usr/lib/firewalld/services/wokd.xml
rmdir $(DESTDIR)/usr/lib/firewalld/services && rmdir $(DESTDIR)/usr/lib/firewalld || :
$(RM) -rf $(DESTDIR)/$(localstatedir)/lib/wok
$(RM) -rf $(DESTDIR)/$(localstatedir)/log/wok
$(RM) -rf $(DESTDIR)/etc/wok
$(RM) $(DESTDIR)/etc/nginx/conf.d/wok.conf
$(RM) $(DESTDIR)/etc/logrotate.d/wokd
VERSION:
@if $(GIT) rev-parse &> /dev/null ; then \
git describe --abbrev=0 --always > $@; \
fi
.PHONY: deb install-deb rpm fedora-rpm suse-rpm VERSION
clean-local:
rm -rf mo rpm
CLEANFILES = wok.spec `find "$(top_srcdir)" -type f -name "*.pyc" -print`