]> git.pld-linux.org Git - packages/adapter.git/blame - adapter.awk
- move groups replace to function
[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);
ad9ea417 679 group = replace_groupnames(group);
d9e2bd9b
ER
680 $0 = "Group:\t\t" group
681
682 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
7a72f436 683 x11 = 1
8e5358f8 684
d9e2bd9b 685 byl_plik_z_groupmi = 0
8e5358f8
SZ
686 byl_opis_grupy = 0
687 while ((getline linia_grup < groups_file) > 0) {
d9e2bd9b
ER
688 byl_plik_z_groupmi = 1
689 if (linia_grup == group) {
8e5358f8
SZ
690 byl_opis_grupy = 1
691 break
692 }
693 }
69501a12 694
d9e2bd9b 695 if (!byl_plik_z_groupmi)
8e5358f8
SZ
696 print "######\t\t" groups_file ": no such file"
697 else if (!byl_opis_grupy)
698 print "######\t\t" "Unknown group!"
f171fd40 699
8e5358f8 700 close(groups_file)
4ab1678b 701 did_groups = 1
8e5358f8 702 }
f171fd40 703
307f5229 704 if (field ~ /prereq:/) {
a68f7b3b 705 sub(/Pre[Rr]eq:/, "Requires:", $1);
307f5229
ER
706 }
707
4aa6db15 708 # split (build)requires, obsoletes on commas
44ff0c79 709 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
ba377afe
ER
710 value = substr($0, index($0, $2));
711 $0 = format_requires($1, value);
f12ab15d 712 }
b6875e34 713
8e734165
ER
714 # BR: tar (and others) is to common (rpm-build requires it)
715 if (field ~ /^buildrequires:/) {
eb028bca
ER
716 l = substr($0, index($0, $2));
717 if (l == "awk" ||
718 l == "binutils" ||
719 l == "bzip2" ||
720 l == "cpio" ||
721 l == "diffutils" ||
722 l == "elfutils" ||
723 l == "fileutils" ||
724 l == "findutils" ||
725 l == "glibc-devel" ||
726 l == "grep" ||
727 l == "gzip" ||
728 l == "make" ||
729 l == "patch" ||
730 l == "sed" ||
731 l == "sh-utils" ||
732 l == "tar" ||
733 l == "textutils") {
8e734165
ER
734 next
735 }
d0297fb3 736
92fa789e 737 replace_requires();
8e734165
ER
738 }
739
30cd4686 740 if (field ~ /^requires:/) {
92fa789e 741 replace_requires();
b6875e34 742 }
30cd4686
ER
743
744
ff21ed9e 745 # obsolete/unwanted tags
32908bc5 746 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
aec1bddb 747 next
ba377afe 748 }
f171fd40 749
4ab1678b 750 if (field ~ /buildroot:/) {
376e6bc4 751 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
4ab1678b
ER
752 did_build_root = 1
753 }
681a4871 754
681a4871 755 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
4932d2c6 756 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
aec1bddb 757 $1 = "License:"
4932d2c6 758 }
f171fd40 759
3b07e07f
ER
760 if (field ~ /license:/) {
761 l = substr($0, index($0, $2));
762 if (l == "Python Software Foundation License") {
763 l = "PSF"
764 }
6112ae02
ER
765 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") {
766 l = "Apache v2.0"
767 }
768 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
769 l = "Apache"
770 }
771 if (l == "Apache-style License" || l == "Apache-style Software License") {
772 l = "Apache-like"
773 }
774 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
775 l = "Apache v1.1"
776 }
ee9487af
ER
777 if (l == "GPLv2") {
778 l = "GPL v2"
779 }
780 if (l == "GPLv2+") {
781 l = "GPL v2+"
782 }
3b07e07f
ER
783 $0 = "License:\t" l;
784 }
785
786
1462d6a3 787 if (field ~ /name:/) {
6426afb8 788 if ($2 == "%{name}" && name) {
63d47bae
ER
789 $2 = name
790 }
aec1bddb 791 name = $2
1462d6a3
ER
792 name_seen = 1;
793 }
681a4871 794
1462d6a3 795 if (field ~ /version:/) {
63d47bae
ER
796 if ($2 == "%{version}" && version) {
797 $2 = version
798 }
aec1bddb 799 version = $2
1462d6a3
ER
800 version_seen = 1;
801 }
802
803 if (field ~ /release:/) {
63d47bae
ER
804 if ($2 == "%{release}" && release) {
805 $2 = release
806 }
4ab1678b 807 sub(/%atrelease /, "0.", $0)
1462d6a3
ER
808 release = $2
809 release_seen = 1;
810 }
681a4871 811
32908bc5 812
c4dde22b
SZ
813 if (field ~ /serial:/)
814 $1 = "Epoch:"
b6853342 815
32908bc5
ER
816 if (field ~ /home-page:/)
817 $1 = "URL:"
818
89b1cd55 819 # proper caps
cf038723 820 if (field ~ /^url:$/)
89b1cd55
ER
821 $1 = "URL:"
822
32908bc5
ER
823 if (field ~ /^description:$/)
824 $1 = "\n%description\n"
825
681a4871 826 # Use %{name} and %{version} in the filenames in "Source:"
f4cb1924 827 if (field ~ /^source/ || field ~ /patch/) {
aec1bddb 828 n = split($2, url, /\//)
fd8718a5
SZ
829 if (url[n] ~ /\.gz$/) {
830 url[n+1] = ".gz" url[n+1]
831 sub(/\.gz$/,"",url[n])
832 }
833 if (url[n] ~ /\.zip$/) {
834 url[n+1] = ".zip" url[n+1]
835 sub(/\.zip$/,"",url[n])
836 }
837 if (url[n] ~ /\.tar$/) {
838 url[n+1] = ".tar" url[n+1]
839 sub(/\.tar$/,"",url[n])
840 }
841 if (url[n] ~ /\.patch$/) {
842 url[n+1] = ".patch" url[n+1]
843 sub(/\.patch$/,"",url[n])
844 }
845 if (url[n] ~ /\.bz2$/) {
846 url[n+1] = ".bz2" url[n+1]
847 sub(/\.bz2$/,"",url[n])
848 }
dac4e142
SZ
849 if (url[n] ~ /\.logrotate$/) {
850 url[n+1] = ".logrotate" url[n+1]
851 sub(/\.logrotate$/,"",url[n])
852 }
853 if (url[n] ~ /\.pamd$/) {
854 url[n+1] = ".pamd" url[n+1]
855 sub(/\.pamd$/,"",url[n])
856 }
857
a3fcc309 858 # allow %{name} only in last url component
ced0372e
ER
859 s = ""
860 for (i = 1; i <= n; i++) {
861 url[i] = fixedsub("%{name}", name, url[i])
862 if (s) {
863 s = s "/" url[i]
864 } else {
865 s = url[i]
866 }
867 }
868 $2 = s url[n+1]
869
aec1bddb 870 filename = url[n]
5e028343
ER
871 if (name) {
872 url[n] = fixedsub(name, "%{name}", url[n])
873 }
755ab9c0 874 if (field ~ /source/) {
5e028343
ER
875 if (version) {
876 url[n] = fixedsub(version, "%{version}", url[n])
877 }
755ab9c0
ER
878 if (_beta) {
879 url[n] = fixedsub(_beta, "%{_beta}", url[n])
880 }
881 if (_rc) {
882 url[n] = fixedsub(_rc, "%{_rc}", url[n])
883 }
59de1799
ER
884 if (_pre) {
885 url[n] = fixedsub(_pre, "%{_pre}", url[n])
886 }
755ab9c0
ER
887 if (_snap) {
888 url[n] = fixedsub(_snap, "%{_snap}", url[n])
889 }
3c5e6e5f
ER
890 if (subver) {
891 url[n] = fixedsub(subver, "%{subver}", url[n])
892 }
755ab9c0 893 }
57caba32 894 # assigning to $2 kills preamble formatting
fd8718a5 895 $2 = fixedsub(filename, url[n], $2)
f171fd40 896
8ea8f0ae 897 $2 = unify_url($2)
681a4871 898 }
8b1938ea 899
f171fd40 900
f4cb1924 901 if (field ~ /^source:/)
f171fd40 902 $1 = "Source0:"
aec1bddb 903
13b24a87 904 if (field ~ /^patch:/)
aec1bddb 905 $1 = "Patch0:"
f171fd40 906
0ea7c3cd 907 kill_preamble_macros();
aec1bddb 908 format_preamble()
f171fd40 909
c26ee7ef
ER
910 if (field ~ /requires/) {
911 # atrpms
912 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
913 }
bf0a58ea 914}
915
4c1b7426
ER
916/^%bcond_/ {
917 # do nothing
918 print
919 next
920}
c58d1357
ER
921
922# sort BR/R!
923#
924# NOTES:
925# - mixing BR/R and anything else confuses this (all will be sorted together)
b6875e34 926# so don't do that.
c58d1357 927# - comments leading the BR/R can not be associated,
b6875e34 928# so don't adapterize when the BR/R are mixed with comments
c58d1357 929ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
57caba32 930 if ($1 ~ /Pre[Rr]eq:/) {
a68f7b3b 931 sub(/Pre[Rr]eq:/, "Requires:", $1);
c58d1357 932 }
23ddcab1
ER
933 if ($1 == "BR:" ) {
934 $1 = "BuildRequires:"
935 }
936 if ($1 == "R:" ) {
937 $1 = "Requires:"
938 }
c58d1357 939 format_preamble()
8f7c516b 940# kill_preamble_macros(); # breaks tabbing
c58d1357
ER
941
942 b_idx++;
943 l = substr($0, index($0, $2));
944 b_ktmp = b_makekey($1, l);
945 b_key[b_idx] = b_ktmp;
946 b_val[b_ktmp] = $0;
947
948 next;
949}
950
c58d1357
ER
951preamble == 1 {
952 if (b_idx > 0) {
953 isort(b_key, b_idx);
954 for (i = 1; i <= b_idx; i++) {
4932d2c6
ER
955 v = b_val[b_key[i]];
956 sub(/[ \t]+$/, "", v);
957 print "" v;
c58d1357
ER
958 }
959 b_idx = 0
960 }
961}
962
7a72f436 963# main() ;-)
bf0a58ea 964{
aec1bddb 965 preamble = 1
f171fd40 966
70a1dc9e 967 sub(/[ \t]+$/, "")
aec1bddb 968 print
1462d6a3
ER
969
970 if (name_seen == 0 && name) {
31702e1e 971 print "Name:\t\t" name
1462d6a3
ER
972 name_seen = 1
973 }
974
975 if (version_seen == 0 && version) {
976 print "Version:\t" version
977 version_seen = 1
978 }
979
980 if (release_seen == 0 && release) {
981 print "Release:\t" release
982 release_seen = 1
983 }
32908bc5
ER
984
985 if (did_build_root == 0) {
4ab1678b 986# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
32908bc5
ER
987 did_build_root = 1
988 }
4ab1678b
ER
989 if (did_groups == 0) {
990# print "Group:\t\tunknown"
991 did_groups = 1
992 }
a1aa4976 993}
994
f1991554 995
a1aa4976 996END {
eee34ffb 997 if (do_not_touch_anything)
998 exit 0
f171fd40 999
b6875e34
ER
1000 # TODO: need to output these in proper place
1001 if (BR_count > 0) {
1002 for (i = 0; i <= BR_count; i++) {
1003 print BR[i];
1004 }
1005 }
1c955424 1006
f1991554 1007 close(changelog_file)
1008 while ((getline < changelog_file) > 0)
1009 print
1010 system("rm -f " changelog_file)
48c6019c 1011
1c52b18e
SZ
1012 if (did_clean == 0) {
1013 print ""
1014 print "%clean"
1015 print "rm -rf $RPM_BUILD_ROOT"
1016 }
1017
dda3eaa5
SZ
1018 if (date == 0) {
1019 print ""
1020 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1021 }
f171fd40 1022
1c955424 1023 if (has_changelog == 0) {
1395ea1c 1024 print "%changelog"
b6875e34 1025 }
dda3eaa5 1026
1c955424 1027 if (boc > 2) {
5bdbef27 1028 print "* %{date} PLD Team <feedback@pld-linux.org>"
b6875e34 1029 }
d31b8a48 1030 if (boc > 1) {
f818cd64 1031 printf "All persons listed below can be reached at "
5bdbef27 1032 print "<cvs_login>@pld-linux.org\n"
a1aa4976 1033 }
1c955424 1034 if (boc > 0) {
d31b8a48 1035 print "$" "Log:$"
b6875e34 1036 }
bf0a58ea 1037}
1038
7a72f436 1039function fixedsub(s1,s2,t, ind) {
fd8718a5 1040# substitutes fixed strings (not regexps)
7a72f436 1041 if (ind = index(t,s1))
1042 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1043 return t
fd8718a5
SZ
1044}
1045
8b1938ea 1046# There should be one or two tabs after the colon.
1047function format_preamble()
1048{
57caba32 1049 if (/^#/ || /^%bcond_with/) {
08f60a73
ER
1050 return;
1051 }
aec1bddb 1052 sub(/:[ \t]*/, ":")
2b94cfb4
ER
1053 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1054 if (RLENGTH < 8) {
aec1bddb 1055 sub(/:/, ":\t\t")
b6875e34 1056 } else {
aec1bddb 1057 sub(/:/, ":\t")
b6875e34 1058 }
8b1938ea 1059 }
1060}
1061
43c05c3c 1062# Replace directly specified directories with macros
1063function use_macros()
1064{
13b24a87
ER
1065 # -m, --skip-macros, --no-macros -- skip macros subst
1066 if (ENVIRON["SKIP_MACROS"]) {
1067 return
1068 }
1069
b05d5275
ER
1070 # leave inline sed lines alone
1071 if (/(%{__sed}|sed) -i -e/) {
1072 return;
1073 }
1074
b6875e34
ER
1075 sub("%{_defaultdocdir}", "%{_docdir}");
1076 sub("%{_bindir}/perl", "%{__perl}");
1077 sub("%{_bindir}/python", "%{__python}");
36d9a33d 1078
a372a159
ER
1079 gsub(infodir, "%{_infodir}")
1080
336c1a4f
ER
1081 gsub(perl_sitearch, "%{perl_sitearch}")
1082 gsub(perl_archlib, "%{perl_archlib}")
1083 gsub(perl_privlib, "%{perl_privlib}")
336c1a4f
ER
1084 gsub(perl_vendorlib, "%{perl_vendorlib}")
1085 gsub(perl_vendorarch, "%{perl_vendorarch}")
1086 gsub(perl_sitelib, "%{perl_sitelib}")
9732cb3d
ER
1087
1088 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
4ab1678b 1089 gsub(py_sitedir, "%{py_sitedir}")
1bdf7824 1090 gsub(py_scriptdir, "%{py_scriptdir}")
4a62fb54 1091 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
22ee0568 1092 gsub("%{python_sitelib}", "%{py_sitedir}")
6f2c1099
ER
1093
1094 gsub(ruby_archdir, "%{ruby_archdir}")
1095 gsub(ruby_ridir, "%{ruby_ridir}")
1096 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1097 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1098 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1099
4a62fb54
ER
1100 gsub("%{_datadir}/applications", "%{_desktopdir}")
1101 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
ee9487af 1102 gsub("%{_datadir}/java", "%{_javadir}")
336c1a4f 1103
e00f41b5 1104 gsub(libdir, "%{_libdir}")
ee9487af 1105 gsub(javadir, "%{_javadir}")
e00f41b5 1106
aec1bddb 1107 gsub(bindir, "%{_bindir}")
74edc57e 1108 gsub("%{prefix}/bin", "%{_bindir}")
b05d5275 1109 if (prefix"/bin" == bindir)
0080f34c 1110 gsub("%{_prefix}/bin", "%{_bindir}")
74edc57e 1111
de69503c 1112 for (c = 1; c <= NF; c++) {
1113 if ($c ~ sbindir "/fix-info-dir")
1114 continue;
3457b4f7
ER
1115 if ($c ~ sbindir "/webapp")
1116 continue;
a372a159
ER
1117 if ($c ~ sbindir "/ldconfig")
1118 continue;
4837c1e3
ER
1119 if ($c ~ sbindir "/chsh")
1120 continue;
1121 if ($c ~ sbindir "/usermod")
1122 continue;
f06959ff
ER
1123 if ($c ~ sbindir "/chkconfig")
1124 continue;
836e411f
ER
1125 if ($c ~ sbindir "/installzope(product|3package)")
1126 continue;
de69503c 1127 gsub(sbindir, "%{_sbindir}", $c)
1128 }
1129
74edc57e 1130 gsub("%{prefix}/sbin", "%{_sbindir}")
836e411f 1131 if (prefix"/sbin" == sbindir) {
5e1d0492 1132 gsub("%{_prefix}/sbin", "%{_sbindir}")
836e411f 1133 }
74edc57e 1134
353f5eea 1135 for (c = 1; c <= NF; c++) {
0965a1a0 1136 if ($c ~ sysconfdir "/{?cron.")
de69503c 1137 continue;
0080f34c 1138 if ($c ~ sysconfdir "/{?crontab.d")
807a0f6b 1139 continue;
6c178315
ER
1140 if ($c ~ sysconfdir "/{?env.d")
1141 continue;
90a421f5 1142 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
554d6b98 1143 continue;
5d7c48a4
ER
1144 if ($c ~ sysconfdir "/{?udev")
1145 continue;
1146 if ($c ~ sysconfdir "/{?hotplug")
e61b5989 1147 continue;
0080f34c 1148 if ($c ~ sysconfdir "/{?logrotate.d")
353f5eea 1149 continue;
0080f34c 1150 if ($c ~ sysconfdir "/{?pam.d")
a9b2c8c7 1151 continue;
0080f34c 1152 if ($c ~ sysconfdir "/{?profile.d")
66ef7810 1153 continue;
0080f34c 1154 if ($c ~ sysconfdir "/{?rc.d")
9ad7f20b 1155 continue;
0080f34c 1156 if ($c ~ sysconfdir "/{?security")
a9b2c8c7 1157 continue;
0080f34c 1158 if ($c ~ sysconfdir "/{?skel")
c21d1979 1159 continue;
0080f34c 1160 if ($c ~ sysconfdir "/{?sysconfig")
66ef7810 1161 continue;
6e985933
ER
1162 if ($c ~ sysconfdir "/{?shrc.d")
1163 continue;
7c73bc0f
ER
1164 if ($c ~ sysconfdir "/{?certs")
1165 continue;
de5d18d8
ER
1166 if ($c ~ sysconfdir "/{?X11")
1167 continue;
5debd9f6
ER
1168 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1169 continue;
ff21ed9e
ER
1170 if ($c ~ sysconfdir "/{?rpm")
1171 continue;
57caba32 1172 if ($c ~ sysconfdir "/{?bash_completion.d")
6e985933 1173 continue;
57caba32 1174 if ($c ~ sysconfdir "/{?samba")
9292b547 1175 continue;
52a943cf
ER
1176 if ($c ~ sysconfdir "/shells")
1177 continue;
5dc7f5e4
ER
1178 if ($c ~ sysconfdir "/ppp")
1179 continue;
9395915a
ER
1180 if ($c ~ sysconfdir "/dbus-1")
1181 continue;
353f5eea 1182 gsub(sysconfdir, "%{_sysconfdir}", $c)
1183 }
74edc57e 1184
1077f405 1185 gsub(kdedocdir, "%{_kdedocdir}")
c2b069de 1186 gsub(docdir, "%{_docdir}")
57caba32 1187 gsub(php_pear_dir, "%{php_pear_dir}")
c2b069de 1188
c4adc376
ER
1189 for (c = 1; c <= NF; c++) {
1190 if ($c ~ datadir "/automake")
1191 continue;
13670287
ER
1192 if ($c ~ datadir "/unsermake")
1193 continue;
a9fb2db8
ER
1194 if ($c ~ datadir "/file/magic.mime")
1195 continue;
c4adc376
ER
1196 gsub(datadir, "%{_datadir}", $c)
1197 }
1198
74edc57e 1199 gsub("%{prefix}/share", "%{_datadir}")
c4adc376 1200 if (prefix"/share" == datadir)
0080f34c 1201 gsub("%{_prefix}/share", "%{_datadir}")
74edc57e 1202
826b40ea
ER
1203 # CFLAGS="-I/usr/include/ncurses is usually correct.
1204 if (!/-I\/usr\/include/) {
1205 gsub(includedir, "%{_includedir}")
1206 }
1207
74edc57e 1208 gsub("%{prefix}/include", "%{_includedir}")
826b40ea 1209 if (prefix"/include" == includedir) {
0080f34c 1210 gsub("%{_prefix}/include", "%{_includedir}")
826b40ea 1211 }
74edc57e 1212
aec1bddb 1213 gsub(mandir, "%{_mandir}")
826b40ea 1214 if ($0 !~ "%{_datadir}/manual") {
5e1d0492 1215 gsub("%{_datadir}/man", "%{_mandir}")
826b40ea 1216 }
9ce0df66 1217 gsub("%{_prefix}/share/man", "%{_mandir}")
1218 gsub("%{prefix}/share/man", "%{_mandir}")
74edc57e 1219 gsub("%{prefix}/man", "%{_mandir}")
1220 gsub("%{_prefix}/man", "%{_mandir}")
1221
aec1bddb 1222 gsub(infodir, "%{_infodir}")
74edc57e 1223 gsub("%{prefix}/info", "%{_infodir}")
1224 gsub("%{_prefix}/info", "%{_infodir}")
1225
0965a1a0 1226 if (prefix !~ "/X11R6") {
1227 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1228 }
cfbf94ec 1229
2a638fcb 1230 gsub(examplesdir, "%{_examplesdir}")
7c6b85c4 1231
efd2d668 1232 if (prefix != "/") {
a9fb2db8
ER
1233 # leave --with-foo=/usr alone
1234 if ($0 !~ "--with.*=.*" prefix) {
1235 for (c = 1; c <= NF; c++) {
1236 if ($c ~ prefix "/sbin/fix-info-dir")
1237 continue;
3457b4f7
ER
1238 if ($c ~ prefix "/sbin/webapp")
1239 continue;
4837c1e3
ER
1240 if ($c ~ prefix "/sbin/chsh")
1241 continue;
1242 if ($c ~ prefix "/sbin/usermod")
1243 continue;
836e411f
ER
1244 if ($c ~ prefix "/sbin/installzope(product|3package)")
1245 continue;
a9fb2db8
ER
1246 if ($c ~ prefix "/share/automake")
1247 continue;
1248 if ($c ~ prefix "/share/unsermake")
1249 continue;
1250 if ($c ~ prefix "/lib/sendmail")
1251 continue;
97dae8dc
ER
1252 if ($c ~ prefix "/lib/pkgconfig")
1253 continue;
826b40ea 1254
b5fc4b79
ER
1255 # CFLAGS="-I/usr..." is usually correct.
1256 if (/-I\/usr/)
826b40ea 1257 continue;
474f0944
ER
1258 # same for LDFLAGS="-L/usr..."
1259 if (/-L\/usr/)
1260 continue;
826b40ea 1261
a9fb2db8
ER
1262 gsub(prefix, "%{_prefix}", $c)
1263 }
de69503c 1264 }
efd2d668 1265 gsub("%{prefix}", "%{_prefix}")
1266 }
3bcd1fab 1267
53d16b95
ER
1268 # replace back
1269 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1270 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1271
3bcd1fab 1272 gsub("%{PACKAGE_VERSION}", "%{version}")
1273 gsub("%{PACKAGE_NAME}", "%{name}")
b35c10f1 1274
59e208d5 1275 gsub("^make$", "%{__make}")
1276 gsub("^make ", "%{__make} ")
61b753c5 1277 gsub("^gcc ", "%{__cc} ")
67fe737e 1278 gsub("^rm --interactive=never ", "%{__rm} ")
9aece8c8 1279
cab706de
ER
1280 # mandrake specs
1281 gsub("^%make$", "%{__make}")
1282 gsub("^%make ", "%{__make} ")
1283 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
b7ca53a5 1284 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
63d47bae 1285 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
cab706de 1286 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b7ca53a5 1287 gsub("^%{__install}", "install")
cab706de
ER
1288 gsub("%optflags", "%{rpmcflags}")
1289 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1290
a6ed8b03 1291 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
d11acde9 1292 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
5e15e952
ER
1293 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1294 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
63d47bae 1295 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
43f8581a 1296 $0 = fixedsub("%__install", "install", $0);
63d47bae 1297
740e3cd8
ER
1298 # split configure line to multiple lines
1299 if (/%configure / && !/\\$/) {
1300 $0 = format_configure($0);
1301 }
1302
ac779c71
ER
1303 gsub("%_bindir", "%{_bindir}")
1304 gsub("%_datadir", "%{_datadir}")
1305 gsub("%_iconsdir", "%{_iconsdir}")
c2b069de
ER
1306 gsub("%_sbindir", "%{_sbindir}")
1307 gsub("%_mandir", "%{_mandir}")
1308 gsub("%name", "%{name}")
b6875e34
ER
1309 gsub(/%__rm/, "rm");
1310 gsub(/%__mkdir_p/, "install -d");
1311 gsub(/%__cp/, "cp");
1312 gsub(/%__ln_s/, "ln -s");
1313 gsub(/%__sed/, "%{__sed}");
1314 gsub(/%__cat/, "cat");
1315 gsub(/%__chmod/, "chmod");
a6ed8b03 1316
9aece8c8 1317 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1318 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1c955424
ER
1319
1320 if (/^ant /) {
1321 sub(/^ant/, "%ant")
b6875e34
ER
1322 add_br("BuildRequires: jpackage-utils");
1323 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1324 }
1c955424 1325
9ae21f47 1326}
f171fd40 1327
740e3cd8
ER
1328function format_configure(line, n, a, s) {
1329 n = split(line, a, / /);
1330 s = a[1] " \\\n";
1331 for (i = 2; i <= n; i++) {
1332 s = s "\t" a[i] " \\\n"
1333 }
1334 return s
1335}
1336
7c23055b
ER
1337
1338# insertion sort of A[1..n]
1339# copied from mawk manual
1340function isort(A,n, i,j,hold) {
1341 for (i = 2; i <= n; i++) {
1342 hold = A[j = i]
1343 while (A[j-1] > hold) {
54caef3d 1344 j-- ; A[j+1] = A[j]
1345 }
7c23055b
ER
1346 A[j] = hold
1347 }
1348 # sentinel A[0] = "" will be created if needed
1349}
1350
1351
1352function use_files_macros( i, n, t, a)
eee34ffb 1353{
e6f1551d
ER
1354 use_macros()
1355
da6457aa
ER
1356 # skip comments
1357 if (/^#/) {
1358 return;
1359 }
1360
f158eddc
ER
1361 sub("^%doc %{_mandir}", "%{_mandir}")
1362
eee34ffb 1363 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1364 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
7c23055b 1365
61cb9711
ER
1366 # uid/gid nobody is not valid in %files
1367 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1368 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1369 }
1370
16bb0647
JB
1371 # s[gu]id programs with globs are evil
1372 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1373 $0 = $0 " # FIXME no globs for suid/sgid files"
85bed066
ER
1374 }
1375
5dc673eb 1376 # replace back
8f6ddcd9 1377 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
3feaeac8 1378 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
8f6ddcd9
ER
1379 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1380 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1381 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1382 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1383 gsub("%{_sysconfdir}/security", "/etc/security")
1384 gsub("%{_sysconfdir}/skel", "/etc/skel")
1385 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1386 gsub("%{_sysconfdir}/certs", "/etc/certs")
5dc673eb 1387 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
9395915a 1388 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
2fc0e274 1389
5dc673eb
ER
1390 # /etc/init.d -> /etc/rc.d/init.d
1391 if (!/^\/etc\/init\.d$/) {
1392 gsub("/etc/init.d", "/etc/rc.d/init.d")
1393 }
1394
1395 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
2fc0e274
ER
1396 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1397 $0 = "%attr(754,root,root) " $0
1398 }
1399 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
89c604c7 1400 gsub("^%attr\\(... *,", "%attr(754,");
2fc0e274 1401 }
9a7a5776
ER
1402 }
1403
71a4728c 1404 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
55356feb
ER
1405 $0 = "%attr(755,root,root) " $0
1406 }
1407
ab9b09e2
ER
1408 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1409 $0 = "%attr(755,root,root) " $0
1410 }
1411
f56d5519
ER
1412 # /etc/sysconfig files
1413 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
a825b76b 1414 # attr not required, allow default 644 attr
6ea64b8d 1415 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
6ea0907e 1416 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
5dc673eb
ER
1417 gsub("%config", "%config(noreplace)")
1418 }
f56d5519 1419
6ea0907e 1420 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
5dc673eb
ER
1421 $NF = "%config(noreplace) " $NF
1422 }
f56d5519 1423
5dc673eb 1424 if (/\/etc\/sysconfig\// && /%attr\(755/) {
89c604c7 1425 gsub("^%attr\\(... *,", "%attr(640,");
5dc673eb 1426 }
f56d5519 1427
5dc673eb
ER
1428 if (/\/etc\/sysconfig\// && !/%verify/) {
1429 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1430 }
a825b76b
ER
1431 }
1432
f56d5519 1433 # kill leading zeros
7dfb4dea
ER
1434 if (/%attr\(0[1-9]/) {
1435 gsub("%attr\\(0", "%attr(")
1436 }
f9d5d512 1437
95ae7268 1438 # kill leading whitespace
b8085249 1439 gsub(/^ +/, "");
95ae7268 1440
b6875e34
ER
1441 # kill default attrs
1442 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1443 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1444 if (!/%dir/) {
1445 gsub(/%attr\(644,root,root\) /, "");
1446 }
46292535 1447
7c23055b 1448 # sort %verify attrs
12bfc5c8 1449 if (match($0, /%verify\(not([^)]+)\)/)) {
7c23055b 1450 t = substr($0, RSTART, RLENGTH)
8409a9b2
ER
1451 # kill commas: %verify(not,md5,size,mtime)
1452 gsub(/,/, " ", t);
1453
7c23055b
ER
1454 gsub(/^%verify\(not |\)$/, "", t)
1455 n = split(t, a, / /)
1456 isort(a, n)
1457
1458 s = "%verify(not"
1459 for (i = 1 ; i <= n; i++) {
1460 s = s " " a[i]
1461 }
1462 s = s ")"
1463
12bfc5c8 1464 gsub(/%verify\(not[^)]+\)/, s)
7c23055b 1465 }
13defa79
ER
1466
1467 if (/%{_mandir}/) {
d64e2ec0 1468 gsub("\.gz$", "*")
13defa79 1469 }
5e15e952 1470
ef6d2b7a 1471 # locale dir and no %lang -> bad
b9080a1b 1472 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
ef6d2b7a
ER
1473 $(NF + 1) = "# FIXME consider using %find_lang"
1474 }
1475
5e15e952
ER
1476 # atrpms
1477 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1478 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1479 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
97dae8dc
ER
1480
1481 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1482 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1483 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
eee20d8d
ER
1484
1485 gsub("%{_datadir}/applications", "%{_desktopdir}");
9730a549 1486 gsub("%{_datadir}/icons", "%{_iconsdir}");
0904210e 1487 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
eee34ffb 1488}
236b87ac 1489
723ce732
ER
1490function use_script_macros()
1491{
1492 if (gsub("/sbin/service", "%service")) {
1493 sub(" >/dev/null 2>&1 \|\|:", "");
1494 sub(" 2> /dev/null \|\| :", "");
1495 }
1496}
1497
236b87ac 1498function fill(ch, n, i) {
1499 for (i = 0; i < n; i++)
1500 printf("%c", ch)
1501}
1502
1503function format_flush(line, indent, newline, word, first_word) {
1504 first_word = 1
f171fd40 1505 if (format_indent == -1)
236b87ac 1506 newline = ""
1507 else
1508 newline = fill(" ", format_indent) "- "
1509
1510 while (match(line, /[^\t ]+/)) {
1511 word = substr(line, RSTART, RLENGTH)
1512 if (length(newline) + length(word) + 1 > tw) {
1513 print newline
f171fd40 1514
236b87ac 1515 if (format_indent == -1)
1516 newline = ""
1517 else
1518 newline = fill(" ", format_indent + 2)
1519 first_word = 1
1520 }
1521
1522 if (first_word) {
1523 newline = newline word
1524 first_word = 0
1525 } else
1526 newline = newline " " word
f171fd40 1527
236b87ac 1528 line = substr(line, RSTART + RLENGTH)
1529 }
1530 if (newline ~ /[^\t ]/) {
1531 print newline
1532 }
1533}
1534
eb4bf70e 1535function cflags(var)
1536{
85e708f2 1537 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1538 removed[var] = 1
eb4bf70e 1539 return 0
85e708f2 1540 }
f171fd40 1541
246ad57e 1542 if (!/!\?debug/)
fde8f52a 1543 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
eb4bf70e 1544 return 1
1545}
0ea7c3cd 1546
8ea8f0ae
ER
1547function unify_url(url)
1548{
1549
1550 # sourceforge urls
1551 sub("[?&]big_mirror=.*$", "", url);
1552 sub("[?&]modtime=.*$", "", url);
1553 sub("[?]use_mirror=.*$", "", url);
1554 sub("[?]download$", "", url);
1555
1556 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1557 sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", url)
1558 sub("^http://download\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1559 sub("^http://downloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1560
1561 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1562 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", url)
1563 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", url)
1564
1565 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1566 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1567
1568 # apache urls
1569 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1570
11401cd0 1571 # gnu.org
22753e56 1572 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
29c65f09 1573 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
11401cd0 1574
8ea8f0ae
ER
1575 return url
1576}
1577
4e26c5f2
ER
1578function demacroize(str)
1579{
8f7c516b
ER
1580 if (mod_name) {
1581 sub("%{mod_name}", mod_name, str);
1582 }
1583 if (name) {
1584 sub("%{name}", name, str);
1585 }
4e26c5f2
ER
1586 if (version) {
1587 sub("%{version}", version, str);
1588 }
1589 if (_beta) {
1590 sub("%{_beta}", _beta, str);
1591 }
1592 if (_rc) {
1593 sub("%{_rc}", _rc, str);
1594 }
59de1799
ER
1595 if (_pre) {
1596 sub("%{_pre}", _pre, str);
1597 }
4e26c5f2
ER
1598 if (_snap) {
1599 sub("%{_snap}", _snap, str);
1600 }
3c5e6e5f
ER
1601 if (subver) {
1602 sub("%{subver}", subver, str);
1603 }
4e26c5f2
ER
1604 return str;
1605}
1606
0ea7c3cd
ER
1607function kill_preamble_macros()
1608{
a64d362e
ER
1609 if ($1 ~ /^Obsoletes:/) {
1610 # NB! assigning $2 a value breaks tabbing
1611 $2 = demacroize($2);
1612 }
1613 if ($1 ~ /^URL:/) {
8f7c516b 1614 # NB! assigning $2 a value breaks tabbing
4e26c5f2 1615 $2 = demacroize($2);
ec30d23e 1616 $2 = unify_url($2)
0ea7c3cd
ER
1617 }
1618}
ba377afe 1619
9815f9b2
ER
1620function get_epoch(pkg, ver, epoch)
1621{
cccfa553
ER
1622 return
1623# should parse the BR lines more adequately:
1624# freetype = 2.0.0 -> correct
1625# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1626
9815f9b2
ER
1627 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1628 shell | getline epoch;
1629 return epoch;
1630}
1631
ba377afe 1632function format_requires(tag, value, n, p, i, deps, ndeps) {
87b130e2
ER
1633 # skip any formatting for commented out items or some weird macros
1634 if (/^#/ || /%\(/) {
3f81d059
ER
1635 return tag "\t" value
1636 }
ba377afe
ER
1637 n = split(value, p, / *,? */);
1638 for (i = 1; i <= n; i++) {
1639 if (p[i+1] ~ /[<=>]/) {
9815f9b2
ER
1640 # add epoch if the version doesn't have it but BuildRequires.txt has
1641 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1642 epoch = get_epoch(p[i], p[i+2])
1643 if (epoch) {
1644 p[i+2] = epoch ":" p[i+2];
1645 }
1646 }
ba377afe
ER
1647 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1648 i += 2;
1649 } else {
1650 deps[ndeps++] = p[i];
1651 }
1652 }
1653 s = ""
1654 for (i in deps) {
1655 s = s sprintf("%s\t%s\n", tag, deps[i]);
1656 }
1657 return substr(s, 1, length(s)-1);
1658}
6ebff802
ER
1659
1660function use_tabs()
1661{
1662 # reverse vim: ts=4 sw=4 et
1663 gsub(/ /, "\t");
1664}
1c955424
ER
1665
1666function add_br(br)
1667{
b6875e34 1668 BR[BR_count++] = br
1c955424
ER
1669}
1670
92fa789e
ER
1671function replace_requires()
1672{
1673
1674 # jpackages
1675 sub(/^java-devel$/, "jdk", $2);
1676 sub(/^log4j$/, "logging-log4j", $2);
1677 sub(/^jakarta-log4j$/, "logging-log4j", $2);
1678 sub(/^oro$/, "jakarta-oro", $2);
1679 sub(/^jakarta-ant$/, "ant", $2);
1680 sub(/^xerces-j2$/, "xerces-j", $2);
1681 sub(/^ldapjdk$/, "ldapsdk", $2);
1682 sub(/^saxon-scripts$/, "saxon", $2);
1683 sub(/^xalan-j2$/, "xalan-j", $2);
1684 sub(/^xerces-j2$/, "xerces-j", $2);
1685 sub(/^gnu-regexp$/, "gnu.regexp", $2);
1686
1687 # redhat virtual
1688 sub(/^tftp-server$/, "tftpdaemon", $2);
1689
76c234fd 1690 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
03180d14 1691 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
76c234fd 1692
92fa789e
ER
1693 replace_php_virtual_deps()
1694}
1695
30cd4686
ER
1696# php virtual deps as discussed in devel-en
1697function replace_php_virtual_deps()
1698{
b6875e34
ER
1699 pkg = $2
1700# if (pkg == "php-program") {
1701# $0 = $1 "\t/usr/bin/php"
1702# return
1703# }
1704
f72c52cf
ER
1705# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1706# sub(/^php-/, "php(", pkg);
1707# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1708# $2 = pkg
1709# }
b6875e34
ER
1710
1711 if (pkg ~/^php$/) {
1712 $2 = "webserver(php)";
1713 if ($4 ~ /^[0-9]:/) {
1714 $4 = substr($4, 3);
1715 }
1716 }
1717
1718 if (pkg ~/^php4$/) {
1719 $2 = "webserver(php)";
1720 if ($4 ~ /^[0-9]:/) {
1721 $4 = substr($4, 3);
1722 }
1723 }
30cd4686
ER
1724}
1725
ad9ea417
ER
1726function replace_groupnames(group)
1727{
1728 sub(/^Amusements\/Games\/Strategy\/Real Time/, "X11/Applications/Games/Strategy", group)
1729 sub(/^Application\/Multimedia$/, "Applications/Multimedia", group)
1730 sub(/^Applications\/Compilers$/, "Development/Languages", group)
1731 sub(/^Applications\/Daemons$/, "Daemons", group)
1732 sub(/^Applications\/Internet$/, "Applications/Networking", group)
1733 sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
1734 sub(/^Applications\/Productivity$/, "X11/Applications", group)
1735 sub(/^Database$/, "Applications/Databases", group)
1736 sub(/^Development\/Code Generators$/, "Development", group)
1737 sub(/^Development\/Docs$/, "Documentation", group)
1738 sub(/^Development\/Documentation$/, "Documentation", group)
1739 sub(/^Development\/Java/, "Development/Languages/Java", group)
1740 sub(/^Development\/Libraries\/C and C\+\+$/, "Development/Libraries", group)
1741 sub(/^Development\/Libraries\/Java$/, "Development/Languages/Java", group)
1742 sub(/^Development\/Other/,"Development", group)
1743 sub(/^Development\/Testing$/, "Development", group)
1744 sub(/^Emulators$/, "Applications/Emulators", group)
1745 sub(/^Games/,"Applications/Games", group)
1746 sub(/^Library\/Development$/, "Development/Libraries", group)
1747 sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
1748 sub(/^Shells/,"Applications/Shells", group)
1749 sub(/^System Environment\/Base$/, "Base", group)
1750 sub(/^System Environment\/Daemons$/, "Daemons", group)
1751 sub(/^System Environment\/Kernel$/, "Base/Kernel", group)
1752 sub(/^System Environment\/Libraries$/, "Libraries", group)
1753 sub(/^System$/, "Base", group)
1754 sub(/^System\/Base$/, "Base", group)
1755 sub(/^System\/Libraries$/, "Libraries", group)
1756 sub(/^System\/Servers$/, "Daemons", group)
1757 sub(/^Text Processing\/Markup\/HTML$/, "Applications/Text", group)
1758 sub(/^Text Processing\/Markup\/XML$/, "Applications/Text", group)
1759 sub(/^Utilities\//,"Applications/", group)
1760 sub(/^Web\/Database$/, "Applications/WWW", group)
1761 sub(/^X11\/GNOME/,"X11/Applications", group)
1762 sub(/^X11\/GNOME\/Applications/,"X11/Applications", group)
1763 sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries", group)
1764 sub(/^X11\/Games/,"X11/Applications/Games", group)
1765 sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
1766 sub(/^X11\/Library/,"X11/Libraries", group)
1767 sub(/^X11\/Utilities/,"X11/Applications", group)
1768 sub(/^X11\/XFree86/, "X11", group)
1769 sub(/^X11\/Xserver$/, "X11/Servers", group)
1770 sub(/^Development\/C$/, "Development/Libraries", group)
1771 sub(/^Development\/Python$/, "Development/Languages/Python", group)
1772 sub(/^System\/Kernel and hardware$/, "Base/Kernel", group)
1773 sub(/^Application\/System$/, "Applications/System", group)
1774
1775 return group;
1776}
1777
2b94cfb4 1778# vim:ts=4:sw=4
This page took 0.481585 seconds and 4 git commands to generate.