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