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