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