]> git.pld-linux.org Git - packages/adapter.git/blame - adapter.awk
- subst %{_libdir} -- it's more common to use %{_libdir} than %{_prefix}/lib and...
[packages/adapter.git] / adapter.awk
CommitLineData
37fceb07 1#!/usr/bin/gawk -f
bf0a58ea 2#
b3f2d1ee 3# This is adapter v0.28. Adapter adapts .spec files for PLD Linux.
e18c3fe8 4# $Id$
236b87ac 5#
e18c3fe8 6# Copyright (C) 1999-2006 PLD-Team <feedback@pld-linux.org>
236b87ac 7# Authors:
b4e337d9 8# Michał Kuratczyk <kura@pld.org.pl>
dda3eaa5 9# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
b4e337d9 10# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
d8313167 11# Artur Frysiak <wiget@pld-linux.org>
f37c1259 12# Michal Kochanowicz <mkochano@pld.org.pl>
b4e337d9 13# Elan Ruusamäe <glen@pld-linux.org>
115a3045
ER
14#
15# See cvs log adapter{,.awk} for list of contributors
16#
236b87ac 17# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3a14bf9d 18
8ebb1c08
ER
19# TODO
20# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
21# - add "-nc" option to skip CVS interaction
6c67f9b1
ER
22# - sort Summary(XX)
23# - sort Requires, BuildRequires
fd5553c9 24# - check if %description (lang=C) contains 8bit
6e985933 25# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
8ebb1c08 26
bf0a58ea 27BEGIN {
0ae11f54 28 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
2b47df45 29 SECTIONS = "^%(" RPM_SECTIONS ")"
93e2a87a 30
6bf0d5da 31 PREAMBLE_TAGS = "(Summary|Name|Version|Release|Epoch|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|Pre[Rr]eq|(Build)?Requires)"
c58d1357 32
1c955424 33 preamble = 1 # Is it part of preamble? Default - yes
6e985933
ER
34 boc = 4 # Beginning of %changelog
35 bod = 0 # Beginning of %description
7a72f436 36 tw = 70 # Descriptions width
f171fd40 37
89c604c7 38 b_idx = 0 # index of BR/R arrays
b6875e34 39 BR_count = 0 # number of additional BuildRequires
89c604c7 40
85e708f2 41 # If variable removed, then 1 (for removing it from export)
42 removed["LDFLAGS"] = 0
43 removed["CFLAGS"] = 0
44 removed["CXXFLAGS"] = 0
5c18171e 45
f6f0c932
ER
46 # get cvsaddress for changelog section
47 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
48 "rpm --eval '%{?_cvsmaildomain}%{!?_cvsmaildomain:@pld-linux.org}'" | getline _cvsmaildomain
3fc5a496 49 "rpm --eval '%{?_cvsmailfeedback}%{!?_cvsmailfeedback:PLD Team <feedback@pld-linux.org>}'" | getline _cvsmailfeedback
f6f0c932 50
246ad57e 51 # If 1, we are inside of comment block (started with /^#%/)
52 comment_block = 0
f171fd40 53
ed86212f 54 # File with rpm groups
312c5d87
SZ
55 "rpm --eval %_sourcedir" | getline groups_file
56 groups_file = groups_file "/rpm.groups"
826b40ea 57 system("cd `rpm --eval %_sourcedir`; [ -f rpm.groups ] || cvs up rpm.groups >/dev/null")
c2814373 58 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
f1991554 59
5c18171e 60 # Temporary file for changelog section
61 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
62
f1991554 63 # Load rpm macros
43c05c3c 64 "rpm --eval %_prefix" | getline prefix
65 "rpm --eval %_bindir" | getline bindir
66 "rpm --eval %_sbindir" | getline sbindir
67 "rpm --eval %_libdir" | getline libdir
68 "rpm --eval %_sysconfdir" | getline sysconfdir
69 "rpm --eval %_datadir" | getline datadir
70 "rpm --eval %_includedir" | getline includedir
71 "rpm --eval %_mandir" | getline mandir
72 "rpm --eval %_infodir" | getline infodir
2a638fcb 73 "rpm --eval %_examplesdir" | getline examplesdir
c2b069de 74 "rpm --eval %_defaultdocdir" | getline docdir
1077f405 75 "rpm --eval %_kdedocdir" | getline kdedocdir
4a62fb54
ER
76 "rpm --eval %_desktopdir" | getline desktopdir
77 "rpm --eval %_pixmapsdir" | getline pixmapsdir
336c1a4f
ER
78
79 "rpm --eval %perl_sitearch" | getline perl_sitearch
80 "rpm --eval %perl_archlib" | getline perl_archlib
81 "rpm --eval %perl_privlib" | getline perl_privlib
336c1a4f
ER
82 "rpm --eval %perl_vendorlib" | getline perl_vendorlib
83 "rpm --eval %perl_vendorarch" | getline perl_vendorarch
84 "rpm --eval %perl_sitelib" | getline perl_sitelib
9732cb3d 85
b7839d5b
ER
86 "rpm --eval %py_sitescriptdir 2>/dev/null" | getline py_sitescriptdir
87 "rpm --eval %py_sitedir 2>/dev/null" | getline py_sitedir
88 "rpm --eval %py_scriptdir 2>/dev/null" | getline py_scriptdir
6f2c1099
ER
89
90 "rpm --eval %ruby_archdir" | getline ruby_archdir
91 "rpm --eval %ruby_ridir" | getline ruby_ridir
92 "rpm --eval %ruby_rubylibdir" | getline ruby_rubylibdir
93 "rpm --eval %ruby_sitearchdir" | getline ruby_sitearchdir
94 "rpm --eval %ruby_sitelibdir" | getline ruby_sitelibdir
95
57caba32 96 "rpm --eval %php_pear_dir" | getline php_pear_dir
3d8be7c3 97 "rpm --eval %tmpdir" | getline tmpdir
bf0a58ea 98}
99
100# There should be a comment with CVS keywords on the first line of file.
8b1938ea 101FNR == 1 {
f1991554 102 if (!/# \$Revision:/) # If this line is already OK?
103 print "# $" "Revision:$, " "$" "Date:$" # No
04dde927 104 else {
f1991554 105 print $0 # Yes
106 next # It is enough for first line
04dde927 107 }
bf0a58ea 108}
109
43c05c3c 110# If the latest line matched /%files/
111defattr == 1 {
13b24a87
ER
112 if (ENVIRON["SKIP_DEFATTR"] != 1) {
113 if ($0 !~ /defattr/) { # If no %defattr
114 print "%defattr(644,root,root,755)" # Add it
115 } else {
116 $0 = "%defattr(644,root,root,755)" # Correct mistakes (if any)
117 }
118 }
aec1bddb 119 defattr = 0
43c05c3c 120}
121
89c604c7
ER
122function b_makekey(a, b, s) {
123 s = a "" b;
124 # kill bcond
b6875e34 125 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
3b0074cc 126
8409a9b2 127 # kill commented out items
b6875e34 128 gsub(/^#[ \t]*/, "", s);
3b0074cc 129
c58d1357 130 # force order
b6875e34
ER
131 gsub(/^Summary\(/, "11Summary(", s);
132 gsub(/^Summary/, "10Summary", s);
133 gsub(/^Name/, "2Name", s);
134 gsub(/^Version/, "3Version", s);
135 gsub(/^Release/, "4Release", s);
136 gsub(/^Epoch/, "5Epoch", s);
137 gsub(/^License/, "5License", s);
138 gsub(/^Group/, "6Group", s);
139 gsub(/^URL/, "7URL", s);
140
141 gsub(/^BuildRequires/, "B1BuildRequires", s);
142 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
143 gsub(/^Provides/, "X1Provides", s);
144 gsub(/^Obsoletes/, "X2Obsoletes", s);
145 gsub(/^Conflicts/, "X3Conflicts", s);
146 gsub(/^BuildArch/, "X4BuildArch", s);
147 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
148 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
149 gsub(/^BuildRoot/, "X9BuildRoot", s);
d9e2bd9b
ER
150
151# printf("%s -> %s\n", a""b, s);
89c604c7
ER
152 return s;
153}
154
eee34ffb 155# Comments
22622171 156/^#/ && (description == 0) {
eee34ffb 157 if (/This file does not like to be adapterized!/) {
158 print # print this message
159 while (getline) # print the rest of spec as it is
160 print
161 do_not_touch_anything = 1 # do not touch anything in END()
162 exit 0
163 }
246ad57e 164
eee34ffb 165 # Generally, comments are printed without touching
70a1dc9e 166 sub(/[ \t]+$/, "")
4414eb86
ER
167
168 if (/Source.*md5/) {
169 print $0
170 next
171 }
246ad57e 172}
173
1da27823 174/^%define/ {
93e2a87a 175 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
71a4728c 176 if ($2 == "_applnkdir") {
ba4b52a7 177 next
71a4728c
ER
178 }
179 if ($2 == "date") {
ba4b52a7 180 date = 1
4ab1678b
ER
181 if (did_files == 0) {
182 print "%files"
183 print ""
184 did_files = 1
185 }
71a4728c
ER
186 }
187
188 # Do not add %define of _prefix if it already is.
189 if ($2 ~ /^_prefix/) {
190 sub("^"prefix, $3, bindir)
191 sub("^"prefix, $3, sbindir)
192 sub("^"prefix, $3, libdir)
193 sub("^"prefix, $3, datadir)
194 sub("^"prefix, $3, includedir)
195 prefix = $3
196 }
197
198 if ($2 ~ /_bindir/ && !/_sbindir/)
199 bindir = $3
200 if ($2 ~ /_sbindir/)
201 sbindir = $3
a27fac4d
ER
202 if ($2 ~ /_libdir/) {
203 if ($3 ~ /^%\(/) {
204 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
205 libdir = "%%%%%%%%%%%%%%"
206 } else {
207 libdir = $3
208 }
209 }
93e2a87a
ER
210 if ($2 ~ /_sysconfdir/) {
211 if ($3 ~ /^%\(/) {
212 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
213 sysconfdir = "%%%%%%%%%%%%%%"
214 } else {
215 sysconfdir = $3
216 }
217 }
a27fac4d
ER
218 if ($2 ~ /_datadir/) {
219 if ($3 ~ /^%\(/) {
220 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
221 datadir = "%%%%%%%%%%%%%%"
222 } else {
223 datadir = $3
224 }
225 }
71a4728c
ER
226 if ($2 ~ /_includedir/)
227 includedir = $3
228 if ($2 ~ /_mandir/)
229 mandir = $3
230 if ($2 ~ /_infodir/)
231 infodir = $3
c2b069de
ER
232 if ($2 ~ /_docdir/)
233 docdir = $3
71a4728c
ER
234
235 # version related macros
236 if ($2 ~ /^_beta$/)
237 _beta = $3
238 if ($2 ~ /^_rc$/)
239 _rc = $3
59de1799
ER
240 if ($2 ~ /^_pre$/)
241 _pre = $3
71a4728c
ER
242 if ($2 ~ /^_snap$/)
243 _snap = $3
244
245 # these are used usually when adapterizing external spec
246 if ($2 ~ /^name$/)
247 name = $3
248 if ($2 ~ /^version$/)
249 version = $3
250 if ($2 ~ /^release$/)
251 release = $3
a39ddef5 252
0ea7c3cd
ER
253 if ($2 ~ /^mod_name$/)
254 mod_name = $3
255
78d96561 256 sub(/[ \t]+$/, "");
a39ddef5
ER
257 # do nothing further, otherwise adapter thinks we're at preamble
258 print
259 next
1da27823
SZ
260}
261
6c67f9b1
ER
262# Obsolete
263/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
264 next
265}
266
246ad57e 267################
268# %description #
269################
93e2a87a 270/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
aec1bddb 271 preamble = 0
efe53381 272
3a14bf9d 273 if (/^%description/) {
aec1bddb 274 bod++
236b87ac 275 format_line = ""
276 format_indent = -1
3a14bf9d
SZ
277 }
278
236b87ac 279 # Format description
7b868d98 280 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3a14bf9d 281 if (/^[ \t]*$/) {
236b87ac 282 format_flush(format_line, format_indent)
3a14bf9d 283 print ""
236b87ac 284 format_line = ""
285 format_indent = -1
3a14bf9d 286 } else if (/^[ \t]*[-\*][ \t]*/) {
236b87ac 287 format_flush(format_line, format_indent)
f171fd40 288 match($0, /^[ \t]*/)
236b87ac 289 format_indent = RLENGTH
290 match($0, /^[ \t]*[-\*][ \t]/)
291 format_line = substr($0, RLENGTH)
f171fd40 292 } else
236b87ac 293 format_line = format_line " " $0
aec1bddb 294 next
efe53381 295 }
f171fd40 296
1da27823 297 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
ddb18dd4 298 if (NF > 3 && $2 == "-l") {
299 ll = $1
300 for (i = 4; i <= NF; i++)
301 ll = ll " " $i
302 $0 = ll " -l " $3
303 }
236b87ac 304 format_flush(format_line, format_indent)
efe53381 305 if (bod == 2) {
aec1bddb
SZ
306 bod = 1
307 description = 1
efe53381 308 } else {
aec1bddb
SZ
309 bod = 0
310 description = 0
efe53381 311 }
312 } else
aec1bddb 313 description = 1
bf0a58ea 314}
315
246ad57e 316#########
317# %prep #
318#########
93e2a87a 319/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
aec1bddb 320 preamble = 0
4ab1678b 321 did_prep = 1
f171fd40 322
ac779c71
ER
323 use_macros()
324
43c05c3c 325 # Add '-q' to %setup
e780ff0a 326 if (/^%setup/ && !/-q/) {
1da27823 327 sub(/^%setup/, "%setup -q")
e780ff0a
ER
328 }
329
af38fe16 330 if (/^%setup/ && name != "setup") {
e9097b46
ER
331 $0 = fixedsub(name, "%{name}", $0);
332 $0 = fixedsub(version, "%{version}", $0);
4a8d9a70 333 if (_beta) {
e9097b46 334 $0 = fixedsub(_beta, "%{_beta}", $0);
4a8d9a70
ER
335 }
336 if (_rc) {
e9097b46 337 $0 = fixedsub(_rc, "%{_rc}", $0);
4a8d9a70 338 }
59de1799
ER
339 if (_pre) {
340 $0 = fixedsub(_pre, "%{_pre}", $0);
341 }
4a8d9a70 342 if (_snap) {
e9097b46 343 $0 = fixedsub(_snap, "%{_snap}", $0);
4a8d9a70 344 }
4f822e22
ER
345 }
346
10690436 347 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
e9097b46 348 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
e780ff0a 349 }
b6875e34 350 sub("^%patch ", "%patch0 ");
ac779c71
ER
351
352 # invalid in %prep
353 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
bf0a58ea 354}
355
246ad57e 356##########
357# %build #
358##########
93e2a87a 359/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
aec1bddb 360 preamble = 0
bf0a58ea 361
4ab1678b
ER
362 if (did_prep == 0) {
363 print "%prep"
364 print ""
365 did_prep = 1
366 }
367
aec1bddb 368 use_macros()
6ebff802 369 use_tabs()
f171fd40 370
9cb72c72 371 if (/^automake$/)
372 sub(/$/, " -a -c")
373
eb4bf70e 374 if (/LDFLAGS/) {
85e708f2 375 if (/LDFLAGS="-s"/) {
376 removed["LDFLAGS"] = 1
377 next
378 } else {
379 split($0, tmp, "LDFLAGS=")
eb4bf70e 380 count = split(tmp[2], flags, "\"")
85e708f2 381 if (flags[1] != "" && flags[1] !~ "!?debug") {
fde8f52a 382 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
85e708f2 383 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
384 for (i = 2; i < count; i++)
385 $0 = $0 flags[i] "\""
386 }
eb4bf70e 387 }
388 }
389
390 if (/CFLAGS=/)
391 if (cflags("CFLAGS") == 0)
392 next
393
394 if (/CXXFLAGS=/)
395 if (cflags("CXXFLAGS") == 0)
396 next
f171fd40 397
85e708f2 398 if (/^export /) {
399 if (removed["LDFLAGS"])
400 sub(" LDFLAGS", "")
401 if (removed["CFLAGS"])
402 sub(" CFLAGS", "")
403 if (removed["CXXFLAGS"])
404 sub(" CXXFLAGS", "")
405 # Is there still something?
406 if (/^export[ ]*$/)
407 next
408 }
2d74be7e 409
db9b1bf2 410 # quote CC
2d74be7e
ER
411 if (/CC=%{__cc} /) {
412 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
413 }
b34b8660 414
e6f1551d 415 # use PLD Linux macros
b34b8660
ER
416 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
417 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
db9b1bf2 418 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
56699a32 419 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
4e26c5f2 420 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
ebeed758 421 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
56699a32
ER
422 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
423 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
db9b1bf2
ER
424
425 sub(/^aclocal$/, "%{__aclocal}");
426 sub(/^autoheader$/, "%{__autoheader}");
427 sub(/^autoconf$/, "%{__autoconf}");
428 sub(/^automake$/, "%{__automake}");
ebeed758 429 sub(/^libtoolize$/, "%{__libtoolize}");
f171fd40 430
5e15e952
ER
431 # atrpms
432 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
433 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
bf0a58ea 434}
435
246ad57e 436##########
437# %clean #
438##########
93e2a87a 439/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
1c52b18e 440 did_clean = 1
e6f1551d 441
b6875e34 442 use_macros()
1c52b18e
SZ
443}
444
246ad57e 445############
446# %install #
447############
93e2a87a 448/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
f171fd40 449
aec1bddb 450 preamble = 0
f171fd40 451
ec0082cc 452 # foreign rpms
624df313 453 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b6875e34
ER
454 sub("%buildroot", "$RPM_BUILD_ROOT");
455 sub("%{buildroot}", "$RPM_BUILD_ROOT");
ec0082cc 456
624df313 457 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
1c52b18e 458 did_rmroot=1
dda3eaa5
SZ
459 print "rm -rf $RPM_BUILD_ROOT"
460 next
461 }
43c05c3c 462
1c52b18e 463 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
dda3eaa5 464 print "rm -rf $RPM_BUILD_ROOT"
1c52b18e 465 did_rmroot=1
dda3eaa5 466 }
f171fd40 467
b6875e34
ER
468 if (tmpdir) {
469 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
3d8be7c3 470 gsub(buildroot, "$RPM_BUILD_ROOT")
b6875e34 471 }
3d8be7c3 472
b6875e34
ER
473 if (!/%{_lib}/) {
474 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
475 }
259883bf 476
dda3eaa5 477 use_macros()
f171fd40 478
bf0a58ea 479 # 'install -d' instead 'mkdir -p'
480 if (/mkdir -p/)
aec1bddb 481 sub(/mkdir -p/, "install -d")
fde90d94 482
48409aee 483 # cp -a already implies cp -r
b6875e34 484 sub(/^cp -ar/, "cp -a")
f171fd40 485
43c05c3c 486 # No '-u root' or '-g root' for 'install'
681a4871 487 if (/^install/ && /-[ug][ \t]*root/)
aec1bddb 488 gsub(/-[ug][ \t]*root /, "")
f171fd40 489
2016aa83
ER
490 if (/^install/ && /-m[ \t]*[0-9]+/)
491 gsub(/-m[ \t]*[0-9]+ /, "")
f171fd40 492
f1991554 493 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
43c05c3c 494 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
aec1bddb 495 next
f171fd40 496
43c05c3c 497 # No lines contain 'chmod' if it sets the modes to '644'
681a4871 498 if ($1 ~ /chmod/ && $2 ~ /644/)
aec1bddb 499 next
5e15e952 500
5e15e952
ER
501 # atrpms
502 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
bf0a58ea 503}
504
246ad57e 505##########
506# %files #
507##########
93e2a87a 508/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
aec1bddb 509 preamble = 0
4ab1678b 510 did_files = 1
f171fd40 511
1da27823 512 if ($0 ~ /^%files/)
aec1bddb 513 defattr = 1
f171fd40 514
eee34ffb 515 use_files_macros()
bf0a58ea 516}
517
246ad57e 518##############
519# %changelog #
520##############
93e2a87a 521/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
aec1bddb 522 preamble = 0
dda3eaa5 523 has_changelog = 1
97e21521 524 skip = 0
bf0a58ea 525 # There should be some CVS keywords on the first line of %changelog.
97e21521 526 if (boc == 3) {
f6f0c932
ER
527 if ($0 !~ _cvsmailfeedback)
528 print "* %{date} " _cvsmailfeedback > changelog_file
97e21521
JB
529 else
530 skip = 1
531 boc = 2
d31b8a48 532 }
97e21521 533 if (boc == 2 && !skip) {
d31b8a48 534 if (!/All persons listed below/) {
fd5e70be 535 printf "All persons listed below can be reached at " > changelog_file
f6f0c932 536 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
97e21521
JB
537 } else
538 skip = 1
44379e57 539 boc = 1
bf0a58ea 540 }
97e21521
JB
541 if (boc == 1 && !skip) {
542 if (!/^$/) {
543 if (!/\$.*Log:.*\$/)
544 print "$" "Log:$" > changelog_file
545 boc = 0
546 }
d31b8a48 547 }
3fdddc43 548 # Define date macro.
d31b8a48 549 if (boc == 4) {
a1aa4976 550 if (date == 0) {
5c18171e 551 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
552 print " date +\"%a %b %d %Y\"`)" > changelog_file
1395ea1c 553 date = 1
a1aa4976 554 }
d31b8a48 555 boc = 3
3fdddc43 556 }
5c18171e 557
70a1dc9e 558 sub(/[ \t]+$/, "")
48c6019c 559 if (!/^%[a-z]+$/ || /changelog/)
5c18171e 560 print > changelog_file
561 else
562 print
563 next
bf0a58ea 564}
565
246ad57e 566###########
567# SCRIPTS #
568###########
93e2a87a 569/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
246ad57e 570 preamble = 0
e9176470 571
723ce732
ER
572 if (gsub("/usr/sbin/useradd", "%useradd")) {
573 sub(" 2> /dev/null \|\| :", "");
574 sub(" >/dev/null 2>&1 \|\|:", "");
575 }
576
e9176470
ER
577 # %useradd and %groupadd may not be wrapped
578 if (/%(useradd|groupadd).*\\$/) {
579 a = $0; getline;
580 sub(/^[\s\t]*/, "");
581 $0 = substr(a, 1, length(a) - 1) $0;
582 }
723ce732 583 use_script_macros()
246ad57e 584}
e9176470 585
93e2a87a 586/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
246ad57e 587 preamble = 0
c2b069de 588 use_macros()
246ad57e 589}
93e2a87a 590/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
246ad57e 591 preamble = 0
723ce732 592 use_script_macros()
246ad57e 593}
93e2a87a 594/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
246ad57e 595 preamble = 0
723ce732 596 use_script_macros()
246ad57e 597}
93e2a87a 598/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
bdba3986 599 preamble = 0
723ce732 600 use_script_macros()
bdba3986 601}
93e2a87a 602/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
bdba3986 603 preamble = 0
723ce732 604 use_script_macros()
bdba3986 605}
93e2a87a 606/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
bdba3986 607 preamble = 0
723ce732 608 use_script_macros()
bdba3986 609}
93e2a87a 610/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
bdba3986 611 preamble = 0
723ce732 612 use_script_macros()
bdba3986 613}
93e2a87a 614/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
bdba3986 615 preamble = 0
723ce732 616 use_script_macros()
bdba3986 617}
0ae11f54
ER
618/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
619 preamble = 0
723ce732 620 use_script_macros()
0ae11f54
ER
621}
622/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
623 preamble = 0
723ce732 624 use_script_macros()
0ae11f54 625}
246ad57e 626
627#############
628# PREAMBLES #
629#############
bf0a58ea 630preamble == 1 {
681a4871 631 # There should not be a space after the name of field
632 # and before the colon.
aec1bddb 633 sub(/[ \t]*:/, ":")
f171fd40 634
1462d6a3
ER
635 if (/^%perl_module_wo_prefix/) {
636 name = $2
637 version = $3
638 release = "0." fixedsub(".%{disttag}.at", "", $4)
639 }
640
aec1bddb 641 field = tolower($1)
db170a71 642 fieldnlower = $1
4c5be81e 643 if (field ~ /summary:/ && !/etc\.$/) {
024709c6
ER
644 sub(/\.$/, "", $0);
645 }
f37c1259 646 if (field ~ /group(\([^)]+\)):/)
1a5b27d5 647 next
f37c1259 648 if (field ~ /group:/) {
649 format_preamble()
d9e2bd9b
ER
650 group = $0;
651 sub(/^[^ \t]*[ \t]*/, "", group);
652
653 sub(/^Utilities\//,"Applications/", group)
654 sub(/^Games/,"Applications/Games", group)
655 sub(/^X11\/Games/,"X11/Applications/Games", group)
656 sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries", group)
657 sub(/^X11\/GNOME\/Applications/,"X11/Applications", group)
658 sub(/^X11\/GNOME/,"X11/Applications", group)
659 sub(/^X11\/Utilities/,"X11/Applications", group)
660 sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
e8feb984 661 sub(/^X11\/Library/,"X11/Libraries", group)
d9e2bd9b
ER
662 sub(/^Shells/,"Applications/Shells", group)
663 sub(/^System Environment\/Libraries$/, "Libraries", group)
e8feb984 664 sub(/^Library\/Development$/, "Development/Libraries", group)
d9e2bd9b
ER
665 sub(/^System Environment\/Daemons$/, "Daemons", group)
666 sub(/^Applications\/Internet$/, "Applications/Networking", group)
667 sub(/^Applications\/Daemons$/, "Daemons", group)
668 sub(/^Application\/Multimedia$/, "Applications/Multimedia", group)
669 sub(/^System\/Servers$/, "Daemons", group)
670 sub(/^X11\/Xserver$/, "X11/Servers", group)
671 sub(/^X11\/XFree86/, "X11", group)
672 sub(/^Applications\/Compilers$/, "Development/Languages", group)
673 sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
674 sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
675 sub(/^Development\/Docs$/, "Documentation", group)
d0297fb3 676 sub(/^Development\/Documentation$/, "Documentation", group)
78d96561 677 sub(/^System Environment\/Kernel$/, "Base/Kernel", group)
d0297fb3
ER
678 sub(/^Development\/Libraries\/Java$/, "Development/Languages/Java", group)
679 sub(/^Development\/Java/, "Development/Languages/Java", group)
680 sub(/^Development\/Testing$/, "Development", group)
681 sub(/^Text Processing\/Markup\/HTML$/, "Applications/Text", group)
682 sub(/^Text Processing\/Markup\/XML$/, "Applications/Text", group)
52a943cf
ER
683 sub(/^Web\/Database$/, "Applications/WWW", group)
684 sub(/^System Environment\/Base$/, "Base", group)
91fdce90 685 sub(/^System$/, "Base", group)
c2f43570 686 sub(/^Applications\/Productivity$/, "X11/Applications", group)
2b94cfb4
ER
687 sub(/^Database$/, "Applications/Databases", group)
688 sub(/^Development\/Code Generators$/, "Development", group)
d9e2bd9b
ER
689
690 $0 = "Group:\t\t" group
691
692 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
7a72f436 693 x11 = 1
8e5358f8 694
d9e2bd9b 695 byl_plik_z_groupmi = 0
8e5358f8
SZ
696 byl_opis_grupy = 0
697 while ((getline linia_grup < groups_file) > 0) {
d9e2bd9b
ER
698 byl_plik_z_groupmi = 1
699 if (linia_grup == group) {
8e5358f8
SZ
700 byl_opis_grupy = 1
701 break
702 }
703 }
69501a12 704
d9e2bd9b 705 if (!byl_plik_z_groupmi)
8e5358f8
SZ
706 print "######\t\t" groups_file ": no such file"
707 else if (!byl_opis_grupy)
708 print "######\t\t" "Unknown group!"
f171fd40 709
8e5358f8 710 close(groups_file)
4ab1678b 711 did_groups = 1
8e5358f8 712 }
f171fd40 713
307f5229 714 if (field ~ /prereq:/) {
a68f7b3b 715 sub(/Pre[Rr]eq:/, "Requires:", $1);
307f5229
ER
716 }
717
4aa6db15 718 # split (build)requires, obsoletes on commas
44ff0c79 719 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
ba377afe
ER
720 value = substr($0, index($0, $2));
721 $0 = format_requires($1, value);
f12ab15d 722 }
b6875e34 723
8e734165
ER
724 # BR: tar (and others) is to common (rpm-build requires it)
725 if (field ~ /^buildrequires:/) {
eb028bca
ER
726 l = substr($0, index($0, $2));
727 if (l == "awk" ||
728 l == "binutils" ||
729 l == "bzip2" ||
730 l == "cpio" ||
731 l == "diffutils" ||
732 l == "elfutils" ||
733 l == "fileutils" ||
734 l == "findutils" ||
735 l == "glibc-devel" ||
736 l == "grep" ||
737 l == "gzip" ||
738 l == "make" ||
739 l == "patch" ||
740 l == "sed" ||
741 l == "sh-utils" ||
742 l == "tar" ||
743 l == "textutils") {
8e734165
ER
744 next
745 }
d0297fb3 746
b6875e34 747 # perhaps we have common known name?
d0297fb3 748
b6875e34 749 # jpackages
d0297fb3 750 sub(/^java-devel$/, "jdk", $2);
d0297fb3
ER
751 sub(/^log4j$/, "jakarta-log4j", $2);
752 sub(/^oro$/, "jakarta-oro", $2);
2b94cfb4 753 sub(/^jakarta-ant$/, "ant", $2);
d0297fb3 754 sub(/^xerces-j2$/, "xerces-j", $2);
d0297fb3
ER
755 sub(/^ldapjdk$/, "ldapsdk", $2);
756 sub(/^saxon-scripts$/, "saxon", $2);
2b94cfb4
ER
757 sub(/^xalan-j2$/, "xalan-j", $2);
758 sub(/^xerces-j2$/, "xerces-j", $2);
30cd4686 759
b6875e34 760 replace_php_virtual_deps();
8e734165
ER
761 }
762
30cd4686 763 if (field ~ /^requires:/) {
b6875e34
ER
764 replace_php_virtual_deps();
765 }
30cd4686
ER
766
767
ff21ed9e 768 # obsolete/unwanted tags
32908bc5 769 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
aec1bddb 770 next
ba377afe 771 }
f171fd40 772
4ab1678b 773 if (field ~ /buildroot:/) {
376e6bc4 774 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
4ab1678b
ER
775 did_build_root = 1
776 }
681a4871 777
681a4871 778 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
4932d2c6 779 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
aec1bddb 780 $1 = "License:"
4932d2c6 781 }
f171fd40 782
3b07e07f
ER
783 if (field ~ /license:/) {
784 l = substr($0, index($0, $2));
785 if (l == "Python Software Foundation License") {
786 l = "PSF"
787 }
788 $0 = "License:\t" l;
789 }
790
791
1462d6a3 792 if (field ~ /name:/) {
6426afb8 793 if ($2 == "%{name}" && name) {
63d47bae
ER
794 $2 = name
795 }
aec1bddb 796 name = $2
1462d6a3
ER
797 name_seen = 1;
798 }
681a4871 799
1462d6a3 800 if (field ~ /version:/) {
63d47bae
ER
801 if ($2 == "%{version}" && version) {
802 $2 = version
803 }
aec1bddb 804 version = $2
1462d6a3
ER
805 version_seen = 1;
806 }
807
808 if (field ~ /release:/) {
63d47bae
ER
809 if ($2 == "%{release}" && release) {
810 $2 = release
811 }
4ab1678b 812 sub(/%atrelease /, "0.", $0)
1462d6a3
ER
813 release = $2
814 release_seen = 1;
815 }
681a4871 816
32908bc5 817
c4dde22b
SZ
818 if (field ~ /serial:/)
819 $1 = "Epoch:"
b6853342 820
32908bc5
ER
821 if (field ~ /home-page:/)
822 $1 = "URL:"
823
89b1cd55 824 # proper caps
cf038723 825 if (field ~ /^url:$/)
89b1cd55
ER
826 $1 = "URL:"
827
32908bc5
ER
828 if (field ~ /^description:$/)
829 $1 = "\n%description\n"
830
681a4871 831 # Use %{name} and %{version} in the filenames in "Source:"
f4cb1924 832 if (field ~ /^source/ || field ~ /patch/) {
aec1bddb 833 n = split($2, url, /\//)
fd8718a5
SZ
834 if (url[n] ~ /\.gz$/) {
835 url[n+1] = ".gz" url[n+1]
836 sub(/\.gz$/,"",url[n])
837 }
838 if (url[n] ~ /\.zip$/) {
839 url[n+1] = ".zip" url[n+1]
840 sub(/\.zip$/,"",url[n])
841 }
842 if (url[n] ~ /\.tar$/) {
843 url[n+1] = ".tar" url[n+1]
844 sub(/\.tar$/,"",url[n])
845 }
846 if (url[n] ~ /\.patch$/) {
847 url[n+1] = ".patch" url[n+1]
848 sub(/\.patch$/,"",url[n])
849 }
850 if (url[n] ~ /\.bz2$/) {
851 url[n+1] = ".bz2" url[n+1]
852 sub(/\.bz2$/,"",url[n])
853 }
dac4e142
SZ
854 if (url[n] ~ /\.logrotate$/) {
855 url[n+1] = ".logrotate" url[n+1]
856 sub(/\.logrotate$/,"",url[n])
857 }
858 if (url[n] ~ /\.pamd$/) {
859 url[n+1] = ".pamd" url[n+1]
860 sub(/\.pamd$/,"",url[n])
861 }
862
a3fcc309 863 # allow %{name} only in last url component
ced0372e
ER
864 s = ""
865 for (i = 1; i <= n; i++) {
866 url[i] = fixedsub("%{name}", name, url[i])
867 if (s) {
868 s = s "/" url[i]
869 } else {
870 s = url[i]
871 }
872 }
873 $2 = s url[n+1]
874
aec1bddb 875 filename = url[n]
5e028343
ER
876 if (name) {
877 url[n] = fixedsub(name, "%{name}", url[n])
878 }
755ab9c0 879 if (field ~ /source/) {
5e028343
ER
880 if (version) {
881 url[n] = fixedsub(version, "%{version}", url[n])
882 }
755ab9c0
ER
883 if (_beta) {
884 url[n] = fixedsub(_beta, "%{_beta}", url[n])
885 }
886 if (_rc) {
887 url[n] = fixedsub(_rc, "%{_rc}", url[n])
888 }
59de1799
ER
889 if (_pre) {
890 url[n] = fixedsub(_pre, "%{_pre}", url[n])
891 }
755ab9c0
ER
892 if (_snap) {
893 url[n] = fixedsub(_snap, "%{_snap}", url[n])
894 }
895 }
57caba32 896 # assigning to $2 kills preamble formatting
fd8718a5 897 $2 = fixedsub(filename, url[n], $2)
f171fd40
ER
898
899 # sourceforge urls
dda77cb4
ER
900 sub("[?&]big_mirror=.*$", "", $2);
901 sub("[?&]modtime=.*$", "", $2);
902
55356feb 903 sub("[?]use_mirror=.*$", "", $2);
755ab9c0 904 sub("[?]download$", "", $2);
dda77cb4 905
e08b0e87 906 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
d0297fb3 907 sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", $2)
954c33c0 908 sub("^http://downloads\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
55356feb
ER
909
910 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
7d2751eb 911 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", $2)
70f22a8f 912 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", $2)
681a4871 913 }
8b1938ea 914
f171fd40 915
f4cb1924 916 if (field ~ /^source:/)
f171fd40 917 $1 = "Source0:"
aec1bddb 918
13b24a87 919 if (field ~ /^patch:/)
aec1bddb 920 $1 = "Patch0:"
f171fd40 921
0ea7c3cd 922 kill_preamble_macros();
aec1bddb 923 format_preamble()
f171fd40 924
c26ee7ef
ER
925 if (field ~ /requires/) {
926 # atrpms
927 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
928 }
bf0a58ea 929}
930
4c1b7426
ER
931/^%bcond_/ {
932 # do nothing
933 print
934 next
935}
c58d1357
ER
936
937# sort BR/R!
938#
939# NOTES:
940# - mixing BR/R and anything else confuses this (all will be sorted together)
b6875e34 941# so don't do that.
c58d1357 942# - comments leading the BR/R can not be associated,
b6875e34 943# so don't adapterize when the BR/R are mixed with comments
c58d1357 944ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
57caba32 945 if ($1 ~ /Pre[Rr]eq:/) {
a68f7b3b 946 sub(/Pre[Rr]eq:/, "Requires:", $1);
c58d1357
ER
947 }
948 format_preamble()
8f7c516b 949# kill_preamble_macros(); # breaks tabbing
c58d1357
ER
950
951 b_idx++;
952 l = substr($0, index($0, $2));
953 b_ktmp = b_makekey($1, l);
954 b_key[b_idx] = b_ktmp;
955 b_val[b_ktmp] = $0;
956
957 next;
958}
959
c58d1357
ER
960preamble == 1 {
961 if (b_idx > 0) {
962 isort(b_key, b_idx);
963 for (i = 1; i <= b_idx; i++) {
4932d2c6
ER
964 v = b_val[b_key[i]];
965 sub(/[ \t]+$/, "", v);
966 print "" v;
c58d1357
ER
967 }
968 b_idx = 0
969 }
970}
971
7a72f436 972# main() ;-)
bf0a58ea 973{
aec1bddb 974 preamble = 1
f171fd40 975
70a1dc9e 976 sub(/[ \t]+$/, "")
aec1bddb 977 print
1462d6a3
ER
978
979 if (name_seen == 0 && name) {
31702e1e 980 print "Name:\t\t" name
1462d6a3
ER
981 name_seen = 1
982 }
983
984 if (version_seen == 0 && version) {
985 print "Version:\t" version
986 version_seen = 1
987 }
988
989 if (release_seen == 0 && release) {
990 print "Release:\t" release
991 release_seen = 1
992 }
32908bc5
ER
993
994 if (did_build_root == 0) {
4ab1678b 995# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
32908bc5
ER
996 did_build_root = 1
997 }
4ab1678b
ER
998 if (did_groups == 0) {
999# print "Group:\t\tunknown"
1000 did_groups = 1
1001 }
a1aa4976 1002}
1003
f1991554 1004
a1aa4976 1005END {
eee34ffb 1006 if (do_not_touch_anything)
1007 exit 0
f171fd40 1008
b6875e34
ER
1009 # TODO: need to output these in proper place
1010 if (BR_count > 0) {
1011 for (i = 0; i <= BR_count; i++) {
1012 print BR[i];
1013 }
1014 }
1c955424 1015
f1991554 1016 close(changelog_file)
1017 while ((getline < changelog_file) > 0)
1018 print
1019 system("rm -f " changelog_file)
48c6019c 1020
1c52b18e
SZ
1021 if (did_clean == 0) {
1022 print ""
1023 print "%clean"
1024 print "rm -rf $RPM_BUILD_ROOT"
1025 }
1026
dda3eaa5
SZ
1027 if (date == 0) {
1028 print ""
1029 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1030 }
f171fd40 1031
1c955424 1032 if (has_changelog == 0) {
1395ea1c 1033 print "%changelog"
b6875e34 1034 }
dda3eaa5 1035
1c955424 1036 if (boc > 2) {
5bdbef27 1037 print "* %{date} PLD Team <feedback@pld-linux.org>"
b6875e34 1038 }
d31b8a48 1039 if (boc > 1) {
f818cd64 1040 printf "All persons listed below can be reached at "
5bdbef27 1041 print "<cvs_login>@pld-linux.org\n"
a1aa4976 1042 }
1c955424 1043 if (boc > 0) {
d31b8a48 1044 print "$" "Log:$"
b6875e34 1045 }
bf0a58ea 1046}
1047
7a72f436 1048function fixedsub(s1,s2,t, ind) {
fd8718a5 1049# substitutes fixed strings (not regexps)
7a72f436 1050 if (ind = index(t,s1))
1051 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1052 return t
fd8718a5
SZ
1053}
1054
8b1938ea 1055# There should be one or two tabs after the colon.
1056function format_preamble()
1057{
57caba32 1058 if (/^#/ || /^%bcond_with/) {
08f60a73
ER
1059 return;
1060 }
aec1bddb 1061 sub(/:[ \t]*/, ":")
2b94cfb4
ER
1062 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1063 if (RLENGTH < 8) {
aec1bddb 1064 sub(/:/, ":\t\t")
b6875e34 1065 } else {
aec1bddb 1066 sub(/:/, ":\t")
b6875e34 1067 }
8b1938ea 1068 }
1069}
1070
43c05c3c 1071# Replace directly specified directories with macros
1072function use_macros()
1073{
13b24a87
ER
1074 # -m, --skip-macros, --no-macros -- skip macros subst
1075 if (ENVIRON["SKIP_MACROS"]) {
1076 return
1077 }
1078
b05d5275
ER
1079 # leave inline sed lines alone
1080 if (/(%{__sed}|sed) -i -e/) {
1081 return;
1082 }
1083
b6875e34
ER
1084 sub("%{_defaultdocdir}", "%{_docdir}");
1085 sub("%{_bindir}/perl", "%{__perl}");
1086 sub("%{_bindir}/python", "%{__python}");
36d9a33d 1087
a372a159
ER
1088 gsub(infodir, "%{_infodir}")
1089
336c1a4f
ER
1090 gsub(perl_sitearch, "%{perl_sitearch}")
1091 gsub(perl_archlib, "%{perl_archlib}")
1092 gsub(perl_privlib, "%{perl_privlib}")
336c1a4f
ER
1093 gsub(perl_vendorlib, "%{perl_vendorlib}")
1094 gsub(perl_vendorarch, "%{perl_vendorarch}")
1095 gsub(perl_sitelib, "%{perl_sitelib}")
9732cb3d
ER
1096
1097 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
4ab1678b 1098 gsub(py_sitedir, "%{py_sitedir}")
1bdf7824 1099 gsub(py_scriptdir, "%{py_scriptdir}")
4a62fb54 1100 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
22ee0568 1101 gsub("%{python_sitelib}", "%{py_sitedir}")
6f2c1099
ER
1102
1103 gsub(ruby_archdir, "%{ruby_archdir}")
1104 gsub(ruby_ridir, "%{ruby_ridir}")
1105 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1106 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1107 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1108
4a62fb54
ER
1109 gsub("%{_datadir}/applications", "%{_desktopdir}")
1110 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
336c1a4f 1111
e00f41b5
ER
1112 gsub(libdir, "%{_libdir}")
1113
aec1bddb 1114 gsub(bindir, "%{_bindir}")
74edc57e 1115 gsub("%{prefix}/bin", "%{_bindir}")
b05d5275 1116 if (prefix"/bin" == bindir)
0080f34c 1117 gsub("%{_prefix}/bin", "%{_bindir}")
74edc57e 1118
de69503c 1119 for (c = 1; c <= NF; c++) {
1120 if ($c ~ sbindir "/fix-info-dir")
1121 continue;
3457b4f7
ER
1122 if ($c ~ sbindir "/webapp")
1123 continue;
a372a159
ER
1124 if ($c ~ sbindir "/ldconfig")
1125 continue;
4837c1e3
ER
1126 if ($c ~ sbindir "/chsh")
1127 continue;
1128 if ($c ~ sbindir "/usermod")
1129 continue;
f06959ff
ER
1130 if ($c ~ sbindir "/chkconfig")
1131 continue;
836e411f
ER
1132 if ($c ~ sbindir "/installzope(product|3package)")
1133 continue;
de69503c 1134 gsub(sbindir, "%{_sbindir}", $c)
1135 }
1136
74edc57e 1137 gsub("%{prefix}/sbin", "%{_sbindir}")
836e411f 1138 if (prefix"/sbin" == sbindir) {
5e1d0492 1139 gsub("%{_prefix}/sbin", "%{_sbindir}")
836e411f 1140 }
74edc57e 1141
353f5eea 1142 for (c = 1; c <= NF; c++) {
0965a1a0 1143 if ($c ~ sysconfdir "/{?cron.")
de69503c 1144 continue;
0080f34c 1145 if ($c ~ sysconfdir "/{?crontab.d")
807a0f6b 1146 continue;
6c178315
ER
1147 if ($c ~ sysconfdir "/{?env.d")
1148 continue;
90a421f5 1149 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
554d6b98 1150 continue;
e61b5989
ER
1151 if ($c ~ sysconfdir "/{?udev/rules.d")
1152 continue;
0080f34c 1153 if ($c ~ sysconfdir "/{?logrotate.d")
353f5eea 1154 continue;
0080f34c 1155 if ($c ~ sysconfdir "/{?pam.d")
a9b2c8c7 1156 continue;
0080f34c 1157 if ($c ~ sysconfdir "/{?profile.d")
66ef7810 1158 continue;
0080f34c 1159 if ($c ~ sysconfdir "/{?rc.d")
9ad7f20b 1160 continue;
0080f34c 1161 if ($c ~ sysconfdir "/{?security")
a9b2c8c7 1162 continue;
0080f34c 1163 if ($c ~ sysconfdir "/{?skel")
c21d1979 1164 continue;
0080f34c 1165 if ($c ~ sysconfdir "/{?sysconfig")
66ef7810 1166 continue;
6e985933
ER
1167 if ($c ~ sysconfdir "/{?shrc.d")
1168 continue;
7c73bc0f
ER
1169 if ($c ~ sysconfdir "/{?certs")
1170 continue;
de5d18d8
ER
1171 if ($c ~ sysconfdir "/{?X11")
1172 continue;
5debd9f6
ER
1173 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1174 continue;
ff21ed9e
ER
1175 if ($c ~ sysconfdir "/{?rpm")
1176 continue;
57caba32 1177 if ($c ~ sysconfdir "/{?bash_completion.d")
6e985933 1178 continue;
57caba32 1179 if ($c ~ sysconfdir "/{?samba")
9292b547 1180 continue;
52a943cf
ER
1181 if ($c ~ sysconfdir "/shells")
1182 continue;
5dc7f5e4
ER
1183 if ($c ~ sysconfdir "/ppp")
1184 continue;
353f5eea 1185 gsub(sysconfdir, "%{_sysconfdir}", $c)
1186 }
74edc57e 1187
1077f405 1188 gsub(kdedocdir, "%{_kdedocdir}")
c2b069de 1189 gsub(docdir, "%{_docdir}")
57caba32 1190 gsub(php_pear_dir, "%{php_pear_dir}")
c2b069de 1191
c4adc376
ER
1192 for (c = 1; c <= NF; c++) {
1193 if ($c ~ datadir "/automake")
1194 continue;
13670287
ER
1195 if ($c ~ datadir "/unsermake")
1196 continue;
a9fb2db8
ER
1197 if ($c ~ datadir "/file/magic.mime")
1198 continue;
c4adc376
ER
1199 gsub(datadir, "%{_datadir}", $c)
1200 }
1201
74edc57e 1202 gsub("%{prefix}/share", "%{_datadir}")
c4adc376 1203 if (prefix"/share" == datadir)
0080f34c 1204 gsub("%{_prefix}/share", "%{_datadir}")
74edc57e 1205
826b40ea
ER
1206 # CFLAGS="-I/usr/include/ncurses is usually correct.
1207 if (!/-I\/usr\/include/) {
1208 gsub(includedir, "%{_includedir}")
1209 }
1210
74edc57e 1211 gsub("%{prefix}/include", "%{_includedir}")
826b40ea 1212 if (prefix"/include" == includedir) {
0080f34c 1213 gsub("%{_prefix}/include", "%{_includedir}")
826b40ea 1214 }
74edc57e 1215
aec1bddb 1216 gsub(mandir, "%{_mandir}")
826b40ea 1217 if ($0 !~ "%{_datadir}/manual") {
5e1d0492 1218 gsub("%{_datadir}/man", "%{_mandir}")
826b40ea 1219 }
9ce0df66 1220 gsub("%{_prefix}/share/man", "%{_mandir}")
1221 gsub("%{prefix}/share/man", "%{_mandir}")
74edc57e 1222 gsub("%{prefix}/man", "%{_mandir}")
1223 gsub("%{_prefix}/man", "%{_mandir}")
1224
aec1bddb 1225 gsub(infodir, "%{_infodir}")
74edc57e 1226 gsub("%{prefix}/info", "%{_infodir}")
1227 gsub("%{_prefix}/info", "%{_infodir}")
1228
0965a1a0 1229 if (prefix !~ "/X11R6") {
1230 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1231 }
cfbf94ec 1232
2a638fcb 1233 gsub(examplesdir, "%{_examplesdir}")
7c6b85c4 1234
efd2d668 1235 if (prefix != "/") {
a9fb2db8
ER
1236 # leave --with-foo=/usr alone
1237 if ($0 !~ "--with.*=.*" prefix) {
1238 for (c = 1; c <= NF; c++) {
1239 if ($c ~ prefix "/sbin/fix-info-dir")
1240 continue;
3457b4f7
ER
1241 if ($c ~ prefix "/sbin/webapp")
1242 continue;
4837c1e3
ER
1243 if ($c ~ prefix "/sbin/chsh")
1244 continue;
1245 if ($c ~ prefix "/sbin/usermod")
1246 continue;
836e411f
ER
1247 if ($c ~ prefix "/sbin/installzope(product|3package)")
1248 continue;
a9fb2db8
ER
1249 if ($c ~ prefix "/share/automake")
1250 continue;
1251 if ($c ~ prefix "/share/unsermake")
1252 continue;
1253 if ($c ~ prefix "/lib/sendmail")
1254 continue;
97dae8dc
ER
1255 if ($c ~ prefix "/lib/pkgconfig")
1256 continue;
826b40ea 1257
b5fc4b79
ER
1258 # CFLAGS="-I/usr..." is usually correct.
1259 if (/-I\/usr/)
826b40ea 1260 continue;
474f0944
ER
1261 # same for LDFLAGS="-L/usr..."
1262 if (/-L\/usr/)
1263 continue;
826b40ea 1264
a9fb2db8
ER
1265 gsub(prefix, "%{_prefix}", $c)
1266 }
de69503c 1267 }
efd2d668 1268 gsub("%{prefix}", "%{_prefix}")
1269 }
3bcd1fab 1270
53d16b95
ER
1271 # replace back
1272 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1273 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1274
3bcd1fab 1275 gsub("%{PACKAGE_VERSION}", "%{version}")
1276 gsub("%{PACKAGE_NAME}", "%{name}")
b35c10f1 1277
59e208d5 1278 gsub("^make$", "%{__make}")
1279 gsub("^make ", "%{__make} ")
61b753c5 1280 gsub("^gcc ", "%{__cc} ")
9aece8c8 1281
cab706de
ER
1282 # mandrake specs
1283 gsub("^%make$", "%{__make}")
1284 gsub("^%make ", "%{__make} ")
1285 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
b7ca53a5 1286 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
63d47bae 1287 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
cab706de 1288 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b7ca53a5 1289 gsub("^%{__install}", "install")
b7ca53a5 1290 gsub("^%{__rm}", "rm")
cab706de
ER
1291 gsub("%optflags", "%{rpmcflags}")
1292 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1293
a6ed8b03 1294 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
db6f5844 1295 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\&1")
5e15e952
ER
1296 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1297 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
63d47bae
ER
1298 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
1299
740e3cd8
ER
1300 # split configure line to multiple lines
1301 if (/%configure / && !/\\$/) {
1302 $0 = format_configure($0);
1303 }
1304
ac779c71
ER
1305 gsub("%_bindir", "%{_bindir}")
1306 gsub("%_datadir", "%{_datadir}")
1307 gsub("%_iconsdir", "%{_iconsdir}")
c2b069de
ER
1308 gsub("%_sbindir", "%{_sbindir}")
1309 gsub("%_mandir", "%{_mandir}")
1310 gsub("%name", "%{name}")
b6875e34
ER
1311 gsub(/%__rm/, "rm");
1312 gsub(/%__mkdir_p/, "install -d");
1313 gsub(/%__cp/, "cp");
1314 gsub(/%__ln_s/, "ln -s");
1315 gsub(/%__sed/, "%{__sed}");
1316 gsub(/%__cat/, "cat");
1317 gsub(/%__chmod/, "chmod");
a6ed8b03 1318
9aece8c8 1319 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1320 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1c955424
ER
1321
1322 if (/^ant /) {
1323 sub(/^ant/, "%ant")
b6875e34
ER
1324 add_br("BuildRequires: jpackage-utils");
1325 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1326 }
1c955424 1327
9ae21f47 1328}
f171fd40 1329
740e3cd8
ER
1330function format_configure(line, n, a, s) {
1331 n = split(line, a, / /);
1332 s = a[1] " \\\n";
1333 for (i = 2; i <= n; i++) {
1334 s = s "\t" a[i] " \\\n"
1335 }
1336 return s
1337}
1338
7c23055b
ER
1339
1340# insertion sort of A[1..n]
1341# copied from mawk manual
1342function isort(A,n, i,j,hold) {
1343 for (i = 2; i <= n; i++) {
1344 hold = A[j = i]
1345 while (A[j-1] > hold) {
54caef3d 1346 j-- ; A[j+1] = A[j]
1347 }
7c23055b
ER
1348 A[j] = hold
1349 }
1350 # sentinel A[0] = "" will be created if needed
1351}
1352
1353
1354function use_files_macros( i, n, t, a)
eee34ffb 1355{
e6f1551d
ER
1356 use_macros()
1357
da6457aa
ER
1358 # skip comments
1359 if (/^#/) {
1360 return;
1361 }
1362
f158eddc
ER
1363 sub("^%doc %{_mandir}", "%{_mandir}")
1364
eee34ffb 1365 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1366 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
7c23055b 1367
61cb9711
ER
1368 # uid/gid nobody is not valid in %files
1369 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1370 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1371 }
1372
16bb0647
JB
1373 # s[gu]id programs with globs are evil
1374 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1375 $0 = $0 " # FIXME no globs for suid/sgid files"
85bed066
ER
1376 }
1377
5dc673eb 1378 # replace back
8f6ddcd9 1379 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
3feaeac8 1380 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
8f6ddcd9
ER
1381 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1382 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1383 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1384 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1385 gsub("%{_sysconfdir}/security", "/etc/security")
1386 gsub("%{_sysconfdir}/skel", "/etc/skel")
1387 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1388 gsub("%{_sysconfdir}/certs", "/etc/certs")
5dc673eb 1389 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
2fc0e274 1390
5dc673eb
ER
1391 # /etc/init.d -> /etc/rc.d/init.d
1392 if (!/^\/etc\/init\.d$/) {
1393 gsub("/etc/init.d", "/etc/rc.d/init.d")
1394 }
1395
1396 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
2fc0e274
ER
1397 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1398 $0 = "%attr(754,root,root) " $0
1399 }
1400 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
89c604c7 1401 gsub("^%attr\\(... *,", "%attr(754,");
2fc0e274 1402 }
9a7a5776
ER
1403 }
1404
71a4728c 1405 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
55356feb
ER
1406 $0 = "%attr(755,root,root) " $0
1407 }
1408
ab9b09e2
ER
1409 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1410 $0 = "%attr(755,root,root) " $0
1411 }
1412
f56d5519
ER
1413 # /etc/sysconfig files
1414 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
a825b76b 1415 # attr not required, allow default 644 attr
6ea64b8d 1416 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
6ea0907e 1417 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
5dc673eb
ER
1418 gsub("%config", "%config(noreplace)")
1419 }
f56d5519 1420
6ea0907e 1421 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
5dc673eb
ER
1422 $NF = "%config(noreplace) " $NF
1423 }
f56d5519 1424
5dc673eb 1425 if (/\/etc\/sysconfig\// && /%attr\(755/) {
89c604c7 1426 gsub("^%attr\\(... *,", "%attr(640,");
5dc673eb 1427 }
f56d5519 1428
5dc673eb
ER
1429 if (/\/etc\/sysconfig\// && !/%verify/) {
1430 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1431 }
a825b76b
ER
1432 }
1433
f56d5519 1434 # kill leading zeros
7dfb4dea
ER
1435 if (/%attr\(0[1-9]/) {
1436 gsub("%attr\\(0", "%attr(")
1437 }
f9d5d512 1438
b6875e34
ER
1439 # kill default attrs
1440 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1441 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1442 if (!/%dir/) {
1443 gsub(/%attr\(644,root,root\) /, "");
1444 }
46292535 1445
7c23055b 1446 # sort %verify attrs
12bfc5c8 1447 if (match($0, /%verify\(not([^)]+)\)/)) {
7c23055b 1448 t = substr($0, RSTART, RLENGTH)
8409a9b2
ER
1449 # kill commas: %verify(not,md5,size,mtime)
1450 gsub(/,/, " ", t);
1451
7c23055b
ER
1452 gsub(/^%verify\(not |\)$/, "", t)
1453 n = split(t, a, / /)
1454 isort(a, n)
1455
1456 s = "%verify(not"
1457 for (i = 1 ; i <= n; i++) {
1458 s = s " " a[i]
1459 }
1460 s = s ")"
1461
12bfc5c8 1462 gsub(/%verify\(not[^)]+\)/, s)
7c23055b 1463 }
13defa79
ER
1464
1465 if (/%{_mandir}/) {
d64e2ec0 1466 gsub("\.gz$", "*")
13defa79 1467 }
5e15e952 1468
ef6d2b7a 1469 # locale dir and no %lang -> bad
b9080a1b 1470 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
ef6d2b7a
ER
1471 $(NF + 1) = "# FIXME consider using %find_lang"
1472 }
1473
5e15e952
ER
1474 # atrpms
1475 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1476 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1477 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
97dae8dc
ER
1478
1479 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1480 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1481 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
eee20d8d
ER
1482
1483 gsub("%{_datadir}/applications", "%{_desktopdir}");
9730a549 1484 gsub("%{_datadir}/icons", "%{_iconsdir}");
0904210e 1485 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
eee34ffb 1486}
236b87ac 1487
723ce732
ER
1488function use_script_macros()
1489{
1490 if (gsub("/sbin/service", "%service")) {
1491 sub(" >/dev/null 2>&1 \|\|:", "");
1492 sub(" 2> /dev/null \|\| :", "");
1493 }
1494}
1495
236b87ac 1496function fill(ch, n, i) {
1497 for (i = 0; i < n; i++)
1498 printf("%c", ch)
1499}
1500
1501function format_flush(line, indent, newline, word, first_word) {
1502 first_word = 1
f171fd40 1503 if (format_indent == -1)
236b87ac 1504 newline = ""
1505 else
1506 newline = fill(" ", format_indent) "- "
1507
1508 while (match(line, /[^\t ]+/)) {
1509 word = substr(line, RSTART, RLENGTH)
1510 if (length(newline) + length(word) + 1 > tw) {
1511 print newline
f171fd40 1512
236b87ac 1513 if (format_indent == -1)
1514 newline = ""
1515 else
1516 newline = fill(" ", format_indent + 2)
1517 first_word = 1
1518 }
1519
1520 if (first_word) {
1521 newline = newline word
1522 first_word = 0
1523 } else
1524 newline = newline " " word
f171fd40 1525
236b87ac 1526 line = substr(line, RSTART + RLENGTH)
1527 }
1528 if (newline ~ /[^\t ]/) {
1529 print newline
1530 }
1531}
1532
eb4bf70e 1533function cflags(var)
1534{
85e708f2 1535 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1536 removed[var] = 1
eb4bf70e 1537 return 0
85e708f2 1538 }
f171fd40 1539
246ad57e 1540 if (!/!\?debug/)
fde8f52a 1541 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
eb4bf70e 1542 return 1
1543}
0ea7c3cd 1544
4e26c5f2
ER
1545function demacroize(str)
1546{
8f7c516b
ER
1547 if (mod_name) {
1548 sub("%{mod_name}", mod_name, str);
1549 }
1550 if (name) {
1551 sub("%{name}", name, str);
1552 }
4e26c5f2
ER
1553 if (version) {
1554 sub("%{version}", version, str);
1555 }
1556 if (_beta) {
1557 sub("%{_beta}", _beta, str);
1558 }
1559 if (_rc) {
1560 sub("%{_rc}", _rc, str);
1561 }
59de1799
ER
1562 if (_pre) {
1563 sub("%{_pre}", _pre, str);
1564 }
4e26c5f2
ER
1565 if (_snap) {
1566 sub("%{_snap}", _snap, str);
1567 }
1568 return str;
1569}
1570
0ea7c3cd
ER
1571function kill_preamble_macros()
1572{
1573 if ($1 ~ /^URL:/ || $1 ~ /^Obsoletes:/) {
8f7c516b 1574 # NB! assigning $2 a value breaks tabbing
4e26c5f2 1575 $2 = demacroize($2);
523ea04f
ER
1576 # unify sourceforge url
1577 sub("\.sf\.net/$", ".sourceforge.net/", $2);
0ea7c3cd
ER
1578 }
1579}
ba377afe 1580
9815f9b2
ER
1581function get_epoch(pkg, ver, epoch)
1582{
cccfa553
ER
1583 return
1584# should parse the BR lines more adequately:
1585# freetype = 2.0.0 -> correct
1586# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1587
9815f9b2
ER
1588 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1589 shell | getline epoch;
1590 return epoch;
1591}
1592
ba377afe 1593function format_requires(tag, value, n, p, i, deps, ndeps) {
87b130e2
ER
1594 # skip any formatting for commented out items or some weird macros
1595 if (/^#/ || /%\(/) {
3f81d059
ER
1596 return tag "\t" value
1597 }
ba377afe
ER
1598 n = split(value, p, / *,? */);
1599 for (i = 1; i <= n; i++) {
1600 if (p[i+1] ~ /[<=>]/) {
9815f9b2
ER
1601 # add epoch if the version doesn't have it but BuildRequires.txt has
1602 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1603 epoch = get_epoch(p[i], p[i+2])
1604 if (epoch) {
1605 p[i+2] = epoch ":" p[i+2];
1606 }
1607 }
ba377afe
ER
1608 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1609 i += 2;
1610 } else {
1611 deps[ndeps++] = p[i];
1612 }
1613 }
1614 s = ""
1615 for (i in deps) {
1616 s = s sprintf("%s\t%s\n", tag, deps[i]);
1617 }
1618 return substr(s, 1, length(s)-1);
1619}
6ebff802
ER
1620
1621function use_tabs()
1622{
1623 # reverse vim: ts=4 sw=4 et
1624 gsub(/ /, "\t");
1625}
1c955424
ER
1626
1627function add_br(br)
1628{
b6875e34 1629 BR[BR_count++] = br
1c955424
ER
1630}
1631
30cd4686
ER
1632# php virtual deps as discussed in devel-en
1633function replace_php_virtual_deps()
1634{
b6875e34
ER
1635 pkg = $2
1636# if (pkg == "php-program") {
1637# $0 = $1 "\t/usr/bin/php"
1638# return
1639# }
1640
1641 if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1642 sub(/^php-/, "php(", pkg);
1643 sub(/$/, ")", pkg);
1644 $2 = pkg
1645 }
1646
1647 if (pkg ~/^php$/) {
1648 $2 = "webserver(php)";
1649 if ($4 ~ /^[0-9]:/) {
1650 $4 = substr($4, 3);
1651 }
1652 }
1653
1654 if (pkg ~/^php4$/) {
1655 $2 = "webserver(php)";
1656 if ($4 ~ /^[0-9]:/) {
1657 $4 = substr($4, 3);
1658 }
1659 }
30cd4686
ER
1660}
1661
2b94cfb4 1662# vim:ts=4:sw=4
This page took 0.405926 seconds and 4 git commands to generate.