]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - adapter_.awk
- escape some regexp characters in file name, so grep has a chance to find line with...
[packages/rpm-build-tools.git] / adapter_.awk
CommitLineData
644b0dd9 1#!/usr/bin/gawk -f
8ef0f135 2#
20f36c3b 3# Adapter adapts .spec files for PLD Linux.
8ef0f135 4#
41f549c5 5# Copyright (C) 1999-2010 PLD-Team <feedback@pld-linux.org>
8ef0f135 6# Authors:
644b0dd9 7# Michał Kuratczyk <kura@pld.org.pl>
8ef0f135 8# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
644b0dd9 9# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
3099ec38 10# Artur Frysiak <wiget@pld-linux.org>
8ef0f135 11# Michal Kochanowicz <mkochano@pld.org.pl>
644b0dd9
ER
12# Jakub Bogusz <qboosh@pld-linux.org>
13# Elan Ruusamäe <glen@pld-linux.org>
3099ec38
ER
14#
15# See cvs log adapter{,.awk} for list of contributors
16#
8ef0f135 17# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
18
3099ec38 19# TODO
14f5c80f 20# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
3099ec38
ER
21# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
22# - add "-nc" option to skip CVS interaction
23# - sort Summary(XX)
24# - sort Requires, BuildRequires
25# - check if %description (lang=C) contains 8bit
26# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
20f36c3b
ER
27# - it should change: /%source([0-9]+)/i to %{SOURCE\1}
28# - extra quote on LDFLAGS line: https://bugs.launchpad.net/pld-linux/+bug/385836
87a659b0 29# - %{with_foo:%attr()...} gets converted to %attr() %{with_foo:...} [vlc.spec]
30# - 'R: foo ' (with traliling space) gets coverted to "R: foo\nR: " [vlc.spec @ 1.199 ]
3099ec38 31
8ef0f135 32BEGIN {
3099ec38
ER
33 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
34 SECTIONS = "^%(" RPM_SECTIONS ")"
35
20f36c3b
ER
36 RCSID = "$Id$"
37 rev = RCSID # TODO: parse from RCSID
b0f031e7 38 VERSION = "0.35/" rev
20f36c3b
ER
39
40 PREAMBLE_TAGS = "(R|BR|Summary|Name|Version|Release|Epoch|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|Pre[Rr]eq|(Build)?Requires|Suggests|Auto(Req|Prov))"
3099ec38 41
f512b689
ER
42 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
43
3099ec38
ER
44 preamble = 1 # Is it part of preamble? Default - yes
45 boc = 4 # Beginning of %changelog
46 bod = 0 # Beginning of %description
47 tw = 70 # Descriptions width
48
49 b_idx = 0 # index of BR/R arrays
644b0dd9 50 BR_count = 0 # number of additional BuildRequires
3099ec38 51
8ef0f135 52 # If variable removed, then 1 (for removing it from export)
53 removed["LDFLAGS"] = 0
54 removed["CFLAGS"] = 0
55 removed["CXXFLAGS"] = 0
56
57 # If 1, we are inside of comment block (started with /^#%/)
58 comment_block = 0
3099ec38 59
20f36c3b
ER
60 import_rpm_macros()
61
87a659b0 62 packages_dir = topdir
20f36c3b
ER
63 groups_file = packages_dir "/rpm.groups"
64
65 system("cd "packages_dir"; [ -f rpm.groups ] || cvs up rpm.groups > /dev/null")
3099ec38 66 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
8ef0f135 67
68 # Temporary file for changelog section
69 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
8ef0f135 70}
71
72# There should be a comment with CVS keywords on the first line of file.
73FNR == 1 {
74 if (!/# \$Revision:/) # If this line is already OK?
75 print "# $" "Revision:$, " "$" "Date:$" # No
76 else {
77 print $0 # Yes
78 next # It is enough for first line
79 }
80}
81
82# If the latest line matched /%files/
83defattr == 1 {
3099ec38
ER
84 if (ENVIRON["SKIP_DEFATTR"] != 1) {
85 if ($0 !~ /defattr/) { # If no %defattr
86 print "%defattr(644,root,root,755)" # Add it
87 } else {
88 $0 = "%defattr(644,root,root,755)" # Correct mistakes (if any)
89 }
90 }
8ef0f135 91 defattr = 0
92}
93
3099ec38
ER
94function b_makekey(a, b, s) {
95 s = a "" b;
96 # kill bcond
644b0dd9 97 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
3099ec38
ER
98
99 # kill commented out items
644b0dd9 100 gsub(/^#[ \t]*/, "", s);
3099ec38
ER
101
102 # force order
644b0dd9
ER
103 gsub(/^Summary\(/, "11Summary(", s);
104 gsub(/^Summary/, "10Summary", s);
20f36c3b 105
644b0dd9
ER
106 gsub(/^Name/, "2Name", s);
107 gsub(/^Version/, "3Version", s);
108 gsub(/^Release/, "4Release", s);
109 gsub(/^Epoch/, "5Epoch", s);
110 gsub(/^License/, "5License", s);
111 gsub(/^Group/, "6Group", s);
112 gsub(/^URL/, "7URL", s);
113
114 gsub(/^BuildRequires/, "B1BuildRequires", s);
115 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
116
117 gsub(/^Suggests/, "X1Suggests", s);
118 gsub(/^Provides/, "X2Provides", s);
119 gsub(/^Obsoletes/, "X3Obsoletes", s);
120 gsub(/^Conflicts/, "X4Conflicts", s);
121 gsub(/^BuildArch/, "X5BuildArch", s);
122 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
123 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
124 gsub(/^BuildRoot/, "X9BuildRoot", s);
3099ec38 125
20f36c3b
ER
126 gsub(/^AutoProv/, "Xx1AutoProv", s);
127 gsub(/^AutoReq/, "Xx2AutoReq", s);
128
3099ec38
ER
129# printf("%s -> %s\n", a""b, s);
130 return s;
131}
132
8ef0f135 133# Comments
134/^#/ && (description == 0) {
135 if (/This file does not like to be adapterized!/) {
136 print # print this message
137 while (getline) # print the rest of spec as it is
138 print
139 do_not_touch_anything = 1 # do not touch anything in END()
41f549c5 140 exit(rc = 0)
8ef0f135 141 }
142
143 # Generally, comments are printed without touching
144 sub(/[ \t]+$/, "")
3099ec38 145
f512b689
ER
146 if (/#[ \t]*Source.*md5/) {
147 if (usedigest == 1) {
148 sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
149 sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
150 }
3099ec38
ER
151 print $0
152 next
153 }
8ef0f135 154}
155
8ef0f135 156/^%define/ {
3099ec38
ER
157 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
158 if ($2 == "_applnkdir") {
8ef0f135 159 next
3099ec38
ER
160 }
161 if ($2 == "date") {
8ef0f135 162 date = 1
3099ec38
ER
163 if (did_files == 0) {
164 print "%files"
165 print ""
166 did_files = 1
167 }
168 }
169
170 # Do not add %define of _prefix if it already is.
171 if ($2 ~ /^_prefix/) {
172 sub("^"prefix, $3, bindir)
173 sub("^"prefix, $3, sbindir)
174 sub("^"prefix, $3, libdir)
175 sub("^"prefix, $3, datadir)
176 sub("^"prefix, $3, includedir)
177 prefix = $3
178 }
179
180 if ($2 ~ /_bindir/ && !/_sbindir/)
181 bindir = $3
182 if ($2 ~ /_sbindir/)
183 sbindir = $3
184 if ($2 ~ /_libdir/) {
185 if ($3 ~ /^%\(/) {
186 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
187 libdir = "%%%%%%%%%%%%%%"
188 } else {
189 libdir = $3
190 }
191 }
192 if ($2 ~ /_sysconfdir/) {
193 if ($3 ~ /^%\(/) {
194 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
195 sysconfdir = "%%%%%%%%%%%%%%"
196 } else {
197 sysconfdir = $3
198 }
199 }
200 if ($2 ~ /_datadir/) {
201 if ($3 ~ /^%\(/) {
202 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
203 datadir = "%%%%%%%%%%%%%%"
204 } else {
205 datadir = $3
206 }
207 }
208 if ($2 ~ /_includedir/)
209 includedir = $3
210 if ($2 ~ /_mandir/)
211 mandir = $3
212 if ($2 ~ /_infodir/)
213 infodir = $3
214 if ($2 ~ /_docdir/)
215 docdir = $3
216
217 # version related macros
218 if ($2 ~ /^_beta$/)
219 _beta = $3
220 if ($2 ~ /^_rc$/)
221 _rc = $3
222 if ($2 ~ /^_pre$/)
223 _pre = $3
224 if ($2 ~ /^_snap$/)
225 _snap = $3
f512b689
ER
226 if ($2 ~ /^subver$/)
227 subver = $3
3099ec38
ER
228
229 # these are used usually when adapterizing external spec
230 if ($2 ~ /^name$/)
231 name = $3
232 if ($2 ~ /^version$/)
233 version = $3
234 if ($2 ~ /^release$/)
235 release = $3
236
237 if ($2 ~ /^mod_name$/)
238 mod_name = $3
239
240 sub(/[ \t]+$/, "");
241 # do nothing further, otherwise adapter thinks we're at preamble
242 print
243 next
244}
245
246# Obsolete
247/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
248 next
8ef0f135 249}
250
251################
252# %description #
253################
3099ec38 254/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
8ef0f135 255 preamble = 0
256
257 if (/^%description/) {
258 bod++
259 format_line = ""
260 format_indent = -1
261 }
262
8ef0f135 263 # Format description
3099ec38 264 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
8ef0f135 265 if (/^[ \t]*$/) {
266 format_flush(format_line, format_indent)
267 print ""
268 format_line = ""
269 format_indent = -1
270 } else if (/^[ \t]*[-\*][ \t]*/) {
271 format_flush(format_line, format_indent)
3099ec38 272 match($0, /^[ \t]*/)
8ef0f135 273 format_indent = RLENGTH
274 match($0, /^[ \t]*[-\*][ \t]/)
275 format_line = substr($0, RLENGTH)
3099ec38 276 } else
8ef0f135 277 format_line = format_line " " $0
278 next
279 }
3099ec38 280
8ef0f135 281 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
282 if (NF > 3 && $2 == "-l") {
283 ll = $1
284 for (i = 4; i <= NF; i++)
285 ll = ll " " $i
286 $0 = ll " -l " $3
287 }
288 format_flush(format_line, format_indent)
289 if (bod == 2) {
290 bod = 1
291 description = 1
292 } else {
293 bod = 0
294 description = 0
295 }
296 } else
297 description = 1
298}
299
300#########
301# %prep #
302#########
3099ec38 303/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
8ef0f135 304 preamble = 0
3099ec38
ER
305 did_prep = 1
306
307 use_macros()
308
8ef0f135 309 # Add '-q' to %setup
3099ec38 310 if (/^%setup/ && !/-q/) {
8ef0f135 311 sub(/^%setup/, "%setup -q")
3099ec38
ER
312 }
313
314 if (/^%setup/ && name != "setup") {
315 $0 = fixedsub(name, "%{name}", $0);
316 $0 = fixedsub(version, "%{version}", $0);
317 if (_beta) {
318 $0 = fixedsub(_beta, "%{_beta}", $0);
319 }
320 if (_rc) {
321 $0 = fixedsub(_rc, "%{_rc}", $0);
322 }
323 if (_pre) {
324 $0 = fixedsub(_pre, "%{_pre}", $0);
325 }
326 if (_snap) {
327 $0 = fixedsub(_snap, "%{_snap}", $0);
328 }
f512b689
ER
329 if (subver) {
330 $0 = fixedsub(subver, "%{subver}", $0);
331 }
3099ec38
ER
332 }
333
334 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
335 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
336 }
644b0dd9 337 sub("^%patch ", "%patch0 ");
3099ec38
ER
338
339 # invalid in %prep
340 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
8ef0f135 341}
342
343##########
344# %build #
345##########
3099ec38 346/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
8ef0f135 347 preamble = 0
348
3099ec38
ER
349 if (did_prep == 0) {
350 print "%prep"
351 print ""
352 did_prep = 1
353 }
354
8ef0f135 355 use_macros()
3099ec38
ER
356 use_tabs()
357
8ef0f135 358 if (/^automake$/)
359 sub(/$/, " -a -c")
360
361 if (/LDFLAGS/) {
362 if (/LDFLAGS="-s"/) {
363 removed["LDFLAGS"] = 1
364 next
365 } else {
366 split($0, tmp, "LDFLAGS=")
367 count = split(tmp[2], flags, "\"")
368 if (flags[1] != "" && flags[1] !~ "!?debug") {
369 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
370 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
371 for (i = 2; i < count; i++)
372 $0 = $0 flags[i] "\""
373 }
374 }
375 }
376
377 if (/CFLAGS=/)
378 if (cflags("CFLAGS") == 0)
379 next
380
381 if (/CXXFLAGS=/)
382 if (cflags("CXXFLAGS") == 0)
383 next
3099ec38 384
8ef0f135 385 if (/^export /) {
386 if (removed["LDFLAGS"])
387 sub(" LDFLAGS", "")
388 if (removed["CFLAGS"])
389 sub(" CFLAGS", "")
390 if (removed["CXXFLAGS"])
391 sub(" CXXFLAGS", "")
392 # Is there still something?
393 if (/^export[ ]*$/)
394 next
395 }
3099ec38
ER
396
397 # quote CC
398 if (/CC=%{__cc} /) {
399 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
400 }
401
402 # use PLD Linux macros
403 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
404 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
405 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
406 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
407 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
644b0dd9 408 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
3099ec38
ER
409 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
410 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
411
412 sub(/^aclocal$/, "%{__aclocal}");
413 sub(/^autoheader$/, "%{__autoheader}");
414 sub(/^autoconf$/, "%{__autoconf}");
415 sub(/^automake$/, "%{__automake}");
644b0dd9 416 sub(/^libtoolize$/, "%{__libtoolize}");
3099ec38
ER
417
418 # atrpms
419 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
420 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
41f549c5 421
422 # alt linux
423 $0 = fixedsub("%make_build", "%{__make}", $0);
8ef0f135 424}
425
426##########
427# %clean #
428##########
3099ec38 429/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
8ef0f135 430 did_clean = 1
3099ec38 431
644b0dd9 432 use_macros()
8ef0f135 433}
434
435############
436# %install #
437############
3099ec38
ER
438/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
439
8ef0f135 440 preamble = 0
3099ec38
ER
441
442 # foreign rpms
443 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
644b0dd9
ER
444 sub("%buildroot", "$RPM_BUILD_ROOT");
445 sub("%{buildroot}", "$RPM_BUILD_ROOT");
3099ec38
ER
446
447 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
8ef0f135 448 did_rmroot=1
449 print "rm -rf $RPM_BUILD_ROOT"
450 next
451 }
452
453 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
454 print "rm -rf $RPM_BUILD_ROOT"
455 did_rmroot=1
456 }
3099ec38 457
644b0dd9
ER
458 if (tmpdir) {
459 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
3099ec38 460 gsub(buildroot, "$RPM_BUILD_ROOT")
644b0dd9 461 }
3099ec38 462
644b0dd9
ER
463 if (!/%{_lib}/) {
464 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
465 }
3099ec38 466
8ef0f135 467 use_macros()
3099ec38 468
8ef0f135 469 # 'install -d' instead 'mkdir -p'
470 if (/mkdir -p/)
471 sub(/mkdir -p/, "install -d")
3099ec38
ER
472
473 # cp -a already implies cp -r
644b0dd9 474 sub(/^cp -ar/, "cp -a")
3099ec38 475
8ef0f135 476 # No '-u root' or '-g root' for 'install'
477 if (/^install/ && /-[ug][ \t]*root/)
478 gsub(/-[ug][ \t]*root /, "")
3099ec38
ER
479
480 if (/^install/ && /-m[ \t]*[0-9]+/)
481 gsub(/-m[ \t]*[0-9]+ /, "")
482
8ef0f135 483 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
484 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
485 next
3099ec38 486
8ef0f135 487 # No lines contain 'chmod' if it sets the modes to '644'
488 if ($1 ~ /chmod/ && $2 ~ /644/)
489 next
3099ec38
ER
490
491 # atrpms
492 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
41f549c5 493
494 # alt linux
495 $0 = fixedsub("%make_install DESTDIR=$RPM_BUILD_ROOT install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
8ef0f135 496}
497
498##########
499# %files #
500##########
3099ec38 501/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
8ef0f135 502 preamble = 0
3099ec38
ER
503 did_files = 1
504
8ef0f135 505 if ($0 ~ /^%files/)
506 defattr = 1
3099ec38 507
20f36c3b
ER
508 if (!use_files_macros()) {
509 next
510 }
8ef0f135 511}
512
513##############
514# %changelog #
515##############
3099ec38 516/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
8ef0f135 517 preamble = 0
518 has_changelog = 1
0014f176 519 skip = 0
8ef0f135 520 # There should be some CVS keywords on the first line of %changelog.
0014f176 521 if (boc == 3) {
644b0dd9 522 if ($0 !~ _cvsmailfeedback) {
3099ec38 523 print "* %{date} " _cvsmailfeedback > changelog_file
644b0dd9 524 } else {
0014f176 525 skip = 1
644b0dd9 526 }
0014f176
JB
527 boc = 2
528 }
529 if (boc == 2 && !skip) {
530 if (!/All persons listed below/) {
8ef0f135 531 printf "All persons listed below can be reached at " > changelog_file
3099ec38 532 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
644b0dd9 533 } else {
0014f176 534 skip = 1
644b0dd9 535 }
0014f176
JB
536 boc = 1
537 }
538 if (boc == 1 && !skip) {
539 if (!/^$/) {
644b0dd9 540 if (!/\$.*Log:.*\$/) {
0014f176 541 print "$" "Log:$" > changelog_file
644b0dd9 542 }
0014f176 543 boc = 0
8ef0f135 544 }
8ef0f135 545 }
8ef0f135 546 # Define date macro.
0014f176 547 if (boc == 4) {
8ef0f135 548 if (date == 0) {
549 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
550 print " date +\"%a %b %d %Y\"`)" > changelog_file
551 date = 1
552 }
0014f176 553 boc = 3
8ef0f135 554 }
555
644b0dd9
ER
556 sub(/[ \t]+$/, "");
557 if (!/^%[a-z]+$/ || /changelog/) {
558 # stop changelog if "real" changelog starts
559 if (boc == 0 && /^\* /) {
560 boc = -1
561 }
562 if (boc == -1) {
563 next;
564 }
8ef0f135 565 print > changelog_file
644b0dd9 566 } else {
8ef0f135 567 print
644b0dd9 568 }
8ef0f135 569 next
570}
571
572###########
573# SCRIPTS #
574###########
3099ec38 575/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
8ef0f135 576 preamble = 0
3099ec38
ER
577
578 if (gsub("/usr/sbin/useradd", "%useradd")) {
579 sub(" 2> /dev/null \|\| :", "");
580 sub(" >/dev/null 2>&1 \|\|:", "");
581 }
582
583 # %useradd and %groupadd may not be wrapped
584 if (/%(useradd|groupadd).*\\$/) {
585 a = $0; getline;
586 sub(/^[\s\t]*/, "");
587 $0 = substr(a, 1, length(a) - 1) $0;
588 }
589 use_script_macros()
8ef0f135 590}
3099ec38
ER
591
592/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
593 preamble = 0
594 use_macros()
595}
596/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
597 preamble = 0
644b0dd9 598 use_macros()
3099ec38
ER
599}
600/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
8ef0f135 601 preamble = 0
3099ec38 602 use_script_macros()
8ef0f135 603}
3099ec38 604/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
8ef0f135 605 preamble = 0
3099ec38 606 use_script_macros()
8ef0f135 607}
3099ec38 608/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
8ef0f135 609 preamble = 0
3099ec38
ER
610 use_script_macros()
611}
612/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
613 preamble = 0
614 use_script_macros()
615}
616/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
617 preamble = 0
618 use_script_macros()
619}
620/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
621 preamble = 0
622 use_script_macros()
623}
624/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
625 preamble = 0
626 use_script_macros()
627}
628/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
629 preamble = 0
630 use_script_macros()
8ef0f135 631}
632
633#############
634# PREAMBLES #
635#############
636preamble == 1 {
637 # There should not be a space after the name of field
638 # and before the colon.
639 sub(/[ \t]*:/, ":")
3099ec38
ER
640
641 if (/^%perl_module_wo_prefix/) {
642 name = $2
643 version = $3
644 release = "0." fixedsub(".%{disttag}.at", "", $4)
645 }
646
8ef0f135 647 field = tolower($1)
648 fieldnlower = $1
644b0dd9 649 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
3099ec38
ER
650 sub(/\.$/, "", $0);
651 }
8ef0f135 652 if (field ~ /group(\([^)]+\)):/)
653 next
654 if (field ~ /group:/) {
655 format_preamble()
3099ec38
ER
656 group = $0;
657 sub(/^[^ \t]*[ \t]*/, "", group);
2d5b4f5a 658 group = replace_groupnames(group);
3099ec38
ER
659 $0 = "Group:\t\t" group
660
661 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
662 x11 = 1
663
664 byl_plik_z_groupmi = 0
8ef0f135 665 byl_opis_grupy = 0
666 while ((getline linia_grup < groups_file) > 0) {
3099ec38
ER
667 byl_plik_z_groupmi = 1
668 if (linia_grup == group) {
8ef0f135 669 byl_opis_grupy = 1
670 break
671 }
672 }
673
3099ec38 674 if (!byl_plik_z_groupmi)
8ef0f135 675 print "######\t\t" groups_file ": no such file"
676 else if (!byl_opis_grupy)
677 print "######\t\t" "Unknown group!"
3099ec38 678
8ef0f135 679 close(groups_file)
3099ec38 680 did_groups = 1
8ef0f135 681 }
3099ec38
ER
682
683 if (field ~ /prereq:/) {
684 sub(/Pre[Rr]eq:/, "Requires:", $1);
685 }
686
687 # split (build)requires, obsoletes on commas
688 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
689 value = substr($0, index($0, $2));
690 $0 = format_requires($1, value);
691 }
644b0dd9 692
3099ec38
ER
693 # BR: tar (and others) is to common (rpm-build requires it)
694 if (field ~ /^buildrequires:/) {
695 l = substr($0, index($0, $2));
696 if (l == "awk" ||
697 l == "binutils" ||
698 l == "bzip2" ||
699 l == "cpio" ||
700 l == "diffutils" ||
701 l == "elfutils" ||
702 l == "fileutils" ||
703 l == "findutils" ||
704 l == "glibc-devel" ||
705 l == "grep" ||
706 l == "gzip" ||
707 l == "make" ||
708 l == "patch" ||
709 l == "sed" ||
710 l == "sh-utils" ||
711 l == "tar" ||
712 l == "textutils") {
713 next
714 }
715
f512b689 716 replace_requires();
3099ec38
ER
717 }
718
87a659b0 719 if (field ~ /^requires:/ || field ~ /^requires\(/) {
f512b689 720 replace_requires();
644b0dd9 721 }
3099ec38
ER
722
723
724 # obsolete/unwanted tags
725 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
8ef0f135 726 next
3099ec38
ER
727 }
728
729 if (field ~ /buildroot:/) {
8ef0f135 730 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
3099ec38
ER
731 did_build_root = 1
732 }
8ef0f135 733
734 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
3099ec38 735 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
8ef0f135 736 $1 = "License:"
3099ec38
ER
737 }
738
87a659b0 739 # ease updating from debian .dsc
740 if (field ~ /homepage:/) {
741 $1 = "URL:"
742 }
743
3099ec38
ER
744 if (field ~ /license:/) {
745 l = substr($0, index($0, $2));
746 if (l == "Python Software Foundation License") {
747 l = "PSF"
748 }
f512b689
ER
749 if (l == "Apache License 2.0" || l == "Apache 2.0" || l == "Apache License Version 2.0" || l == "Apache License, Version 2.0" || l == "Apache Software License v2") {
750 l = "Apache v2.0"
751 }
752 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
753 l = "Apache"
754 }
755 if (l == "Apache-style License" || l == "Apache-style Software License") {
756 l = "Apache-like"
757 }
758 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
759 l = "Apache v1.1"
760 }
2d5b4f5a
ER
761 if (l == "GPLv2") {
762 l = "GPL v2"
763 }
764 if (l == "GPLv2+") {
765 l = "GPL v2+"
766 }
87a659b0 767 if (l == "LGPLv2+") {
768 l = "LGPL v2+"
769 }
c335e23a 770 if (l == "GPLv3") {
771 l = "GPL v3"
772 }
773 if (l == "GPLv3+") {
774 l = "GPL v3+"
775 }
3099ec38
ER
776 $0 = "License:\t" l;
777 }
778
779
780 if (field ~ /name:/) {
781 if ($2 == "%{name}" && name) {
782 $2 = name
783 }
8ef0f135 784 name = $2
3099ec38
ER
785 name_seen = 1;
786 }
8ef0f135 787
3099ec38
ER
788 if (field ~ /version:/) {
789 if ($2 == "%{version}" && version) {
790 $2 = version
791 }
8ef0f135 792 version = $2
3099ec38
ER
793 version_seen = 1;
794 }
795
796 if (field ~ /release:/) {
797 if ($2 == "%{release}" && release) {
798 $2 = release
799 }
800 sub(/%atrelease /, "0.", $0)
801 release = $2
802 release_seen = 1;
803 }
804
8ef0f135 805
806 if (field ~ /serial:/)
807 $1 = "Epoch:"
808
3099ec38
ER
809 if (field ~ /home-page:/)
810 $1 = "URL:"
811
812 # proper caps
813 if (field ~ /^url:$/)
814 $1 = "URL:"
815
c335e23a 816 if (field ~ /^patch/)
817 $1 = "Patch" substr(field, 6);
818
3099ec38
ER
819 if (field ~ /^description:$/)
820 $1 = "\n%description\n"
821
8ef0f135 822 # Use %{name} and %{version} in the filenames in "Source:"
823 if (field ~ /^source/ || field ~ /patch/) {
824 n = split($2, url, /\//)
825 if (url[n] ~ /\.gz$/) {
826 url[n+1] = ".gz" url[n+1]
827 sub(/\.gz$/,"",url[n])
828 }
829 if (url[n] ~ /\.zip$/) {
830 url[n+1] = ".zip" url[n+1]
831 sub(/\.zip$/,"",url[n])
832 }
833 if (url[n] ~ /\.tar$/) {
834 url[n+1] = ".tar" url[n+1]
835 sub(/\.tar$/,"",url[n])
836 }
837 if (url[n] ~ /\.patch$/) {
838 url[n+1] = ".patch" url[n+1]
839 sub(/\.patch$/,"",url[n])
840 }
841 if (url[n] ~ /\.bz2$/) {
842 url[n+1] = ".bz2" url[n+1]
843 sub(/\.bz2$/,"",url[n])
844 }
845 if (url[n] ~ /\.logrotate$/) {
846 url[n+1] = ".logrotate" url[n+1]
847 sub(/\.logrotate$/,"",url[n])
848 }
849 if (url[n] ~ /\.pamd$/) {
850 url[n+1] = ".pamd" url[n+1]
851 sub(/\.pamd$/,"",url[n])
852 }
853
3099ec38
ER
854 # allow %{name} only in last url component
855 s = ""
856 for (i = 1; i <= n; i++) {
857 url[i] = fixedsub("%{name}", name, url[i])
858 if (s) {
859 s = s "/" url[i]
860 } else {
861 s = url[i]
862 }
863 }
864 $2 = s url[n+1]
865
8ef0f135 866 filename = url[n]
3099ec38
ER
867 if (name) {
868 url[n] = fixedsub(name, "%{name}", url[n])
869 }
870 if (field ~ /source/) {
871 if (version) {
872 url[n] = fixedsub(version, "%{version}", url[n])
873 }
874 if (_beta) {
875 url[n] = fixedsub(_beta, "%{_beta}", url[n])
876 }
877 if (_rc) {
878 url[n] = fixedsub(_rc, "%{_rc}", url[n])
879 }
880 if (_pre) {
881 url[n] = fixedsub(_pre, "%{_pre}", url[n])
882 }
883 if (_snap) {
884 url[n] = fixedsub(_snap, "%{_snap}", url[n])
885 }
f512b689
ER
886 if (subver) {
887 url[n] = fixedsub(subver, "%{subver}", url[n])
888 }
3099ec38
ER
889 }
890 # assigning to $2 kills preamble formatting
8ef0f135 891 $2 = fixedsub(filename, url[n], $2)
3099ec38 892
14f5c80f 893 $2 = unify_url($2)
8ef0f135 894 }
895
3099ec38 896
8ef0f135 897 if (field ~ /^source:/)
3099ec38 898 $1 = "Source0:"
8ef0f135 899
3099ec38 900 if (field ~ /^patch:/)
8ef0f135 901 $1 = "Patch0:"
3099ec38
ER
902
903 kill_preamble_macros();
8ef0f135 904 format_preamble()
3099ec38
ER
905
906 if (field ~ /requires/) {
907 # atrpms
908 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
8ef0f135 909 }
910}
911
3099ec38
ER
912/^%bcond_/ {
913 # do nothing
914 print
915 next
916}
917
918# sort BR/R!
919#
920# NOTES:
921# - mixing BR/R and anything else confuses this (all will be sorted together)
644b0dd9 922# so don't do that.
3099ec38 923# - comments leading the BR/R can not be associated,
644b0dd9 924# so don't adapterize when the BR/R are mixed with comments
3099ec38
ER
925ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
926 if ($1 ~ /Pre[Rr]eq:/) {
927 sub(/Pre[Rr]eq:/, "Requires:", $1);
928 }
644b0dd9
ER
929 if ($1 == "BR:" ) {
930 $1 = "BuildRequires:"
931 }
932 if ($1 == "R:" ) {
933 $1 = "Requires:"
934 }
3099ec38
ER
935 format_preamble()
936# kill_preamble_macros(); # breaks tabbing
937
938 b_idx++;
939 l = substr($0, index($0, $2));
940 b_ktmp = b_makekey($1, l);
941 b_key[b_idx] = b_ktmp;
942 b_val[b_ktmp] = $0;
8ef0f135 943
3099ec38
ER
944 next;
945}
946
947preamble == 1 {
948 if (b_idx > 0) {
949 isort(b_key, b_idx);
950 for (i = 1; i <= b_idx; i++) {
951 v = b_val[b_key[i]];
952 sub(/[ \t]+$/, "", v);
953 print "" v;
954 }
955 b_idx = 0
956 }
957}
958
959# main() ;-)
8ef0f135 960{
961 preamble = 1
3099ec38 962
8ef0f135 963 sub(/[ \t]+$/, "")
964 print
3099ec38
ER
965
966 if (name_seen == 0 && name) {
967 print "Name:\t\t" name
968 name_seen = 1
969 }
970
971 if (version_seen == 0 && version) {
972 print "Version:\t" version
973 version_seen = 1
974 }
975
976 if (release_seen == 0 && release) {
977 print "Release:\t" release
978 release_seen = 1
979 }
980
981 if (did_build_root == 0) {
982# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
983 did_build_root = 1
984 }
985 if (did_groups == 0) {
986# print "Group:\t\tunknown"
987 did_groups = 1
988 }
8ef0f135 989}
990
991
992END {
41f549c5 993 if (do_not_touch_anything) {
994 exit(rc)
995 }
3099ec38 996
644b0dd9
ER
997 # TODO: need to output these in proper place
998 if (BR_count > 0) {
999 for (i = 0; i <= BR_count; i++) {
1000 print BR[i];
1001 }
1002 }
3099ec38 1003
8ef0f135 1004 close(changelog_file)
1005 while ((getline < changelog_file) > 0)
1006 print
1007 system("rm -f " changelog_file)
1008
1009 if (did_clean == 0) {
1010 print ""
1011 print "%clean"
1012 print "rm -rf $RPM_BUILD_ROOT"
1013 }
1014
1015 if (date == 0) {
1016 print ""
1017 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1018 }
3099ec38
ER
1019
1020 if (has_changelog == 0) {
8ef0f135 1021 print "%changelog"
644b0dd9 1022 }
8ef0f135 1023
3099ec38 1024 if (boc > 2) {
0014f176 1025 print "* %{date} PLD Team <feedback@pld-linux.org>"
644b0dd9 1026 }
0014f176 1027 if (boc > 1) {
8ef0f135 1028 printf "All persons listed below can be reached at "
0014f176 1029 print "<cvs_login>@pld-linux.org\n"
8ef0f135 1030 }
3099ec38 1031 if (boc > 0) {
0014f176 1032 print "$" "Log:$"
644b0dd9 1033 }
8ef0f135 1034}
1035
8ef0f135 1036# substitutes fixed strings (not regexps)
20f36c3b 1037function fixedsub(s1,s2,t, ind) {
3099ec38
ER
1038 if (ind = index(t,s1))
1039 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1040 return t
8ef0f135 1041}
1042
20f36c3b
ER
1043# replace s with s2 if it equals to s1
1044function replace(s, s1, s2) {
1045 if (s == s1) {
1046 return s2;
1047 } else {
1048 return s;
1049 }
1050}
1051
8ef0f135 1052# There should be one or two tabs after the colon.
1053function format_preamble()
1054{
3099ec38
ER
1055 if (/^#/ || /^%bcond_with/) {
1056 return;
1057 }
8ef0f135 1058 sub(/:[ \t]*/, ":")
644b0dd9
ER
1059 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1060 if (RLENGTH < 8) {
8ef0f135 1061 sub(/:/, ":\t\t")
644b0dd9 1062 } else {
8ef0f135 1063 sub(/:/, ":\t")
644b0dd9 1064 }
8ef0f135 1065 }
1066}
1067
1068# Replace directly specified directories with macros
1069function use_macros()
1070{
3099ec38
ER
1071 # -m, --skip-macros, --no-macros -- skip macros subst
1072 if (ENVIRON["SKIP_MACROS"]) {
1073 return
1074 }
1075
1076 # leave inline sed lines alone
1077 if (/(%{__sed}|sed) -i -e/) {
1078 return;
1079 }
1080
644b0dd9
ER
1081 sub("%{_defaultdocdir}", "%{_docdir}");
1082 sub("%{_bindir}/perl", "%{__perl}");
1083 sub("%{_bindir}/python", "%{__python}");
3099ec38
ER
1084
1085 gsub(infodir, "%{_infodir}")
1086
1087 gsub(perl_sitearch, "%{perl_sitearch}")
1088 gsub(perl_archlib, "%{perl_archlib}")
1089 gsub(perl_privlib, "%{perl_privlib}")
1090 gsub(perl_vendorlib, "%{perl_vendorlib}")
1091 gsub(perl_vendorarch, "%{perl_vendorarch}")
1092 gsub(perl_sitelib, "%{perl_sitelib}")
1093
1094 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
1095 gsub(py_sitedir, "%{py_sitedir}")
1096 gsub(py_scriptdir, "%{py_scriptdir}")
1097 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
1098 gsub("%{python_sitelib}", "%{py_sitedir}")
1099
1100 gsub(ruby_archdir, "%{ruby_archdir}")
1101 gsub(ruby_ridir, "%{ruby_ridir}")
1102 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1103 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1104 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
20f36c3b 1105 gsub(ruby_rdocdir, "%{ruby_rdocdir}")
3099ec38
ER
1106
1107 gsub("%{_datadir}/applications", "%{_desktopdir}")
1108 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
2d5b4f5a 1109 gsub("%{_datadir}/java", "%{_javadir}")
3099ec38 1110
41f549c5 1111 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
1112 gsub(pkgconfigdir, "%{_pkgconfigdir}")
1113
644b0dd9 1114 gsub(libdir, "%{_libdir}")
2d5b4f5a 1115 gsub(javadir, "%{_javadir}")
644b0dd9 1116
8ef0f135 1117 gsub(bindir, "%{_bindir}")
1118 gsub("%{prefix}/bin", "%{_bindir}")
3099ec38 1119 if (prefix"/bin" == bindir)
8ef0f135 1120 gsub("%{_prefix}/bin", "%{_bindir}")
1121
1122 for (c = 1; c <= NF; c++) {
1123 if ($c ~ sbindir "/fix-info-dir")
1124 continue;
3099ec38
ER
1125 if ($c ~ sbindir "/webapp")
1126 continue;
1127 if ($c ~ sbindir "/ldconfig")
1128 continue;
1129 if ($c ~ sbindir "/chsh")
1130 continue;
1131 if ($c ~ sbindir "/usermod")
1132 continue;
1133 if ($c ~ sbindir "/chkconfig")
1134 continue;
1135 if ($c ~ sbindir "/installzope(product|3package)")
1136 continue;
8ef0f135 1137 gsub(sbindir, "%{_sbindir}", $c)
1138 }
1139
1140 gsub("%{prefix}/sbin", "%{_sbindir}")
3099ec38 1141 if (prefix"/sbin" == sbindir) {
8ef0f135 1142 gsub("%{_prefix}/sbin", "%{_sbindir}")
3099ec38 1143 }
8ef0f135 1144
1145 for (c = 1; c <= NF; c++) {
0014f176 1146 if ($c ~ sysconfdir "/{?cron.")
8ef0f135 1147 continue;
1148 if ($c ~ sysconfdir "/{?crontab.d")
1149 continue;
3099ec38
ER
1150 if ($c ~ sysconfdir "/{?env.d")
1151 continue;
1152 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
1153 continue;
2d5b4f5a
ER
1154 if ($c ~ sysconfdir "/{?udev")
1155 continue;
1156 if ($c ~ sysconfdir "/{?hotplug")
3099ec38 1157 continue;
8ef0f135 1158 if ($c ~ sysconfdir "/{?logrotate.d")
1159 continue;
1160 if ($c ~ sysconfdir "/{?pam.d")
1161 continue;
1162 if ($c ~ sysconfdir "/{?profile.d")
1163 continue;
1164 if ($c ~ sysconfdir "/{?rc.d")
1165 continue;
1166 if ($c ~ sysconfdir "/{?security")
1167 continue;
1168 if ($c ~ sysconfdir "/{?skel")
1169 continue;
1170 if ($c ~ sysconfdir "/{?sysconfig")
1171 continue;
3099ec38
ER
1172 if ($c ~ sysconfdir "/{?shrc.d")
1173 continue;
1174 if ($c ~ sysconfdir "/{?certs")
1175 continue;
1176 if ($c ~ sysconfdir "/{?X11")
1177 continue;
1178 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1179 continue;
1180 if ($c ~ sysconfdir "/{?rpm")
1181 continue;
1182 if ($c ~ sysconfdir "/{?bash_completion.d")
1183 continue;
1184 if ($c ~ sysconfdir "/{?samba")
1185 continue;
1186 if ($c ~ sysconfdir "/shells")
1187 continue;
644b0dd9
ER
1188 if ($c ~ sysconfdir "/ppp")
1189 continue;
1190 if ($c ~ sysconfdir "/dbus-1")
1191 continue;
20f36c3b
ER
1192 if ($c ~ sysconfdir "/tmpwatch")
1193 continue;
c335e23a 1194 if ($c ~ sysconfdir "/acpi")
1195 continue;
1196 if ($c ~ sysconfdir "/apm")
1197 continue;
8ef0f135 1198 gsub(sysconfdir, "%{_sysconfdir}", $c)
1199 }
1200
3099ec38 1201 gsub(docdir, "%{_docdir}")
20f36c3b
ER
1202
1203 gsub(kdedocdir, "%{_kdedocdir}")
1204
1205 gsub(gtkdocdir, "%{_gtkdocdir}")
1206 gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1207
3099ec38 1208 gsub(php_pear_dir, "%{php_pear_dir}")
2d5b4f5a 1209 gsub(php_data_dir, "%{php_data_dir}")
3099ec38
ER
1210
1211 for (c = 1; c <= NF; c++) {
1212 if ($c ~ datadir "/automake")
1213 continue;
1214 if ($c ~ datadir "/unsermake")
1215 continue;
1216 if ($c ~ datadir "/file/magic.mime")
1217 continue;
1218 gsub(datadir, "%{_datadir}", $c)
1219 }
1220
8ef0f135 1221 gsub("%{prefix}/share", "%{_datadir}")
3099ec38 1222 if (prefix"/share" == datadir)
8ef0f135 1223 gsub("%{_prefix}/share", "%{_datadir}")
1224
3099ec38
ER
1225 # CFLAGS="-I/usr/include/ncurses is usually correct.
1226 if (!/-I\/usr\/include/) {
1227 gsub(includedir, "%{_includedir}")
1228 }
1229
8ef0f135 1230 gsub("%{prefix}/include", "%{_includedir}")
3099ec38 1231 if (prefix"/include" == includedir) {
8ef0f135 1232 gsub("%{_prefix}/include", "%{_includedir}")
3099ec38 1233 }
8ef0f135 1234
1235 gsub(mandir, "%{_mandir}")
3099ec38 1236 if ($0 !~ "%{_datadir}/manual") {
8ef0f135 1237 gsub("%{_datadir}/man", "%{_mandir}")
3099ec38 1238 }
8ef0f135 1239 gsub("%{_prefix}/share/man", "%{_mandir}")
1240 gsub("%{prefix}/share/man", "%{_mandir}")
1241 gsub("%{prefix}/man", "%{_mandir}")
1242 gsub("%{_prefix}/man", "%{_mandir}")
1243
1244 gsub(infodir, "%{_infodir}")
1245 gsub("%{prefix}/info", "%{_infodir}")
1246 gsub("%{_prefix}/info", "%{_infodir}")
1247
0014f176
JB
1248 if (prefix !~ "/X11R6") {
1249 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1250 }
8ef0f135 1251
3099ec38
ER
1252 gsub(examplesdir, "%{_examplesdir}")
1253
8ef0f135 1254 if (prefix != "/") {
3099ec38
ER
1255 # leave --with-foo=/usr alone
1256 if ($0 !~ "--with.*=.*" prefix) {
1257 for (c = 1; c <= NF; c++) {
1258 if ($c ~ prefix "/sbin/fix-info-dir")
1259 continue;
1260 if ($c ~ prefix "/sbin/webapp")
1261 continue;
1262 if ($c ~ prefix "/sbin/chsh")
1263 continue;
1264 if ($c ~ prefix "/sbin/usermod")
1265 continue;
1266 if ($c ~ prefix "/sbin/installzope(product|3package)")
1267 continue;
1268 if ($c ~ prefix "/share/automake")
1269 continue;
1270 if ($c ~ prefix "/share/unsermake")
1271 continue;
1272 if ($c ~ prefix "/lib/sendmail")
1273 continue;
1274 if ($c ~ prefix "/lib/pkgconfig")
1275 continue;
1276
1277 # CFLAGS="-I/usr..." is usually correct.
1278 if (/-I\/usr/)
1279 continue;
1280 # same for LDFLAGS="-L/usr..."
1281 if (/-L\/usr/)
1282 continue;
1283
1284 gsub(prefix, "%{_prefix}", $c)
1285 }
8ef0f135 1286 }
1287 gsub("%{prefix}", "%{_prefix}")
1288 }
1289
3099ec38
ER
1290 # replace back
1291 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1292 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1293
8ef0f135 1294 gsub("%{PACKAGE_VERSION}", "%{version}")
1295 gsub("%{PACKAGE_NAME}", "%{name}")
1296
8ef0f135 1297 gsub("^make$", "%{__make}")
1298 gsub("^make ", "%{__make} ")
3099ec38 1299 gsub("^gcc ", "%{__cc} ")
f512b689 1300 gsub("^rm --interactive=never ", "%{__rm} ")
3099ec38 1301
c335e23a 1302 # fedora
1303 gsub("%{ruby_sitearch}", "%{ruby_sitearchdir}")
1304 gsub("%{python_sitearch}", "%{py_sitedir}")
1305
3099ec38
ER
1306 # mandrake specs
1307 gsub("^%make$", "%{__make}")
1308 gsub("^%make ", "%{__make} ")
1309 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1310 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1311 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1312 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
1313 gsub("^%{__install}", "install")
3099ec38
ER
1314 gsub("%optflags", "%{rpmcflags}")
1315 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1316
1317 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
644b0dd9 1318 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
3099ec38
ER
1319 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1320 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
1321 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
644b0dd9 1322 $0 = fixedsub("%__install", "install", $0);
3099ec38
ER
1323
1324 # split configure line to multiple lines
1325 if (/%configure / && !/\\$/) {
1326 $0 = format_configure($0);
1327 }
1328
1329 gsub("%_bindir", "%{_bindir}")
1330 gsub("%_datadir", "%{_datadir}")
1331 gsub("%_iconsdir", "%{_iconsdir}")
1332 gsub("%_sbindir", "%{_sbindir}")
1333 gsub("%_mandir", "%{_mandir}")
1334 gsub("%name", "%{name}")
644b0dd9
ER
1335 gsub(/%__rm/, "rm");
1336 gsub(/%__mkdir_p/, "install -d");
1337 gsub(/%__cp/, "cp");
1338 gsub(/%__ln_s/, "ln -s");
1339 gsub(/%__sed/, "%{__sed}");
1340 gsub(/%__cat/, "cat");
1341 gsub(/%__chmod/, "chmod");
8ef0f135 1342
1343 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1344 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
3099ec38 1345
2d5b4f5a 1346 if (/^ant / || /^%{ant}/) {
3099ec38 1347 sub(/^ant/, "%ant")
2d5b4f5a 1348 sub(/^%{ant}/, "%ant")
644b0dd9
ER
1349 add_br("BuildRequires: jpackage-utils");
1350 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1351 }
3099ec38 1352
2d5b4f5a
ER
1353 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1354 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
8ef0f135 1355}
3099ec38
ER
1356
1357function format_configure(line, n, a, s) {
1358 n = split(line, a, / /);
1359 s = a[1] " \\\n";
1360 for (i = 2; i <= n; i++) {
1361 s = s "\t" a[i] " \\\n"
1362 }
1363 return s
1364}
1365
1366
1367# insertion sort of A[1..n]
1368# copied from mawk manual
1369function isort(A,n, i,j,hold) {
1370 for (i = 2; i <= n; i++) {
1371 hold = A[j = i]
1372 while (A[j-1] > hold) {
1373 j-- ; A[j+1] = A[j]
1374 }
1375 A[j] = hold
1376 }
1377 # sentinel A[0] = "" will be created if needed
1378}
1379
1380
20f36c3b 1381function use_files_macros( i, n, t, a, l)
8ef0f135 1382{
3099ec38
ER
1383 use_macros()
1384
1385 # skip comments
1386 if (/^#/) {
20f36c3b 1387 return 1;
3099ec38
ER
1388 }
1389
1390 sub("^%doc %{_mandir}", "%{_mandir}")
1391
8ef0f135 1392 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1393 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
3099ec38
ER
1394
1395 # uid/gid nobody is not valid in %files
1396 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1397 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1398 }
1399
1400 # s[gu]id programs with globs are evil
1401 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1402 $0 = $0 " # FIXME no globs for suid/sgid files"
1403 }
1404
1405 # replace back
1406 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
1407 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
1408 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1409 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1410 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1411 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1412 gsub("%{_sysconfdir}/security", "/etc/security")
1413 gsub("%{_sysconfdir}/skel", "/etc/skel")
1414 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1415 gsub("%{_sysconfdir}/certs", "/etc/certs")
1416 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
644b0dd9 1417 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
20f36c3b
ER
1418 gsub("%{_sysconfdir}/pki", "/etc/pki")
1419 gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
3099ec38
ER
1420
1421 # /etc/init.d -> /etc/rc.d/init.d
1422 if (!/^\/etc\/init\.d$/) {
1423 gsub("/etc/init.d", "/etc/rc.d/init.d")
1424 }
1425
1426 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
1427 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1428 $0 = "%attr(754,root,root) " $0
1429 }
1430 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
1431 gsub("^%attr\\(... *,", "%attr(754,");
1432 }
1433 }
1434
1435 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
1436 $0 = "%attr(755,root,root) " $0
1437 }
1438
1439 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1440 $0 = "%attr(755,root,root) " $0
1441 }
1442
87a659b0 1443 # remove attrs from man pages
1444 if (/%{_mandir}/ && /^%attr/) {
1445 sub("^%attr\\(.*\\) *", "");
1446 }
1447
3099ec38
ER
1448 # /etc/sysconfig files
1449 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
1450 # attr not required, allow default 644 attr
1451 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
1452 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
1453 gsub("%config", "%config(noreplace)")
1454 }
1455
1456 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
1457 $NF = "%config(noreplace) " $NF
1458 }
1459
1460 if (/\/etc\/sysconfig\// && /%attr\(755/) {
1461 gsub("^%attr\\(... *,", "%attr(640,");
1462 }
1463
1464 if (/\/etc\/sysconfig\// && !/%verify/) {
1465 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1466 }
1467 }
1468
1469 # kill leading zeros
1470 if (/%attr\(0[1-9]/) {
1471 gsub("%attr\\(0", "%attr(")
1472 }
1473
644b0dd9
ER
1474 # kill leading whitespace
1475 gsub(/^ +/, "");
1476
1477 # kill default attrs
1478 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1479 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1480 if (!/%dir/) {
1481 gsub(/%attr\(644,root,root\) /, "");
1482 }
3099ec38
ER
1483
1484 # sort %verify attrs
1485 if (match($0, /%verify\(not([^)]+)\)/)) {
1486 t = substr($0, RSTART, RLENGTH)
1487 # kill commas: %verify(not,md5,size,mtime)
1488 gsub(/,/, " ", t);
1489
1490 gsub(/^%verify\(not |\)$/, "", t)
1491 n = split(t, a, / /)
1492 isort(a, n)
1493
1494 s = "%verify(not"
1495 for (i = 1 ; i <= n; i++) {
1496 s = s " " a[i]
1497 }
1498 s = s ")"
1499
1500 gsub(/%verify\(not[^)]+\)/, s)
1501 }
1502
1503 if (/%{_mandir}/) {
1504 gsub("\.gz$", "*")
1505 }
1506
1507 # locale dir and no %lang -> bad
1508 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
1509 $(NF + 1) = "# FIXME consider using %find_lang"
1510 }
1511
20f36c3b
ER
1512 # python egg-infos
1513 if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
1514 # tests:
1515 #%{py_sitedir}/*-py2.4.egg-info
1516 #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
1517 #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
1518 #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
1519
1520 l = index($0, "/");
1521 t = substr($0, 0, l);
1522 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
1523 if (match(s, "[^-]+$")) {
1524#printf("s[%s]; start[%d]; length[%d]\n", s, RSTART, RLENGTH);
1525 if (RSTART > 1) {
1526 s = substr(s, 0, RSTART - 1);
1527 }
1528#printf("s2[%s]\n", s);
1529 print "%if \"%{py_ver}\" > \"2.4\""
1530#print t "/.+.egg-info"
1531 gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
1532 print
1533 print "%endif"
1534 return 0;
1535 }
1536 }
1537
3099ec38
ER
1538 # atrpms
1539 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1540 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1541 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
1542
1543 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1544 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1545 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
1546
1547 gsub("%{_datadir}/applications", "%{_desktopdir}");
1548 gsub("%{_datadir}/icons", "%{_iconsdir}");
1549 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
2d5b4f5a
ER
1550 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1551 gsub("%{_datadir}/php", "%{php_data_dir}");
20f36c3b
ER
1552
1553 return 1
3099ec38
ER
1554}
1555
1556function use_script_macros()
1557{
1558 if (gsub("/sbin/service", "%service")) {
1559 sub(" >/dev/null 2>&1 \|\|:", "");
1560 sub(" 2> /dev/null \|\| :", "");
1561 }
8ef0f135 1562}
1563
1564function fill(ch, n, i) {
1565 for (i = 0; i < n; i++)
1566 printf("%c", ch)
1567}
1568
1569function format_flush(line, indent, newline, word, first_word) {
1570 first_word = 1
3099ec38 1571 if (format_indent == -1)
8ef0f135 1572 newline = ""
1573 else
1574 newline = fill(" ", format_indent) "- "
1575
1576 while (match(line, /[^\t ]+/)) {
1577 word = substr(line, RSTART, RLENGTH)
1578 if (length(newline) + length(word) + 1 > tw) {
1579 print newline
3099ec38 1580
8ef0f135 1581 if (format_indent == -1)
1582 newline = ""
1583 else
1584 newline = fill(" ", format_indent + 2)
1585 first_word = 1
1586 }
1587
1588 if (first_word) {
1589 newline = newline word
1590 first_word = 0
1591 } else
1592 newline = newline " " word
3099ec38 1593
8ef0f135 1594 line = substr(line, RSTART + RLENGTH)
1595 }
1596 if (newline ~ /[^\t ]/) {
1597 print newline
1598 }
1599}
1600
1601function cflags(var)
1602{
1603 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1604 removed[var] = 1
1605 return 0
1606 }
3099ec38 1607
8ef0f135 1608 if (!/!\?debug/)
1609 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
1610 return 1
1611}
1612
14f5c80f
ER
1613function unify_url(url)
1614{
1615
1616 # sourceforge urls
87a659b0 1617 # Docs about sourceforge mirror system: http://sourceforge.net/apps/trac/sourceforge/wiki/Mirrors
1618 sub("^http://prdownloads\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1619 sub("^http://download\.sf\.net/", "http://downloads.sourceforge.net/", url)
1620 sub("^http://download\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1621 sub("^http://dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1622 sub("^http://.*\.dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1623 sub("^http://dl\.sf\.net/", "http://downloads.sourceforge.net/", url)
1624 sub("^http://downloads\.sourceforge\.net/sourceforge/", "http://downloads.sourceforge.net/", url)
1625 # new style urls, strip "files/" between and prepend dl.
1626 if (match(url, "^http://sourceforge.net/projects/[^/]+/files/")) {
1627 url = substr(url, 1, RLENGTH - length("files/")) substr(url, RSTART + RLENGTH);
1628 sub("^http://sourceforge.net/projects/", "http://downloads.sourceforge.net/project/", url);
1629 }
1630 if (url ~ /sourceforge.net/) {
1631 sub("[?&]big_mirror=.*$", "", url);
1632 sub("[?&]modtime=.*$", "", url);
1633 sub("[?]use_mirror=.*$", "", url);
1634 sub("[?]download$", "", url);
1635 sub("/download$", "", url);
1636 }
14f5c80f
ER
1637
1638 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1639 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1640
1641 # apache urls
1642 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1643
1644 # gnu.org
1645 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
1646 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
1647
1648 return url
1649}
1650
3099ec38
ER
1651function demacroize(str)
1652{
1653 if (mod_name) {
1654 sub("%{mod_name}", mod_name, str);
1655 }
1656 if (name) {
1657 sub("%{name}", name, str);
1658 }
1659 if (version) {
1660 sub("%{version}", version, str);
1661 }
1662 if (_beta) {
1663 sub("%{_beta}", _beta, str);
1664 }
1665 if (_rc) {
1666 sub("%{_rc}", _rc, str);
1667 }
1668 if (_pre) {
1669 sub("%{_pre}", _pre, str);
1670 }
1671 if (_snap) {
1672 sub("%{_snap}", _snap, str);
1673 }
f512b689
ER
1674 if (subver) {
1675 sub("%{subver}", subver, str);
1676 }
3099ec38
ER
1677 return str;
1678}
1679
1680function kill_preamble_macros()
1681{
14f5c80f
ER
1682 if ($1 ~ /^Obsoletes:/) {
1683 # NB! assigning $2 a value breaks tabbing
1684 $2 = demacroize($2);
1685 }
1686 if ($1 ~ /^URL:/) {
3099ec38
ER
1687 # NB! assigning $2 a value breaks tabbing
1688 $2 = demacroize($2);
14f5c80f 1689 $2 = unify_url($2)
3099ec38
ER
1690 }
1691}
1692
1693function get_epoch(pkg, ver, epoch)
1694{
1695 return
1696# should parse the BR lines more adequately:
1697# freetype = 2.0.0 -> correct
1698# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1699
1700 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1701 shell | getline epoch;
1702 return epoch;
1703}
1704
1705function format_requires(tag, value, n, p, i, deps, ndeps) {
1706 # skip any formatting for commented out items or some weird macros
1707 if (/^#/ || /%\(/) {
1708 return tag "\t" value
1709 }
1710 n = split(value, p, / *,? */);
1711 for (i = 1; i <= n; i++) {
1712 if (p[i+1] ~ /[<=>]/) {
1713 # add epoch if the version doesn't have it but BuildRequires.txt has
1714 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1715 epoch = get_epoch(p[i], p[i+2])
1716 if (epoch) {
1717 p[i+2] = epoch ":" p[i+2];
1718 }
1719 }
1720 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1721 i += 2;
1722 } else {
1723 deps[ndeps++] = p[i];
1724 }
1725 }
1726 s = ""
1727 for (i in deps) {
1728 s = s sprintf("%s\t%s\n", tag, deps[i]);
1729 }
1730 return substr(s, 1, length(s)-1);
1731}
1732
1733function use_tabs()
1734{
1735 # reverse vim: ts=4 sw=4 et
1736 gsub(/ /, "\t");
1737}
1738
1739function add_br(br)
1740{
644b0dd9 1741 BR[BR_count++] = br
3099ec38
ER
1742}
1743
3099ec38 1744
20f36c3b
ER
1745# Load rpm macros
1746# you should update the list also in adapter when making changes here
1747function import_rpm_macros() {
1748 # File with rpm groups
1749 topdir = ENVIRON["_topdir"]
1750
1751 if (!topdir) {
1752 print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
1753 do_not_touch_anything = 1
41f549c5 1754 exit(rc = 1);
1755 }
1756
1757 if (!ENVIRON["ADAPTER_REVISION"] || ENVIRON["ADAPTER_REVISION"] < 1.44) {
1758 print "adapter shell script is outdated, please cvs up it" > "/dev/stderr"
1759 do_not_touch_anything = 1
1760 exit(rc = 1);
20f36c3b
ER
1761 }
1762
1763 # get cvsaddress for changelog section
1764 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
1765 _cvsmaildomain = ENVIRON["_cvsmaildomain"]
1766 _cvsmailfeedback = ENVIRON["_cvsmailfeedback"]
1767
1768 prefix = ENVIRON["_prefix"]
1769 bindir = ENVIRON["_bindir"]
1770 sbindir = ENVIRON["_sbindir"]
1771 libdir = ENVIRON["_libdir"]
1772 sysconfdir = ENVIRON["_sysconfdir"]
1773 datadir = ENVIRON["_datadir"]
1774 includedir = ENVIRON["_includedir"]
1775 mandir = ENVIRON["_mandir"]
1776 infodir = ENVIRON["_infodir"]
1777 examplesdir = ENVIRON["_examplesdir"]
1778 docdir = ENVIRON["_defaultdocdir"]
1779 kdedocdir = ENVIRON["_kdedocdir"]
1780 gtkdocdir = ENVIRON["_gtkdocdir"]
1781 desktopdir = ENVIRON["_desktopdir"]
1782 pixmapsdir = ENVIRON["_pixmapsdir"]
1783 javadir = ENVIRON["_javadir"]
41f549c5 1784 pkgconfigdir = ENVIRON["_pkgconfigdir"]
20f36c3b
ER
1785
1786 perl_sitearch = ENVIRON["perl_sitearch"]
1787 perl_archlib = ENVIRON["perl_archlib"]
1788 perl_privlib = ENVIRON["perl_privlib"]
1789 perl_vendorlib = ENVIRON["perl_vendorlib"]
1790 perl_vendorarch = ENVIRON["perl_vendorarch"]
1791 perl_sitelib = ENVIRON["perl_sitelib"]
1792
1793 py_sitescriptdir = ENVIRON["py_sitescriptdir"]
1794 py_sitedir = ENVIRON["py_sitedir"]
1795 py_scriptdir = ENVIRON["py_scriptdir"]
1796 py_ver = ENVIRON["py_ver"]
1797
1798 ruby_archdir = ENVIRON["ruby_archdir"]
1799 ruby_ridir = ENVIRON["ruby_ridir"]
1800 ruby_rubylibdir = ENVIRON["ruby_rubylibdir"]
1801 ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
1802 ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
1803 ruby_rdocdir = ENVIRON["ruby_rdocdir"]
1804
1805 php_pear_dir = ENVIRON["php_pear_dir"]
1806 php_data_dir = ENVIRON["php_data_dir"]
1807 tmpdir = ENVIRON["tmpdir"]
1808}
1809
87a659b0 1810
1811# php virtual deps as discussed in devel-en
1812function replace_php_virtual_deps() {
1813 pkg = $2
1814# if (pkg == "php-program") {
1815# $0 = $1 "\t/usr/bin/php"
1816# return
1817# }
1818
1819# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1820# sub(/^php-/, "php(", pkg);
1821# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1822# $2 = pkg
1823# }
1824
1825 if (pkg ~/^php$/) {
1826 $2 = "webserver(php)";
1827 if ($4 ~ /^[0-9]:/) {
1828 $4 = substr($4, 3);
1829 }
1830 }
1831
1832 if (pkg ~/^php4$/) {
1833 $2 = "webserver(php)";
1834 if ($4 ~ /^[0-9]:/) {
1835 $4 = substr($4, 3);
1836 }
1837 }
1838}
1839
1840function replace_requires() {
1841
1842 # jpackages
1843 sub(/^java-devel$/, "jdk", $2);
c335e23a 1844 sub(/^axis$/, "java-axis", $2);
1845 sub(/^gnu-regexp$/, "java-gnu-regexp", $2);
1846 sub(/^gnu.regexp$/, "java-gnu-regexp", $2);
1847 sub(/^hamcrest$/, "java-hamcrest", $2);
1848 sub(/^jaas$/, "java(jaas)", $2);
1849 sub(/^jaf$/, "java(jaf)", $2);
1850 sub(/^jakarta-ant$/, "ant", $2);
1851 sub(/^jakarta-commons-httpclient$/, "java-commons-httpclient", $2);
87a659b0 1852 sub(/^jakarta-log4j$/, "java-log4j", $2);
87a659b0 1853 sub(/^jakarta-oro$/, "java-oro", $2);
c335e23a 1854 sub(/^javamail$/, "java(javamail)", $2);
1855 sub(/^jaxp$/, "java(jaxp)", $2);
1856 sub(/^jaxp_parser_impl$/, "java(jaxp_parser_impl)", $2);
1857 sub(/^jaxp_transform_impl$/, "java(jaxp_transform_impl)", $2);
1858 sub(/^jce$/, "java(jce)", $2);
1859 sub(/^jdbc-stdext$/, "java(jdbc-stdext)", $2);
1860 sub(/^jmx$/, "java(jmx)", $2);
1861 sub(/^jndi$/, "java(jndi)", $2);
1862 sub(/^jsse$/, "java(jsse)", $2);
1863 sub(/^jta$/, "java(jta)", $2);
87a659b0 1864 sub(/^ldapjdk$/, "ldapsdk", $2);
c335e23a 1865 sub(/^log4j$/, "java-log4j", $2);
1866 sub(/^logging-log4j$/, "java-log4j", $2);
1867 sub(/^oro$/, "java-oro", $2);
1868 sub(/^rhino$/, "java-rhino", $2);
87a659b0 1869 sub(/^saxon-scripts$/, "saxon", $2);
c335e23a 1870 sub(/^servlet$/, "java(servlet)", $2);
1871 sub(/^uddi4j$/, "java-uddi4j", $2);
1872 sub(/^wsdl4j$/, "java-wsdl4j", $2);
87a659b0 1873 sub(/^xalan-j2$/, "java-xalan", $2);
1874 sub(/^xalan-j$/, "java-xalan", $2);
c335e23a 1875 sub(/^xerces-j2$/, "java-xerces", $2);
1876 sub(/^xerces-j$/, "java-xerces", $2);
1877 sub(/^xml-commons-apis$/, "java-xml-commons-apis", $2);
87a659b0 1878 sub(/^xml-commons-resolver$/, "java-xml-commons-resolver", $2);
c335e23a 1879 sub(/^java\(Portlet\)$/, "java(portlet)", $2);
1880 sub(/^java\(Servlet\)$/, "java(servlet)", $2);
1881 sub(/^java\(JavaServerFaces\)$/, "java(javaserverfaces)", $2);
1882 sub(/^java\(JSP\)$/, "java(jsp)", $2);
87a659b0 1883
1884 # redhat virtual
1885 sub(/^tftp-server$/, "tftpdaemon", $2);
1886
1887 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
1888 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
1889
1890 # fedora
1891 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1892 sub(/^gnome-python2-extras$/, "python-gnome-extras", $2);
c335e23a 1893 sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2);
87a659b0 1894 sub(/^gtk2$/, "gtk+2", $2);
1895 sub(/^gtk2-devel$/, "gtk+2-devel", $2);
1896 sub(/^pygtk2-devel$/, "python-pygtk-devel", $2);
1897 sub(/^pygtk2$/, "python-pygtk", $2);
1898 sub(/^qt4-devel$/, "qt4-build", $2);
1899 sub(/^file-devel$/, "libmagic-devel", $2);
1900 sub(/^gamin-python$/, "python-gamin", $2);
1901 sub(/^pygobject2$/, "python-pygobject", $2);
1902 sub(/^tkinter$/, "python-tkinter", $2);
1903 sub(/^python-imaging$/, "python-PIL", $2);
1904 sub(/^python-imaging-tk$/, "python-PIL-tk", $2);
1905 sub(/^initscripts$/, "rc-scripts", $2);
41f549c5 1906 sub(/^libXft-devel$/, "xorg-lib-libXft-devel", $2);
c335e23a 1907 sub(/^dbus-python$/, "python-dbus", $2);
1908 sub(/^python-pygtk$/, "python-pygtk-gtk", $2);
1909 sub(/^notify-python$/, "python-pynotify", $2);
87a659b0 1910
1911 # debian
1912 sub(/^libgconf2-dev$/, "GConf2-devel", $2);
1913 sub(/^libglib2.0-dev$/, "glib2-devel", $2);
1914 sub(/^libgtk2.0-dev$/, "gtk+2-devel", $2);
1915 sub(/^libhunspell-dev$/, "hunspell-devel", $2);
1916 sub(/^libpango1.0-dev$/, "pango-devel", $2);
1917 sub(/^libxslt1-dev$/, "libxslt-devel", $2);
1918 sub(/^libgl1-mesa-dev$/, "OpenGL-devel", $2);
1919 sub(/^mesa-common-dev$/, "OpenGL-devel", $2);
1920 sub(/^libgl1-mesa-dri$/, "OpenGL", $2);
1921 sub(/^libglu1-mesa-dev$/, "OpenGL-GLU-devel", $2);
1922 sub(/^libxss-dev$/, "xorg-lib-libXScrnSaver-devel", $2);
1923 sub(/^libboost-filesystem[0-9.]+-dev$/, "boost-devel", $2);
1924 sub(/^libboost-program-options[0-9.]+-dev$/, "boost-devel", $2);
1925 sub(/^libboost-regex[0-9.]+-dev$/, "boost-devel", $2);
1926 sub(/^libboost-thread[0-9.]+-dev$/, "boost-devel", $2);
1927 sub(/^libmcrypt-dev$/, "libmcrypt-devel", $2);
1928 sub(/^libcurl4-openssl-dev$/, "curl-devel", $2);
1929 sub(/^libmhash-dev$/, "mhash-devel", $2);
1930 sub(/^libqt4-dev$/, "qt4-build", $2);
1931 sub(/^libssl-dev$/, "openssl-devel", $2);
1932
1933 replace_php_virtual_deps()
1934}
1935
20f36c3b 1936function replace_groupnames(group) {
87a659b0 1937 group = replace(group, "Amusements/Games", "Applications/Games");
20f36c3b
ER
1938 group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
1939 group = replace(group, "Application/Multimedia", "Applications/Multimedia");
1940 group = replace(group, "Application/System", "Applications/System");
1941 group = replace(group, "Applications/Compilers", "Development/Languages");
1942 group = replace(group, "Applications/Daemons", "Daemons");
1943 group = replace(group, "Applications/Internet", "Applications/Networking");
1944 group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
1945 group = replace(group, "Applications/Productivity", "X11/Applications");
1946 group = replace(group, "Database", "Applications/Databases");
1947 group = replace(group, "Development/C", "Development/Libraries");
1948 group = replace(group, "Development/Code Generators", "Development");
1949 group = replace(group, "Development/Docs", "Documentation");
1950 group = replace(group, "Development/Documentation", "Documentation");
1951 group = replace(group, "Development/Java", "Development/Languages/Java");
1952 group = replace(group, "Development/Languages/Other", "Development/Languages");;
1953 group = replace(group, "Development/Languages/Ruby", "Development/Languages");
1954 group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
1955 group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
1956 group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
1957 group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
1958 group = replace(group, "Development/Other", "Development");
1959 group = replace(group, "Development/Python", "Development/Languages/Python");
1960 group = replace(group, "Development/Testing", "Development");
1961 group = replace(group, "Emulators", "Applications/Emulators");
41f549c5 1962 group = replace(group, "File tools", "Applications/File");
20f36c3b
ER
1963 group = replace(group, "Games", "Applications/Games");
1964 group = replace(group, "Library/Development", "Development/Libraries");
1965 group = replace(group, "Networking/Deamons", "Networking/Daemons");
1966 group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
1967 group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
1968 group = replace(group, "Shells", "Applications/Shells");
1969 group = replace(group, "System Environment/Base", "Base");
1970 group = replace(group, "System Environment/Daemons", "Daemons");
1971 group = replace(group, "System Environment/Kernel", "Base/Kernel");
1972 group = replace(group, "System Environment/Libraries", "Libraries");
87a659b0 1973 group = replace(group, "System Tools", "Applications/System");
20f36c3b
ER
1974 group = replace(group, "System", "Base");
1975 group = replace(group, "System/Base", "Base");
1976 group = replace(group, "System/Kernel and hardware", "Base/Kernel");
1977 group = replace(group, "System/Libraries", "Libraries");
1978 group = replace(group, "System/Servers", "Daemons");
1979 group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
1980 group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
87a659b0 1981 group = replace(group, "User Interface/Desktops", "X11/Applications");
1982 group = replace(group, "Utilities/System", "Applications/System");
20f36c3b
ER
1983 group = replace(group, "Web/Database", "Applications/WWW");
1984 group = replace(group, "X11/GNOME", "X11/Applications");
1985 group = replace(group, "X11/GNOME/Applications", "X11/Applications");
1986 group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
1987 group = replace(group, "X11/Games", "X11/Applications/Games");
1988 group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
1989 group = replace(group, "X11/Library", "X11/Libraries");
1990 group = replace(group, "X11/Utilities", "X11/Applications");
1991 group = replace(group, "X11/XFree86", "X11");
1992 group = replace(group, "X11/Xserver", "X11/Servers");
2d5b4f5a
ER
1993
1994 return group;
1995}
1996
644b0dd9 1997# vim:ts=4:sw=4
This page took 0.510035 seconds and 4 git commands to generate.