]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - adapter.awk
- $LANG should be exported
[packages/rpm-build-tools.git] / adapter.awk
CommitLineData
acf3b940 1#!/usr/bin/gawk -f
16397458 2#
e3f245a0 3# This is adapter v0.30. Adapter adapts .spec files for PLD Linux.
0ba21b70 4# $Id$
73e1a9a3 5#
f3a8d634 6# Copyright (C) 1999-2007 PLD-Team <feedback@pld-linux.org>
73e1a9a3 7# Authors:
d3da6a6e 8# Michał Kuratczyk <kura@pld.org.pl>
b741d74d 9# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
d3da6a6e 10# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
fb9ab58f 11# Artur Frysiak <wiget@pld-linux.org>
2873c9d1 12# Michal Kochanowicz <mkochano@pld.org.pl>
f3a8d634 13# Jakub Bogusz <qboosh@pld-linux.org>
d3da6a6e 14# Elan Ruusamäe <glen@pld-linux.org>
d5f65bb3
ER
15#
16# See cvs log adapter{,.awk} for list of contributors
17#
73e1a9a3 18# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3b100864 19
3f6918f6 20# TODO
a73cc8a9 21# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
3f6918f6
ER
22# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
23# - add "-nc" option to skip CVS interaction
a3ca2c50
ER
24# - sort Summary(XX)
25# - sort Requires, BuildRequires
2e214691 26# - check if %description (lang=C) contains 8bit
a3ad3d2b 27# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
3f6918f6 28
16397458 29BEGIN {
b7ab5ec4 30 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
41c24376 31 SECTIONS = "^%(" RPM_SECTIONS ")"
37403736 32
2f89c197 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)"
7c43f31c 34
8271f9dc
PZ
35 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
36
a3c6bbce 37 preamble = 1 # Is it part of preamble? Default - yes
a3ad3d2b
ER
38 boc = 4 # Beginning of %changelog
39 bod = 0 # Beginning of %description
2b4c59bc 40 tw = 70 # Descriptions width
d2bcf054 41
a5e4249b 42 b_idx = 0 # index of BR/R arrays
42cd9911 43 BR_count = 0 # number of additional BuildRequires
a5e4249b 44
2f46ef70 45 # If variable removed, then 1 (for removing it from export)
46 removed["LDFLAGS"] = 0
47 removed["CFLAGS"] = 0
48 removed["CXXFLAGS"] = 0
308c7423 49
e0ab434c
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
bdd8892f 53 "rpm --eval '%{?_cvsmailfeedback}%{!?_cvsmailfeedback:PLD Team <feedback@pld-linux.org>}'" | getline _cvsmailfeedback
e0ab434c 54
337741dd 55 # If 1, we are inside of comment block (started with /^#%/)
56 comment_block = 0
d2bcf054 57
1a29fcfa 58 # File with rpm groups
a41708aa
SZ
59 "rpm --eval %_sourcedir" | getline groups_file
60 groups_file = groups_file "/rpm.groups"
03fbe002 61 system("cd `rpm --eval %_sourcedir`; [ -f rpm.groups ] || cvs up rpm.groups >/dev/null")
7df3947d 62 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
6b02d821 63
308c7423 64 # Temporary file for changelog section
65 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
66
6b02d821 67 # Load rpm macros
a9f3f77c 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
33957389 77 "rpm --eval %_examplesdir" | getline examplesdir
99b02f64 78 "rpm --eval %_defaultdocdir" | getline docdir
e5c731ae 79 "rpm --eval %_kdedocdir" | getline kdedocdir
9086b883
ER
80 "rpm --eval %_desktopdir" | getline desktopdir
81 "rpm --eval %_pixmapsdir" | getline pixmapsdir
5e624f99 82 "rpm --eval %_javadir" | getline javadir
c9cb5723
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
c9cb5723
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
f9ae8d4e 90
e85cf573
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
9f2514dd
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
f175a699 101 "rpm --eval %php_pear_dir" | getline php_pear_dir
ab73bfb4 102 "rpm --eval %tmpdir" | getline tmpdir
16397458 103}
104
105# There should be a comment with CVS keywords on the first line of file.
be7dead6 106FNR == 1 {
6b02d821 107 if (!/# \$Revision:/) # If this line is already OK?
108 print "# $" "Revision:$, " "$" "Date:$" # No
95255dcd 109 else {
6b02d821 110 print $0 # Yes
111 next # It is enough for first line
95255dcd 112 }
16397458 113}
114
a9f3f77c 115# If the latest line matched /%files/
116defattr == 1 {
ff9e2987
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 }
32bb73d8 124 defattr = 0
a9f3f77c 125}
126
a5e4249b
ER
127function b_makekey(a, b, s) {
128 s = a "" b;
129 # kill bcond
42cd9911 130 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
f24835a8 131
f51e180c 132 # kill commented out items
42cd9911 133 gsub(/^#[ \t]*/, "", s);
f24835a8 134
7c43f31c 135 # force order
c2de2587
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);
2f89c197 148
2f89c197 149 gsub(/^Suggests/, "X1Suggests", s);
1f042910
JB
150 gsub(/^Provides/, "X2Provides", s);
151 gsub(/^Obsoletes/, "X3Obsoletes", s);
152 gsub(/^Conflicts/, "X4Conflicts", s);
153 gsub(/^BuildArch/, "X5BuildArch", s);
c2de2587
ER
154 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
155 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
156 gsub(/^BuildRoot/, "X9BuildRoot", s);
c0bcd06f
ER
157
158# printf("%s -> %s\n", a""b, s);
a5e4249b
ER
159 return s;
160}
161
0bbcf6b4 162# Comments
2f97d8ea 163/^#/ && (description == 0) {
0bbcf6b4 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 }
337741dd 171
0bbcf6b4 172 # Generally, comments are printed without touching
62565bd5 173 sub(/[ \t]+$/, "")
003a22bc 174
8271f9dc
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 }
003a22bc
ER
180 print $0
181 next
182 }
337741dd 183}
184
d71e64d1 185/^%define/ {
37403736 186 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
17bd16f3 187 if ($2 == "_applnkdir") {
6e01f9db 188 next
17bd16f3
ER
189 }
190 if ($2 == "date") {
6e01f9db 191 date = 1
6cfaf341
ER
192 if (did_files == 0) {
193 print "%files"
194 print ""
195 did_files = 1
196 }
17bd16f3
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
5dc7f4ee
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 }
37403736
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 }
5dc7f4ee
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 }
17bd16f3
ER
237 if ($2 ~ /_includedir/)
238 includedir = $3
239 if ($2 ~ /_mandir/)
240 mandir = $3
241 if ($2 ~ /_infodir/)
242 infodir = $3
99b02f64
ER
243 if ($2 ~ /_docdir/)
244 docdir = $3
17bd16f3
ER
245
246 # version related macros
247 if ($2 ~ /^_beta$/)
248 _beta = $3
249 if ($2 ~ /^_rc$/)
250 _rc = $3
f8281d0c
ER
251 if ($2 ~ /^_pre$/)
252 _pre = $3
17bd16f3
ER
253 if ($2 ~ /^_snap$/)
254 _snap = $3
88c76b14
ER
255 if ($2 ~ /^subver$/)
256 subver = $3
17bd16f3
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
5fd6c8d4 265
0311af17
ER
266 if ($2 ~ /^mod_name$/)
267 mod_name = $3
268
f0c5c231 269 sub(/[ \t]+$/, "");
5fd6c8d4
ER
270 # do nothing further, otherwise adapter thinks we're at preamble
271 print
272 next
d71e64d1
SZ
273}
274
a3ca2c50
ER
275# Obsolete
276/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
277 next
278}
279
337741dd 280################
281# %description #
282################
37403736 283/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
32bb73d8 284 preamble = 0
948cad9c 285
3b100864 286 if (/^%description/) {
32bb73d8 287 bod++
73e1a9a3 288 format_line = ""
289 format_indent = -1
3b100864
SZ
290 }
291
73e1a9a3 292 # Format description
db167e61 293 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3b100864 294 if (/^[ \t]*$/) {
73e1a9a3 295 format_flush(format_line, format_indent)
3b100864 296 print ""
73e1a9a3 297 format_line = ""
298 format_indent = -1
3b100864 299 } else if (/^[ \t]*[-\*][ \t]*/) {
73e1a9a3 300 format_flush(format_line, format_indent)
d2bcf054 301 match($0, /^[ \t]*/)
73e1a9a3 302 format_indent = RLENGTH
303 match($0, /^[ \t]*[-\*][ \t]/)
304 format_line = substr($0, RLENGTH)
d2bcf054 305 } else
73e1a9a3 306 format_line = format_line " " $0
32bb73d8 307 next
948cad9c 308 }
d2bcf054 309
d71e64d1 310 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
4bd1116d 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 }
73e1a9a3 317 format_flush(format_line, format_indent)
948cad9c 318 if (bod == 2) {
32bb73d8
SZ
319 bod = 1
320 description = 1
948cad9c 321 } else {
32bb73d8
SZ
322 bod = 0
323 description = 0
948cad9c 324 }
325 } else
32bb73d8 326 description = 1
16397458 327}
328
337741dd 329#########
330# %prep #
331#########
37403736 332/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
32bb73d8 333 preamble = 0
6cfaf341 334 did_prep = 1
d2bcf054 335
e62422da
ER
336 use_macros()
337
a9f3f77c 338 # Add '-q' to %setup
ef56a1ca 339 if (/^%setup/ && !/-q/) {
d71e64d1 340 sub(/^%setup/, "%setup -q")
ef56a1ca
ER
341 }
342
671ba17b 343 if (/^%setup/ && name != "setup") {
928c2651
ER
344 $0 = fixedsub(name, "%{name}", $0);
345 $0 = fixedsub(version, "%{version}", $0);
3e20c912 346 if (_beta) {
928c2651 347 $0 = fixedsub(_beta, "%{_beta}", $0);
3e20c912
ER
348 }
349 if (_rc) {
928c2651 350 $0 = fixedsub(_rc, "%{_rc}", $0);
3e20c912 351 }
f8281d0c
ER
352 if (_pre) {
353 $0 = fixedsub(_pre, "%{_pre}", $0);
354 }
3e20c912 355 if (_snap) {
928c2651 356 $0 = fixedsub(_snap, "%{_snap}", $0);
3e20c912 357 }
88c76b14
ER
358 if (subver) {
359 $0 = fixedsub(subver, "%{subver}", $0);
360 }
d769e78f
ER
361 }
362
6f7b0e46 363 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
928c2651 364 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
ef56a1ca 365 }
42cd9911 366 sub("^%patch ", "%patch0 ");
e62422da
ER
367
368 # invalid in %prep
369 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
16397458 370}
371
337741dd 372##########
373# %build #
374##########
37403736 375/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
32bb73d8 376 preamble = 0
16397458 377
6cfaf341
ER
378 if (did_prep == 0) {
379 print "%prep"
380 print ""
381 did_prep = 1
382 }
383
32bb73d8 384 use_macros()
035bfa01 385 use_tabs()
d2bcf054 386
68694f00 387 if (/^automake$/)
388 sub(/$/, " -a -c")
389
0972e97d 390 if (/LDFLAGS/) {
2f46ef70 391 if (/LDFLAGS="-s"/) {
392 removed["LDFLAGS"] = 1
393 next
394 } else {
395 split($0, tmp, "LDFLAGS=")
0972e97d 396 count = split(tmp[2], flags, "\"")
2f46ef70 397 if (flags[1] != "" && flags[1] !~ "!?debug") {
fe9a6f09 398 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
2f46ef70 399 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
400 for (i = 2; i < count; i++)
401 $0 = $0 flags[i] "\""
402 }
0972e97d 403 }
404 }
405
406 if (/CFLAGS=/)
407 if (cflags("CFLAGS") == 0)
408 next
409
410 if (/CXXFLAGS=/)
411 if (cflags("CXXFLAGS") == 0)
412 next
d2bcf054 413
2f46ef70 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 }
02c61abb 425
b5f420e4 426 # quote CC
02c61abb
ER
427 if (/CC=%{__cc} /) {
428 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
429 }
d92d1e4f 430
6702f869 431 # use PLD Linux macros
d92d1e4f
ER
432 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
433 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
b5f420e4 434 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
438df441 435 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
a5ab7844 436 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
82e1c3ee 437 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
438df441
ER
438 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
439 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
b5f420e4
ER
440
441 sub(/^aclocal$/, "%{__aclocal}");
442 sub(/^autoheader$/, "%{__autoheader}");
443 sub(/^autoconf$/, "%{__autoconf}");
444 sub(/^automake$/, "%{__automake}");
82e1c3ee 445 sub(/^libtoolize$/, "%{__libtoolize}");
d2bcf054 446
023aea7a
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);
16397458 450}
451
337741dd 452##########
453# %clean #
454##########
37403736 455/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
aa666779 456 did_clean = 1
6702f869 457
42cd9911 458 use_macros()
aa666779
SZ
459}
460
337741dd 461############
462# %install #
463############
37403736 464/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
d2bcf054 465
32bb73d8 466 preamble = 0
d2bcf054 467
43042a15 468 # foreign rpms
6af280a5 469 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
42cd9911
ER
470 sub("%buildroot", "$RPM_BUILD_ROOT");
471 sub("%{buildroot}", "$RPM_BUILD_ROOT");
43042a15 472
6af280a5 473 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
aa666779 474 did_rmroot=1
b741d74d
SZ
475 print "rm -rf $RPM_BUILD_ROOT"
476 next
477 }
a9f3f77c 478
aa666779 479 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
b741d74d 480 print "rm -rf $RPM_BUILD_ROOT"
aa666779 481 did_rmroot=1
b741d74d 482 }
d2bcf054 483
42cd9911
ER
484 if (tmpdir) {
485 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
ab73bfb4 486 gsub(buildroot, "$RPM_BUILD_ROOT")
42cd9911 487 }
ab73bfb4 488
42cd9911
ER
489 if (!/%{_lib}/) {
490 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
491 }
1f948ece 492
b741d74d 493 use_macros()
d2bcf054 494
16397458 495 # 'install -d' instead 'mkdir -p'
496 if (/mkdir -p/)
32bb73d8 497 sub(/mkdir -p/, "install -d")
0071ffb3 498
96b01e16 499 # cp -a already implies cp -r
42cd9911 500 sub(/^cp -ar/, "cp -a")
d2bcf054 501
a9f3f77c 502 # No '-u root' or '-g root' for 'install'
7d285e55 503 if (/^install/ && /-[ug][ \t]*root/)
32bb73d8 504 gsub(/-[ug][ \t]*root /, "")
d2bcf054 505
db929c93
ER
506 if (/^install/ && /-m[ \t]*[0-9]+/)
507 gsub(/-m[ \t]*[0-9]+ /, "")
d2bcf054 508
6b02d821 509 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
a9f3f77c 510 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
32bb73d8 511 next
d2bcf054 512
a9f3f77c 513 # No lines contain 'chmod' if it sets the modes to '644'
7d285e55 514 if ($1 ~ /chmod/ && $2 ~ /644/)
32bb73d8 515 next
023aea7a 516
023aea7a
ER
517 # atrpms
518 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
16397458 519}
520
337741dd 521##########
522# %files #
523##########
37403736 524/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
32bb73d8 525 preamble = 0
6cfaf341 526 did_files = 1
d2bcf054 527
d71e64d1 528 if ($0 ~ /^%files/)
32bb73d8 529 defattr = 1
d2bcf054 530
0bbcf6b4 531 use_files_macros()
16397458 532}
533
337741dd 534##############
535# %changelog #
536##############
37403736 537/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
32bb73d8 538 preamble = 0
b741d74d 539 has_changelog = 1
dae2a065 540 skip = 0
16397458 541 # There should be some CVS keywords on the first line of %changelog.
dae2a065 542 if (boc == 3) {
a5e6295e 543 if ($0 !~ _cvsmailfeedback) {
e0ab434c 544 print "* %{date} " _cvsmailfeedback > changelog_file
a5e6295e 545 } else {
dae2a065 546 skip = 1
a5e6295e 547 }
dae2a065 548 boc = 2
1fefb3da 549 }
dae2a065 550 if (boc == 2 && !skip) {
1fefb3da 551 if (!/All persons listed below/) {
e6ca8854 552 printf "All persons listed below can be reached at " > changelog_file
e0ab434c 553 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
a5e6295e 554 } else {
dae2a065 555 skip = 1
a5e6295e 556 }
7bfb8673 557 boc = 1
16397458 558 }
dae2a065
JB
559 if (boc == 1 && !skip) {
560 if (!/^$/) {
a5e6295e 561 if (!/\$.*Log:.*\$/) {
dae2a065 562 print "$" "Log:$" > changelog_file
a5e6295e 563 }
dae2a065
JB
564 boc = 0
565 }
1fefb3da 566 }
6544a775 567 # Define date macro.
1fefb3da 568 if (boc == 4) {
57862255 569 if (date == 0) {
308c7423 570 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
571 print " date +\"%a %b %d %Y\"`)" > changelog_file
1a2653e7 572 date = 1
57862255 573 }
1fefb3da 574 boc = 3
6544a775 575 }
308c7423 576
a5e6295e
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 }
308c7423 586 print > changelog_file
a5e6295e 587 } else {
308c7423 588 print
a5e6295e 589 }
308c7423 590 next
16397458 591}
592
337741dd 593###########
594# SCRIPTS #
595###########
37403736 596/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
337741dd 597 preamble = 0
c6aa1f63 598
afca35ce
ER
599 if (gsub("/usr/sbin/useradd", "%useradd")) {
600 sub(" 2> /dev/null \|\| :", "");
601 sub(" >/dev/null 2>&1 \|\|:", "");
602 }
603
c6aa1f63
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 }
afca35ce 610 use_script_macros()
337741dd 611}
c6aa1f63 612
37403736 613/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
337741dd 614 preamble = 0
99b02f64 615 use_macros()
337741dd 616}
37403736 617/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
337741dd 618 preamble = 0
eba571c8 619 use_macros()
337741dd 620}
37403736 621/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
337741dd 622 preamble = 0
afca35ce 623 use_script_macros()
337741dd 624}
37403736 625/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
74e9aad8 626 preamble = 0
afca35ce 627 use_script_macros()
74e9aad8 628}
37403736 629/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
74e9aad8 630 preamble = 0
afca35ce 631 use_script_macros()
74e9aad8 632}
37403736 633/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
74e9aad8 634 preamble = 0
afca35ce 635 use_script_macros()
74e9aad8 636}
37403736 637/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
74e9aad8 638 preamble = 0
afca35ce 639 use_script_macros()
74e9aad8 640}
37403736 641/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
74e9aad8 642 preamble = 0
afca35ce 643 use_script_macros()
74e9aad8 644}
b7ab5ec4
ER
645/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
646 preamble = 0
afca35ce 647 use_script_macros()
b7ab5ec4
ER
648}
649/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
650 preamble = 0
afca35ce 651 use_script_macros()
b7ab5ec4 652}
337741dd 653
654#############
655# PREAMBLES #
656#############
16397458 657preamble == 1 {
7d285e55 658 # There should not be a space after the name of field
659 # and before the colon.
32bb73d8 660 sub(/[ \t]*:/, ":")
d2bcf054 661
1ea917a3
ER
662 if (/^%perl_module_wo_prefix/) {
663 name = $2
664 version = $3
665 release = "0." fixedsub(".%{disttag}.at", "", $4)
666 }
667
32bb73d8 668 field = tolower($1)
00956e6f 669 fieldnlower = $1
8538dc99 670 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
61182440
ER
671 sub(/\.$/, "", $0);
672 }
2873c9d1 673 if (field ~ /group(\([^)]+\)):/)
5b95e677 674 next
2873c9d1 675 if (field ~ /group:/) {
676 format_preamble()
c0bcd06f
ER
677 group = $0;
678 sub(/^[^ \t]*[ \t]*/, "", group);
eddfcbd4 679 group = replace_groupnames(group);
c0bcd06f
ER
680 $0 = "Group:\t\t" group
681
682 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
2b4c59bc 683 x11 = 1
b2ba29bc 684
c0bcd06f 685 byl_plik_z_groupmi = 0
b2ba29bc
SZ
686 byl_opis_grupy = 0
687 while ((getline linia_grup < groups_file) > 0) {
c0bcd06f
ER
688 byl_plik_z_groupmi = 1
689 if (linia_grup == group) {
b2ba29bc
SZ
690 byl_opis_grupy = 1
691 break
692 }
693 }
ada044b5 694
c0bcd06f 695 if (!byl_plik_z_groupmi)
b2ba29bc
SZ
696 print "######\t\t" groups_file ": no such file"
697 else if (!byl_opis_grupy)
698 print "######\t\t" "Unknown group!"
d2bcf054 699
b2ba29bc 700 close(groups_file)
6cfaf341 701 did_groups = 1
b2ba29bc 702 }
d2bcf054 703
7f2507f0 704 if (field ~ /prereq:/) {
37457756 705 sub(/Pre[Rr]eq:/, "Requires:", $1);
7f2507f0
ER
706 }
707
6639ea54 708 # split (build)requires, obsoletes on commas
701dce37 709 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
9911efc1
ER
710 value = substr($0, index($0, $2));
711 $0 = format_requires($1, value);
2776dcb6 712 }
42cd9911 713
7198ba75
ER
714 # BR: tar (and others) is to common (rpm-build requires it)
715 if (field ~ /^buildrequires:/) {
a3adad27
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") {
7198ba75
ER
734 next
735 }
15677f60 736
485540f7 737 replace_requires();
7198ba75
ER
738 }
739
cdf38256 740 if (field ~ /^requires:/) {
485540f7 741 replace_requires();
42cd9911 742 }
cdf38256
ER
743
744
ea66cafb 745 # obsolete/unwanted tags
98125519 746 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
32bb73d8 747 next
9911efc1 748 }
d2bcf054 749
6cfaf341 750 if (field ~ /buildroot:/) {
faabbd89 751 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
6cfaf341
ER
752 did_build_root = 1
753 }
7d285e55 754
7d285e55 755 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
89411bba 756 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
32bb73d8 757 $1 = "License:"
89411bba 758 }
d2bcf054 759
baec8afd
ER
760 if (field ~ /license:/) {
761 l = substr($0, index($0, $2));
762 if (l == "Python Software Foundation License") {
763 l = "PSF"
764 }
4f02884b
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 }
5e624f99
ER
777 if (l == "GPLv2") {
778 l = "GPL v2"
779 }
780 if (l == "GPLv2+") {
781 l = "GPL v2+"
782 }
baec8afd
ER
783 $0 = "License:\t" l;
784 }
785
786
1ea917a3 787 if (field ~ /name:/) {
95266981 788 if ($2 == "%{name}" && name) {
2fce9750
ER
789 $2 = name
790 }
32bb73d8 791 name = $2
1ea917a3
ER
792 name_seen = 1;
793 }
7d285e55 794
1ea917a3 795 if (field ~ /version:/) {
2fce9750
ER
796 if ($2 == "%{version}" && version) {
797 $2 = version
798 }
32bb73d8 799 version = $2
1ea917a3
ER
800 version_seen = 1;
801 }
802
803 if (field ~ /release:/) {
2fce9750
ER
804 if ($2 == "%{release}" && release) {
805 $2 = release
806 }
6cfaf341 807 sub(/%atrelease /, "0.", $0)
1ea917a3
ER
808 release = $2
809 release_seen = 1;
810 }
7d285e55 811
98125519 812
246dbfc6
SZ
813 if (field ~ /serial:/)
814 $1 = "Epoch:"
017fc990 815
98125519
ER
816 if (field ~ /home-page:/)
817 $1 = "URL:"
818
4edf81f6 819 # proper caps
7e50ffd2 820 if (field ~ /^url:$/)
4edf81f6
ER
821 $1 = "URL:"
822
98125519
ER
823 if (field ~ /^description:$/)
824 $1 = "\n%description\n"
825
7d285e55 826 # Use %{name} and %{version} in the filenames in "Source:"
93ad28bc 827 if (field ~ /^source/ || field ~ /patch/) {
32bb73d8 828 n = split($2, url, /\//)
66437059
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 }
45465264
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
bf246f77 858 # allow %{name} only in last url component
ccb3335c
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
32bb73d8 870 filename = url[n]
4c237f9d
ER
871 if (name) {
872 url[n] = fixedsub(name, "%{name}", url[n])
873 }
85bbdbed 874 if (field ~ /source/) {
4c237f9d
ER
875 if (version) {
876 url[n] = fixedsub(version, "%{version}", url[n])
877 }
85bbdbed
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 }
f8281d0c
ER
884 if (_pre) {
885 url[n] = fixedsub(_pre, "%{_pre}", url[n])
886 }
85bbdbed
ER
887 if (_snap) {
888 url[n] = fixedsub(_snap, "%{_snap}", url[n])
889 }
88c76b14
ER
890 if (subver) {
891 url[n] = fixedsub(subver, "%{subver}", url[n])
892 }
85bbdbed 893 }
f175a699 894 # assigning to $2 kills preamble formatting
66437059 895 $2 = fixedsub(filename, url[n], $2)
d2bcf054 896
0b8c0588 897 $2 = unify_url($2)
7d285e55 898 }
be7dead6 899
d2bcf054 900
93ad28bc 901 if (field ~ /^source:/)
d2bcf054 902 $1 = "Source0:"
32bb73d8 903
ff9e2987 904 if (field ~ /^patch:/)
32bb73d8 905 $1 = "Patch0:"
d2bcf054 906
0311af17 907 kill_preamble_macros();
32bb73d8 908 format_preamble()
d2bcf054 909
12d9b2b2
ER
910 if (field ~ /requires/) {
911 # atrpms
912 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
913 }
16397458 914}
915
8671b2a2
ER
916/^%bcond_/ {
917 # do nothing
918 print
919 next
920}
7c43f31c
ER
921
922# sort BR/R!
923#
924# NOTES:
925# - mixing BR/R and anything else confuses this (all will be sorted together)
42cd9911 926# so don't do that.
7c43f31c 927# - comments leading the BR/R can not be associated,
42cd9911 928# so don't adapterize when the BR/R are mixed with comments
7c43f31c 929ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
f175a699 930 if ($1 ~ /Pre[Rr]eq:/) {
37457756 931 sub(/Pre[Rr]eq:/, "Requires:", $1);
7c43f31c 932 }
8be3cbda
ER
933 if ($1 == "BR:" ) {
934 $1 = "BuildRequires:"
935 }
936 if ($1 == "R:" ) {
937 $1 = "Requires:"
938 }
7c43f31c 939 format_preamble()
73eaf7b6 940# kill_preamble_macros(); # breaks tabbing
7c43f31c
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
7c43f31c
ER
951preamble == 1 {
952 if (b_idx > 0) {
953 isort(b_key, b_idx);
954 for (i = 1; i <= b_idx; i++) {
89411bba
ER
955 v = b_val[b_key[i]];
956 sub(/[ \t]+$/, "", v);
957 print "" v;
7c43f31c
ER
958 }
959 b_idx = 0
960 }
961}
962
2b4c59bc 963# main() ;-)
16397458 964{
32bb73d8 965 preamble = 1
d2bcf054 966
62565bd5 967 sub(/[ \t]+$/, "")
32bb73d8 968 print
1ea917a3
ER
969
970 if (name_seen == 0 && name) {
bd313400 971 print "Name:\t\t" name
1ea917a3
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 }
98125519
ER
984
985 if (did_build_root == 0) {
6cfaf341 986# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
98125519
ER
987 did_build_root = 1
988 }
6cfaf341
ER
989 if (did_groups == 0) {
990# print "Group:\t\tunknown"
991 did_groups = 1
992 }
57862255 993}
994
6b02d821 995
57862255 996END {
0bbcf6b4 997 if (do_not_touch_anything)
998 exit 0
d2bcf054 999
42cd9911
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 }
a3c6bbce 1006
6b02d821 1007 close(changelog_file)
1008 while ((getline < changelog_file) > 0)
1009 print
1010 system("rm -f " changelog_file)
3c6a8648 1011
aa666779
SZ
1012 if (did_clean == 0) {
1013 print ""
1014 print "%clean"
1015 print "rm -rf $RPM_BUILD_ROOT"
1016 }
1017
b741d74d
SZ
1018 if (date == 0) {
1019 print ""
1020 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1021 }
d2bcf054 1022
a3c6bbce 1023 if (has_changelog == 0) {
1a2653e7 1024 print "%changelog"
42cd9911 1025 }
b741d74d 1026
a3c6bbce 1027 if (boc > 2) {
99f2e2ca 1028 print "* %{date} PLD Team <feedback@pld-linux.org>"
42cd9911 1029 }
1fefb3da 1030 if (boc > 1) {
9b223e29 1031 printf "All persons listed below can be reached at "
99f2e2ca 1032 print "<cvs_login>@pld-linux.org\n"
57862255 1033 }
a3c6bbce 1034 if (boc > 0) {
1fefb3da 1035 print "$" "Log:$"
42cd9911 1036 }
16397458 1037}
1038
2b4c59bc 1039function fixedsub(s1,s2,t, ind) {
66437059 1040# substitutes fixed strings (not regexps)
2b4c59bc 1041 if (ind = index(t,s1))
1042 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1043 return t
66437059
SZ
1044}
1045
be7dead6 1046# There should be one or two tabs after the colon.
1047function format_preamble()
1048{
f175a699 1049 if (/^#/ || /^%bcond_with/) {
c74a804a
ER
1050 return;
1051 }
32bb73d8 1052 sub(/:[ \t]*/, ":")
13dda4dc
ER
1053 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1054 if (RLENGTH < 8) {
32bb73d8 1055 sub(/:/, ":\t\t")
42cd9911 1056 } else {
32bb73d8 1057 sub(/:/, ":\t")
42cd9911 1058 }
be7dead6 1059 }
1060}
1061
a9f3f77c 1062# Replace directly specified directories with macros
1063function use_macros()
1064{
ff9e2987
ER
1065 # -m, --skip-macros, --no-macros -- skip macros subst
1066 if (ENVIRON["SKIP_MACROS"]) {
1067 return
1068 }
1069
5110bd60
ER
1070 # leave inline sed lines alone
1071 if (/(%{__sed}|sed) -i -e/) {
1072 return;
1073 }
1074
42cd9911
ER
1075 sub("%{_defaultdocdir}", "%{_docdir}");
1076 sub("%{_bindir}/perl", "%{__perl}");
1077 sub("%{_bindir}/python", "%{__python}");
32b4e718 1078
bf42735e
ER
1079 gsub(infodir, "%{_infodir}")
1080
c9cb5723
ER
1081 gsub(perl_sitearch, "%{perl_sitearch}")
1082 gsub(perl_archlib, "%{perl_archlib}")
1083 gsub(perl_privlib, "%{perl_privlib}")
c9cb5723
ER
1084 gsub(perl_vendorlib, "%{perl_vendorlib}")
1085 gsub(perl_vendorarch, "%{perl_vendorarch}")
1086 gsub(perl_sitelib, "%{perl_sitelib}")
f9ae8d4e
ER
1087
1088 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
6cfaf341 1089 gsub(py_sitedir, "%{py_sitedir}")
96c9c215 1090 gsub(py_scriptdir, "%{py_scriptdir}")
9086b883 1091 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
6dd98e9f 1092 gsub("%{python_sitelib}", "%{py_sitedir}")
9f2514dd
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
9086b883
ER
1100 gsub("%{_datadir}/applications", "%{_desktopdir}")
1101 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
5e624f99 1102 gsub("%{_datadir}/java", "%{_javadir}")
c9cb5723 1103
6dd2a429 1104 gsub(libdir, "%{_libdir}")
5e624f99 1105 gsub(javadir, "%{_javadir}")
6dd2a429 1106
32bb73d8 1107 gsub(bindir, "%{_bindir}")
60e168c3 1108 gsub("%{prefix}/bin", "%{_bindir}")
5110bd60 1109 if (prefix"/bin" == bindir)
f0eca444 1110 gsub("%{_prefix}/bin", "%{_bindir}")
60e168c3 1111
ec98fa64 1112 for (c = 1; c <= NF; c++) {
1113 if ($c ~ sbindir "/fix-info-dir")
1114 continue;
61780b93
ER
1115 if ($c ~ sbindir "/webapp")
1116 continue;
bf42735e
ER
1117 if ($c ~ sbindir "/ldconfig")
1118 continue;
eb4e6786
ER
1119 if ($c ~ sbindir "/chsh")
1120 continue;
1121 if ($c ~ sbindir "/usermod")
1122 continue;
377c83f8
ER
1123 if ($c ~ sbindir "/chkconfig")
1124 continue;
519b18fb
ER
1125 if ($c ~ sbindir "/installzope(product|3package)")
1126 continue;
ec98fa64 1127 gsub(sbindir, "%{_sbindir}", $c)
1128 }
1129
60e168c3 1130 gsub("%{prefix}/sbin", "%{_sbindir}")
519b18fb 1131 if (prefix"/sbin" == sbindir) {
5d0dc6ec 1132 gsub("%{_prefix}/sbin", "%{_sbindir}")
519b18fb 1133 }
60e168c3 1134
38504ae2 1135 for (c = 1; c <= NF; c++) {
de2f7a1a 1136 if ($c ~ sysconfdir "/{?cron.")
ec98fa64 1137 continue;
f0eca444 1138 if ($c ~ sysconfdir "/{?crontab.d")
af3306cc 1139 continue;
269161f4
ER
1140 if ($c ~ sysconfdir "/{?env.d")
1141 continue;
66f4bdaa 1142 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
791430b4 1143 continue;
3c1352be
ER
1144 if ($c ~ sysconfdir "/{?udev")
1145 continue;
1146 if ($c ~ sysconfdir "/{?hotplug")
7a1926d6 1147 continue;
f0eca444 1148 if ($c ~ sysconfdir "/{?logrotate.d")
38504ae2 1149 continue;
f0eca444 1150 if ($c ~ sysconfdir "/{?pam.d")
a56e8186 1151 continue;
f0eca444 1152 if ($c ~ sysconfdir "/{?profile.d")
3849d745 1153 continue;
f0eca444 1154 if ($c ~ sysconfdir "/{?rc.d")
d95318c3 1155 continue;
f0eca444 1156 if ($c ~ sysconfdir "/{?security")
a56e8186 1157 continue;
f0eca444 1158 if ($c ~ sysconfdir "/{?skel")
1021eb9a 1159 continue;
f0eca444 1160 if ($c ~ sysconfdir "/{?sysconfig")
3849d745 1161 continue;
a3ad3d2b
ER
1162 if ($c ~ sysconfdir "/{?shrc.d")
1163 continue;
7666ea52
ER
1164 if ($c ~ sysconfdir "/{?certs")
1165 continue;
3c475044
ER
1166 if ($c ~ sysconfdir "/{?X11")
1167 continue;
7e2a6e20
ER
1168 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1169 continue;
ea66cafb
ER
1170 if ($c ~ sysconfdir "/{?rpm")
1171 continue;
f175a699 1172 if ($c ~ sysconfdir "/{?bash_completion.d")
a3ad3d2b 1173 continue;
f175a699 1174 if ($c ~ sysconfdir "/{?samba")
9fb04ca3 1175 continue;
e4339f15
ER
1176 if ($c ~ sysconfdir "/shells")
1177 continue;
f2bc05a6
ER
1178 if ($c ~ sysconfdir "/ppp")
1179 continue;
318fa94a
ER
1180 if ($c ~ sysconfdir "/dbus-1")
1181 continue;
38504ae2 1182 gsub(sysconfdir, "%{_sysconfdir}", $c)
1183 }
60e168c3 1184
e5c731ae 1185 gsub(kdedocdir, "%{_kdedocdir}")
99b02f64 1186 gsub(docdir, "%{_docdir}")
f175a699 1187 gsub(php_pear_dir, "%{php_pear_dir}")
99b02f64 1188
10592e33
ER
1189 for (c = 1; c <= NF; c++) {
1190 if ($c ~ datadir "/automake")
1191 continue;
5d60467e
ER
1192 if ($c ~ datadir "/unsermake")
1193 continue;
a0e6069a
ER
1194 if ($c ~ datadir "/file/magic.mime")
1195 continue;
10592e33
ER
1196 gsub(datadir, "%{_datadir}", $c)
1197 }
1198
60e168c3 1199 gsub("%{prefix}/share", "%{_datadir}")
10592e33 1200 if (prefix"/share" == datadir)
f0eca444 1201 gsub("%{_prefix}/share", "%{_datadir}")
60e168c3 1202
03fbe002
ER
1203 # CFLAGS="-I/usr/include/ncurses is usually correct.
1204 if (!/-I\/usr\/include/) {
1205 gsub(includedir, "%{_includedir}")
1206 }
1207
60e168c3 1208 gsub("%{prefix}/include", "%{_includedir}")
03fbe002 1209 if (prefix"/include" == includedir) {
f0eca444 1210 gsub("%{_prefix}/include", "%{_includedir}")
03fbe002 1211 }
60e168c3 1212
32bb73d8 1213 gsub(mandir, "%{_mandir}")
03fbe002 1214 if ($0 !~ "%{_datadir}/manual") {
5d0dc6ec 1215 gsub("%{_datadir}/man", "%{_mandir}")
03fbe002 1216 }
cd1437c2 1217 gsub("%{_prefix}/share/man", "%{_mandir}")
1218 gsub("%{prefix}/share/man", "%{_mandir}")
60e168c3 1219 gsub("%{prefix}/man", "%{_mandir}")
1220 gsub("%{_prefix}/man", "%{_mandir}")
1221
32bb73d8 1222 gsub(infodir, "%{_infodir}")
60e168c3 1223 gsub("%{prefix}/info", "%{_infodir}")
1224 gsub("%{_prefix}/info", "%{_infodir}")
1225
de2f7a1a 1226 if (prefix !~ "/X11R6") {
1227 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1228 }
bd4a2113 1229
33957389 1230 gsub(examplesdir, "%{_examplesdir}")
d6255e69 1231
982b68ad 1232 if (prefix != "/") {
a0e6069a
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;
61780b93
ER
1238 if ($c ~ prefix "/sbin/webapp")
1239 continue;
eb4e6786
ER
1240 if ($c ~ prefix "/sbin/chsh")
1241 continue;
1242 if ($c ~ prefix "/sbin/usermod")
1243 continue;
519b18fb
ER
1244 if ($c ~ prefix "/sbin/installzope(product|3package)")
1245 continue;
a0e6069a
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;
c0ae0d40
ER
1252 if ($c ~ prefix "/lib/pkgconfig")
1253 continue;
03fbe002 1254
589bf4b3
ER
1255 # CFLAGS="-I/usr..." is usually correct.
1256 if (/-I\/usr/)
03fbe002 1257 continue;
4e1f12b2
ER
1258 # same for LDFLAGS="-L/usr..."
1259 if (/-L\/usr/)
1260 continue;
03fbe002 1261
a0e6069a
ER
1262 gsub(prefix, "%{_prefix}", $c)
1263 }
ec98fa64 1264 }
982b68ad 1265 gsub("%{prefix}", "%{_prefix}")
1266 }
9a43821c 1267
77b6d1ab
ER
1268 # replace back
1269 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1270 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1271
9a43821c 1272 gsub("%{PACKAGE_VERSION}", "%{version}")
1273 gsub("%{PACKAGE_NAME}", "%{name}")
92bd39c6 1274
7f5aa63a 1275 gsub("^make$", "%{__make}")
1276 gsub("^make ", "%{__make} ")
ca0c404d 1277 gsub("^gcc ", "%{__cc} ")
8be48373 1278 gsub("^rm --interactive=never ", "%{__rm} ")
58ca7d6b 1279
3353e0d5
ER
1280 # mandrake specs
1281 gsub("^%make$", "%{__make}")
1282 gsub("^%make ", "%{__make} ")
1283 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
8705c1a9 1284 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
2fce9750 1285 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
3353e0d5 1286 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
8705c1a9 1287 gsub("^%{__install}", "install")
3353e0d5
ER
1288 gsub("%optflags", "%{rpmcflags}")
1289 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1290
32d93636 1291 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
eba571c8 1292 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
023aea7a
ER
1293 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1294 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
2fce9750 1295 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
2f89c197 1296 $0 = fixedsub("%__install", "install", $0);
2fce9750 1297
807cdd98
ER
1298 # split configure line to multiple lines
1299 if (/%configure / && !/\\$/) {
1300 $0 = format_configure($0);
1301 }
1302
e62422da
ER
1303 gsub("%_bindir", "%{_bindir}")
1304 gsub("%_datadir", "%{_datadir}")
1305 gsub("%_iconsdir", "%{_iconsdir}")
99b02f64
ER
1306 gsub("%_sbindir", "%{_sbindir}")
1307 gsub("%_mandir", "%{_mandir}")
1308 gsub("%name", "%{name}")
42cd9911
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");
32d93636 1316
58ca7d6b 1317 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1318 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
a3c6bbce 1319
caa01c58 1320 if (/^ant / || /^%{ant}/) {
a3c6bbce 1321 sub(/^ant/, "%ant")
caa01c58 1322 sub(/^%{ant}/, "%ant")
42cd9911
ER
1323 add_br("BuildRequires: jpackage-utils");
1324 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1325 }
a3c6bbce 1326
b6979c9c 1327}
d2bcf054 1328
807cdd98
ER
1329function format_configure(line, n, a, s) {
1330 n = split(line, a, / /);
1331 s = a[1] " \\\n";
1332 for (i = 2; i <= n; i++) {
1333 s = s "\t" a[i] " \\\n"
1334 }
1335 return s
1336}
1337
c490069b
ER
1338
1339# insertion sort of A[1..n]
1340# copied from mawk manual
1341function isort(A,n, i,j,hold) {
1342 for (i = 2; i <= n; i++) {
1343 hold = A[j = i]
1344 while (A[j-1] > hold) {
e8e4542f 1345 j-- ; A[j+1] = A[j]
1346 }
c490069b
ER
1347 A[j] = hold
1348 }
1349 # sentinel A[0] = "" will be created if needed
1350}
1351
1352
1353function use_files_macros( i, n, t, a)
0bbcf6b4 1354{
6702f869
ER
1355 use_macros()
1356
2a10aeb5
ER
1357 # skip comments
1358 if (/^#/) {
1359 return;
1360 }
1361
3210b282
ER
1362 sub("^%doc %{_mandir}", "%{_mandir}")
1363
0bbcf6b4 1364 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1365 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
c490069b 1366
bb7ad876
ER
1367 # uid/gid nobody is not valid in %files
1368 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1369 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1370 }
1371
07aced3a
JB
1372 # s[gu]id programs with globs are evil
1373 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1374 $0 = $0 " # FIXME no globs for suid/sgid files"
ca68f0c3
ER
1375 }
1376
aedb74de 1377 # replace back
16590ec6 1378 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
d7018013 1379 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
16590ec6
ER
1380 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1381 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1382 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1383 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1384 gsub("%{_sysconfdir}/security", "/etc/security")
1385 gsub("%{_sysconfdir}/skel", "/etc/skel")
1386 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1387 gsub("%{_sysconfdir}/certs", "/etc/certs")
aedb74de 1388 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
318fa94a 1389 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
fc100b2c 1390
aedb74de
ER
1391 # /etc/init.d -> /etc/rc.d/init.d
1392 if (!/^\/etc\/init\.d$/) {
1393 gsub("/etc/init.d", "/etc/rc.d/init.d")
1394 }
1395
1396 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
fc100b2c
ER
1397 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1398 $0 = "%attr(754,root,root) " $0
1399 }
1400 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
a5e4249b 1401 gsub("^%attr\\(... *,", "%attr(754,");
fc100b2c 1402 }
eeb15f12
ER
1403 }
1404
17bd16f3 1405 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
d749eebf
ER
1406 $0 = "%attr(755,root,root) " $0
1407 }
1408
46e31fbb
ER
1409 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1410 $0 = "%attr(755,root,root) " $0
1411 }
1412
f12fb504
ER
1413 # /etc/sysconfig files
1414 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
feb42f71 1415 # attr not required, allow default 644 attr
646a62fc 1416 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
9f60b463 1417 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
aedb74de
ER
1418 gsub("%config", "%config(noreplace)")
1419 }
f12fb504 1420
9f60b463 1421 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
aedb74de
ER
1422 $NF = "%config(noreplace) " $NF
1423 }
f12fb504 1424
aedb74de 1425 if (/\/etc\/sysconfig\// && /%attr\(755/) {
a5e4249b 1426 gsub("^%attr\\(... *,", "%attr(640,");
aedb74de 1427 }
f12fb504 1428
aedb74de
ER
1429 if (/\/etc\/sysconfig\// && !/%verify/) {
1430 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1431 }
feb42f71
ER
1432 }
1433
f12fb504 1434 # kill leading zeros
6ac67f5b
ER
1435 if (/%attr\(0[1-9]/) {
1436 gsub("%attr\\(0", "%attr(")
1437 }
7dd00833 1438
5844653b 1439 # kill leading whitespace
bcf3f2ca 1440 gsub(/^ +/, "");
5844653b 1441
42cd9911
ER
1442 # kill default attrs
1443 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1444 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1445 if (!/%dir/) {
1446 gsub(/%attr\(644,root,root\) /, "");
1447 }
68618e24 1448
c490069b 1449 # sort %verify attrs
91e497a5 1450 if (match($0, /%verify\(not([^)]+)\)/)) {
c490069b 1451 t = substr($0, RSTART, RLENGTH)
f51e180c
ER
1452 # kill commas: %verify(not,md5,size,mtime)
1453 gsub(/,/, " ", t);
1454
c490069b
ER
1455 gsub(/^%verify\(not |\)$/, "", t)
1456 n = split(t, a, / /)
1457 isort(a, n)
1458
1459 s = "%verify(not"
1460 for (i = 1 ; i <= n; i++) {
1461 s = s " " a[i]
1462 }
1463 s = s ")"
1464
91e497a5 1465 gsub(/%verify\(not[^)]+\)/, s)
c490069b 1466 }
35a7a211
ER
1467
1468 if (/%{_mandir}/) {
1dfac985 1469 gsub("\.gz$", "*")
35a7a211 1470 }
023aea7a 1471
5b33a6a1 1472 # locale dir and no %lang -> bad
d8a3c08f 1473 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
5b33a6a1
ER
1474 $(NF + 1) = "# FIXME consider using %find_lang"
1475 }
1476
023aea7a
ER
1477 # atrpms
1478 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1479 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1480 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
c0ae0d40
ER
1481
1482 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1483 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1484 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
a83ba4f8
ER
1485
1486 gsub("%{_datadir}/applications", "%{_desktopdir}");
195fd300 1487 gsub("%{_datadir}/icons", "%{_iconsdir}");
6190dc2e 1488 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
0bbcf6b4 1489}
73e1a9a3 1490
afca35ce
ER
1491function use_script_macros()
1492{
1493 if (gsub("/sbin/service", "%service")) {
1494 sub(" >/dev/null 2>&1 \|\|:", "");
1495 sub(" 2> /dev/null \|\| :", "");
1496 }
1497}
1498
73e1a9a3 1499function fill(ch, n, i) {
1500 for (i = 0; i < n; i++)
1501 printf("%c", ch)
1502}
1503
1504function format_flush(line, indent, newline, word, first_word) {
1505 first_word = 1
d2bcf054 1506 if (format_indent == -1)
73e1a9a3 1507 newline = ""
1508 else
1509 newline = fill(" ", format_indent) "- "
1510
1511 while (match(line, /[^\t ]+/)) {
1512 word = substr(line, RSTART, RLENGTH)
1513 if (length(newline) + length(word) + 1 > tw) {
1514 print newline
d2bcf054 1515
73e1a9a3 1516 if (format_indent == -1)
1517 newline = ""
1518 else
1519 newline = fill(" ", format_indent + 2)
1520 first_word = 1
1521 }
1522
1523 if (first_word) {
1524 newline = newline word
1525 first_word = 0
1526 } else
1527 newline = newline " " word
d2bcf054 1528
73e1a9a3 1529 line = substr(line, RSTART + RLENGTH)
1530 }
1531 if (newline ~ /[^\t ]/) {
1532 print newline
1533 }
1534}
1535
0972e97d 1536function cflags(var)
1537{
2f46ef70 1538 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1539 removed[var] = 1
0972e97d 1540 return 0
2f46ef70 1541 }
d2bcf054 1542
337741dd 1543 if (!/!\?debug/)
fe9a6f09 1544 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
0972e97d 1545 return 1
1546}
0311af17 1547
0b8c0588
ER
1548function unify_url(url)
1549{
1550
1551 # sourceforge urls
1552 sub("[?&]big_mirror=.*$", "", url);
1553 sub("[?&]modtime=.*$", "", url);
1554 sub("[?]use_mirror=.*$", "", url);
1555 sub("[?]download$", "", url);
1556
1557 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1558 sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", url)
1559 sub("^http://download\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1560 sub("^http://downloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1561
1562 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1563 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", url)
1564 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", url)
1565
1566 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1567 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1568
1569 # apache urls
1570 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1571
8d69f95f 1572 # gnu.org
544f6163 1573 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
8ef26195 1574 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
8d69f95f 1575
0b8c0588
ER
1576 return url
1577}
1578
a5ab7844
ER
1579function demacroize(str)
1580{
73eaf7b6
ER
1581 if (mod_name) {
1582 sub("%{mod_name}", mod_name, str);
1583 }
1584 if (name) {
1585 sub("%{name}", name, str);
1586 }
a5ab7844
ER
1587 if (version) {
1588 sub("%{version}", version, str);
1589 }
1590 if (_beta) {
1591 sub("%{_beta}", _beta, str);
1592 }
1593 if (_rc) {
1594 sub("%{_rc}", _rc, str);
1595 }
f8281d0c
ER
1596 if (_pre) {
1597 sub("%{_pre}", _pre, str);
1598 }
a5ab7844
ER
1599 if (_snap) {
1600 sub("%{_snap}", _snap, str);
1601 }
88c76b14
ER
1602 if (subver) {
1603 sub("%{subver}", subver, str);
1604 }
a5ab7844
ER
1605 return str;
1606}
1607
0311af17
ER
1608function kill_preamble_macros()
1609{
a90171f0
ER
1610 if ($1 ~ /^Obsoletes:/) {
1611 # NB! assigning $2 a value breaks tabbing
1612 $2 = demacroize($2);
1613 }
1614 if ($1 ~ /^URL:/) {
73eaf7b6 1615 # NB! assigning $2 a value breaks tabbing
a5ab7844 1616 $2 = demacroize($2);
d57766c4 1617 $2 = unify_url($2)
0311af17
ER
1618 }
1619}
9911efc1 1620
18cdb713
ER
1621function get_epoch(pkg, ver, epoch)
1622{
2a50ce70
ER
1623 return
1624# should parse the BR lines more adequately:
1625# freetype = 2.0.0 -> correct
1626# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1627
18cdb713
ER
1628 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1629 shell | getline epoch;
1630 return epoch;
1631}
1632
9911efc1 1633function format_requires(tag, value, n, p, i, deps, ndeps) {
83c487a0
ER
1634 # skip any formatting for commented out items or some weird macros
1635 if (/^#/ || /%\(/) {
f3b115ea
ER
1636 return tag "\t" value
1637 }
9911efc1
ER
1638 n = split(value, p, / *,? */);
1639 for (i = 1; i <= n; i++) {
1640 if (p[i+1] ~ /[<=>]/) {
18cdb713
ER
1641 # add epoch if the version doesn't have it but BuildRequires.txt has
1642 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1643 epoch = get_epoch(p[i], p[i+2])
1644 if (epoch) {
1645 p[i+2] = epoch ":" p[i+2];
1646 }
1647 }
9911efc1
ER
1648 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1649 i += 2;
1650 } else {
1651 deps[ndeps++] = p[i];
1652 }
1653 }
1654 s = ""
1655 for (i in deps) {
1656 s = s sprintf("%s\t%s\n", tag, deps[i]);
1657 }
1658 return substr(s, 1, length(s)-1);
1659}
035bfa01
ER
1660
1661function use_tabs()
1662{
1663 # reverse vim: ts=4 sw=4 et
1664 gsub(/ /, "\t");
1665}
a3c6bbce
ER
1666
1667function add_br(br)
1668{
42cd9911 1669 BR[BR_count++] = br
a3c6bbce
ER
1670}
1671
485540f7
ER
1672function replace_requires()
1673{
1674
1675 # jpackages
1676 sub(/^java-devel$/, "jdk", $2);
1677 sub(/^log4j$/, "logging-log4j", $2);
1678 sub(/^jakarta-log4j$/, "logging-log4j", $2);
1679 sub(/^oro$/, "jakarta-oro", $2);
1680 sub(/^jakarta-ant$/, "ant", $2);
1681 sub(/^xerces-j2$/, "xerces-j", $2);
1682 sub(/^ldapjdk$/, "ldapsdk", $2);
1683 sub(/^saxon-scripts$/, "saxon", $2);
1684 sub(/^xalan-j2$/, "xalan-j", $2);
1685 sub(/^xerces-j2$/, "xerces-j", $2);
1686 sub(/^gnu-regexp$/, "gnu.regexp", $2);
1687
1688 # redhat virtual
1689 sub(/^tftp-server$/, "tftpdaemon", $2);
1690
e991641f 1691 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
a73cc8a9 1692 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
e991641f 1693
91dd18e8
ER
1694 # fedora
1695 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1696
485540f7
ER
1697 replace_php_virtual_deps()
1698}
1699
cdf38256
ER
1700# php virtual deps as discussed in devel-en
1701function replace_php_virtual_deps()
1702{
42cd9911
ER
1703 pkg = $2
1704# if (pkg == "php-program") {
1705# $0 = $1 "\t/usr/bin/php"
1706# return
1707# }
1708
4a4a8c43
ER
1709# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1710# sub(/^php-/, "php(", pkg);
1711# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1712# $2 = pkg
1713# }
42cd9911
ER
1714
1715 if (pkg ~/^php$/) {
1716 $2 = "webserver(php)";
1717 if ($4 ~ /^[0-9]:/) {
1718 $4 = substr($4, 3);
1719 }
1720 }
1721
1722 if (pkg ~/^php4$/) {
1723 $2 = "webserver(php)";
1724 if ($4 ~ /^[0-9]:/) {
1725 $4 = substr($4, 3);
1726 }
1727 }
cdf38256
ER
1728}
1729
eddfcbd4
ER
1730function replace_groupnames(group)
1731{
1732 sub(/^Amusements\/Games\/Strategy\/Real Time/, "X11/Applications/Games/Strategy", group)
1733 sub(/^Application\/Multimedia$/, "Applications/Multimedia", group)
1734 sub(/^Applications\/Compilers$/, "Development/Languages", group)
1735 sub(/^Applications\/Daemons$/, "Daemons", group)
1736 sub(/^Applications\/Internet$/, "Applications/Networking", group)
1737 sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
1738 sub(/^Applications\/Productivity$/, "X11/Applications", group)
1739 sub(/^Database$/, "Applications/Databases", group)
1740 sub(/^Development\/Code Generators$/, "Development", group)
1741 sub(/^Development\/Docs$/, "Documentation", group)
1742 sub(/^Development\/Documentation$/, "Documentation", group)
1743 sub(/^Development\/Java/, "Development/Languages/Java", group)
1744 sub(/^Development\/Libraries\/C and C\+\+$/, "Development/Libraries", group)
1745 sub(/^Development\/Libraries\/Java$/, "Development/Languages/Java", group)
1746 sub(/^Development\/Other/,"Development", group)
1747 sub(/^Development\/Testing$/, "Development", group)
1748 sub(/^Emulators$/, "Applications/Emulators", group)
1749 sub(/^Games/,"Applications/Games", group)
1750 sub(/^Library\/Development$/, "Development/Libraries", group)
1751 sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
1752 sub(/^Shells/,"Applications/Shells", group)
1753 sub(/^System Environment\/Base$/, "Base", group)
1754 sub(/^System Environment\/Daemons$/, "Daemons", group)
1755 sub(/^System Environment\/Kernel$/, "Base/Kernel", group)
1756 sub(/^System Environment\/Libraries$/, "Libraries", group)
1757 sub(/^System$/, "Base", group)
1758 sub(/^System\/Base$/, "Base", group)
1759 sub(/^System\/Libraries$/, "Libraries", group)
1760 sub(/^System\/Servers$/, "Daemons", group)
1761 sub(/^Text Processing\/Markup\/HTML$/, "Applications/Text", group)
1762 sub(/^Text Processing\/Markup\/XML$/, "Applications/Text", group)
1763 sub(/^Utilities\//,"Applications/", group)
1764 sub(/^Web\/Database$/, "Applications/WWW", group)
1765 sub(/^X11\/GNOME/,"X11/Applications", group)
1766 sub(/^X11\/GNOME\/Applications/,"X11/Applications", group)
1767 sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries", group)
1768 sub(/^X11\/Games/,"X11/Applications/Games", group)
1769 sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
1770 sub(/^X11\/Library/,"X11/Libraries", group)
1771 sub(/^X11\/Utilities/,"X11/Applications", group)
1772 sub(/^X11\/XFree86/, "X11", group)
1773 sub(/^X11\/Xserver$/, "X11/Servers", group)
1774 sub(/^Development\/C$/, "Development/Libraries", group)
1775 sub(/^Development\/Python$/, "Development/Languages/Python", group)
1776 sub(/^System\/Kernel and hardware$/, "Base/Kernel", group)
1777 sub(/^Application\/System$/, "Applications/System", group)
1778
1779 return group;
1780}
1781
13dda4dc 1782# vim:ts=4:sw=4
This page took 0.396442 seconds and 4 git commands to generate.