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