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