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