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