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