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