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