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