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