-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind-lang.sh
executable file
·332 lines (305 loc) · 8.25 KB
/
find-lang.sh
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#!/bin/sh
# find-lang - automagically generate list of language specific files
# for inclusion in an rpm spec file.
# This does assume that the *.mo files are under .../share/locale/...
# Run with no arguments gets a usage message.
# findlang is copyright (c) 1998 by W. L. Estes <[email protected]>
# Redistribution and use of this software are hereby permitted for any
# purpose as long as this notice and the above copyright notice remain
# in tact and are included with any redistribution of this file or any
# work based on this file.
# Changes:
#
# 2012-12-22 Elan Ruusamäe <[email protected]>
# * added --with-mate
# 2006-08-28 Elan Ruusamäe <[email protected]>
# * fixed --all-name which got broken with last change.
# 2006-08-09 Elan Ruusamäe <[email protected]>
# * huge performance boost for packages calling %find_lang multiple times (kde*i18n)
# 2001-01-08 Michał Kochanowicz <[email protected]>
# * --all-name support for KDE.
# 2000-11-28 Rafał Cygnarowski <[email protected]>
# * next simple rule for KDE
# 2000-11-12 Rafał Cygnarowski <[email protected]>
# * simple rules for KDE help files
# 2000-06-05 Michał Kochanowicz <[email protected]>
# * exact, not substring matching $NAME, i.e. find-lang top_dir NAME will
# no longer find /usr/share/locale/pl/LC_MESSAGES/<anything>NAME.mo.
# 2000-04-17 Arkadiusz Miśkiewicz <[email protected]>
# * exit 1 when no files found
# 1999-10-19 Artur Frysiak <[email protected]>
# * added support for GNOME help files
# * start support for KDE help files
PROG=${0##*/}
VERSION=1.42
usage () {
cat <<EOF
Usage: $PROG TOP_DIR PACKAGE_NAME [prefix]
where TOP_DIR is
the top of the tree containing the files to be processed--should be
\$RPM_BUILD_ROOT usually. TOP_DIR gets sed'd out of the output list.
PACKAGE_NAME is the %{name} of the package. This should also be
the basename of the .mo files. the output is written to
PACKAGE_NAME.lang unless \$3 is given in which case output is written
to \$3.
Additional options:
--with-gnome find GNOME help files
--with-mate find MATE help files
--with-kde find KDE help files
--with-omf find OMF files
--with-qm find QT .qm files
--with-django find translations in Django project
--with-dokuwiki find translations in dokuwiki plugins/templates
--all-name match all package/domain names
--without-mo skip *.mo locale files
-o NAME output will be saved to NAME
-a NAME output will be appended to NAME
EOF
exit 1
}
if [ -z "$1" ]; then
usage
elif [ $1 = / ]; then
echo >&2 "$PROG: expects non-/ argument for '$1'"
exit 1
elif [ ! -d $1 ]; then
echo >&2 "$PROG: $1: No such directory"
exit 1
else
TOP_DIR="${1%/}"
fi
shift
if [ -z "$1" ]; then
usage
else
NAME=$1
fi
shift
GNOME='#'
MATE='#'
KDE='#'
OMF='#'
QM='#'
DJANGO='#'
DOKUWIKI=false
MO=''
OUTPUT=$NAME.lang
ALL_NAME='#'
NO_ALL_NAME=''
APPEND=''
while test $# -gt 0; do
case "$1" in
--with-dokuwiki)
DOKUWIKI=true
echo >&2 "$PROG: Enabling with Dokuwiki"
shift
;;
--with-gnome)
GNOME=''
echo >&2 "$PROG: Enabling with GNOME"
shift
;;
--with-mate)
MATE=''
echo >&2 "$PROG: Enabling with MATE"
shift
;;
--with-kde)
echo >&2 "$PROG: Enabling with KDE"
KDE=''
shift
;;
--with-omf)
echo >&2 "$PROG: Enabling with OMF"
OMF=''
shift
;;
--with-qm)
echo >&2 "$PROG: Enabling with Qt QM"
QM=''
shift
;;
--with-django)
echo >&2 "$PROG: Enabling with Django"
DJANGO=''
shift
;;
--without-mo)
echo >&2 "$PROG: Disabling .mo files"
MO='#'
shift
;;
--all-name)
echo >&2 "$PROG: Enabling with all names"
ALL_NAME=''
NO_ALL_NAME='#'
shift
;;
-o)
shift
OUTPUT=$1
shift
;;
-a)
shift
OUTPUT=$1
APPEND='>'
shift
;;
*)
OUTPUT=$1
shift
;;
esac
done
if $DOKUWIKI; then
exec /usr/lib/rpm/dokuwiki-find-lang.sh "$TOP_DIR" "$NAME"
echo >&2 "$PROG: ERROR: Unable to execute dokuwiki-find-lang"
exit 2
fi
echo >&2 "$PROG/$VERSION: find-lang '$NAME' $APPEND> $OUTPUT"
MO_NAME=.$OUTPUT.tmp~
echo '%defattr(644,root,root,755)' > $MO_NAME
# .mo
if [ ! -f __find.files ] || [ "$TOP_DIR" -nt __find.files ]; then
find $TOP_DIR -xtype f -name '*.mo' | xargs -r file -L | \
sed -e '
/, 1 message/d
s/:.*//
s:'"$TOP_DIR"'::' > __find.files
else
echo >&2 "$PROG: Using cached __find.files"
fi
# .omf
if [ ! -f __omf.files ] || [ "$TOP_DIR" -nt __omf.files ]; then
find $TOP_DIR -type f -name '*.omf' | \
sed -e '
s:'"$TOP_DIR"'::' > __omf.files
else
echo >&2 "$PROG: Using cached __omf.files"
fi
# .qm
if [ ! -f __qm.files ] || [ "$TOP_DIR" -nt __qm.files ]; then
find $TOP_DIR -type f -name '*.qm' | \
sed -e '
s:'"$TOP_DIR"'::' > __qm.files
else
echo >&2 "$PROG: Using cached __qm.files"
fi
# .mo
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __find.files
else
cat __find.files
fi
) | sed '
'"$ALL_NAME$MO"'s:\(.*/share/locale/\)\([^/@]\+\)\(@quot\|@boldquot\)\?\(@[^/]*\)\?\(/.*\.mo$\):%lang(\2\4) \1\2\3\4\5:
'"$NO_ALL_NAME$MO"'s:\(.*/share/locale/\)\([^/@]\+\)\(@quot\|@boldquot\)\?\(@[^/]*\)\?\(/.*/'"$NAME"'\.mo$\):%lang(\2\4) \1\2\3\4\5:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
# .omf
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __omf.files
else
cat __omf.files
fi
) | sed '
'"$ALL_NAME$OMF"'s:\(.*/share/omf/[^/]\+/\)\(.*-\)\([^-]*\)\(\.omf\):%lang(\3) \1\2\3\4:
'"$NO_ALL_NAME$OMF"'s:\(.*/share/omf/'"$NAME"'/\)\(.*-\)\([^-]*\)\(\.omf\):%lang(\3) \1\2\3\4:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
# .qm
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __qm.files
else
cat __qm.files
fi
) | sed '
'"$NO_ALL_NAME$QM"'s:\(.*/'"$NAME"'_\([a-zA-Z]\{2,3\}\([_@].*\)\?\)\.qm$\):%lang(\2) \1:
'"$NO_ALL_NAME$QM"'s:\(.*/share/locale/\)\([^/@]\+\)\(@quot\|@boldquot\)\?\(@[^/]*\)\?\(/.*/'"$NAME"'\.qm$\):%lang(\2\4) \1\2\3\4\5:
'"$ALL_NAME$QM"'s:\(.*/[^/_]\+_\([a-zA-Z]\{2,3\}[_@].*\)\.qm$\):%lang(\2) \1:
'"$ALL_NAME$QM"'s:\(.*/[^/_]\+_\([a-zA-Z]\{2,3\}\)\.qm$\):%lang(\2) \1:
'"$ALL_NAME$QM"'s:^\([^%].*/[^/]\+_\([a-zA-Z]\{2,3\}[_@].*\)\.qm$\):%lang(\2) \1:
'"$ALL_NAME$QM"'s:^\([^%].*/[^/]\+_\([a-zA-Z]\{2,3\}\)\.qm$\):%lang(\2) \1:
s:^[^%].*::
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
if [ ! -f __find.dirs ] || [ "$TOP_DIR" -nt __find.dirs ]; then
find $TOP_DIR -mindepth 1 -type d | sed 's:'"$TOP_DIR"'::' > __find.dirs
else
echo >&2 "$PROG: Using cached __find.dirs"
fi
# gnome
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __find.dirs
else
cat __find.dirs
fi
) | sed '
'"$NO_ALL_NAME$GNOME"'s:\(.*/share/help/\)\([^/]\+\)\(/'"$NAME"'\)$:%lang(\2) \1\2\3:
'"$NO_ALL_NAME$GNOME"'s:\(.*/gnome/help/'"$NAME"'$\):%dir \1:
'"$NO_ALL_NAME$GNOME"'s:\(.*/gnome/help/'"$NAME"'/\)\([^/]\+\)$:%lang(\2) \1\2:
'"$ALL_NAME$GNOME"'s:\(.*/share/help/\)\([^/]\+\)\(/[^/]\+\)$:%lang(\2) \1\2\3:
'"$ALL_NAME$GNOME"'s:\(.*/gnome/help/[^/]\+$\):%dir \1:
'"$ALL_NAME$GNOME"'s:\(.*/gnome/help/[^/]\+/\)\([^/]\+\)$:%lang(\2) \1\2:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
# mate
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __find.dirs
else
cat __find.dirs
fi
) | sed '
'"$NO_ALL_NAME$MATE"'s:\(.*/share/help/\)\([^/]\+\)\(/'"$NAME"'\)$:%lang(\2) \1\2\3:
'"$NO_ALL_NAME$MATE"'s:\(.*/mate/help/'"$NAME"'$\):%dir \1:
'"$NO_ALL_NAME$MATE"'s:\(.*/mate/help/'"$NAME"'/\)\([^/]\+\)$:%lang(\2) \1\2:
'"$ALL_NAME$MATE"'s:\(.*/share/help/\)\([^/]\+\)\(/[^/]\+\)$:%lang(\2) \1\2\3:
'"$ALL_NAME$MATE"'s:\(.*/mate/help/[^/]\+$\):%dir \1:
'"$ALL_NAME$MATE"'s:\(.*/mate/help/[^/]\+/\)\([^/]\+\)$:%lang(\2) \1\2:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
# kde
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __find.dirs
else
cat __find.dirs
fi
) | sed '
'"$NO_ALL_NAME$KDE"'s:\(.*/doc/kde/HTML/\)\([^/]\+\)\(/'"$NAME"'\)$:%lang(\2) \1\2\3:
'"$ALL_NAME$KDE"'s:\(.*/doc/kde/HTML/\)\([^/]\+\)\(/[^/]\+\)$:%lang(\2) \1\2\3:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
# OMF
(
if [ "$ALL_NAME" ]; then
grep -F $NAME __find.dirs
else
cat __find.dirs
fi
) | sed '
'"$NO_ALL_NAME$OMF"'s:\(.*/share/omf/'"$NAME"'$\):%dir \1:
'"$ALL_NAME$OMF"'s:\(.*/share/omf/[^/]\+$\):%dir \1:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
# Django
cat __find.dirs | sed -r -e '
'"$DJANGO"'s:(.+/share/python.+/locale/)([^/@]+)(@quot|@boldquot)?(@[^/]*)?$:%lang(\2\4) \1\2\3\4:
/^[^%]/d
s:%lang(C) ::' >> $MO_NAME
if [ "$(grep -Ev '(^%defattr|^$)' $MO_NAME | wc -l)" -le 0 ]; then
echo >&2 "$PROG: Error: international files not found for '$NAME'!"
exit 1
fi
if [ "$APPEND" ]; then
cat $MO_NAME >> $OUTPUT
rm -f $MO_NAME
else
mv -f $MO_NAME $OUTPUT
fi