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