forked from uyuni-project/uyuni-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
276 lines (232 loc) · 9.05 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# Makefile for SUSE Manager/Uyuni Documentation
# Author: Joseph Cayouette, Pau Garcia Quiles
# Inspired/modified from Owncloud's documentation Makefile
SHELL = bash
# SUMA Productname and file replacement
PRODUCTNAME_SUMA ?= 'SUSE Manager'
FILENAME_SUMA ?= suse_manager
SUMA_CONTENT ?= true
# UYUNI Productname and file replacement
PRODUCTNAME_UYUNI ?= 'Uyuni'
FILENAME_UYUNI ?= uyuni
UYUNI_CONTENT ?= true
# PDF Resource Locations
PDF_FONTS_DIR ?= branding/pdf/fonts
PDF_THEME_DIR ?= branding/pdf/themes
# UYUNI PDF Themes
# Available Choices set variable
# uyuni-draft
# uyuni
PDF_THEME_UYUNI ?= uyuni
# UYUNI Chinese PDF Theme
PDF_THEME_UYUNI_CJK ?= uyuni-cjk
SUPPLEMENTAL_FILES_SUMA=$(shell grep supplemental_files site.yml | cut -d ':' -f 2 | sed "s, ,,g")/partials/header-content.hbs
SUPPLEMENTAL_FILES_UYUNI=$(shell grep supplemental_files site.yml | cut -d ':' -f 2 | sed "s, ,,g")/partials/header-content.hbs
#REVDATE ?= "$(shell date +'%B %d, %Y')"
CURDIR ?= .
# Build directories for TAR
HTML_BUILD_DIR := build
# Determine root directory
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(dir $(mkfile_path))
# Function definition
define validate-product
cd $(current_dir)/$(1)
NODE_PATH="$(npm -g root)" antora --generator @antora/xref-validator $(2)
endef
define enable-suma-in-antorayml
# $(call reset-html-language-selector-suma)
cd ./$(1) && \
sed -i "s/^ # *\(name: *suse-manager\)/\1/;\
s/^ # *\(title: *SUSE Manager\)/\1/;\
s/^ *\(title: *Uyuni\)/#\1/;\
s/^ *\(name: *uyuni\)/#\1/;" $(current_dir)/$(1)/antora.yml
cd $(current_dir)
endef
define antora-suma-function
cd $(current_dir)
$(call enable-suma-in-antorayml,$(1)) && \
cd ./$(1) && DOCSEARCH_ENABLED=true DOCSEARCH_ENGINE=lunr LANG=$(2) LC_ALL=$(2) LC_ALL=$(2) antora $(current_dir)/$(1)/suma-site.yml --generator antora-site-generator-lunr
endef
define enable-uyuni-in-antorayml
# $(call reset-html-language-selector-uyuni)
cd $(current_dir)/$(1) && \
sed -i "s/^ *\(name: *suse-manager\)/#\1/;\
s/^ *\(title: *SUSE Manager\)/#\1/;\
s/^ *# *\(title: *Uyuni\)/\1/;\
s/^ *# *\(name: *uyuni\)/\1/;" $(current_dir)/$(1)/antora.yml
endef
define antora-uyuni-function
cd $(current_dir)
$(call enable-uyuni-in-antorayml,$(1)) && \
cd $(current_dir)/$(1) && DOCSEARCH_ENABLED=true DOCSEARCH_ENGINE=lunr LANG=$(2) LC_ALL=$(2) LC_ALL=$(2) antora $(current_dir)/$(1)/uyuni-site.yml --generator antora-site-generator-lunr
endef
define clean-function
cd $(current_dir)
rm -rf build/$(2) #e.g. build/en
rm -rf $(1) #e.g. translations/en
find . -name "*pdf.$(2).adoc" -type f -exec rm -f {} \;
endef
# Enable HTML language selector
# Parameters
# $(1) language code, e. g. "en", "es", "zh_CN"
# $(2) filename with the flag, e. g. "espFlag". Without extension, .svg will be appended.
# $(3) name of the icon in the fonticon, e. g. "english", "spanish". Depends on the font.
# $(4) language name as the user will see it in the selector
# $(5) supplemental files directory (theme directory)
define enable-html-language-selector
cd $(current_dir)
sed -n -i 'p; s,<\!--\ LANGUAGESELECTOR\ -->,<a role=\"button\" class=\"navbar-item\" id=\"$(1)\" onclick="selectLanguage(this.id)"><img src="{{uiRootPath}}/img/$(2).svg" class="langIcon $(3)">\ $(4)</a>,p' translations/$(5)
endef
define enable-suma-html-language-selector
$(call enable-html-language-selector,$(1),$(2),$(3),$(4),$(SUPPLEMENTAL_FILES_SUMA))
endef
define enable-uyuni-html-language-selector
$(call enable-html-language-selector,$(1),$(2),$(3),$(4),$(SUPPLEMENTAL_FILES_UYUNI))
endef
# Create tar of PDF files
define pdf-tar-product
cd $(current_dir)/$(HTML_BUILD_DIR) && zip -r9 $(2).zip $(shell realpath --relative-to=`pwd`/$(HTML_BUILD_DIR) $(3)) && mv $(2).zip $(1)/ && cd $(current_dir)
endef
# Generate OBS tar files
define obs-packages-product
cd $(current_dir)
tar --exclude='$(2)' -czvf $(3).tar.gz -C $(current_dir) $(HTML_BUILD_DIR)/$(1) && tar -czvf $(4).tar.gz -C $(current_dir) $(HTML_BUILD_DIR)/$(2)
mkdir -p build/packages
mv $(3).tar.gz $(4).tar.gz build/packages
endef
# SUMA Book Builder
define pdf-book-create
cd $(current_dir)/$(1) && LANG=$(9) LC_ALL=$(9) LC_TYPE=$(9) asciidoctor-pdf \
-r $(current_dir)/extensions/xref-converter.rb \
-a lang=$(8) \
-a pdf-stylesdir=$(PDF_THEME_DIR)/ \
-a pdf-style=$(2) \
-a pdf-fontsdir=$(PDF_FONTS_DIR) \
-a productname=$(3) \
-a suma-content=$(4) \
-a examplesdir=modules/$(6)/examples \
-a imagesdir=modules/$(6)/assets/images \
-a revdate="$(shell LANG=$(9) LC_ALL=$(9) LC_TYPE=$(9) date +'$(10)')" \
$(11) \
--base-dir . \
--out-file $(7)/$(5)_$(6)_guide.pdf \
modules/$(6)/nav-$(6)-guide.pdf.$(8).adoc
endef
define pdf-book-create-uyuni
cd $(current_dir)/$(1) && LANG=$(9) LC_ALL=$(9) LC_TYPE=$(9) asciidoctor-pdf \
-r $(current_dir)/extensions/xref-converter.rb \
-a lang=$(8) \
-a pdf-stylesdir=$(PDF_THEME_DIR)/ \
-a pdf-style=$(2) \
-a pdf-fontsdir=$(PDF_FONTS_DIR) \
-a productname=$(3) \
-a uyuni-content=$(4) \
-a examplesdir=modules/$(6)/examples \
-a imagesdir=modules/$(6)/assets/images \
-a revdate="$(shell LANG=$(9) LC_ALL=$(9) LC_TYPE=$(9) date +'$(10)')" \
$(11) \
--base-dir . \
--out-file $(7)/$(5)_$(6)_guide.pdf \
modules/$(6)/nav-$(6)-guide.pdf.$(8).adoc
endef
define clean-branding
cd $(current_dir)
rm -rf $(current_dir)/translations/$(1)/branding
endef
define copy-branding
cd $(current_dir)
mkdir -p $(current_dir)/translations/$(1)
cp -a $(current_dir)/branding $(current_dir)/translations/$(1)/
endef
# Create an Index
define pdf-book-create-index
cd $(current_dir)
sed -E -e 's/\*\*\*\*\*\ xref\:(.*)\.adoc\[(.*)\]/include\:\:modules\/$(2)\/pages\/\1\.adoc\[leveloffset\=\+4\]/' \
-e 's/\*\*\*\*\ xref\:(.*)\.adoc\[(.*)\]/include\:\:modules\/$(2)\/pages\/\1\.adoc\[leveloffset\=\+3\]/' \
-e 's/\*\*\*\ xref\:(.*)\.adoc\[(.*)\]/include\:\:modules\/$(2)\/pages\/\1\.adoc\[leveloffset\=\+2\]/' \
-e 's/\*\*\ xref\:(.*)\.adoc\[(.*)\]/include\:\:modules\/$(2)\/pages\/\1\.adoc\[leveloffset\=\+1\]/' \
-e 's/\*\ xref\:(.*)\.adoc\[(.*)\]/include\:\:modules\/$(2)\/pages\/\1\.adoc\[leveloffset\=\+0\]/' \
-e 's/\*\*\*\*\ (.*)/==== \1/' \
-e 's/\*\*\*\ (.*)/=== \1/' \
-e 's/\*\*\ (.*)/== \1/' \
-e 's/\*\ (.*)/= \1/' \
$(1)/modules/$(2)/nav-$(2)-guide.adoc > $(1)/modules/$(2)/nav-$(2)-guide.pdf.$(3).adoc
endef
# Help Menu
PHONY: help
help: ## Prints a basic help menu about available targets
@IFS=$$'\n' ; \
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \
printf "%-30s %s\n" "target" "help" ; \
printf "%-30s %s\n" "------" "----" ; \
for help_line in $${help_lines[@]}; do \
IFS=$$':' ; \
help_split=($$help_line) ; \
help_command=`echo $${help_split[0]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
help_info=`echo $${help_split[2]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
printf '\033[36m'; \
printf "%-30s %s" $$help_command ; \
printf '\033[0m'; \
printf "%s\n" $$help_info; \
done
.PHONY: configure-suma
configure-suma:
./configure suma
.PHONY: configure-uyuni
configure-uyuni:
./configure uyuni
.PHONY: pot
pot:
(cd $(current_dir)/l10n-weblate && ./update-cfg-files)
$(current_dir)/make_pot.sh
.PHONY: translations
translations:
$(current_dir)/use_po.sh
.PHONY: copy-branding
copy-branding:
cd $(current_dir)
mkdir -p $(current_dir)/translations
cp -a $(current_dir)/branding $(current_dir)/translations/
.PHONY: clean-branding
clean-branding:
rm -rf $(current_dir)/translations/*
.PHONY: clean
clean: clean-branding
rm -rf $(current_dir)/build/*
.PHONY: for-publication
for-publication:
touch $(current_dir)/for-publication
.PHONY: antora-suma-for-publication
antora-suma-for-publication: for-publication antora-suma
.PHONY: antora-uyuni-for-publication
antora-uyuni-for-publication: for-publication antora-uyuni
.PHONY: set-html-language-selector-suma
set-html-language-selector-suma:
cd $(current_dir)
$(call enable-suma-html-language-selector,zh_CN,china,china,中国人)
$(call enable-suma-html-language-selector,ja,jaFlag,japan,日本語)
$(call enable-suma-html-language-selector,ko,koFlag,korea,한국어)
.PHONY: set-html-language-selector-uyuni
set-html-language-selector-uyuni:
cd $(current_dir)
$(call enable-uyuni-html-language-selector,zh_CN,china,china,中国人)
$(call enable-uyuni-html-language-selector,ja,jaFlag,japan,日本語)
$(call enable-uyuni-html-language-selector,ko,koFlag,korea,한국어)
.PHONY: all-suma
all-suma: configure-suma obs-packages-suma
.PHONY: all-uyuni
all-uyuni: configure-uyuni obs-packages-uyuni
.PHONY: checkstyle
checkstyle:
cd $(current_dir)
find -name "*\.adoc" -type f | xargs -I {} ./enforcing_checkstyle --filename {} --ifeval
find -name "nav*\.adoc" -type f | xargs -I {} ./enforcing_checkstyle --filename {} --comment
.PHONY: checkstyle-autofix
checkstyle-autofix:
cd $(current_dir)
find -name "*\.adoc" -type f | xargs -I {} ./enforcing_checkstyle --filename {} --ifeval --fixmode
find -name "nav*\.adoc" -type f | xargs -I {} ./enforcing_checkstyle --filename {} --comment --fixmode
-include Makefile.section.functions
-include Makefile.lang
-include Makefile.lang.target