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