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