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