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