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