]> git.pld-linux.org Git - packages/adapter.git/blame - adapter.awk
- more java packages rename
[packages/adapter.git] / adapter.awk
CommitLineData
37fceb07 1#!/usr/bin/gawk -f
bf0a58ea 2#
18f95017 3# Adapter adapts .spec files for PLD Linux.
236b87ac 4#
fccce8b5 5# Copyright (C) 1999-2007 PLD-Team <feedback@pld-linux.org>
236b87ac 6# Authors:
b4e337d9 7# Michał Kuratczyk <kura@pld.org.pl>
dda3eaa5 8# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
b4e337d9 9# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
d8313167 10# Artur Frysiak <wiget@pld-linux.org>
f37c1259 11# Michal Kochanowicz <mkochano@pld.org.pl>
fccce8b5 12# Jakub Bogusz <qboosh@pld-linux.org>
b4e337d9 13# Elan Ruusamäe <glen@pld-linux.org>
115a3045
ER
14#
15# See cvs log adapter{,.awk} for list of contributors
16#
236b87ac 17# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3a14bf9d 18
8ebb1c08 19# TODO
03180d14 20# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
8ebb1c08
ER
21# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
22# - add "-nc" option to skip CVS interaction
6c67f9b1
ER
23# - sort Summary(XX)
24# - sort Requires, BuildRequires
fd5553c9 25# - check if %description (lang=C) contains 8bit
6e985933 26# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
57af14b1 27#21:25:40 SamChi> glen: it should change: /%source([0-9]+)/i to %{SOURCE\1}
8ebb1c08 28
bf0a58ea 29BEGIN {
0ae11f54 30 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
2b47df45 31 SECTIONS = "^%(" RPM_SECTIONS ")"
93e2a87a 32
18f95017
ER
33 RCSID = "$Id$"
34 rev = RCSID # TODO: parse from RCSID
35 VERSION = "0.31/" rev
36
8492c30a 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))"
c58d1357 38
50037ea2
PZ
39 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
40
1c955424 41 preamble = 1 # Is it part of preamble? Default - yes
6e985933
ER
42 boc = 4 # Beginning of %changelog
43 bod = 0 # Beginning of %description
7a72f436 44 tw = 70 # Descriptions width
f171fd40 45
89c604c7 46 b_idx = 0 # index of BR/R arrays
b6875e34 47 BR_count = 0 # number of additional BuildRequires
89c604c7 48
85e708f2 49 # If variable removed, then 1 (for removing it from export)
50 removed["LDFLAGS"] = 0
51 removed["CFLAGS"] = 0
52 removed["CXXFLAGS"] = 0
5c18171e 53
246ad57e 54 # If 1, we are inside of comment block (started with /^#%/)
55 comment_block = 0
f171fd40 56
683ce9e3
ER
57 import_rpm_macros()
58
a877f3a5
ER
59 packages_dir = topdir "/packages"
60 groups_file = packages_dir "/rpm.groups"
683ce9e3 61
a877f3a5 62 system("cd "packages_dir"; [ -f rpm.groups ] || cvs up rpm.groups > /dev/null")
c2814373 63 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
f1991554 64
5c18171e 65 # Temporary file for changelog section
66 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
bf0a58ea 67}
68
69# There should be a comment with CVS keywords on the first line of file.
8b1938ea 70FNR == 1 {
f1991554 71 if (!/# \$Revision:/) # If this line is already OK?
72 print "# $" "Revision:$, " "$" "Date:$" # No
04dde927 73 else {
f1991554 74 print $0 # Yes
75 next # It is enough for first line
04dde927 76 }
bf0a58ea 77}
78
43c05c3c 79# If the latest line matched /%files/
80defattr == 1 {
13b24a87
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 }
aec1bddb 88 defattr = 0
43c05c3c 89}
90
89c604c7
ER
91function b_makekey(a, b, s) {
92 s = a "" b;
93 # kill bcond
b6875e34 94 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
3b0074cc 95
8409a9b2 96 # kill commented out items
b6875e34 97 gsub(/^#[ \t]*/, "", s);
3b0074cc 98
c58d1357 99 # force order
8492c30a 100 gsub(/^Summary\(/, "11Summary(", s);
2ce787c9 101 gsub(/^Summary/, "10Summary", s);
8492c30a 102
985d9bc7
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);
43f8581a 113
43f8581a 114 gsub(/^Suggests/, "X1Suggests", s);
2eef43e9
JB
115 gsub(/^Provides/, "X2Provides", s);
116 gsub(/^Obsoletes/, "X3Obsoletes", s);
117 gsub(/^Conflicts/, "X4Conflicts", s);
118 gsub(/^BuildArch/, "X5BuildArch", s);
985d9bc7
ER
119 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
120 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
121 gsub(/^BuildRoot/, "X9BuildRoot", s);
d9e2bd9b 122
8492c30a
ER
123 gsub(/^AutoProv/, "Xx1AutoProv", s);
124 gsub(/^AutoReq/, "Xx2AutoReq", s);
125
d9e2bd9b 126# printf("%s -> %s\n", a""b, s);
89c604c7
ER
127 return s;
128}
129
eee34ffb 130# Comments
22622171 131/^#/ && (description == 0) {
eee34ffb 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 }
246ad57e 139
eee34ffb 140 # Generally, comments are printed without touching
70a1dc9e 141 sub(/[ \t]+$/, "")
4414eb86 142
50037ea2
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 }
4414eb86
ER
148 print $0
149 next
150 }
246ad57e 151}
152
1da27823 153/^%define/ {
93e2a87a 154 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
71a4728c 155 if ($2 == "_applnkdir") {
ba4b52a7 156 next
71a4728c
ER
157 }
158 if ($2 == "date") {
ba4b52a7 159 date = 1
4ab1678b
ER
160 if (did_files == 0) {
161 print "%files"
162 print ""
163 did_files = 1
164 }
71a4728c
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
a27fac4d
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 }
93e2a87a
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 }
a27fac4d
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 }
71a4728c
ER
205 if ($2 ~ /_includedir/)
206 includedir = $3
207 if ($2 ~ /_mandir/)
208 mandir = $3
209 if ($2 ~ /_infodir/)
210 infodir = $3
c2b069de
ER
211 if ($2 ~ /_docdir/)
212 docdir = $3
71a4728c
ER
213
214 # version related macros
215 if ($2 ~ /^_beta$/)
216 _beta = $3
217 if ($2 ~ /^_rc$/)
218 _rc = $3
59de1799
ER
219 if ($2 ~ /^_pre$/)
220 _pre = $3
71a4728c
ER
221 if ($2 ~ /^_snap$/)
222 _snap = $3
3c5e6e5f
ER
223 if ($2 ~ /^subver$/)
224 subver = $3
71a4728c
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
a39ddef5 233
0ea7c3cd
ER
234 if ($2 ~ /^mod_name$/)
235 mod_name = $3
236
78d96561 237 sub(/[ \t]+$/, "");
a39ddef5
ER
238 # do nothing further, otherwise adapter thinks we're at preamble
239 print
240 next
1da27823
SZ
241}
242
6c67f9b1
ER
243# Obsolete
244/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
245 next
246}
247
246ad57e 248################
249# %description #
250################
93e2a87a 251/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
aec1bddb 252 preamble = 0
efe53381 253
3a14bf9d 254 if (/^%description/) {
aec1bddb 255 bod++
236b87ac 256 format_line = ""
257 format_indent = -1
3a14bf9d
SZ
258 }
259
236b87ac 260 # Format description
7b868d98 261 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3a14bf9d 262 if (/^[ \t]*$/) {
236b87ac 263 format_flush(format_line, format_indent)
3a14bf9d 264 print ""
236b87ac 265 format_line = ""
266 format_indent = -1
3a14bf9d 267 } else if (/^[ \t]*[-\*][ \t]*/) {
236b87ac 268 format_flush(format_line, format_indent)
f171fd40 269 match($0, /^[ \t]*/)
236b87ac 270 format_indent = RLENGTH
271 match($0, /^[ \t]*[-\*][ \t]/)
272 format_line = substr($0, RLENGTH)
f171fd40 273 } else
236b87ac 274 format_line = format_line " " $0
aec1bddb 275 next
efe53381 276 }
f171fd40 277
1da27823 278 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
ddb18dd4 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 }
236b87ac 285 format_flush(format_line, format_indent)
efe53381 286 if (bod == 2) {
aec1bddb
SZ
287 bod = 1
288 description = 1
efe53381 289 } else {
aec1bddb
SZ
290 bod = 0
291 description = 0
efe53381 292 }
293 } else
aec1bddb 294 description = 1
bf0a58ea 295}
296
246ad57e 297#########
298# %prep #
299#########
93e2a87a 300/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
aec1bddb 301 preamble = 0
4ab1678b 302 did_prep = 1
f171fd40 303
ac779c71
ER
304 use_macros()
305
43c05c3c 306 # Add '-q' to %setup
e780ff0a 307 if (/^%setup/ && !/-q/) {
1da27823 308 sub(/^%setup/, "%setup -q")
e780ff0a
ER
309 }
310
af38fe16 311 if (/^%setup/ && name != "setup") {
e9097b46
ER
312 $0 = fixedsub(name, "%{name}", $0);
313 $0 = fixedsub(version, "%{version}", $0);
4a8d9a70 314 if (_beta) {
e9097b46 315 $0 = fixedsub(_beta, "%{_beta}", $0);
4a8d9a70
ER
316 }
317 if (_rc) {
e9097b46 318 $0 = fixedsub(_rc, "%{_rc}", $0);
4a8d9a70 319 }
59de1799
ER
320 if (_pre) {
321 $0 = fixedsub(_pre, "%{_pre}", $0);
322 }
4a8d9a70 323 if (_snap) {
e9097b46 324 $0 = fixedsub(_snap, "%{_snap}", $0);
4a8d9a70 325 }
3c5e6e5f
ER
326 if (subver) {
327 $0 = fixedsub(subver, "%{subver}", $0);
328 }
4f822e22
ER
329 }
330
10690436 331 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
e9097b46 332 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
e780ff0a 333 }
b6875e34 334 sub("^%patch ", "%patch0 ");
ac779c71
ER
335
336 # invalid in %prep
337 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
bf0a58ea 338}
339
246ad57e 340##########
341# %build #
342##########
93e2a87a 343/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
aec1bddb 344 preamble = 0
bf0a58ea 345
4ab1678b
ER
346 if (did_prep == 0) {
347 print "%prep"
348 print ""
349 did_prep = 1
350 }
351
aec1bddb 352 use_macros()
6ebff802 353 use_tabs()
f171fd40 354
9cb72c72 355 if (/^automake$/)
356 sub(/$/, " -a -c")
357
eb4bf70e 358 if (/LDFLAGS/) {
85e708f2 359 if (/LDFLAGS="-s"/) {
360 removed["LDFLAGS"] = 1
361 next
362 } else {
363 split($0, tmp, "LDFLAGS=")
eb4bf70e 364 count = split(tmp[2], flags, "\"")
85e708f2 365 if (flags[1] != "" && flags[1] !~ "!?debug") {
fde8f52a 366 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
85e708f2 367 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
368 for (i = 2; i < count; i++)
369 $0 = $0 flags[i] "\""
370 }
eb4bf70e 371 }
372 }
373
374 if (/CFLAGS=/)
375 if (cflags("CFLAGS") == 0)
376 next
377
378 if (/CXXFLAGS=/)
379 if (cflags("CXXFLAGS") == 0)
380 next
f171fd40 381
85e708f2 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 }
2d74be7e 393
db9b1bf2 394 # quote CC
2d74be7e
ER
395 if (/CC=%{__cc} /) {
396 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
397 }
b34b8660 398
e6f1551d 399 # use PLD Linux macros
b34b8660
ER
400 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
401 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
db9b1bf2 402 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
56699a32 403 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
4e26c5f2 404 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
ebeed758 405 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
56699a32
ER
406 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
407 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
db9b1bf2
ER
408
409 sub(/^aclocal$/, "%{__aclocal}");
410 sub(/^autoheader$/, "%{__autoheader}");
411 sub(/^autoconf$/, "%{__autoconf}");
412 sub(/^automake$/, "%{__automake}");
ebeed758 413 sub(/^libtoolize$/, "%{__libtoolize}");
f171fd40 414
5e15e952
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);
bf0a58ea 418}
419
246ad57e 420##########
421# %clean #
422##########
93e2a87a 423/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
1c52b18e 424 did_clean = 1
e6f1551d 425
b6875e34 426 use_macros()
1c52b18e
SZ
427}
428
246ad57e 429############
430# %install #
431############
93e2a87a 432/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
f171fd40 433
aec1bddb 434 preamble = 0
f171fd40 435
ec0082cc 436 # foreign rpms
624df313 437 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b6875e34
ER
438 sub("%buildroot", "$RPM_BUILD_ROOT");
439 sub("%{buildroot}", "$RPM_BUILD_ROOT");
ec0082cc 440
624df313 441 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
1c52b18e 442 did_rmroot=1
dda3eaa5
SZ
443 print "rm -rf $RPM_BUILD_ROOT"
444 next
445 }
43c05c3c 446
1c52b18e 447 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
dda3eaa5 448 print "rm -rf $RPM_BUILD_ROOT"
1c52b18e 449 did_rmroot=1
dda3eaa5 450 }
f171fd40 451
b6875e34
ER
452 if (tmpdir) {
453 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
3d8be7c3 454 gsub(buildroot, "$RPM_BUILD_ROOT")
b6875e34 455 }
3d8be7c3 456
b6875e34
ER
457 if (!/%{_lib}/) {
458 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
459 }
259883bf 460
dda3eaa5 461 use_macros()
f171fd40 462
bf0a58ea 463 # 'install -d' instead 'mkdir -p'
464 if (/mkdir -p/)
aec1bddb 465 sub(/mkdir -p/, "install -d")
fde90d94 466
48409aee 467 # cp -a already implies cp -r
b6875e34 468 sub(/^cp -ar/, "cp -a")
f171fd40 469
43c05c3c 470 # No '-u root' or '-g root' for 'install'
681a4871 471 if (/^install/ && /-[ug][ \t]*root/)
aec1bddb 472 gsub(/-[ug][ \t]*root /, "")
f171fd40 473
2016aa83
ER
474 if (/^install/ && /-m[ \t]*[0-9]+/)
475 gsub(/-m[ \t]*[0-9]+ /, "")
f171fd40 476
f1991554 477 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
43c05c3c 478 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
aec1bddb 479 next
f171fd40 480
43c05c3c 481 # No lines contain 'chmod' if it sets the modes to '644'
681a4871 482 if ($1 ~ /chmod/ && $2 ~ /644/)
aec1bddb 483 next
5e15e952 484
5e15e952
ER
485 # atrpms
486 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
bf0a58ea 487}
488
246ad57e 489##########
490# %files #
491##########
93e2a87a 492/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
aec1bddb 493 preamble = 0
4ab1678b 494 did_files = 1
f171fd40 495
1da27823 496 if ($0 ~ /^%files/)
aec1bddb 497 defattr = 1
f171fd40 498
484bbf6d
ER
499 if (!use_files_macros()) {
500 next
501 }
bf0a58ea 502}
503
246ad57e 504##############
505# %changelog #
506##############
93e2a87a 507/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
aec1bddb 508 preamble = 0
dda3eaa5 509 has_changelog = 1
97e21521 510 skip = 0
bf0a58ea 511 # There should be some CVS keywords on the first line of %changelog.
97e21521 512 if (boc == 3) {
4b7a9b6b 513 if ($0 !~ _cvsmailfeedback) {
f6f0c932 514 print "* %{date} " _cvsmailfeedback > changelog_file
4b7a9b6b 515 } else {
97e21521 516 skip = 1
4b7a9b6b 517 }
97e21521 518 boc = 2
d31b8a48 519 }
97e21521 520 if (boc == 2 && !skip) {
d31b8a48 521 if (!/All persons listed below/) {
fd5e70be 522 printf "All persons listed below can be reached at " > changelog_file
f6f0c932 523 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
4b7a9b6b 524 } else {
97e21521 525 skip = 1
4b7a9b6b 526 }
44379e57 527 boc = 1
bf0a58ea 528 }
97e21521
JB
529 if (boc == 1 && !skip) {
530 if (!/^$/) {
4b7a9b6b 531 if (!/\$.*Log:.*\$/) {
97e21521 532 print "$" "Log:$" > changelog_file
4b7a9b6b 533 }
97e21521
JB
534 boc = 0
535 }
d31b8a48 536 }
3fdddc43 537 # Define date macro.
d31b8a48 538 if (boc == 4) {
a1aa4976 539 if (date == 0) {
5c18171e 540 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
541 print " date +\"%a %b %d %Y\"`)" > changelog_file
1395ea1c 542 date = 1
a1aa4976 543 }
d31b8a48 544 boc = 3
3fdddc43 545 }
5c18171e 546
4b7a9b6b
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 }
5c18171e 556 print > changelog_file
4b7a9b6b 557 } else {
5c18171e 558 print
4b7a9b6b 559 }
5c18171e 560 next
bf0a58ea 561}
562
246ad57e 563###########
564# SCRIPTS #
565###########
93e2a87a 566/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
246ad57e 567 preamble = 0
e9176470 568
723ce732
ER
569 if (gsub("/usr/sbin/useradd", "%useradd")) {
570 sub(" 2> /dev/null \|\| :", "");
571 sub(" >/dev/null 2>&1 \|\|:", "");
572 }
573
e9176470
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 }
723ce732 580 use_script_macros()
246ad57e 581}
e9176470 582
93e2a87a 583/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
246ad57e 584 preamble = 0
c2b069de 585 use_macros()
246ad57e 586}
93e2a87a 587/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
246ad57e 588 preamble = 0
d11acde9 589 use_macros()
246ad57e 590}
93e2a87a 591/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
246ad57e 592 preamble = 0
723ce732 593 use_script_macros()
246ad57e 594}
93e2a87a 595/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
bdba3986 596 preamble = 0
723ce732 597 use_script_macros()
bdba3986 598}
93e2a87a 599/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
bdba3986 600 preamble = 0
723ce732 601 use_script_macros()
bdba3986 602}
93e2a87a 603/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
bdba3986 604 preamble = 0
723ce732 605 use_script_macros()
bdba3986 606}
93e2a87a 607/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
bdba3986 608 preamble = 0
723ce732 609 use_script_macros()
bdba3986 610}
93e2a87a 611/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
bdba3986 612 preamble = 0
723ce732 613 use_script_macros()
bdba3986 614}
0ae11f54
ER
615/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
616 preamble = 0
723ce732 617 use_script_macros()
0ae11f54
ER
618}
619/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
620 preamble = 0
723ce732 621 use_script_macros()
0ae11f54 622}
246ad57e 623
624#############
625# PREAMBLES #
626#############
bf0a58ea 627preamble == 1 {
681a4871 628 # There should not be a space after the name of field
629 # and before the colon.
aec1bddb 630 sub(/[ \t]*:/, ":")
f171fd40 631
1462d6a3
ER
632 if (/^%perl_module_wo_prefix/) {
633 name = $2
634 version = $3
635 release = "0." fixedsub(".%{disttag}.at", "", $4)
636 }
637
aec1bddb 638 field = tolower($1)
db170a71 639 fieldnlower = $1
38cb34ef 640 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
024709c6
ER
641 sub(/\.$/, "", $0);
642 }
f37c1259 643 if (field ~ /group(\([^)]+\)):/)
1a5b27d5 644 next
f37c1259 645 if (field ~ /group:/) {
646 format_preamble()
d9e2bd9b
ER
647 group = $0;
648 sub(/^[^ \t]*[ \t]*/, "", group);
ad9ea417 649 group = replace_groupnames(group);
d9e2bd9b
ER
650 $0 = "Group:\t\t" group
651
652 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
7a72f436 653 x11 = 1
8e5358f8 654
d9e2bd9b 655 byl_plik_z_groupmi = 0
8e5358f8
SZ
656 byl_opis_grupy = 0
657 while ((getline linia_grup < groups_file) > 0) {
d9e2bd9b
ER
658 byl_plik_z_groupmi = 1
659 if (linia_grup == group) {
8e5358f8
SZ
660 byl_opis_grupy = 1
661 break
662 }
663 }
69501a12 664
d9e2bd9b 665 if (!byl_plik_z_groupmi)
8e5358f8
SZ
666 print "######\t\t" groups_file ": no such file"
667 else if (!byl_opis_grupy)
668 print "######\t\t" "Unknown group!"
f171fd40 669
8e5358f8 670 close(groups_file)
4ab1678b 671 did_groups = 1
8e5358f8 672 }
f171fd40 673
307f5229 674 if (field ~ /prereq:/) {
a68f7b3b 675 sub(/Pre[Rr]eq:/, "Requires:", $1);
307f5229
ER
676 }
677
4aa6db15 678 # split (build)requires, obsoletes on commas
44ff0c79 679 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
ba377afe
ER
680 value = substr($0, index($0, $2));
681 $0 = format_requires($1, value);
f12ab15d 682 }
b6875e34 683
8e734165
ER
684 # BR: tar (and others) is to common (rpm-build requires it)
685 if (field ~ /^buildrequires:/) {
eb028bca
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") {
8e734165
ER
704 next
705 }
d0297fb3 706
92fa789e 707 replace_requires();
8e734165
ER
708 }
709
30cd4686 710 if (field ~ /^requires:/) {
92fa789e 711 replace_requires();
b6875e34 712 }
30cd4686
ER
713
714
ff21ed9e 715 # obsolete/unwanted tags
32908bc5 716 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
aec1bddb 717 next
ba377afe 718 }
f171fd40 719
4ab1678b 720 if (field ~ /buildroot:/) {
376e6bc4 721 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
4ab1678b
ER
722 did_build_root = 1
723 }
681a4871 724
681a4871 725 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
4932d2c6 726 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
aec1bddb 727 $1 = "License:"
4932d2c6 728 }
f171fd40 729
3b07e07f
ER
730 if (field ~ /license:/) {
731 l = substr($0, index($0, $2));
732 if (l == "Python Software Foundation License") {
733 l = "PSF"
734 }
6112ae02
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 }
ee9487af
ER
747 if (l == "GPLv2") {
748 l = "GPL v2"
749 }
750 if (l == "GPLv2+") {
751 l = "GPL v2+"
752 }
3b07e07f
ER
753 $0 = "License:\t" l;
754 }
755
756
1462d6a3 757 if (field ~ /name:/) {
6426afb8 758 if ($2 == "%{name}" && name) {
63d47bae
ER
759 $2 = name
760 }
aec1bddb 761 name = $2
1462d6a3
ER
762 name_seen = 1;
763 }
681a4871 764
1462d6a3 765 if (field ~ /version:/) {
63d47bae
ER
766 if ($2 == "%{version}" && version) {
767 $2 = version
768 }
aec1bddb 769 version = $2
1462d6a3
ER
770 version_seen = 1;
771 }
772
773 if (field ~ /release:/) {
63d47bae
ER
774 if ($2 == "%{release}" && release) {
775 $2 = release
776 }
4ab1678b 777 sub(/%atrelease /, "0.", $0)
1462d6a3
ER
778 release = $2
779 release_seen = 1;
780 }
681a4871 781
32908bc5 782
c4dde22b
SZ
783 if (field ~ /serial:/)
784 $1 = "Epoch:"
b6853342 785
32908bc5
ER
786 if (field ~ /home-page:/)
787 $1 = "URL:"
788
89b1cd55 789 # proper caps
cf038723 790 if (field ~ /^url:$/)
89b1cd55
ER
791 $1 = "URL:"
792
32908bc5
ER
793 if (field ~ /^description:$/)
794 $1 = "\n%description\n"
795
681a4871 796 # Use %{name} and %{version} in the filenames in "Source:"
f4cb1924 797 if (field ~ /^source/ || field ~ /patch/) {
aec1bddb 798 n = split($2, url, /\//)
fd8718a5
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 }
dac4e142
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
a3fcc309 828 # allow %{name} only in last url component
ced0372e
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
aec1bddb 840 filename = url[n]
5e028343
ER
841 if (name) {
842 url[n] = fixedsub(name, "%{name}", url[n])
843 }
755ab9c0 844 if (field ~ /source/) {
5e028343
ER
845 if (version) {
846 url[n] = fixedsub(version, "%{version}", url[n])
847 }
755ab9c0
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 }
59de1799
ER
854 if (_pre) {
855 url[n] = fixedsub(_pre, "%{_pre}", url[n])
856 }
755ab9c0
ER
857 if (_snap) {
858 url[n] = fixedsub(_snap, "%{_snap}", url[n])
859 }
3c5e6e5f
ER
860 if (subver) {
861 url[n] = fixedsub(subver, "%{subver}", url[n])
862 }
755ab9c0 863 }
57caba32 864 # assigning to $2 kills preamble formatting
fd8718a5 865 $2 = fixedsub(filename, url[n], $2)
f171fd40 866
8ea8f0ae 867 $2 = unify_url($2)
681a4871 868 }
8b1938ea 869
f171fd40 870
f4cb1924 871 if (field ~ /^source:/)
f171fd40 872 $1 = "Source0:"
aec1bddb 873
13b24a87 874 if (field ~ /^patch:/)
aec1bddb 875 $1 = "Patch0:"
f171fd40 876
0ea7c3cd 877 kill_preamble_macros();
aec1bddb 878 format_preamble()
f171fd40 879
c26ee7ef
ER
880 if (field ~ /requires/) {
881 # atrpms
882 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
883 }
bf0a58ea 884}
885
4c1b7426
ER
886/^%bcond_/ {
887 # do nothing
888 print
889 next
890}
c58d1357
ER
891
892# sort BR/R!
893#
894# NOTES:
895# - mixing BR/R and anything else confuses this (all will be sorted together)
b6875e34 896# so don't do that.
c58d1357 897# - comments leading the BR/R can not be associated,
b6875e34 898# so don't adapterize when the BR/R are mixed with comments
c58d1357 899ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
57caba32 900 if ($1 ~ /Pre[Rr]eq:/) {
a68f7b3b 901 sub(/Pre[Rr]eq:/, "Requires:", $1);
c58d1357 902 }
23ddcab1
ER
903 if ($1 == "BR:" ) {
904 $1 = "BuildRequires:"
905 }
906 if ($1 == "R:" ) {
907 $1 = "Requires:"
908 }
c58d1357 909 format_preamble()
8f7c516b 910# kill_preamble_macros(); # breaks tabbing
c58d1357
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
c58d1357
ER
921preamble == 1 {
922 if (b_idx > 0) {
923 isort(b_key, b_idx);
924 for (i = 1; i <= b_idx; i++) {
4932d2c6
ER
925 v = b_val[b_key[i]];
926 sub(/[ \t]+$/, "", v);
927 print "" v;
c58d1357
ER
928 }
929 b_idx = 0
930 }
931}
932
7a72f436 933# main() ;-)
bf0a58ea 934{
aec1bddb 935 preamble = 1
f171fd40 936
70a1dc9e 937 sub(/[ \t]+$/, "")
aec1bddb 938 print
1462d6a3
ER
939
940 if (name_seen == 0 && name) {
31702e1e 941 print "Name:\t\t" name
1462d6a3
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 }
32908bc5
ER
954
955 if (did_build_root == 0) {
4ab1678b 956# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
32908bc5
ER
957 did_build_root = 1
958 }
4ab1678b
ER
959 if (did_groups == 0) {
960# print "Group:\t\tunknown"
961 did_groups = 1
962 }
a1aa4976 963}
964
f1991554 965
a1aa4976 966END {
eee34ffb 967 if (do_not_touch_anything)
968 exit 0
f171fd40 969
b6875e34
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 }
1c955424 976
f1991554 977 close(changelog_file)
978 while ((getline < changelog_file) > 0)
979 print
980 system("rm -f " changelog_file)
48c6019c 981
1c52b18e
SZ
982 if (did_clean == 0) {
983 print ""
984 print "%clean"
985 print "rm -rf $RPM_BUILD_ROOT"
986 }
987
dda3eaa5
SZ
988 if (date == 0) {
989 print ""
990 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
991 }
f171fd40 992
1c955424 993 if (has_changelog == 0) {
1395ea1c 994 print "%changelog"
b6875e34 995 }
dda3eaa5 996
1c955424 997 if (boc > 2) {
5bdbef27 998 print "* %{date} PLD Team <feedback@pld-linux.org>"
b6875e34 999 }
d31b8a48 1000 if (boc > 1) {
f818cd64 1001 printf "All persons listed below can be reached at "
5bdbef27 1002 print "<cvs_login>@pld-linux.org\n"
a1aa4976 1003 }
1c955424 1004 if (boc > 0) {
d31b8a48 1005 print "$" "Log:$"
b6875e34 1006 }
bf0a58ea 1007}
1008
fd8718a5 1009# substitutes fixed strings (not regexps)
98e37f1f 1010function fixedsub(s1,s2,t, ind) {
7a72f436 1011 if (ind = index(t,s1))
1012 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1013 return t
fd8718a5
SZ
1014}
1015
98e37f1f
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
8b1938ea 1025# There should be one or two tabs after the colon.
1026function format_preamble()
1027{
57caba32 1028 if (/^#/ || /^%bcond_with/) {
08f60a73
ER
1029 return;
1030 }
aec1bddb 1031 sub(/:[ \t]*/, ":")
2b94cfb4
ER
1032 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1033 if (RLENGTH < 8) {
aec1bddb 1034 sub(/:/, ":\t\t")
b6875e34 1035 } else {
aec1bddb 1036 sub(/:/, ":\t")
b6875e34 1037 }
8b1938ea 1038 }
1039}
1040
43c05c3c 1041# Replace directly specified directories with macros
1042function use_macros()
1043{
13b24a87
ER
1044 # -m, --skip-macros, --no-macros -- skip macros subst
1045 if (ENVIRON["SKIP_MACROS"]) {
1046 return
1047 }
1048
b05d5275
ER
1049 # leave inline sed lines alone
1050 if (/(%{__sed}|sed) -i -e/) {
1051 return;
1052 }
1053
b6875e34
ER
1054 sub("%{_defaultdocdir}", "%{_docdir}");
1055 sub("%{_bindir}/perl", "%{__perl}");
1056 sub("%{_bindir}/python", "%{__python}");
36d9a33d 1057
a372a159
ER
1058 gsub(infodir, "%{_infodir}")
1059
336c1a4f
ER
1060 gsub(perl_sitearch, "%{perl_sitearch}")
1061 gsub(perl_archlib, "%{perl_archlib}")
1062 gsub(perl_privlib, "%{perl_privlib}")
336c1a4f
ER
1063 gsub(perl_vendorlib, "%{perl_vendorlib}")
1064 gsub(perl_vendorarch, "%{perl_vendorarch}")
1065 gsub(perl_sitelib, "%{perl_sitelib}")
9732cb3d
ER
1066
1067 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
4ab1678b 1068 gsub(py_sitedir, "%{py_sitedir}")
1bdf7824 1069 gsub(py_scriptdir, "%{py_scriptdir}")
4a62fb54 1070 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
22ee0568 1071 gsub("%{python_sitelib}", "%{py_sitedir}")
6f2c1099
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}")
51847161 1078 gsub(ruby_rdocdir, "%{ruby_rdocdir}")
6f2c1099 1079
4a62fb54
ER
1080 gsub("%{_datadir}/applications", "%{_desktopdir}")
1081 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
ee9487af 1082 gsub("%{_datadir}/java", "%{_javadir}")
336c1a4f 1083
e00f41b5 1084 gsub(libdir, "%{_libdir}")
ee9487af 1085 gsub(javadir, "%{_javadir}")
e00f41b5 1086
aec1bddb 1087 gsub(bindir, "%{_bindir}")
74edc57e 1088 gsub("%{prefix}/bin", "%{_bindir}")
b05d5275 1089 if (prefix"/bin" == bindir)
0080f34c 1090 gsub("%{_prefix}/bin", "%{_bindir}")
74edc57e 1091
de69503c 1092 for (c = 1; c <= NF; c++) {
1093 if ($c ~ sbindir "/fix-info-dir")
1094 continue;
3457b4f7
ER
1095 if ($c ~ sbindir "/webapp")
1096 continue;
a372a159
ER
1097 if ($c ~ sbindir "/ldconfig")
1098 continue;
4837c1e3
ER
1099 if ($c ~ sbindir "/chsh")
1100 continue;
1101 if ($c ~ sbindir "/usermod")
1102 continue;
f06959ff
ER
1103 if ($c ~ sbindir "/chkconfig")
1104 continue;
836e411f
ER
1105 if ($c ~ sbindir "/installzope(product|3package)")
1106 continue;
de69503c 1107 gsub(sbindir, "%{_sbindir}", $c)
1108 }
1109
74edc57e 1110 gsub("%{prefix}/sbin", "%{_sbindir}")
836e411f 1111 if (prefix"/sbin" == sbindir) {
5e1d0492 1112 gsub("%{_prefix}/sbin", "%{_sbindir}")
836e411f 1113 }
74edc57e 1114
353f5eea 1115 for (c = 1; c <= NF; c++) {
0965a1a0 1116 if ($c ~ sysconfdir "/{?cron.")
de69503c 1117 continue;
0080f34c 1118 if ($c ~ sysconfdir "/{?crontab.d")
807a0f6b 1119 continue;
6c178315
ER
1120 if ($c ~ sysconfdir "/{?env.d")
1121 continue;
90a421f5 1122 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
554d6b98 1123 continue;
5d7c48a4
ER
1124 if ($c ~ sysconfdir "/{?udev")
1125 continue;
1126 if ($c ~ sysconfdir "/{?hotplug")
e61b5989 1127 continue;
0080f34c 1128 if ($c ~ sysconfdir "/{?logrotate.d")
353f5eea 1129 continue;
0080f34c 1130 if ($c ~ sysconfdir "/{?pam.d")
a9b2c8c7 1131 continue;
0080f34c 1132 if ($c ~ sysconfdir "/{?profile.d")
66ef7810 1133 continue;
0080f34c 1134 if ($c ~ sysconfdir "/{?rc.d")
9ad7f20b 1135 continue;
0080f34c 1136 if ($c ~ sysconfdir "/{?security")
a9b2c8c7 1137 continue;
0080f34c 1138 if ($c ~ sysconfdir "/{?skel")
c21d1979 1139 continue;
0080f34c 1140 if ($c ~ sysconfdir "/{?sysconfig")
66ef7810 1141 continue;
6e985933
ER
1142 if ($c ~ sysconfdir "/{?shrc.d")
1143 continue;
7c73bc0f
ER
1144 if ($c ~ sysconfdir "/{?certs")
1145 continue;
de5d18d8
ER
1146 if ($c ~ sysconfdir "/{?X11")
1147 continue;
5debd9f6
ER
1148 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1149 continue;
ff21ed9e
ER
1150 if ($c ~ sysconfdir "/{?rpm")
1151 continue;
57caba32 1152 if ($c ~ sysconfdir "/{?bash_completion.d")
6e985933 1153 continue;
57caba32 1154 if ($c ~ sysconfdir "/{?samba")
9292b547 1155 continue;
52a943cf
ER
1156 if ($c ~ sysconfdir "/shells")
1157 continue;
5dc7f5e4
ER
1158 if ($c ~ sysconfdir "/ppp")
1159 continue;
9395915a
ER
1160 if ($c ~ sysconfdir "/dbus-1")
1161 continue;
be827f42
ER
1162 if ($c ~ sysconfdir "/tmpwatch")
1163 continue;
353f5eea 1164 gsub(sysconfdir, "%{_sysconfdir}", $c)
1165 }
74edc57e 1166
c2b069de 1167 gsub(docdir, "%{_docdir}")
7cb79e98
ER
1168
1169 gsub(kdedocdir, "%{_kdedocdir}")
1170
1171 gsub(gtkdocdir, "%{_gtkdocdir}")
1172 gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1173
57caba32 1174 gsub(php_pear_dir, "%{php_pear_dir}")
4b1d6e6d 1175 gsub(php_data_dir, "%{php_data_dir}")
c2b069de 1176
c4adc376
ER
1177 for (c = 1; c <= NF; c++) {
1178 if ($c ~ datadir "/automake")
1179 continue;
13670287
ER
1180 if ($c ~ datadir "/unsermake")
1181 continue;
a9fb2db8
ER
1182 if ($c ~ datadir "/file/magic.mime")
1183 continue;
c4adc376
ER
1184 gsub(datadir, "%{_datadir}", $c)
1185 }
1186
74edc57e 1187 gsub("%{prefix}/share", "%{_datadir}")
c4adc376 1188 if (prefix"/share" == datadir)
0080f34c 1189 gsub("%{_prefix}/share", "%{_datadir}")
74edc57e 1190
826b40ea
ER
1191 # CFLAGS="-I/usr/include/ncurses is usually correct.
1192 if (!/-I\/usr\/include/) {
1193 gsub(includedir, "%{_includedir}")
1194 }
1195
74edc57e 1196 gsub("%{prefix}/include", "%{_includedir}")
826b40ea 1197 if (prefix"/include" == includedir) {
0080f34c 1198 gsub("%{_prefix}/include", "%{_includedir}")
826b40ea 1199 }
74edc57e 1200
aec1bddb 1201 gsub(mandir, "%{_mandir}")
826b40ea 1202 if ($0 !~ "%{_datadir}/manual") {
5e1d0492 1203 gsub("%{_datadir}/man", "%{_mandir}")
826b40ea 1204 }
9ce0df66 1205 gsub("%{_prefix}/share/man", "%{_mandir}")
1206 gsub("%{prefix}/share/man", "%{_mandir}")
74edc57e 1207 gsub("%{prefix}/man", "%{_mandir}")
1208 gsub("%{_prefix}/man", "%{_mandir}")
1209
aec1bddb 1210 gsub(infodir, "%{_infodir}")
74edc57e 1211 gsub("%{prefix}/info", "%{_infodir}")
1212 gsub("%{_prefix}/info", "%{_infodir}")
1213
0965a1a0 1214 if (prefix !~ "/X11R6") {
1215 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1216 }
cfbf94ec 1217
2a638fcb 1218 gsub(examplesdir, "%{_examplesdir}")
7c6b85c4 1219
efd2d668 1220 if (prefix != "/") {
a9fb2db8
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;
3457b4f7
ER
1226 if ($c ~ prefix "/sbin/webapp")
1227 continue;
4837c1e3
ER
1228 if ($c ~ prefix "/sbin/chsh")
1229 continue;
1230 if ($c ~ prefix "/sbin/usermod")
1231 continue;
836e411f
ER
1232 if ($c ~ prefix "/sbin/installzope(product|3package)")
1233 continue;
a9fb2db8
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;
97dae8dc
ER
1240 if ($c ~ prefix "/lib/pkgconfig")
1241 continue;
826b40ea 1242
b5fc4b79
ER
1243 # CFLAGS="-I/usr..." is usually correct.
1244 if (/-I\/usr/)
826b40ea 1245 continue;
474f0944
ER
1246 # same for LDFLAGS="-L/usr..."
1247 if (/-L\/usr/)
1248 continue;
826b40ea 1249
a9fb2db8
ER
1250 gsub(prefix, "%{_prefix}", $c)
1251 }
de69503c 1252 }
efd2d668 1253 gsub("%{prefix}", "%{_prefix}")
1254 }
3bcd1fab 1255
53d16b95
ER
1256 # replace back
1257 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1258 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1259
3bcd1fab 1260 gsub("%{PACKAGE_VERSION}", "%{version}")
1261 gsub("%{PACKAGE_NAME}", "%{name}")
b35c10f1 1262
59e208d5 1263 gsub("^make$", "%{__make}")
1264 gsub("^make ", "%{__make} ")
61b753c5 1265 gsub("^gcc ", "%{__cc} ")
67fe737e 1266 gsub("^rm --interactive=never ", "%{__rm} ")
9aece8c8 1267
cab706de
ER
1268 # mandrake specs
1269 gsub("^%make$", "%{__make}")
1270 gsub("^%make ", "%{__make} ")
1271 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
b7ca53a5 1272 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
63d47bae 1273 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
cab706de 1274 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b7ca53a5 1275 gsub("^%{__install}", "install")
cab706de
ER
1276 gsub("%optflags", "%{rpmcflags}")
1277 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1278
a6ed8b03 1279 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
d11acde9 1280 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
5e15e952
ER
1281 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1282 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
63d47bae 1283 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
43f8581a 1284 $0 = fixedsub("%__install", "install", $0);
63d47bae 1285
740e3cd8
ER
1286 # split configure line to multiple lines
1287 if (/%configure / && !/\\$/) {
1288 $0 = format_configure($0);
1289 }
1290
ac779c71
ER
1291 gsub("%_bindir", "%{_bindir}")
1292 gsub("%_datadir", "%{_datadir}")
1293 gsub("%_iconsdir", "%{_iconsdir}")
c2b069de
ER
1294 gsub("%_sbindir", "%{_sbindir}")
1295 gsub("%_mandir", "%{_mandir}")
1296 gsub("%name", "%{name}")
b6875e34
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");
a6ed8b03 1304
9aece8c8 1305 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1306 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1c955424 1307
ecaaa784 1308 if (/^ant / || /^%{ant}/) {
1c955424 1309 sub(/^ant/, "%ant")
ecaaa784 1310 sub(/^%{ant}/, "%ant")
b6875e34
ER
1311 add_br("BuildRequires: jpackage-utils");
1312 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1313 }
1c955424 1314
2dc1a8cd
ER
1315 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1316 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
9ae21f47 1317}
f171fd40 1318
740e3cd8
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
7c23055b
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) {
54caef3d 1335 j-- ; A[j+1] = A[j]
1336 }
7c23055b
ER
1337 A[j] = hold
1338 }
1339 # sentinel A[0] = "" will be created if needed
1340}
1341
1342
23e0529e 1343function use_files_macros( i, n, t, a, l)
eee34ffb 1344{
e6f1551d
ER
1345 use_macros()
1346
da6457aa
ER
1347 # skip comments
1348 if (/^#/) {
484bbf6d 1349 return 1;
da6457aa
ER
1350 }
1351
f158eddc
ER
1352 sub("^%doc %{_mandir}", "%{_mandir}")
1353
eee34ffb 1354 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1355 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
7c23055b 1356
61cb9711
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
16bb0647
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"
85bed066
ER
1365 }
1366
5dc673eb 1367 # replace back
8f6ddcd9 1368 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
3feaeac8 1369 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
8f6ddcd9
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")
5dc673eb 1378 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
9395915a 1379 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
be827f42
ER
1380 gsub("%{_sysconfdir}/pki", "/etc/pki")
1381 gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
2fc0e274 1382
5dc673eb
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/) {
2fc0e274
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 *,/) {
89c604c7 1393 gsub("^%attr\\(... *,", "%attr(754,");
2fc0e274 1394 }
9a7a5776
ER
1395 }
1396
71a4728c 1397 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
55356feb
ER
1398 $0 = "%attr(755,root,root) " $0
1399 }
1400
ab9b09e2
ER
1401 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1402 $0 = "%attr(755,root,root) " $0
1403 }
1404
f56d5519
ER
1405 # /etc/sysconfig files
1406 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
a825b76b 1407 # attr not required, allow default 644 attr
6ea64b8d 1408 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
6ea0907e 1409 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
5dc673eb
ER
1410 gsub("%config", "%config(noreplace)")
1411 }
f56d5519 1412
6ea0907e 1413 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
5dc673eb
ER
1414 $NF = "%config(noreplace) " $NF
1415 }
f56d5519 1416
5dc673eb 1417 if (/\/etc\/sysconfig\// && /%attr\(755/) {
89c604c7 1418 gsub("^%attr\\(... *,", "%attr(640,");
5dc673eb 1419 }
f56d5519 1420
5dc673eb
ER
1421 if (/\/etc\/sysconfig\// && !/%verify/) {
1422 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1423 }
a825b76b
ER
1424 }
1425
f56d5519 1426 # kill leading zeros
7dfb4dea
ER
1427 if (/%attr\(0[1-9]/) {
1428 gsub("%attr\\(0", "%attr(")
1429 }
f9d5d512 1430
95ae7268 1431 # kill leading whitespace
b8085249 1432 gsub(/^ +/, "");
95ae7268 1433
b6875e34
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 }
46292535 1440
7c23055b 1441 # sort %verify attrs
12bfc5c8 1442 if (match($0, /%verify\(not([^)]+)\)/)) {
7c23055b 1443 t = substr($0, RSTART, RLENGTH)
8409a9b2
ER
1444 # kill commas: %verify(not,md5,size,mtime)
1445 gsub(/,/, " ", t);
1446
7c23055b
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
12bfc5c8 1457 gsub(/%verify\(not[^)]+\)/, s)
7c23055b 1458 }
13defa79
ER
1459
1460 if (/%{_mandir}/) {
d64e2ec0 1461 gsub("\.gz$", "*")
13defa79 1462 }
5e15e952 1463
ef6d2b7a 1464 # locale dir and no %lang -> bad
b9080a1b 1465 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
ef6d2b7a
ER
1466 $(NF + 1) = "# FIXME consider using %find_lang"
1467 }
1468
23e0529e 1469 # python egg-infos
860a6f52 1470 if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
484bbf6d
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
860a6f52 1477 l = index($0, "/");
484bbf6d 1478 t = substr($0, 0, l);
23e0529e 1479 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
860a6f52 1480 if (match(s, "[^-]+$")) {
484bbf6d
ER
1481#printf("s[%s]; start[%d]; length[%d]\n", s, RSTART, RLENGTH);
1482 if (RSTART > 1) {
1483 s = substr(s, 0, RSTART - 1);
5384172a 1484 }
484bbf6d 1485#printf("s2[%s]\n", s);
23e0529e 1486 print "%if \"%{py_ver}\" > \"2.4\""
484bbf6d 1487#print t "/.+.egg-info"
860a6f52 1488 gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
23e0529e
ER
1489 print
1490 print "%endif"
484bbf6d 1491 return 0;
23e0529e
ER
1492 }
1493 }
1494
5e15e952
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);
97dae8dc
ER
1499
1500 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1501 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1502 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
eee20d8d
ER
1503
1504 gsub("%{_datadir}/applications", "%{_desktopdir}");
9730a549 1505 gsub("%{_datadir}/icons", "%{_iconsdir}");
0904210e 1506 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
4b1d6e6d
ER
1507 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1508 gsub("%{_datadir}/php", "%{php_data_dir}");
484bbf6d
ER
1509
1510 return 1
eee34ffb 1511}
236b87ac 1512
723ce732
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
236b87ac 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
f171fd40 1528 if (format_indent == -1)
236b87ac 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
f171fd40 1537
236b87ac 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
f171fd40 1550
236b87ac 1551 line = substr(line, RSTART + RLENGTH)
1552 }
1553 if (newline ~ /[^\t ]/) {
1554 print newline
1555 }
1556}
1557
eb4bf70e 1558function cflags(var)
1559{
85e708f2 1560 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1561 removed[var] = 1
eb4bf70e 1562 return 0
85e708f2 1563 }
f171fd40 1564
246ad57e 1565 if (!/!\?debug/)
fde8f52a 1566 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
eb4bf70e 1567 return 1
1568}
0ea7c3cd 1569
8ea8f0ae
ER
1570function unify_url(url)
1571{
1572
1573 # sourceforge urls
ed54c02b 1574 # Docs about sourceforge mirror system: http://sourceforge.net/docs/B05/
8ea8f0ae
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
11401cd0 1595 # gnu.org
22753e56 1596 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
29c65f09 1597 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
11401cd0 1598
8ea8f0ae
ER
1599 return url
1600}
1601
4e26c5f2
ER
1602function demacroize(str)
1603{
8f7c516b
ER
1604 if (mod_name) {
1605 sub("%{mod_name}", mod_name, str);
1606 }
1607 if (name) {
1608 sub("%{name}", name, str);
1609 }
4e26c5f2
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 }
59de1799
ER
1619 if (_pre) {
1620 sub("%{_pre}", _pre, str);
1621 }
4e26c5f2
ER
1622 if (_snap) {
1623 sub("%{_snap}", _snap, str);
1624 }
3c5e6e5f
ER
1625 if (subver) {
1626 sub("%{subver}", subver, str);
1627 }
4e26c5f2
ER
1628 return str;
1629}
1630
0ea7c3cd
ER
1631function kill_preamble_macros()
1632{
a64d362e
ER
1633 if ($1 ~ /^Obsoletes:/) {
1634 # NB! assigning $2 a value breaks tabbing
1635 $2 = demacroize($2);
1636 }
1637 if ($1 ~ /^URL:/) {
8f7c516b 1638 # NB! assigning $2 a value breaks tabbing
4e26c5f2 1639 $2 = demacroize($2);
ec30d23e 1640 $2 = unify_url($2)
0ea7c3cd
ER
1641 }
1642}
ba377afe 1643
9815f9b2
ER
1644function get_epoch(pkg, ver, epoch)
1645{
cccfa553
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
9815f9b2
ER
1651 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1652 shell | getline epoch;
1653 return epoch;
1654}
1655
ba377afe 1656function format_requires(tag, value, n, p, i, deps, ndeps) {
87b130e2
ER
1657 # skip any formatting for commented out items or some weird macros
1658 if (/^#/ || /%\(/) {
3f81d059
ER
1659 return tag "\t" value
1660 }
ba377afe
ER
1661 n = split(value, p, / *,? */);
1662 for (i = 1; i <= n; i++) {
1663 if (p[i+1] ~ /[<=>]/) {
9815f9b2
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 }
ba377afe
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}
6ebff802
ER
1683
1684function use_tabs()
1685{
1686 # reverse vim: ts=4 sw=4 et
1687 gsub(/ /, "\t");
1688}
1c955424
ER
1689
1690function add_br(br)
1691{
b6875e34 1692 BR[BR_count++] = br
1c955424
ER
1693}
1694
92fa789e
ER
1695function replace_requires()
1696{
1697
1698 # jpackages
1699 sub(/^java-devel$/, "jdk", $2);
d95a12d3
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);
92fa789e 1705 sub(/^jakarta-ant$/, "ant", $2);
d95a12d3
ER
1706 sub(/^xerces-j2$/, "java-xerces", $2);
1707 sub(/^xerces-j$/, "java-xerces", $2);
92fa789e
ER
1708 sub(/^ldapjdk$/, "ldapsdk", $2);
1709 sub(/^saxon-scripts$/, "saxon", $2);
d95a12d3
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);
22e27c40
ER
1717 sub(/^wsdl4j$/, "java-wsdl4j", $2);
1718 sub(/^uddi4j$/, "java-uddi4j", $2);
1719 sub(/^hamcrest$/, "java-hamcrest", $2);
92fa789e
ER
1720
1721 # redhat virtual
1722 sub(/^tftp-server$/, "tftpdaemon", $2);
1723
76c234fd 1724 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
03180d14 1725 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
76c234fd 1726
06509408
ER
1727 # fedora
1728 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1729
92fa789e
ER
1730 replace_php_virtual_deps()
1731}
1732
30cd4686
ER
1733# php virtual deps as discussed in devel-en
1734function replace_php_virtual_deps()
1735{
b6875e34
ER
1736 pkg = $2
1737# if (pkg == "php-program") {
1738# $0 = $1 "\t/usr/bin/php"
1739# return
1740# }
1741
f72c52cf
ER
1742# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1743# sub(/^php-/, "php(", pkg);
1744# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1745# $2 = pkg
1746# }
b6875e34
ER
1747
1748 if (pkg ~/^php$/) {
1749 $2 = "webserver(php)";
1750 if ($4 ~ /^[0-9]:/) {
1751 $4 = substr($4, 3);
1752 }
1753 }
1754
1755 if (pkg ~/^php4$/) {
1756 $2 = "webserver(php)";
1757 if ($4 ~ /^[0-9]:/) {
1758 $4 = substr($4, 3);
1759 }
1760 }
30cd4686
ER
1761}
1762
683ce9e3
ER
1763# Load rpm macros
1764# you should update the list also in adapter when making changes here
1765function import_rpm_macros() {
b716f676 1766 # File with rpm groups
a877f3a5 1767 topdir = ENVIRON["_topdir"]
b716f676 1768
a877f3a5 1769 if (!topdir) {
b716f676
ER
1770 print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
1771 do_not_touch_anything = 1
1772 exit(1);
1773 }
1774
683ce9e3
ER
1775 # get cvsaddress for changelog section
1776 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
1777 _cvsmaildomain = ENVIRON["_cvsmaildomain"]
1778 _cvsmailfeedback = ENVIRON["_cvsmailfeedback"]
1779
683ce9e3
ER
1780 prefix = ENVIRON["_prefix"]
1781 bindir = ENVIRON["_bindir"]
1782 sbindir = ENVIRON["_sbindir"]
1783 libdir = ENVIRON["_libdir"]
1784 sysconfdir = ENVIRON["_sysconfdir"]
1785 datadir = ENVIRON["_datadir"]
1786 includedir = ENVIRON["_includedir"]
1787 mandir = ENVIRON["_mandir"]
1788 infodir = ENVIRON["_infodir"]
1789 examplesdir = ENVIRON["_examplesdir"]
1790 docdir = ENVIRON["_defaultdocdir"]
1791 kdedocdir = ENVIRON["_kdedocdir"]
1792 gtkdocdir = ENVIRON["_gtkdocdir"]
1793 desktopdir = ENVIRON["_desktopdir"]
1794 pixmapsdir = ENVIRON["_pixmapsdir"]
1795 javadir = ENVIRON["_javadir"]
1796
1797 perl_sitearch = ENVIRON["perl_sitearch"]
1798 perl_archlib = ENVIRON["perl_archlib"]
1799 perl_privlib = ENVIRON["perl_privlib"]
1800 perl_vendorlib = ENVIRON["perl_vendorlib"]
1801 perl_vendorarch = ENVIRON["perl_vendorarch"]
1802 perl_sitelib = ENVIRON["perl_sitelib"]
1803
1804 py_sitescriptdir = ENVIRON["py_sitescriptdir"]
1805 py_sitedir = ENVIRON["py_sitedir"]
1806 py_scriptdir = ENVIRON["py_scriptdir"]
1807 py_ver = ENVIRON["py_ver"]
1808
1809 ruby_archdir = ENVIRON["ruby_archdir"]
1810 ruby_ridir = ENVIRON["ruby_ridir"]
1811 ruby_rubylibdir = ENVIRON["ruby_rubylibdir"]
1812 ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
1813 ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
51847161 1814 ruby_rdocdir = ENVIRON["ruby_rdocdir"]
683ce9e3
ER
1815
1816 php_pear_dir = ENVIRON["php_pear_dir"]
1817 php_data_dir = ENVIRON["php_data_dir"]
1818 tmpdir = ENVIRON["tmpdir"]
1819}
1820
1821function replace_groupnames(group) {
98e37f1f
ER
1822 group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
1823 group = replace(group, "Application/Multimedia", "Applications/Multimedia");
1824 group = replace(group, "Application/System", "Applications/System");
1825 group = replace(group, "Applications/Compilers", "Development/Languages");
1826 group = replace(group, "Applications/Daemons", "Daemons");
1827 group = replace(group, "Applications/Internet", "Applications/Networking");
1828 group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
1829 group = replace(group, "Applications/Productivity", "X11/Applications");
1830 group = replace(group, "Database", "Applications/Databases");
1831 group = replace(group, "Development/C", "Development/Libraries");
1832 group = replace(group, "Development/Code Generators", "Development");
1833 group = replace(group, "Development/Docs", "Documentation");
1834 group = replace(group, "Development/Documentation", "Documentation");
1835 group = replace(group, "Development/Java", "Development/Languages/Java");
1836 group = replace(group, "Development/Languages/Other", "Development/Languages");;
1837 group = replace(group, "Development/Languages/Ruby", "Development/Languages");
1838 group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
1839 group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
1840 group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
1841 group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
1842 group = replace(group, "Development/Other", "Development");
1843 group = replace(group, "Development/Python", "Development/Languages/Python");
1844 group = replace(group, "Development/Testing", "Development");
1845 group = replace(group, "Emulators", "Applications/Emulators");
1846 group = replace(group, "Games", "Applications/Games");
1847 group = replace(group, "Library/Development", "Development/Libraries");
1848 group = replace(group, "Networking/Deamons", "Networking/Daemons");
1849 group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
1850 group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
1851 group = replace(group, "Shells", "Applications/Shells");
1852 group = replace(group, "System Environment/Base", "Base");
1853 group = replace(group, "System Environment/Daemons", "Daemons");
1854 group = replace(group, "System Environment/Kernel", "Base/Kernel");
1855 group = replace(group, "System Environment/Libraries", "Libraries");
1856 group = replace(group, "System", "Base");
1857 group = replace(group, "System/Base", "Base");
1858 group = replace(group, "System/Kernel and hardware", "Base/Kernel");
1859 group = replace(group, "System/Libraries", "Libraries");
1860 group = replace(group, "System/Servers", "Daemons");
1861 group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
1862 group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
1863 group = replace(group, "Web/Database", "Applications/WWW");
1864 group = replace(group, "X11/GNOME", "X11/Applications");
1865 group = replace(group, "X11/GNOME/Applications", "X11/Applications");
1866 group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
1867 group = replace(group, "X11/Games", "X11/Applications/Games");
1868 group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
1869 group = replace(group, "X11/Library", "X11/Libraries");
1870 group = replace(group, "X11/Utilities", "X11/Applications");
1871 group = replace(group, "X11/XFree86", "X11");
1872 group = replace(group, "X11/Xserver", "X11/Servers");
ad9ea417
ER
1873
1874 return group;
1875}
1876
2b94cfb4 1877# vim:ts=4:sw=4
This page took 0.499113 seconds and 4 git commands to generate.