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