]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - adapter.awk
- handle egg infos in py_sitescriptdir
[packages/rpm-build-tools.git] / adapter.awk
CommitLineData
acf3b940 1#!/usr/bin/gawk -f
16397458 2#
b8f9e95a 3# Adapter adapts .spec files for PLD Linux.
73e1a9a3 4#
f3a8d634 5# Copyright (C) 1999-2007 PLD-Team <feedback@pld-linux.org>
73e1a9a3 6# Authors:
d3da6a6e 7# Michał Kuratczyk <kura@pld.org.pl>
b741d74d 8# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
d3da6a6e 9# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
fb9ab58f 10# Artur Frysiak <wiget@pld-linux.org>
2873c9d1 11# Michal Kochanowicz <mkochano@pld.org.pl>
f3a8d634 12# Jakub Bogusz <qboosh@pld-linux.org>
d3da6a6e 13# Elan Ruusamäe <glen@pld-linux.org>
d5f65bb3
ER
14#
15# See cvs log adapter{,.awk} for list of contributors
16#
73e1a9a3 17# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3b100864 18
3f6918f6 19# TODO
a73cc8a9 20# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
3f6918f6
ER
21# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
22# - add "-nc" option to skip CVS interaction
a3ca2c50
ER
23# - sort Summary(XX)
24# - sort Requires, BuildRequires
2e214691 25# - check if %description (lang=C) contains 8bit
a3ad3d2b 26# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
3f6918f6 27
16397458 28BEGIN {
b7ab5ec4 29 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
41c24376 30 SECTIONS = "^%(" RPM_SECTIONS ")"
37403736 31
b8f9e95a
ER
32 RCSID = "$Id$"
33 rev = RCSID # TODO: parse from RCSID
34 VERSION = "0.31/" rev
35
2f89c197 36 PREAMBLE_TAGS = "(R|BR|Summary|Name|Version|Release|Epoch|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|Pre[Rr]eq|(Build)?Requires|Suggests)"
7c43f31c 37
8271f9dc
PZ
38 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
39
a3c6bbce 40 preamble = 1 # Is it part of preamble? Default - yes
a3ad3d2b
ER
41 boc = 4 # Beginning of %changelog
42 bod = 0 # Beginning of %description
2b4c59bc 43 tw = 70 # Descriptions width
d2bcf054 44
a5e4249b 45 b_idx = 0 # index of BR/R arrays
42cd9911 46 BR_count = 0 # number of additional BuildRequires
a5e4249b 47
2f46ef70 48 # If variable removed, then 1 (for removing it from export)
49 removed["LDFLAGS"] = 0
50 removed["CFLAGS"] = 0
51 removed["CXXFLAGS"] = 0
308c7423 52
e0ab434c
ER
53 # get cvsaddress for changelog section
54 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
55 "rpm --eval '%{?_cvsmaildomain}%{!?_cvsmaildomain:@pld-linux.org}'" | getline _cvsmaildomain
bdd8892f 56 "rpm --eval '%{?_cvsmailfeedback}%{!?_cvsmailfeedback:PLD Team <feedback@pld-linux.org>}'" | getline _cvsmailfeedback
e0ab434c 57
337741dd 58 # If 1, we are inside of comment block (started with /^#%/)
59 comment_block = 0
d2bcf054 60
1a29fcfa 61 # File with rpm groups
a41708aa
SZ
62 "rpm --eval %_sourcedir" | getline groups_file
63 groups_file = groups_file "/rpm.groups"
03fbe002 64 system("cd `rpm --eval %_sourcedir`; [ -f rpm.groups ] || cvs up rpm.groups >/dev/null")
7df3947d 65 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
6b02d821 66
308c7423 67 # Temporary file for changelog section
68 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
69
6b02d821 70 # Load rpm macros
a9f3f77c 71 "rpm --eval %_prefix" | getline prefix
72 "rpm --eval %_bindir" | getline bindir
73 "rpm --eval %_sbindir" | getline sbindir
74 "rpm --eval %_libdir" | getline libdir
75 "rpm --eval %_sysconfdir" | getline sysconfdir
76 "rpm --eval %_datadir" | getline datadir
77 "rpm --eval %_includedir" | getline includedir
78 "rpm --eval %_mandir" | getline mandir
79 "rpm --eval %_infodir" | getline infodir
33957389 80 "rpm --eval %_examplesdir" | getline examplesdir
99b02f64 81 "rpm --eval %_defaultdocdir" | getline docdir
e5c731ae 82 "rpm --eval %_kdedocdir" | getline kdedocdir
3d5e7b27 83 "rpm --eval %_gtkdocdir" | getline gtkdocdir
9086b883
ER
84 "rpm --eval %_desktopdir" | getline desktopdir
85 "rpm --eval %_pixmapsdir" | getline pixmapsdir
5e624f99 86 "rpm --eval %_javadir" | getline javadir
c9cb5723
ER
87
88 "rpm --eval %perl_sitearch" | getline perl_sitearch
89 "rpm --eval %perl_archlib" | getline perl_archlib
90 "rpm --eval %perl_privlib" | getline perl_privlib
c9cb5723
ER
91 "rpm --eval %perl_vendorlib" | getline perl_vendorlib
92 "rpm --eval %perl_vendorarch" | getline perl_vendorarch
93 "rpm --eval %perl_sitelib" | getline perl_sitelib
f9ae8d4e 94
e85cf573
ER
95 "rpm --eval %py_sitescriptdir 2>/dev/null" | getline py_sitescriptdir
96 "rpm --eval %py_sitedir 2>/dev/null" | getline py_sitedir
97 "rpm --eval %py_scriptdir 2>/dev/null" | getline py_scriptdir
a3296e40 98 "rpm --eval %py_ver 2>/dev/null" | getline py_ver
9f2514dd
ER
99
100 "rpm --eval %ruby_archdir" | getline ruby_archdir
101 "rpm --eval %ruby_ridir" | getline ruby_ridir
102 "rpm --eval %ruby_rubylibdir" | getline ruby_rubylibdir
103 "rpm --eval %ruby_sitearchdir" | getline ruby_sitearchdir
104 "rpm --eval %ruby_sitelibdir" | getline ruby_sitelibdir
105
f175a699 106 "rpm --eval %php_pear_dir" | getline php_pear_dir
6d542d59 107 "rpm --eval %php_data_dir" | getline php_data_dir
ab73bfb4 108 "rpm --eval %tmpdir" | getline tmpdir
16397458 109}
110
111# There should be a comment with CVS keywords on the first line of file.
be7dead6 112FNR == 1 {
6b02d821 113 if (!/# \$Revision:/) # If this line is already OK?
114 print "# $" "Revision:$, " "$" "Date:$" # No
95255dcd 115 else {
6b02d821 116 print $0 # Yes
117 next # It is enough for first line
95255dcd 118 }
16397458 119}
120
a9f3f77c 121# If the latest line matched /%files/
122defattr == 1 {
ff9e2987
ER
123 if (ENVIRON["SKIP_DEFATTR"] != 1) {
124 if ($0 !~ /defattr/) { # If no %defattr
125 print "%defattr(644,root,root,755)" # Add it
126 } else {
127 $0 = "%defattr(644,root,root,755)" # Correct mistakes (if any)
128 }
129 }
32bb73d8 130 defattr = 0
a9f3f77c 131}
132
a5e4249b
ER
133function b_makekey(a, b, s) {
134 s = a "" b;
135 # kill bcond
42cd9911 136 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
f24835a8 137
f51e180c 138 # kill commented out items
42cd9911 139 gsub(/^#[ \t]*/, "", s);
f24835a8 140
7c43f31c 141 # force order
c2de2587
ER
142 gsub(/^Summary\(/, "11Summary(", s);
143 gsub(/^Summary/, "10Summary", s);
144 gsub(/^Name/, "2Name", s);
145 gsub(/^Version/, "3Version", s);
146 gsub(/^Release/, "4Release", s);
147 gsub(/^Epoch/, "5Epoch", s);
148 gsub(/^License/, "5License", s);
149 gsub(/^Group/, "6Group", s);
150 gsub(/^URL/, "7URL", s);
151
152 gsub(/^BuildRequires/, "B1BuildRequires", s);
153 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
2f89c197 154
2f89c197 155 gsub(/^Suggests/, "X1Suggests", s);
1f042910
JB
156 gsub(/^Provides/, "X2Provides", s);
157 gsub(/^Obsoletes/, "X3Obsoletes", s);
158 gsub(/^Conflicts/, "X4Conflicts", s);
159 gsub(/^BuildArch/, "X5BuildArch", s);
c2de2587
ER
160 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
161 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
162 gsub(/^BuildRoot/, "X9BuildRoot", s);
c0bcd06f
ER
163
164# printf("%s -> %s\n", a""b, s);
a5e4249b
ER
165 return s;
166}
167
0bbcf6b4 168# Comments
2f97d8ea 169/^#/ && (description == 0) {
0bbcf6b4 170 if (/This file does not like to be adapterized!/) {
171 print # print this message
172 while (getline) # print the rest of spec as it is
173 print
174 do_not_touch_anything = 1 # do not touch anything in END()
175 exit 0
176 }
337741dd 177
0bbcf6b4 178 # Generally, comments are printed without touching
62565bd5 179 sub(/[ \t]+$/, "")
003a22bc 180
8271f9dc
PZ
181 if (/#[ \t]*Source.*md5/) {
182 if (usedigest == 1) {
183 sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
184 sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
185 }
003a22bc
ER
186 print $0
187 next
188 }
337741dd 189}
190
d71e64d1 191/^%define/ {
37403736 192 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
17bd16f3 193 if ($2 == "_applnkdir") {
6e01f9db 194 next
17bd16f3
ER
195 }
196 if ($2 == "date") {
6e01f9db 197 date = 1
6cfaf341
ER
198 if (did_files == 0) {
199 print "%files"
200 print ""
201 did_files = 1
202 }
17bd16f3
ER
203 }
204
205 # Do not add %define of _prefix if it already is.
206 if ($2 ~ /^_prefix/) {
207 sub("^"prefix, $3, bindir)
208 sub("^"prefix, $3, sbindir)
209 sub("^"prefix, $3, libdir)
210 sub("^"prefix, $3, datadir)
211 sub("^"prefix, $3, includedir)
212 prefix = $3
213 }
214
215 if ($2 ~ /_bindir/ && !/_sbindir/)
216 bindir = $3
217 if ($2 ~ /_sbindir/)
218 sbindir = $3
5dc7f4ee
ER
219 if ($2 ~ /_libdir/) {
220 if ($3 ~ /^%\(/) {
221 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
222 libdir = "%%%%%%%%%%%%%%"
223 } else {
224 libdir = $3
225 }
226 }
37403736
ER
227 if ($2 ~ /_sysconfdir/) {
228 if ($3 ~ /^%\(/) {
229 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
230 sysconfdir = "%%%%%%%%%%%%%%"
231 } else {
232 sysconfdir = $3
233 }
234 }
5dc7f4ee
ER
235 if ($2 ~ /_datadir/) {
236 if ($3 ~ /^%\(/) {
237 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
238 datadir = "%%%%%%%%%%%%%%"
239 } else {
240 datadir = $3
241 }
242 }
17bd16f3
ER
243 if ($2 ~ /_includedir/)
244 includedir = $3
245 if ($2 ~ /_mandir/)
246 mandir = $3
247 if ($2 ~ /_infodir/)
248 infodir = $3
99b02f64
ER
249 if ($2 ~ /_docdir/)
250 docdir = $3
17bd16f3
ER
251
252 # version related macros
253 if ($2 ~ /^_beta$/)
254 _beta = $3
255 if ($2 ~ /^_rc$/)
256 _rc = $3
f8281d0c
ER
257 if ($2 ~ /^_pre$/)
258 _pre = $3
17bd16f3
ER
259 if ($2 ~ /^_snap$/)
260 _snap = $3
88c76b14
ER
261 if ($2 ~ /^subver$/)
262 subver = $3
17bd16f3
ER
263
264 # these are used usually when adapterizing external spec
265 if ($2 ~ /^name$/)
266 name = $3
267 if ($2 ~ /^version$/)
268 version = $3
269 if ($2 ~ /^release$/)
270 release = $3
5fd6c8d4 271
0311af17
ER
272 if ($2 ~ /^mod_name$/)
273 mod_name = $3
274
f0c5c231 275 sub(/[ \t]+$/, "");
5fd6c8d4
ER
276 # do nothing further, otherwise adapter thinks we're at preamble
277 print
278 next
d71e64d1
SZ
279}
280
a3ca2c50
ER
281# Obsolete
282/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
283 next
284}
285
337741dd 286################
287# %description #
288################
37403736 289/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
32bb73d8 290 preamble = 0
948cad9c 291
3b100864 292 if (/^%description/) {
32bb73d8 293 bod++
73e1a9a3 294 format_line = ""
295 format_indent = -1
3b100864
SZ
296 }
297
73e1a9a3 298 # Format description
db167e61 299 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3b100864 300 if (/^[ \t]*$/) {
73e1a9a3 301 format_flush(format_line, format_indent)
3b100864 302 print ""
73e1a9a3 303 format_line = ""
304 format_indent = -1
3b100864 305 } else if (/^[ \t]*[-\*][ \t]*/) {
73e1a9a3 306 format_flush(format_line, format_indent)
d2bcf054 307 match($0, /^[ \t]*/)
73e1a9a3 308 format_indent = RLENGTH
309 match($0, /^[ \t]*[-\*][ \t]/)
310 format_line = substr($0, RLENGTH)
d2bcf054 311 } else
73e1a9a3 312 format_line = format_line " " $0
32bb73d8 313 next
948cad9c 314 }
d2bcf054 315
d71e64d1 316 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
4bd1116d 317 if (NF > 3 && $2 == "-l") {
318 ll = $1
319 for (i = 4; i <= NF; i++)
320 ll = ll " " $i
321 $0 = ll " -l " $3
322 }
73e1a9a3 323 format_flush(format_line, format_indent)
948cad9c 324 if (bod == 2) {
32bb73d8
SZ
325 bod = 1
326 description = 1
948cad9c 327 } else {
32bb73d8
SZ
328 bod = 0
329 description = 0
948cad9c 330 }
331 } else
32bb73d8 332 description = 1
16397458 333}
334
337741dd 335#########
336# %prep #
337#########
37403736 338/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
32bb73d8 339 preamble = 0
6cfaf341 340 did_prep = 1
d2bcf054 341
e62422da
ER
342 use_macros()
343
a9f3f77c 344 # Add '-q' to %setup
ef56a1ca 345 if (/^%setup/ && !/-q/) {
d71e64d1 346 sub(/^%setup/, "%setup -q")
ef56a1ca
ER
347 }
348
671ba17b 349 if (/^%setup/ && name != "setup") {
928c2651
ER
350 $0 = fixedsub(name, "%{name}", $0);
351 $0 = fixedsub(version, "%{version}", $0);
3e20c912 352 if (_beta) {
928c2651 353 $0 = fixedsub(_beta, "%{_beta}", $0);
3e20c912
ER
354 }
355 if (_rc) {
928c2651 356 $0 = fixedsub(_rc, "%{_rc}", $0);
3e20c912 357 }
f8281d0c
ER
358 if (_pre) {
359 $0 = fixedsub(_pre, "%{_pre}", $0);
360 }
3e20c912 361 if (_snap) {
928c2651 362 $0 = fixedsub(_snap, "%{_snap}", $0);
3e20c912 363 }
88c76b14
ER
364 if (subver) {
365 $0 = fixedsub(subver, "%{subver}", $0);
366 }
d769e78f
ER
367 }
368
6f7b0e46 369 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
928c2651 370 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
ef56a1ca 371 }
42cd9911 372 sub("^%patch ", "%patch0 ");
e62422da
ER
373
374 # invalid in %prep
375 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
16397458 376}
377
337741dd 378##########
379# %build #
380##########
37403736 381/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
32bb73d8 382 preamble = 0
16397458 383
6cfaf341
ER
384 if (did_prep == 0) {
385 print "%prep"
386 print ""
387 did_prep = 1
388 }
389
32bb73d8 390 use_macros()
035bfa01 391 use_tabs()
d2bcf054 392
68694f00 393 if (/^automake$/)
394 sub(/$/, " -a -c")
395
0972e97d 396 if (/LDFLAGS/) {
2f46ef70 397 if (/LDFLAGS="-s"/) {
398 removed["LDFLAGS"] = 1
399 next
400 } else {
401 split($0, tmp, "LDFLAGS=")
0972e97d 402 count = split(tmp[2], flags, "\"")
2f46ef70 403 if (flags[1] != "" && flags[1] !~ "!?debug") {
fe9a6f09 404 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
2f46ef70 405 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
406 for (i = 2; i < count; i++)
407 $0 = $0 flags[i] "\""
408 }
0972e97d 409 }
410 }
411
412 if (/CFLAGS=/)
413 if (cflags("CFLAGS") == 0)
414 next
415
416 if (/CXXFLAGS=/)
417 if (cflags("CXXFLAGS") == 0)
418 next
d2bcf054 419
2f46ef70 420 if (/^export /) {
421 if (removed["LDFLAGS"])
422 sub(" LDFLAGS", "")
423 if (removed["CFLAGS"])
424 sub(" CFLAGS", "")
425 if (removed["CXXFLAGS"])
426 sub(" CXXFLAGS", "")
427 # Is there still something?
428 if (/^export[ ]*$/)
429 next
430 }
02c61abb 431
b5f420e4 432 # quote CC
02c61abb
ER
433 if (/CC=%{__cc} /) {
434 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
435 }
d92d1e4f 436
6702f869 437 # use PLD Linux macros
d92d1e4f
ER
438 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
439 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
b5f420e4 440 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
438df441 441 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
a5ab7844 442 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
82e1c3ee 443 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
438df441
ER
444 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
445 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
b5f420e4
ER
446
447 sub(/^aclocal$/, "%{__aclocal}");
448 sub(/^autoheader$/, "%{__autoheader}");
449 sub(/^autoconf$/, "%{__autoconf}");
450 sub(/^automake$/, "%{__automake}");
82e1c3ee 451 sub(/^libtoolize$/, "%{__libtoolize}");
d2bcf054 452
023aea7a
ER
453 # atrpms
454 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
455 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
16397458 456}
457
337741dd 458##########
459# %clean #
460##########
37403736 461/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
aa666779 462 did_clean = 1
6702f869 463
42cd9911 464 use_macros()
aa666779
SZ
465}
466
337741dd 467############
468# %install #
469############
37403736 470/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
d2bcf054 471
32bb73d8 472 preamble = 0
d2bcf054 473
43042a15 474 # foreign rpms
6af280a5 475 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
42cd9911
ER
476 sub("%buildroot", "$RPM_BUILD_ROOT");
477 sub("%{buildroot}", "$RPM_BUILD_ROOT");
43042a15 478
6af280a5 479 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
aa666779 480 did_rmroot=1
b741d74d
SZ
481 print "rm -rf $RPM_BUILD_ROOT"
482 next
483 }
a9f3f77c 484
aa666779 485 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
b741d74d 486 print "rm -rf $RPM_BUILD_ROOT"
aa666779 487 did_rmroot=1
b741d74d 488 }
d2bcf054 489
42cd9911
ER
490 if (tmpdir) {
491 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
ab73bfb4 492 gsub(buildroot, "$RPM_BUILD_ROOT")
42cd9911 493 }
ab73bfb4 494
42cd9911
ER
495 if (!/%{_lib}/) {
496 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
497 }
1f948ece 498
b741d74d 499 use_macros()
d2bcf054 500
16397458 501 # 'install -d' instead 'mkdir -p'
502 if (/mkdir -p/)
32bb73d8 503 sub(/mkdir -p/, "install -d")
0071ffb3 504
96b01e16 505 # cp -a already implies cp -r
42cd9911 506 sub(/^cp -ar/, "cp -a")
d2bcf054 507
a9f3f77c 508 # No '-u root' or '-g root' for 'install'
7d285e55 509 if (/^install/ && /-[ug][ \t]*root/)
32bb73d8 510 gsub(/-[ug][ \t]*root /, "")
d2bcf054 511
db929c93
ER
512 if (/^install/ && /-m[ \t]*[0-9]+/)
513 gsub(/-m[ \t]*[0-9]+ /, "")
d2bcf054 514
6b02d821 515 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
a9f3f77c 516 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
32bb73d8 517 next
d2bcf054 518
a9f3f77c 519 # No lines contain 'chmod' if it sets the modes to '644'
7d285e55 520 if ($1 ~ /chmod/ && $2 ~ /644/)
32bb73d8 521 next
023aea7a 522
023aea7a
ER
523 # atrpms
524 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
16397458 525}
526
337741dd 527##########
528# %files #
529##########
37403736 530/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
32bb73d8 531 preamble = 0
6cfaf341 532 did_files = 1
d2bcf054 533
d71e64d1 534 if ($0 ~ /^%files/)
32bb73d8 535 defattr = 1
d2bcf054 536
0bbcf6b4 537 use_files_macros()
16397458 538}
539
337741dd 540##############
541# %changelog #
542##############
37403736 543/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
32bb73d8 544 preamble = 0
b741d74d 545 has_changelog = 1
dae2a065 546 skip = 0
16397458 547 # There should be some CVS keywords on the first line of %changelog.
dae2a065 548 if (boc == 3) {
a5e6295e 549 if ($0 !~ _cvsmailfeedback) {
e0ab434c 550 print "* %{date} " _cvsmailfeedback > changelog_file
a5e6295e 551 } else {
dae2a065 552 skip = 1
a5e6295e 553 }
dae2a065 554 boc = 2
1fefb3da 555 }
dae2a065 556 if (boc == 2 && !skip) {
1fefb3da 557 if (!/All persons listed below/) {
e6ca8854 558 printf "All persons listed below can be reached at " > changelog_file
e0ab434c 559 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
a5e6295e 560 } else {
dae2a065 561 skip = 1
a5e6295e 562 }
7bfb8673 563 boc = 1
16397458 564 }
dae2a065
JB
565 if (boc == 1 && !skip) {
566 if (!/^$/) {
a5e6295e 567 if (!/\$.*Log:.*\$/) {
dae2a065 568 print "$" "Log:$" > changelog_file
a5e6295e 569 }
dae2a065
JB
570 boc = 0
571 }
1fefb3da 572 }
6544a775 573 # Define date macro.
1fefb3da 574 if (boc == 4) {
57862255 575 if (date == 0) {
308c7423 576 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
577 print " date +\"%a %b %d %Y\"`)" > changelog_file
1a2653e7 578 date = 1
57862255 579 }
1fefb3da 580 boc = 3
6544a775 581 }
308c7423 582
a5e6295e
ER
583 sub(/[ \t]+$/, "");
584 if (!/^%[a-z]+$/ || /changelog/) {
585 # stop changelog if "real" changelog starts
586 if (boc == 0 && /^\* /) {
587 boc = -1
588 }
589 if (boc == -1) {
590 next;
591 }
308c7423 592 print > changelog_file
a5e6295e 593 } else {
308c7423 594 print
a5e6295e 595 }
308c7423 596 next
16397458 597}
598
337741dd 599###########
600# SCRIPTS #
601###########
37403736 602/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
337741dd 603 preamble = 0
c6aa1f63 604
afca35ce
ER
605 if (gsub("/usr/sbin/useradd", "%useradd")) {
606 sub(" 2> /dev/null \|\| :", "");
607 sub(" >/dev/null 2>&1 \|\|:", "");
608 }
609
c6aa1f63
ER
610 # %useradd and %groupadd may not be wrapped
611 if (/%(useradd|groupadd).*\\$/) {
612 a = $0; getline;
613 sub(/^[\s\t]*/, "");
614 $0 = substr(a, 1, length(a) - 1) $0;
615 }
afca35ce 616 use_script_macros()
337741dd 617}
c6aa1f63 618
37403736 619/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
337741dd 620 preamble = 0
99b02f64 621 use_macros()
337741dd 622}
37403736 623/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
337741dd 624 preamble = 0
eba571c8 625 use_macros()
337741dd 626}
37403736 627/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
337741dd 628 preamble = 0
afca35ce 629 use_script_macros()
337741dd 630}
37403736 631/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
74e9aad8 632 preamble = 0
afca35ce 633 use_script_macros()
74e9aad8 634}
37403736 635/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
74e9aad8 636 preamble = 0
afca35ce 637 use_script_macros()
74e9aad8 638}
37403736 639/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
74e9aad8 640 preamble = 0
afca35ce 641 use_script_macros()
74e9aad8 642}
37403736 643/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
74e9aad8 644 preamble = 0
afca35ce 645 use_script_macros()
74e9aad8 646}
37403736 647/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
74e9aad8 648 preamble = 0
afca35ce 649 use_script_macros()
74e9aad8 650}
b7ab5ec4
ER
651/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
652 preamble = 0
afca35ce 653 use_script_macros()
b7ab5ec4
ER
654}
655/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
656 preamble = 0
afca35ce 657 use_script_macros()
b7ab5ec4 658}
337741dd 659
660#############
661# PREAMBLES #
662#############
16397458 663preamble == 1 {
7d285e55 664 # There should not be a space after the name of field
665 # and before the colon.
32bb73d8 666 sub(/[ \t]*:/, ":")
d2bcf054 667
1ea917a3
ER
668 if (/^%perl_module_wo_prefix/) {
669 name = $2
670 version = $3
671 release = "0." fixedsub(".%{disttag}.at", "", $4)
672 }
673
32bb73d8 674 field = tolower($1)
00956e6f 675 fieldnlower = $1
8538dc99 676 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
61182440
ER
677 sub(/\.$/, "", $0);
678 }
2873c9d1 679 if (field ~ /group(\([^)]+\)):/)
5b95e677 680 next
2873c9d1 681 if (field ~ /group:/) {
682 format_preamble()
c0bcd06f
ER
683 group = $0;
684 sub(/^[^ \t]*[ \t]*/, "", group);
eddfcbd4 685 group = replace_groupnames(group);
c0bcd06f
ER
686 $0 = "Group:\t\t" group
687
688 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
2b4c59bc 689 x11 = 1
b2ba29bc 690
c0bcd06f 691 byl_plik_z_groupmi = 0
b2ba29bc
SZ
692 byl_opis_grupy = 0
693 while ((getline linia_grup < groups_file) > 0) {
c0bcd06f
ER
694 byl_plik_z_groupmi = 1
695 if (linia_grup == group) {
b2ba29bc
SZ
696 byl_opis_grupy = 1
697 break
698 }
699 }
ada044b5 700
c0bcd06f 701 if (!byl_plik_z_groupmi)
b2ba29bc
SZ
702 print "######\t\t" groups_file ": no such file"
703 else if (!byl_opis_grupy)
704 print "######\t\t" "Unknown group!"
d2bcf054 705
b2ba29bc 706 close(groups_file)
6cfaf341 707 did_groups = 1
b2ba29bc 708 }
d2bcf054 709
7f2507f0 710 if (field ~ /prereq:/) {
37457756 711 sub(/Pre[Rr]eq:/, "Requires:", $1);
7f2507f0
ER
712 }
713
6639ea54 714 # split (build)requires, obsoletes on commas
701dce37 715 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
9911efc1
ER
716 value = substr($0, index($0, $2));
717 $0 = format_requires($1, value);
2776dcb6 718 }
42cd9911 719
7198ba75
ER
720 # BR: tar (and others) is to common (rpm-build requires it)
721 if (field ~ /^buildrequires:/) {
a3adad27
ER
722 l = substr($0, index($0, $2));
723 if (l == "awk" ||
724 l == "binutils" ||
725 l == "bzip2" ||
726 l == "cpio" ||
727 l == "diffutils" ||
728 l == "elfutils" ||
729 l == "fileutils" ||
730 l == "findutils" ||
731 l == "glibc-devel" ||
732 l == "grep" ||
733 l == "gzip" ||
734 l == "make" ||
735 l == "patch" ||
736 l == "sed" ||
737 l == "sh-utils" ||
738 l == "tar" ||
739 l == "textutils") {
7198ba75
ER
740 next
741 }
15677f60 742
485540f7 743 replace_requires();
7198ba75
ER
744 }
745
cdf38256 746 if (field ~ /^requires:/) {
485540f7 747 replace_requires();
42cd9911 748 }
cdf38256
ER
749
750
ea66cafb 751 # obsolete/unwanted tags
98125519 752 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
32bb73d8 753 next
9911efc1 754 }
d2bcf054 755
6cfaf341 756 if (field ~ /buildroot:/) {
faabbd89 757 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
6cfaf341
ER
758 did_build_root = 1
759 }
7d285e55 760
7d285e55 761 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
89411bba 762 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
32bb73d8 763 $1 = "License:"
89411bba 764 }
d2bcf054 765
baec8afd
ER
766 if (field ~ /license:/) {
767 l = substr($0, index($0, $2));
768 if (l == "Python Software Foundation License") {
769 l = "PSF"
770 }
4f02884b
ER
771 if (l == "Apache License 2.0" || l == "Apache 2.0" || l == "Apache License Version 2.0" || l == "Apache License, Version 2.0" || l == "Apache Software License v2") {
772 l = "Apache v2.0"
773 }
774 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
775 l = "Apache"
776 }
777 if (l == "Apache-style License" || l == "Apache-style Software License") {
778 l = "Apache-like"
779 }
780 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
781 l = "Apache v1.1"
782 }
5e624f99
ER
783 if (l == "GPLv2") {
784 l = "GPL v2"
785 }
786 if (l == "GPLv2+") {
787 l = "GPL v2+"
788 }
baec8afd
ER
789 $0 = "License:\t" l;
790 }
791
792
1ea917a3 793 if (field ~ /name:/) {
95266981 794 if ($2 == "%{name}" && name) {
2fce9750
ER
795 $2 = name
796 }
32bb73d8 797 name = $2
1ea917a3
ER
798 name_seen = 1;
799 }
7d285e55 800
1ea917a3 801 if (field ~ /version:/) {
2fce9750
ER
802 if ($2 == "%{version}" && version) {
803 $2 = version
804 }
32bb73d8 805 version = $2
1ea917a3
ER
806 version_seen = 1;
807 }
808
809 if (field ~ /release:/) {
2fce9750
ER
810 if ($2 == "%{release}" && release) {
811 $2 = release
812 }
6cfaf341 813 sub(/%atrelease /, "0.", $0)
1ea917a3
ER
814 release = $2
815 release_seen = 1;
816 }
7d285e55 817
98125519 818
246dbfc6
SZ
819 if (field ~ /serial:/)
820 $1 = "Epoch:"
017fc990 821
98125519
ER
822 if (field ~ /home-page:/)
823 $1 = "URL:"
824
4edf81f6 825 # proper caps
7e50ffd2 826 if (field ~ /^url:$/)
4edf81f6
ER
827 $1 = "URL:"
828
98125519
ER
829 if (field ~ /^description:$/)
830 $1 = "\n%description\n"
831
7d285e55 832 # Use %{name} and %{version} in the filenames in "Source:"
93ad28bc 833 if (field ~ /^source/ || field ~ /patch/) {
32bb73d8 834 n = split($2, url, /\//)
66437059
SZ
835 if (url[n] ~ /\.gz$/) {
836 url[n+1] = ".gz" url[n+1]
837 sub(/\.gz$/,"",url[n])
838 }
839 if (url[n] ~ /\.zip$/) {
840 url[n+1] = ".zip" url[n+1]
841 sub(/\.zip$/,"",url[n])
842 }
843 if (url[n] ~ /\.tar$/) {
844 url[n+1] = ".tar" url[n+1]
845 sub(/\.tar$/,"",url[n])
846 }
847 if (url[n] ~ /\.patch$/) {
848 url[n+1] = ".patch" url[n+1]
849 sub(/\.patch$/,"",url[n])
850 }
851 if (url[n] ~ /\.bz2$/) {
852 url[n+1] = ".bz2" url[n+1]
853 sub(/\.bz2$/,"",url[n])
854 }
45465264
SZ
855 if (url[n] ~ /\.logrotate$/) {
856 url[n+1] = ".logrotate" url[n+1]
857 sub(/\.logrotate$/,"",url[n])
858 }
859 if (url[n] ~ /\.pamd$/) {
860 url[n+1] = ".pamd" url[n+1]
861 sub(/\.pamd$/,"",url[n])
862 }
863
bf246f77 864 # allow %{name} only in last url component
ccb3335c
ER
865 s = ""
866 for (i = 1; i <= n; i++) {
867 url[i] = fixedsub("%{name}", name, url[i])
868 if (s) {
869 s = s "/" url[i]
870 } else {
871 s = url[i]
872 }
873 }
874 $2 = s url[n+1]
875
32bb73d8 876 filename = url[n]
4c237f9d
ER
877 if (name) {
878 url[n] = fixedsub(name, "%{name}", url[n])
879 }
85bbdbed 880 if (field ~ /source/) {
4c237f9d
ER
881 if (version) {
882 url[n] = fixedsub(version, "%{version}", url[n])
883 }
85bbdbed
ER
884 if (_beta) {
885 url[n] = fixedsub(_beta, "%{_beta}", url[n])
886 }
887 if (_rc) {
888 url[n] = fixedsub(_rc, "%{_rc}", url[n])
889 }
f8281d0c
ER
890 if (_pre) {
891 url[n] = fixedsub(_pre, "%{_pre}", url[n])
892 }
85bbdbed
ER
893 if (_snap) {
894 url[n] = fixedsub(_snap, "%{_snap}", url[n])
895 }
88c76b14
ER
896 if (subver) {
897 url[n] = fixedsub(subver, "%{subver}", url[n])
898 }
85bbdbed 899 }
f175a699 900 # assigning to $2 kills preamble formatting
66437059 901 $2 = fixedsub(filename, url[n], $2)
d2bcf054 902
0b8c0588 903 $2 = unify_url($2)
7d285e55 904 }
be7dead6 905
d2bcf054 906
93ad28bc 907 if (field ~ /^source:/)
d2bcf054 908 $1 = "Source0:"
32bb73d8 909
ff9e2987 910 if (field ~ /^patch:/)
32bb73d8 911 $1 = "Patch0:"
d2bcf054 912
0311af17 913 kill_preamble_macros();
32bb73d8 914 format_preamble()
d2bcf054 915
12d9b2b2
ER
916 if (field ~ /requires/) {
917 # atrpms
918 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
919 }
16397458 920}
921
8671b2a2
ER
922/^%bcond_/ {
923 # do nothing
924 print
925 next
926}
7c43f31c
ER
927
928# sort BR/R!
929#
930# NOTES:
931# - mixing BR/R and anything else confuses this (all will be sorted together)
42cd9911 932# so don't do that.
7c43f31c 933# - comments leading the BR/R can not be associated,
42cd9911 934# so don't adapterize when the BR/R are mixed with comments
7c43f31c 935ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
f175a699 936 if ($1 ~ /Pre[Rr]eq:/) {
37457756 937 sub(/Pre[Rr]eq:/, "Requires:", $1);
7c43f31c 938 }
8be3cbda
ER
939 if ($1 == "BR:" ) {
940 $1 = "BuildRequires:"
941 }
942 if ($1 == "R:" ) {
943 $1 = "Requires:"
944 }
7c43f31c 945 format_preamble()
73eaf7b6 946# kill_preamble_macros(); # breaks tabbing
7c43f31c
ER
947
948 b_idx++;
949 l = substr($0, index($0, $2));
950 b_ktmp = b_makekey($1, l);
951 b_key[b_idx] = b_ktmp;
952 b_val[b_ktmp] = $0;
953
954 next;
955}
956
7c43f31c
ER
957preamble == 1 {
958 if (b_idx > 0) {
959 isort(b_key, b_idx);
960 for (i = 1; i <= b_idx; i++) {
89411bba
ER
961 v = b_val[b_key[i]];
962 sub(/[ \t]+$/, "", v);
963 print "" v;
7c43f31c
ER
964 }
965 b_idx = 0
966 }
967}
968
2b4c59bc 969# main() ;-)
16397458 970{
32bb73d8 971 preamble = 1
d2bcf054 972
62565bd5 973 sub(/[ \t]+$/, "")
32bb73d8 974 print
1ea917a3
ER
975
976 if (name_seen == 0 && name) {
bd313400 977 print "Name:\t\t" name
1ea917a3
ER
978 name_seen = 1
979 }
980
981 if (version_seen == 0 && version) {
982 print "Version:\t" version
983 version_seen = 1
984 }
985
986 if (release_seen == 0 && release) {
987 print "Release:\t" release
988 release_seen = 1
989 }
98125519
ER
990
991 if (did_build_root == 0) {
6cfaf341 992# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
98125519
ER
993 did_build_root = 1
994 }
6cfaf341
ER
995 if (did_groups == 0) {
996# print "Group:\t\tunknown"
997 did_groups = 1
998 }
57862255 999}
1000
6b02d821 1001
57862255 1002END {
0bbcf6b4 1003 if (do_not_touch_anything)
1004 exit 0
d2bcf054 1005
42cd9911
ER
1006 # TODO: need to output these in proper place
1007 if (BR_count > 0) {
1008 for (i = 0; i <= BR_count; i++) {
1009 print BR[i];
1010 }
1011 }
a3c6bbce 1012
6b02d821 1013 close(changelog_file)
1014 while ((getline < changelog_file) > 0)
1015 print
1016 system("rm -f " changelog_file)
3c6a8648 1017
aa666779
SZ
1018 if (did_clean == 0) {
1019 print ""
1020 print "%clean"
1021 print "rm -rf $RPM_BUILD_ROOT"
1022 }
1023
b741d74d
SZ
1024 if (date == 0) {
1025 print ""
1026 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1027 }
d2bcf054 1028
a3c6bbce 1029 if (has_changelog == 0) {
1a2653e7 1030 print "%changelog"
42cd9911 1031 }
b741d74d 1032
a3c6bbce 1033 if (boc > 2) {
99f2e2ca 1034 print "* %{date} PLD Team <feedback@pld-linux.org>"
42cd9911 1035 }
1fefb3da 1036 if (boc > 1) {
9b223e29 1037 printf "All persons listed below can be reached at "
99f2e2ca 1038 print "<cvs_login>@pld-linux.org\n"
57862255 1039 }
a3c6bbce 1040 if (boc > 0) {
1fefb3da 1041 print "$" "Log:$"
42cd9911 1042 }
16397458 1043}
1044
2b4c59bc 1045function fixedsub(s1,s2,t, ind) {
66437059 1046# substitutes fixed strings (not regexps)
2b4c59bc 1047 if (ind = index(t,s1))
1048 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1049 return t
66437059
SZ
1050}
1051
be7dead6 1052# There should be one or two tabs after the colon.
1053function format_preamble()
1054{
f175a699 1055 if (/^#/ || /^%bcond_with/) {
c74a804a
ER
1056 return;
1057 }
32bb73d8 1058 sub(/:[ \t]*/, ":")
13dda4dc
ER
1059 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1060 if (RLENGTH < 8) {
32bb73d8 1061 sub(/:/, ":\t\t")
42cd9911 1062 } else {
32bb73d8 1063 sub(/:/, ":\t")
42cd9911 1064 }
be7dead6 1065 }
1066}
1067
a9f3f77c 1068# Replace directly specified directories with macros
1069function use_macros()
1070{
ff9e2987
ER
1071 # -m, --skip-macros, --no-macros -- skip macros subst
1072 if (ENVIRON["SKIP_MACROS"]) {
1073 return
1074 }
1075
5110bd60
ER
1076 # leave inline sed lines alone
1077 if (/(%{__sed}|sed) -i -e/) {
1078 return;
1079 }
1080
42cd9911
ER
1081 sub("%{_defaultdocdir}", "%{_docdir}");
1082 sub("%{_bindir}/perl", "%{__perl}");
1083 sub("%{_bindir}/python", "%{__python}");
32b4e718 1084
bf42735e
ER
1085 gsub(infodir, "%{_infodir}")
1086
c9cb5723
ER
1087 gsub(perl_sitearch, "%{perl_sitearch}")
1088 gsub(perl_archlib, "%{perl_archlib}")
1089 gsub(perl_privlib, "%{perl_privlib}")
c9cb5723
ER
1090 gsub(perl_vendorlib, "%{perl_vendorlib}")
1091 gsub(perl_vendorarch, "%{perl_vendorarch}")
1092 gsub(perl_sitelib, "%{perl_sitelib}")
f9ae8d4e
ER
1093
1094 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
6cfaf341 1095 gsub(py_sitedir, "%{py_sitedir}")
96c9c215 1096 gsub(py_scriptdir, "%{py_scriptdir}")
9086b883 1097 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
6dd98e9f 1098 gsub("%{python_sitelib}", "%{py_sitedir}")
9f2514dd
ER
1099
1100 gsub(ruby_archdir, "%{ruby_archdir}")
1101 gsub(ruby_ridir, "%{ruby_ridir}")
1102 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1103 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1104 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1105
9086b883
ER
1106 gsub("%{_datadir}/applications", "%{_desktopdir}")
1107 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
5e624f99 1108 gsub("%{_datadir}/java", "%{_javadir}")
c9cb5723 1109
6dd2a429 1110 gsub(libdir, "%{_libdir}")
5e624f99 1111 gsub(javadir, "%{_javadir}")
6dd2a429 1112
32bb73d8 1113 gsub(bindir, "%{_bindir}")
60e168c3 1114 gsub("%{prefix}/bin", "%{_bindir}")
5110bd60 1115 if (prefix"/bin" == bindir)
f0eca444 1116 gsub("%{_prefix}/bin", "%{_bindir}")
60e168c3 1117
ec98fa64 1118 for (c = 1; c <= NF; c++) {
1119 if ($c ~ sbindir "/fix-info-dir")
1120 continue;
61780b93
ER
1121 if ($c ~ sbindir "/webapp")
1122 continue;
bf42735e
ER
1123 if ($c ~ sbindir "/ldconfig")
1124 continue;
eb4e6786
ER
1125 if ($c ~ sbindir "/chsh")
1126 continue;
1127 if ($c ~ sbindir "/usermod")
1128 continue;
377c83f8
ER
1129 if ($c ~ sbindir "/chkconfig")
1130 continue;
519b18fb
ER
1131 if ($c ~ sbindir "/installzope(product|3package)")
1132 continue;
ec98fa64 1133 gsub(sbindir, "%{_sbindir}", $c)
1134 }
1135
60e168c3 1136 gsub("%{prefix}/sbin", "%{_sbindir}")
519b18fb 1137 if (prefix"/sbin" == sbindir) {
5d0dc6ec 1138 gsub("%{_prefix}/sbin", "%{_sbindir}")
519b18fb 1139 }
60e168c3 1140
38504ae2 1141 for (c = 1; c <= NF; c++) {
de2f7a1a 1142 if ($c ~ sysconfdir "/{?cron.")
ec98fa64 1143 continue;
f0eca444 1144 if ($c ~ sysconfdir "/{?crontab.d")
af3306cc 1145 continue;
269161f4
ER
1146 if ($c ~ sysconfdir "/{?env.d")
1147 continue;
66f4bdaa 1148 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
791430b4 1149 continue;
3c1352be
ER
1150 if ($c ~ sysconfdir "/{?udev")
1151 continue;
1152 if ($c ~ sysconfdir "/{?hotplug")
7a1926d6 1153 continue;
f0eca444 1154 if ($c ~ sysconfdir "/{?logrotate.d")
38504ae2 1155 continue;
f0eca444 1156 if ($c ~ sysconfdir "/{?pam.d")
a56e8186 1157 continue;
f0eca444 1158 if ($c ~ sysconfdir "/{?profile.d")
3849d745 1159 continue;
f0eca444 1160 if ($c ~ sysconfdir "/{?rc.d")
d95318c3 1161 continue;
f0eca444 1162 if ($c ~ sysconfdir "/{?security")
a56e8186 1163 continue;
f0eca444 1164 if ($c ~ sysconfdir "/{?skel")
1021eb9a 1165 continue;
f0eca444 1166 if ($c ~ sysconfdir "/{?sysconfig")
3849d745 1167 continue;
a3ad3d2b
ER
1168 if ($c ~ sysconfdir "/{?shrc.d")
1169 continue;
7666ea52
ER
1170 if ($c ~ sysconfdir "/{?certs")
1171 continue;
3c475044
ER
1172 if ($c ~ sysconfdir "/{?X11")
1173 continue;
7e2a6e20
ER
1174 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1175 continue;
ea66cafb
ER
1176 if ($c ~ sysconfdir "/{?rpm")
1177 continue;
f175a699 1178 if ($c ~ sysconfdir "/{?bash_completion.d")
a3ad3d2b 1179 continue;
f175a699 1180 if ($c ~ sysconfdir "/{?samba")
9fb04ca3 1181 continue;
e4339f15
ER
1182 if ($c ~ sysconfdir "/shells")
1183 continue;
f2bc05a6
ER
1184 if ($c ~ sysconfdir "/ppp")
1185 continue;
318fa94a
ER
1186 if ($c ~ sysconfdir "/dbus-1")
1187 continue;
5319da4e
ER
1188 if ($c ~ sysconfdir "/tmpwatch")
1189 continue;
38504ae2 1190 gsub(sysconfdir, "%{_sysconfdir}", $c)
1191 }
60e168c3 1192
99b02f64 1193 gsub(docdir, "%{_docdir}")
3d5e7b27
ER
1194
1195 gsub(kdedocdir, "%{_kdedocdir}")
1196
1197 gsub(gtkdocdir, "%{_gtkdocdir}")
1198 gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1199
f175a699 1200 gsub(php_pear_dir, "%{php_pear_dir}")
6d542d59 1201 gsub(php_data_dir, "%{php_data_dir}")
99b02f64 1202
10592e33
ER
1203 for (c = 1; c <= NF; c++) {
1204 if ($c ~ datadir "/automake")
1205 continue;
5d60467e
ER
1206 if ($c ~ datadir "/unsermake")
1207 continue;
a0e6069a
ER
1208 if ($c ~ datadir "/file/magic.mime")
1209 continue;
10592e33
ER
1210 gsub(datadir, "%{_datadir}", $c)
1211 }
1212
60e168c3 1213 gsub("%{prefix}/share", "%{_datadir}")
10592e33 1214 if (prefix"/share" == datadir)
f0eca444 1215 gsub("%{_prefix}/share", "%{_datadir}")
60e168c3 1216
03fbe002
ER
1217 # CFLAGS="-I/usr/include/ncurses is usually correct.
1218 if (!/-I\/usr\/include/) {
1219 gsub(includedir, "%{_includedir}")
1220 }
1221
60e168c3 1222 gsub("%{prefix}/include", "%{_includedir}")
03fbe002 1223 if (prefix"/include" == includedir) {
f0eca444 1224 gsub("%{_prefix}/include", "%{_includedir}")
03fbe002 1225 }
60e168c3 1226
32bb73d8 1227 gsub(mandir, "%{_mandir}")
03fbe002 1228 if ($0 !~ "%{_datadir}/manual") {
5d0dc6ec 1229 gsub("%{_datadir}/man", "%{_mandir}")
03fbe002 1230 }
cd1437c2 1231 gsub("%{_prefix}/share/man", "%{_mandir}")
1232 gsub("%{prefix}/share/man", "%{_mandir}")
60e168c3 1233 gsub("%{prefix}/man", "%{_mandir}")
1234 gsub("%{_prefix}/man", "%{_mandir}")
1235
32bb73d8 1236 gsub(infodir, "%{_infodir}")
60e168c3 1237 gsub("%{prefix}/info", "%{_infodir}")
1238 gsub("%{_prefix}/info", "%{_infodir}")
1239
de2f7a1a 1240 if (prefix !~ "/X11R6") {
1241 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1242 }
bd4a2113 1243
33957389 1244 gsub(examplesdir, "%{_examplesdir}")
d6255e69 1245
982b68ad 1246 if (prefix != "/") {
a0e6069a
ER
1247 # leave --with-foo=/usr alone
1248 if ($0 !~ "--with.*=.*" prefix) {
1249 for (c = 1; c <= NF; c++) {
1250 if ($c ~ prefix "/sbin/fix-info-dir")
1251 continue;
61780b93
ER
1252 if ($c ~ prefix "/sbin/webapp")
1253 continue;
eb4e6786
ER
1254 if ($c ~ prefix "/sbin/chsh")
1255 continue;
1256 if ($c ~ prefix "/sbin/usermod")
1257 continue;
519b18fb
ER
1258 if ($c ~ prefix "/sbin/installzope(product|3package)")
1259 continue;
a0e6069a
ER
1260 if ($c ~ prefix "/share/automake")
1261 continue;
1262 if ($c ~ prefix "/share/unsermake")
1263 continue;
1264 if ($c ~ prefix "/lib/sendmail")
1265 continue;
c0ae0d40
ER
1266 if ($c ~ prefix "/lib/pkgconfig")
1267 continue;
03fbe002 1268
589bf4b3
ER
1269 # CFLAGS="-I/usr..." is usually correct.
1270 if (/-I\/usr/)
03fbe002 1271 continue;
4e1f12b2
ER
1272 # same for LDFLAGS="-L/usr..."
1273 if (/-L\/usr/)
1274 continue;
03fbe002 1275
a0e6069a
ER
1276 gsub(prefix, "%{_prefix}", $c)
1277 }
ec98fa64 1278 }
982b68ad 1279 gsub("%{prefix}", "%{_prefix}")
1280 }
9a43821c 1281
77b6d1ab
ER
1282 # replace back
1283 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1284 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1285
9a43821c 1286 gsub("%{PACKAGE_VERSION}", "%{version}")
1287 gsub("%{PACKAGE_NAME}", "%{name}")
92bd39c6 1288
7f5aa63a 1289 gsub("^make$", "%{__make}")
1290 gsub("^make ", "%{__make} ")
ca0c404d 1291 gsub("^gcc ", "%{__cc} ")
8be48373 1292 gsub("^rm --interactive=never ", "%{__rm} ")
58ca7d6b 1293
3353e0d5
ER
1294 # mandrake specs
1295 gsub("^%make$", "%{__make}")
1296 gsub("^%make ", "%{__make} ")
1297 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
8705c1a9 1298 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
2fce9750 1299 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
3353e0d5 1300 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
8705c1a9 1301 gsub("^%{__install}", "install")
3353e0d5
ER
1302 gsub("%optflags", "%{rpmcflags}")
1303 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1304
32d93636 1305 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
eba571c8 1306 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
023aea7a
ER
1307 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1308 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
2fce9750 1309 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
2f89c197 1310 $0 = fixedsub("%__install", "install", $0);
2fce9750 1311
807cdd98
ER
1312 # split configure line to multiple lines
1313 if (/%configure / && !/\\$/) {
1314 $0 = format_configure($0);
1315 }
1316
e62422da
ER
1317 gsub("%_bindir", "%{_bindir}")
1318 gsub("%_datadir", "%{_datadir}")
1319 gsub("%_iconsdir", "%{_iconsdir}")
99b02f64
ER
1320 gsub("%_sbindir", "%{_sbindir}")
1321 gsub("%_mandir", "%{_mandir}")
1322 gsub("%name", "%{name}")
42cd9911
ER
1323 gsub(/%__rm/, "rm");
1324 gsub(/%__mkdir_p/, "install -d");
1325 gsub(/%__cp/, "cp");
1326 gsub(/%__ln_s/, "ln -s");
1327 gsub(/%__sed/, "%{__sed}");
1328 gsub(/%__cat/, "cat");
1329 gsub(/%__chmod/, "chmod");
32d93636 1330
58ca7d6b 1331 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1332 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
a3c6bbce 1333
caa01c58 1334 if (/^ant / || /^%{ant}/) {
a3c6bbce 1335 sub(/^ant/, "%ant")
caa01c58 1336 sub(/^%{ant}/, "%ant")
42cd9911
ER
1337 add_br("BuildRequires: jpackage-utils");
1338 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1339 }
a3c6bbce 1340
9b8d82c1
ER
1341 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1342 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
b6979c9c 1343}
d2bcf054 1344
807cdd98
ER
1345function format_configure(line, n, a, s) {
1346 n = split(line, a, / /);
1347 s = a[1] " \\\n";
1348 for (i = 2; i <= n; i++) {
1349 s = s "\t" a[i] " \\\n"
1350 }
1351 return s
1352}
1353
c490069b
ER
1354
1355# insertion sort of A[1..n]
1356# copied from mawk manual
1357function isort(A,n, i,j,hold) {
1358 for (i = 2; i <= n; i++) {
1359 hold = A[j = i]
1360 while (A[j-1] > hold) {
e8e4542f 1361 j-- ; A[j+1] = A[j]
1362 }
c490069b
ER
1363 A[j] = hold
1364 }
1365 # sentinel A[0] = "" will be created if needed
1366}
1367
1368
a3296e40 1369function use_files_macros( i, n, t, a, l)
0bbcf6b4 1370{
6702f869
ER
1371 use_macros()
1372
2a10aeb5
ER
1373 # skip comments
1374 if (/^#/) {
1375 return;
1376 }
1377
3210b282
ER
1378 sub("^%doc %{_mandir}", "%{_mandir}")
1379
0bbcf6b4 1380 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1381 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
c490069b 1382
bb7ad876
ER
1383 # uid/gid nobody is not valid in %files
1384 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1385 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1386 }
1387
07aced3a
JB
1388 # s[gu]id programs with globs are evil
1389 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1390 $0 = $0 " # FIXME no globs for suid/sgid files"
ca68f0c3
ER
1391 }
1392
aedb74de 1393 # replace back
16590ec6 1394 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
d7018013 1395 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
16590ec6
ER
1396 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1397 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1398 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1399 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1400 gsub("%{_sysconfdir}/security", "/etc/security")
1401 gsub("%{_sysconfdir}/skel", "/etc/skel")
1402 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1403 gsub("%{_sysconfdir}/certs", "/etc/certs")
aedb74de 1404 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
318fa94a 1405 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
5319da4e
ER
1406 gsub("%{_sysconfdir}/pki", "/etc/pki")
1407 gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
fc100b2c 1408
aedb74de
ER
1409 # /etc/init.d -> /etc/rc.d/init.d
1410 if (!/^\/etc\/init\.d$/) {
1411 gsub("/etc/init.d", "/etc/rc.d/init.d")
1412 }
1413
1414 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
fc100b2c
ER
1415 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1416 $0 = "%attr(754,root,root) " $0
1417 }
1418 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
a5e4249b 1419 gsub("^%attr\\(... *,", "%attr(754,");
fc100b2c 1420 }
eeb15f12
ER
1421 }
1422
17bd16f3 1423 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
d749eebf
ER
1424 $0 = "%attr(755,root,root) " $0
1425 }
1426
46e31fbb
ER
1427 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1428 $0 = "%attr(755,root,root) " $0
1429 }
1430
f12fb504
ER
1431 # /etc/sysconfig files
1432 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
feb42f71 1433 # attr not required, allow default 644 attr
646a62fc 1434 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
9f60b463 1435 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
aedb74de
ER
1436 gsub("%config", "%config(noreplace)")
1437 }
f12fb504 1438
9f60b463 1439 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
aedb74de
ER
1440 $NF = "%config(noreplace) " $NF
1441 }
f12fb504 1442
aedb74de 1443 if (/\/etc\/sysconfig\// && /%attr\(755/) {
a5e4249b 1444 gsub("^%attr\\(... *,", "%attr(640,");
aedb74de 1445 }
f12fb504 1446
aedb74de
ER
1447 if (/\/etc\/sysconfig\// && !/%verify/) {
1448 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1449 }
feb42f71
ER
1450 }
1451
f12fb504 1452 # kill leading zeros
6ac67f5b
ER
1453 if (/%attr\(0[1-9]/) {
1454 gsub("%attr\\(0", "%attr(")
1455 }
7dd00833 1456
5844653b 1457 # kill leading whitespace
bcf3f2ca 1458 gsub(/^ +/, "");
5844653b 1459
42cd9911
ER
1460 # kill default attrs
1461 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1462 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1463 if (!/%dir/) {
1464 gsub(/%attr\(644,root,root\) /, "");
1465 }
68618e24 1466
c490069b 1467 # sort %verify attrs
91e497a5 1468 if (match($0, /%verify\(not([^)]+)\)/)) {
c490069b 1469 t = substr($0, RSTART, RLENGTH)
f51e180c
ER
1470 # kill commas: %verify(not,md5,size,mtime)
1471 gsub(/,/, " ", t);
1472
c490069b
ER
1473 gsub(/^%verify\(not |\)$/, "", t)
1474 n = split(t, a, / /)
1475 isort(a, n)
1476
1477 s = "%verify(not"
1478 for (i = 1 ; i <= n; i++) {
1479 s = s " " a[i]
1480 }
1481 s = s ")"
1482
91e497a5 1483 gsub(/%verify\(not[^)]+\)/, s)
c490069b 1484 }
35a7a211
ER
1485
1486 if (/%{_mandir}/) {
1dfac985 1487 gsub("\.gz$", "*")
35a7a211 1488 }
023aea7a 1489
5b33a6a1 1490 # locale dir and no %lang -> bad
d8a3c08f 1491 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
5b33a6a1
ER
1492 $(NF + 1) = "# FIXME consider using %find_lang"
1493 }
1494
a3296e40 1495 # python egg-infos
fb78b6a9
ER
1496 if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
1497 l = index($0, "/");
1498 t = substr($0, 0, l - 1);
a3296e40 1499 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
fb78b6a9 1500 if (match(s, "[^-]+$")) {
a3296e40
ER
1501 s = substr(s, 0, RSTART - 2);
1502 print "%if \"%{py_ver}\" > \"2.4\""
fb78b6a9 1503 gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
a3296e40
ER
1504 print
1505 print "%endif"
a3296e40
ER
1506 next
1507 }
1508 }
1509
023aea7a
ER
1510 # atrpms
1511 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1512 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1513 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
c0ae0d40
ER
1514
1515 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1516 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1517 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
a83ba4f8
ER
1518
1519 gsub("%{_datadir}/applications", "%{_desktopdir}");
195fd300 1520 gsub("%{_datadir}/icons", "%{_iconsdir}");
6190dc2e 1521 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
6d542d59
ER
1522 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1523 gsub("%{_datadir}/php", "%{php_data_dir}");
0bbcf6b4 1524}
73e1a9a3 1525
afca35ce
ER
1526function use_script_macros()
1527{
1528 if (gsub("/sbin/service", "%service")) {
1529 sub(" >/dev/null 2>&1 \|\|:", "");
1530 sub(" 2> /dev/null \|\| :", "");
1531 }
1532}
1533
73e1a9a3 1534function fill(ch, n, i) {
1535 for (i = 0; i < n; i++)
1536 printf("%c", ch)
1537}
1538
1539function format_flush(line, indent, newline, word, first_word) {
1540 first_word = 1
d2bcf054 1541 if (format_indent == -1)
73e1a9a3 1542 newline = ""
1543 else
1544 newline = fill(" ", format_indent) "- "
1545
1546 while (match(line, /[^\t ]+/)) {
1547 word = substr(line, RSTART, RLENGTH)
1548 if (length(newline) + length(word) + 1 > tw) {
1549 print newline
d2bcf054 1550
73e1a9a3 1551 if (format_indent == -1)
1552 newline = ""
1553 else
1554 newline = fill(" ", format_indent + 2)
1555 first_word = 1
1556 }
1557
1558 if (first_word) {
1559 newline = newline word
1560 first_word = 0
1561 } else
1562 newline = newline " " word
d2bcf054 1563
73e1a9a3 1564 line = substr(line, RSTART + RLENGTH)
1565 }
1566 if (newline ~ /[^\t ]/) {
1567 print newline
1568 }
1569}
1570
0972e97d 1571function cflags(var)
1572{
2f46ef70 1573 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1574 removed[var] = 1
0972e97d 1575 return 0
2f46ef70 1576 }
d2bcf054 1577
337741dd 1578 if (!/!\?debug/)
fe9a6f09 1579 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
0972e97d 1580 return 1
1581}
0311af17 1582
0b8c0588
ER
1583function unify_url(url)
1584{
1585
1586 # sourceforge urls
1587 sub("[?&]big_mirror=.*$", "", url);
1588 sub("[?&]modtime=.*$", "", url);
1589 sub("[?]use_mirror=.*$", "", url);
1590 sub("[?]download$", "", url);
1591
1592 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1593 sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", url)
1594 sub("^http://download\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1595 sub("^http://downloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1596
1597 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1598 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", url)
1599 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", url)
1600
1601 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1602 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1603
1604 # apache urls
1605 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1606
8d69f95f 1607 # gnu.org
544f6163 1608 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
8ef26195 1609 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
8d69f95f 1610
0b8c0588
ER
1611 return url
1612}
1613
a5ab7844
ER
1614function demacroize(str)
1615{
73eaf7b6
ER
1616 if (mod_name) {
1617 sub("%{mod_name}", mod_name, str);
1618 }
1619 if (name) {
1620 sub("%{name}", name, str);
1621 }
a5ab7844
ER
1622 if (version) {
1623 sub("%{version}", version, str);
1624 }
1625 if (_beta) {
1626 sub("%{_beta}", _beta, str);
1627 }
1628 if (_rc) {
1629 sub("%{_rc}", _rc, str);
1630 }
f8281d0c
ER
1631 if (_pre) {
1632 sub("%{_pre}", _pre, str);
1633 }
a5ab7844
ER
1634 if (_snap) {
1635 sub("%{_snap}", _snap, str);
1636 }
88c76b14
ER
1637 if (subver) {
1638 sub("%{subver}", subver, str);
1639 }
a5ab7844
ER
1640 return str;
1641}
1642
0311af17
ER
1643function kill_preamble_macros()
1644{
a90171f0
ER
1645 if ($1 ~ /^Obsoletes:/) {
1646 # NB! assigning $2 a value breaks tabbing
1647 $2 = demacroize($2);
1648 }
1649 if ($1 ~ /^URL:/) {
73eaf7b6 1650 # NB! assigning $2 a value breaks tabbing
a5ab7844 1651 $2 = demacroize($2);
d57766c4 1652 $2 = unify_url($2)
0311af17
ER
1653 }
1654}
9911efc1 1655
18cdb713
ER
1656function get_epoch(pkg, ver, epoch)
1657{
2a50ce70
ER
1658 return
1659# should parse the BR lines more adequately:
1660# freetype = 2.0.0 -> correct
1661# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1662
18cdb713
ER
1663 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1664 shell | getline epoch;
1665 return epoch;
1666}
1667
9911efc1 1668function format_requires(tag, value, n, p, i, deps, ndeps) {
83c487a0
ER
1669 # skip any formatting for commented out items or some weird macros
1670 if (/^#/ || /%\(/) {
f3b115ea
ER
1671 return tag "\t" value
1672 }
9911efc1
ER
1673 n = split(value, p, / *,? */);
1674 for (i = 1; i <= n; i++) {
1675 if (p[i+1] ~ /[<=>]/) {
18cdb713
ER
1676 # add epoch if the version doesn't have it but BuildRequires.txt has
1677 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1678 epoch = get_epoch(p[i], p[i+2])
1679 if (epoch) {
1680 p[i+2] = epoch ":" p[i+2];
1681 }
1682 }
9911efc1
ER
1683 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1684 i += 2;
1685 } else {
1686 deps[ndeps++] = p[i];
1687 }
1688 }
1689 s = ""
1690 for (i in deps) {
1691 s = s sprintf("%s\t%s\n", tag, deps[i]);
1692 }
1693 return substr(s, 1, length(s)-1);
1694}
035bfa01
ER
1695
1696function use_tabs()
1697{
1698 # reverse vim: ts=4 sw=4 et
1699 gsub(/ /, "\t");
1700}
a3c6bbce
ER
1701
1702function add_br(br)
1703{
42cd9911 1704 BR[BR_count++] = br
a3c6bbce
ER
1705}
1706
485540f7
ER
1707function replace_requires()
1708{
1709
1710 # jpackages
1711 sub(/^java-devel$/, "jdk", $2);
1712 sub(/^log4j$/, "logging-log4j", $2);
1713 sub(/^jakarta-log4j$/, "logging-log4j", $2);
1714 sub(/^oro$/, "jakarta-oro", $2);
1715 sub(/^jakarta-ant$/, "ant", $2);
1716 sub(/^xerces-j2$/, "xerces-j", $2);
1717 sub(/^ldapjdk$/, "ldapsdk", $2);
1718 sub(/^saxon-scripts$/, "saxon", $2);
1719 sub(/^xalan-j2$/, "xalan-j", $2);
1720 sub(/^xerces-j2$/, "xerces-j", $2);
1721 sub(/^gnu-regexp$/, "gnu.regexp", $2);
1722
1723 # redhat virtual
1724 sub(/^tftp-server$/, "tftpdaemon", $2);
1725
e991641f 1726 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
a73cc8a9 1727 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
e991641f 1728
91dd18e8
ER
1729 # fedora
1730 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1731
485540f7
ER
1732 replace_php_virtual_deps()
1733}
1734
cdf38256
ER
1735# php virtual deps as discussed in devel-en
1736function replace_php_virtual_deps()
1737{
42cd9911
ER
1738 pkg = $2
1739# if (pkg == "php-program") {
1740# $0 = $1 "\t/usr/bin/php"
1741# return
1742# }
1743
4a4a8c43
ER
1744# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1745# sub(/^php-/, "php(", pkg);
1746# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1747# $2 = pkg
1748# }
42cd9911
ER
1749
1750 if (pkg ~/^php$/) {
1751 $2 = "webserver(php)";
1752 if ($4 ~ /^[0-9]:/) {
1753 $4 = substr($4, 3);
1754 }
1755 }
1756
1757 if (pkg ~/^php4$/) {
1758 $2 = "webserver(php)";
1759 if ($4 ~ /^[0-9]:/) {
1760 $4 = substr($4, 3);
1761 }
1762 }
cdf38256
ER
1763}
1764
eddfcbd4
ER
1765function replace_groupnames(group)
1766{
1767 sub(/^Amusements\/Games\/Strategy\/Real Time/, "X11/Applications/Games/Strategy", group)
1768 sub(/^Application\/Multimedia$/, "Applications/Multimedia", group)
1769 sub(/^Applications\/Compilers$/, "Development/Languages", group)
1770 sub(/^Applications\/Daemons$/, "Daemons", group)
1771 sub(/^Applications\/Internet$/, "Applications/Networking", group)
1772 sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
1773 sub(/^Applications\/Productivity$/, "X11/Applications", group)
1774 sub(/^Database$/, "Applications/Databases", group)
1775 sub(/^Development\/Code Generators$/, "Development", group)
1776 sub(/^Development\/Docs$/, "Documentation", group)
1777 sub(/^Development\/Documentation$/, "Documentation", group)
1778 sub(/^Development\/Java/, "Development/Languages/Java", group)
1779 sub(/^Development\/Libraries\/C and C\+\+$/, "Development/Libraries", group)
1780 sub(/^Development\/Libraries\/Java$/, "Development/Languages/Java", group)
1781 sub(/^Development\/Other/,"Development", group)
1782 sub(/^Development\/Testing$/, "Development", group)
1783 sub(/^Emulators$/, "Applications/Emulators", group)
1784 sub(/^Games/,"Applications/Games", group)
1785 sub(/^Library\/Development$/, "Development/Libraries", group)
1786 sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
1787 sub(/^Shells/,"Applications/Shells", group)
1788 sub(/^System Environment\/Base$/, "Base", group)
1789 sub(/^System Environment\/Daemons$/, "Daemons", group)
1790 sub(/^System Environment\/Kernel$/, "Base/Kernel", group)
1791 sub(/^System Environment\/Libraries$/, "Libraries", group)
1792 sub(/^System$/, "Base", group)
1793 sub(/^System\/Base$/, "Base", group)
1794 sub(/^System\/Libraries$/, "Libraries", group)
1795 sub(/^System\/Servers$/, "Daemons", group)
1796 sub(/^Text Processing\/Markup\/HTML$/, "Applications/Text", group)
1797 sub(/^Text Processing\/Markup\/XML$/, "Applications/Text", group)
1798 sub(/^Utilities\//,"Applications/", group)
1799 sub(/^Web\/Database$/, "Applications/WWW", group)
1800 sub(/^X11\/GNOME/,"X11/Applications", group)
1801 sub(/^X11\/GNOME\/Applications/,"X11/Applications", group)
1802 sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries", group)
1803 sub(/^X11\/Games/,"X11/Applications/Games", group)
1804 sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
1805 sub(/^X11\/Library/,"X11/Libraries", group)
1806 sub(/^X11\/Utilities/,"X11/Applications", group)
1807 sub(/^X11\/XFree86/, "X11", group)
1808 sub(/^X11\/Xserver$/, "X11/Servers", group)
1809 sub(/^Development\/C$/, "Development/Libraries", group)
1810 sub(/^Development\/Python$/, "Development/Languages/Python", group)
1811 sub(/^System\/Kernel and hardware$/, "Base/Kernel", group)
1812 sub(/^Application\/System$/, "Applications/System", group)
1813
1814 return group;
1815}
1816
13dda4dc 1817# vim:ts=4:sw=4
This page took 6.143957 seconds and 4 git commands to generate.