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