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