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