]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - adapter.awk
- subst %{_pre} macro
[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(/PreReq:/, "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         # obsolete/unwanted tags
664         if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
665                 next
666         }
667
668         if (field ~ /buildroot:/) {
669                 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
670                 did_build_root = 1
671         }
672
673         # Use "License" instead of "Copyright" if it is (L)GPL or BSD
674         if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
675                 $1 = "License:"
676         }
677
678         if (field ~ /license:/) {
679                 l = substr($0, index($0, $2));
680                 if (l == "Python Software Foundation License") {
681                         l = "PSF"
682                 }
683                 $0 = "License:\t" l;
684         }
685
686
687         if (field ~ /name:/) {
688                 if ($2 == "%{name}" && name) {
689                         $2 = name
690                 }
691                 name = $2
692                 name_seen = 1;
693         }
694
695         if (field ~ /version:/) {
696                 if ($2 == "%{version}" && version) {
697                         $2 = version
698                 }
699                 version = $2
700                 version_seen = 1;
701         }
702
703         if (field ~ /release:/) {
704                 if ($2 == "%{release}" && release) {
705                         $2 = release
706                 }
707                 sub(/%atrelease /, "0.", $0)
708                 release = $2
709                 release_seen = 1;
710         }
711
712
713         if (field ~ /serial:/)
714                 $1 = "Epoch:"
715
716         if (field ~ /home-page:/)
717                 $1 = "URL:"
718
719         # proper caps
720         if (field ~ /^url:$/)
721                 $1 = "URL:"
722
723         if (field ~ /^description:$/)
724                 $1 = "\n%description\n"
725
726         # Use %{name} and %{version} in the filenames in "Source:"
727         if (field ~ /^source/ || field ~ /patch/) {
728                 n = split($2, url, /\//)
729                 if (url[n] ~ /\.gz$/) {
730                         url[n+1] = ".gz" url[n+1]
731                         sub(/\.gz$/,"",url[n])
732                 }
733                 if (url[n] ~ /\.zip$/) {
734                         url[n+1] = ".zip" url[n+1]
735                         sub(/\.zip$/,"",url[n])
736                 }
737                 if (url[n] ~ /\.tar$/) {
738                         url[n+1] = ".tar" url[n+1]
739                         sub(/\.tar$/,"",url[n])
740                 }
741                 if (url[n] ~ /\.patch$/) {
742                         url[n+1] = ".patch" url[n+1]
743                         sub(/\.patch$/,"",url[n])
744                 }
745                 if (url[n] ~ /\.bz2$/) {
746                         url[n+1] = ".bz2" url[n+1]
747                         sub(/\.bz2$/,"",url[n])
748                 }
749                 if (url[n] ~ /\.logrotate$/) {
750                         url[n+1] = ".logrotate" url[n+1]
751                         sub(/\.logrotate$/,"",url[n])
752                 }
753                 if (url[n] ~ /\.pamd$/) {
754                         url[n+1] = ".pamd" url[n+1]
755                         sub(/\.pamd$/,"",url[n])
756                 }
757
758                 # allow %{name} only in last url component
759                 s = ""
760                 for (i = 1; i <= n; i++) {
761                         url[i] = fixedsub("%{name}", name, url[i])
762                         if (s) {
763                                 s = s "/" url[i]
764                         } else {
765                                 s = url[i]
766                         }
767                 }
768                 $2 = s url[n+1]
769
770                 filename = url[n]
771                 if (name) {
772                         url[n] = fixedsub(name, "%{name}", url[n])
773                 }
774                 if (field ~ /source/) {
775                         if (version) {
776                                 url[n] = fixedsub(version, "%{version}", url[n])
777                         }
778                         if (_beta) {
779                                 url[n] = fixedsub(_beta, "%{_beta}", url[n])
780                         }
781                         if (_rc) {
782                                 url[n] = fixedsub(_rc, "%{_rc}", url[n])
783                         }
784                         if (_pre) {
785                                 url[n] = fixedsub(_pre, "%{_pre}", url[n])
786                         }
787                         if (_snap) {
788                                 url[n] = fixedsub(_snap, "%{_snap}", url[n])
789                         }
790                 }
791                 # assigning to $2 kills preamble formatting
792                 $2 = fixedsub(filename, url[n], $2)
793
794                 # sourceforge urls
795                 sub("[?]use_mirror=.*$", "", $2);
796                 sub("[?]download$", "", $2);
797                 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
798
799                 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
800                 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", $2)
801                 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", $2)
802         }
803
804
805         if (field ~ /^source:/)
806                 $1 = "Source0:"
807
808         if (field ~ /^patch:/)
809                 $1 = "Patch0:"
810
811         kill_preamble_macros();
812         format_preamble()
813
814         if (field ~ /requires/) {
815                 # atrpms
816                 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
817         }
818 }
819
820
821 # sort BR/R!
822 #
823 # NOTES:
824 # - mixing BR/R and anything else confuses this (all will be sorted together)
825 #   so don't do that.
826 # - comments leading the BR/R can not be associated,
827 #   so don't adapterize when the BR/R are mixed with comments
828 ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
829         if ($1 ~ /Pre[Rr]eq:/) {
830                 sub(/PreReq:/, "Requires:", $1);
831         }
832         format_preamble()
833 #       kill_preamble_macros(); # breaks tabbing
834
835         b_idx++;
836         l = substr($0, index($0, $2));
837         b_ktmp = b_makekey($1, l);
838         b_key[b_idx] = b_ktmp;
839         b_val[b_ktmp] = $0;
840
841         next;
842 }
843
844 /^%bcond_/ {
845         # do nothing
846         print
847         next
848 }
849
850 preamble == 1 {
851         if (b_idx > 0) {
852                 isort(b_key, b_idx);
853                 for (i = 1; i <= b_idx; i++) {
854                         v = b_val[b_key[i]];
855                         sub(/[ \t]+$/, "", v);
856                         print "" v;
857                 }
858                 b_idx = 0
859         }
860 }
861
862 # main() ;-)
863 {
864         preamble = 1
865
866         sub(/[ \t]+$/, "")
867         print
868
869         if (name_seen == 0 && name) {
870                 print "Name:\t" name
871                 name_seen = 1
872         }
873
874         if (version_seen == 0 && version) {
875                 print "Version:\t" version
876                 version_seen = 1
877         }
878
879         if (release_seen == 0 && release) {
880                 print "Release:\t" release
881                 release_seen = 1
882         }
883
884         if (did_build_root == 0) {
885 #               print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
886                 did_build_root = 1
887         }
888         if (did_groups == 0) {
889 #               print "Group:\t\tunknown"
890                 did_groups = 1
891         }
892 }
893
894
895 END {
896         if (do_not_touch_anything)
897                 exit 0
898
899         close(changelog_file)
900         while ((getline < changelog_file) > 0)
901                 print
902         system("rm -f " changelog_file)
903
904         if (did_clean == 0) {
905                 print ""
906                 print "%clean"
907                 print "rm -rf $RPM_BUILD_ROOT"
908         }
909
910         if (date == 0) {
911                 print ""
912                 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
913         }
914
915         if (has_changelog == 0)
916                 print "%changelog"
917
918         if (boc > 2)
919                 print "* %{date} PLD Team <feedback@pld-linux.org>"
920         if (boc > 1) {
921                 printf "All persons listed below can be reached at "
922                 print "<cvs_login>@pld-linux.org\n"
923         }
924         if (boc > 0)
925                 print "$" "Log:$"
926 }
927
928 function fixedsub(s1,s2,t, ind) {
929 # substitutes fixed strings (not regexps)
930         if (ind = index(t,s1))
931                 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
932         return t
933 }
934
935 # There should be one or two tabs after the colon.
936 function format_preamble()
937 {
938         if (/^#/ || /^%bcond_with/) {
939                 return;
940         }
941         sub(/:[ \t]*/, ":")
942         if (match($0, /[A-Za-z0-9(),#_ \t]+[ \t]*:[ \t]*/) == 1) {
943                 if (RLENGTH < 8)
944                         sub(/:/, ":\t\t")
945                 else
946                         sub(/:/, ":\t")
947         }
948 }
949
950 # Replace directly specified directories with macros
951 function use_macros()
952 {
953         # -m, --skip-macros, --no-macros -- skip macros subst
954         if (ENVIRON["SKIP_MACROS"]) {
955                 return
956         }
957
958         # leave inline sed lines alone
959         if (/(%{__sed}|sed) -i -e/) {
960                 return;
961         }
962
963         gsub(perl_sitearch, "%{perl_sitearch}")
964         gsub(perl_archlib, "%{perl_archlib}")
965         gsub(perl_privlib, "%{perl_privlib}")
966         gsub(perl_vendorlib, "%{perl_vendorlib}")
967         gsub(perl_vendorarch, "%{perl_vendorarch}")
968         gsub(perl_sitelib, "%{perl_sitelib}")
969         
970         gsub(py_sitescriptdir, "%{py_sitescriptdir}")
971         gsub(py_sitedir, "%{py_sitedir}")
972         gsub(py_scriptdir, "%{py_scriptdir}")
973         gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
974         gsub("%{_datadir}/applications", "%{_desktopdir}")
975         gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
976
977         gsub(bindir, "%{_bindir}")
978         gsub("%{prefix}/bin", "%{_bindir}")
979         if (prefix"/bin" == bindir)
980                 gsub("%{_prefix}/bin", "%{_bindir}")
981
982         for (c = 1; c <= NF; c++) {
983                 if ($c ~ sbindir "/fix-info-dir")
984                         continue;
985                 if ($c ~ sbindir "/webapp")
986                         continue;
987                 if ($c ~ sbindir "/chsh")
988                         continue;
989                 if ($c ~ sbindir "/usermod")
990                         continue;
991                 if ($c ~ sbindir "/chkconfig")
992                         continue;
993                 gsub(sbindir, "%{_sbindir}", $c)
994         }
995
996         gsub("%{prefix}/sbin", "%{_sbindir}")
997         if (prefix"/sbin" == sbindir)
998                 gsub("%{_prefix}/sbin", "%{_sbindir}")
999
1000         for (c = 1; c <= NF; c++) {
1001                 if ($c ~ sysconfdir "/{?cron.")
1002                         continue;
1003                 if ($c ~ sysconfdir "/{?crontab.d")
1004                         continue;
1005                 if ($c ~ sysconfdir "/{?env.d")
1006                         continue;
1007                 if ($c ~ sysconfdir "/{?logrotate.d")
1008                         continue;
1009                 if ($c ~ sysconfdir "/{?pam.d")
1010                         continue;
1011                 if ($c ~ sysconfdir "/{?profile.d")
1012                         continue;
1013                 if ($c ~ sysconfdir "/{?rc.d")
1014                         continue;
1015                 if ($c ~ sysconfdir "/{?security")
1016                         continue;
1017                 if ($c ~ sysconfdir "/{?skel")
1018                         continue;
1019                 if ($c ~ sysconfdir "/{?sysconfig")
1020                         continue;
1021                 if ($c ~ sysconfdir "/{?shrc.d")
1022                         continue;
1023                 if ($c ~ sysconfdir "/{?certs")
1024                         continue;
1025                 if ($c ~ sysconfdir "/{?X11")
1026                         continue;
1027                 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1028                         continue;
1029                 if ($c ~ sysconfdir "/{?rpm")
1030                         continue;
1031                 if ($c ~ sysconfdir "/{?bash_completion.d")
1032                         continue;
1033                 if ($c ~ sysconfdir "/{?samba")
1034                         continue;
1035                 gsub(sysconfdir, "%{_sysconfdir}", $c)
1036         }
1037
1038         gsub(docdir, "%{_docdir}")
1039         gsub(php_pear_dir, "%{php_pear_dir}")
1040
1041         for (c = 1; c <= NF; c++) {
1042                 if ($c ~ datadir "/automake")
1043                         continue;
1044                 if ($c ~ datadir "/unsermake")
1045                         continue;
1046                 if ($c ~ datadir "/file/magic.mime")
1047                         continue;
1048                 gsub(datadir, "%{_datadir}", $c)
1049         }
1050
1051         gsub("%{prefix}/share", "%{_datadir}")
1052         if (prefix"/share" == datadir)
1053                 gsub("%{_prefix}/share", "%{_datadir}")
1054
1055         # CFLAGS="-I/usr/include/ncurses is usually correct.
1056         if (!/-I\/usr\/include/) {
1057                 gsub(includedir, "%{_includedir}")
1058         }
1059
1060         gsub("%{prefix}/include", "%{_includedir}")
1061         if (prefix"/include" == includedir) {
1062                 gsub("%{_prefix}/include", "%{_includedir}")
1063         }
1064
1065         gsub(mandir, "%{_mandir}")
1066         if ($0 !~ "%{_datadir}/manual") {
1067                 gsub("%{_datadir}/man", "%{_mandir}")
1068         }
1069         gsub("%{_prefix}/share/man", "%{_mandir}")
1070         gsub("%{prefix}/share/man", "%{_mandir}")
1071         gsub("%{prefix}/man", "%{_mandir}")
1072         gsub("%{_prefix}/man", "%{_mandir}")
1073
1074         gsub(infodir, "%{_infodir}")
1075         gsub("%{prefix}/info", "%{_infodir}")
1076         gsub("%{_prefix}/info", "%{_infodir}")
1077
1078         if (prefix !~ "/X11R6") {
1079                 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1080         }
1081
1082         gsub(examplesdir, "%{_examplesdir}")
1083
1084         if (prefix != "/") {
1085                 # leave --with-foo=/usr alone
1086                 if ($0 !~ "--with.*=.*" prefix) {
1087                         for (c = 1; c <= NF; c++) {
1088                                 if ($c ~ prefix "/sbin/fix-info-dir")
1089                                         continue;
1090                                 if ($c ~ prefix "/sbin/webapp")
1091                                         continue;
1092                                 if ($c ~ prefix "/sbin/chsh")
1093                                         continue;
1094                                 if ($c ~ prefix "/sbin/usermod")
1095                                         continue;
1096                                 if ($c ~ prefix "/share/automake")
1097                                         continue;
1098                                 if ($c ~ prefix "/share/unsermake")
1099                                         continue;
1100                                 if ($c ~ prefix "/lib/sendmail")
1101                                         continue;
1102                                 if ($c ~ prefix "/lib/pkgconfig")
1103                                         continue;
1104
1105                                 # CFLAGS="-I/usr..." is usually correct.
1106                                 if (/-I\/usr/)
1107                                         continue;
1108                                 # same for LDFLAGS="-L/usr..."
1109                                 if (/-L\/usr/)
1110                                         continue;
1111
1112                                 gsub(prefix, "%{_prefix}", $c)
1113                         }
1114                 }
1115                 gsub("%{prefix}", "%{_prefix}")
1116         }
1117
1118         # replace back
1119         gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1120         gsub("%{_includedir}/freetype", "/usr/include/freetype")
1121
1122         gsub("%{PACKAGE_VERSION}", "%{version}")
1123         gsub("%{PACKAGE_NAME}", "%{name}")
1124
1125         gsub("^make$", "%{__make}")
1126         gsub("^make ", "%{__make} ")
1127         gsub("^gcc ", "%{__cc} ")
1128
1129         # mandrake specs
1130         gsub("^%make$", "%{__make}")
1131         gsub("^%make ", "%{__make} ")
1132         gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1133         gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1134         gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1135         gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
1136         gsub("^%{__install}", "install")
1137         gsub("^%{__rm}", "rm")
1138         gsub("%optflags", "%{rpmcflags}")
1139         gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1140
1141         gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1142         gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\&1")
1143         $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1144         $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
1145         $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
1146
1147         # split configure line to multiple lines
1148         if (/%configure / && !/\\$/) {
1149                 $0 = format_configure($0);
1150         }
1151
1152         gsub("%_bindir", "%{_bindir}")
1153         gsub("%_datadir", "%{_datadir}")
1154         gsub("%_iconsdir", "%{_iconsdir}")
1155         gsub("%_sbindir", "%{_sbindir}")
1156         gsub("%_mandir", "%{_mandir}")
1157         gsub("%name", "%{name}")
1158
1159         gsub("/usr/src/linux", "%{_kernelsrcdir}")
1160         gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1161 }
1162
1163 function format_configure(line,         n, a, s) {
1164         n = split(line, a, / /);
1165         s = a[1] " \\\n";
1166         for (i = 2; i <= n; i++) {
1167                 s = s "\t" a[i] " \\\n"
1168         }
1169         return s
1170 }
1171
1172
1173 # insertion sort of A[1..n]
1174 # copied from mawk manual
1175 function isort(A,n,             i,j,hold) {
1176         for (i = 2; i <= n; i++) {
1177                 hold = A[j = i]
1178                 while (A[j-1] > hold) {
1179                         j-- ; A[j+1] = A[j]
1180                 }
1181                 A[j] = hold
1182         }
1183         # sentinel A[0] = "" will be created if needed
1184 }
1185
1186
1187 function use_files_macros(      i, n, t, a)
1188 {
1189         use_macros()
1190
1191         # skip comments
1192         if (/^#/) {
1193                 return;
1194         }
1195
1196         gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1197         gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
1198
1199         # uid/gid nobody is not valid in %files
1200         if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1201                 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1202         }
1203
1204         # s[gu]id programs with globs are evil
1205         if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1206                 $0 = $0 " # FIXME no globs for suid/sgid files"
1207         }
1208
1209         # replace back
1210         gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
1211         gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
1212         gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1213         gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1214         gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1215         gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1216         gsub("%{_sysconfdir}/security", "/etc/security")
1217         gsub("%{_sysconfdir}/skel", "/etc/skel")
1218         gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1219         gsub("%{_sysconfdir}/certs", "/etc/certs")
1220         gsub("%{_sysconfdir}/init.d", "/etc/init.d")
1221
1222         # /etc/init.d -> /etc/rc.d/init.d
1223         if (!/^\/etc\/init\.d$/) {
1224                  gsub("/etc/init.d", "/etc/rc.d/init.d")
1225         }
1226
1227         if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
1228                 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1229                         $0 = "%attr(754,root,root) " $0
1230                 }
1231                 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
1232                         gsub("^%attr\\(... *,", "%attr(754,");
1233                 }
1234         }
1235
1236         if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
1237                 $0 = "%attr(755,root,root) " $0
1238         }
1239
1240         if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1241                 $0 = "%attr(755,root,root) " $0
1242         }
1243
1244         # /etc/sysconfig files
1245         # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
1246         # attr not required, allow default 644 attr
1247         if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
1248                 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace\)/) {
1249                         gsub("%config", "%config(noreplace)")
1250                 }
1251
1252                 if (/\/etc\/sysconfig\// && !/%config\(noreplace\)/) {
1253                         $NF = "%config(noreplace) " $NF
1254                 }
1255
1256                 if (/\/etc\/sysconfig\// && /%attr\(755/) {
1257                         gsub("^%attr\\(... *,", "%attr(640,");
1258                 }
1259
1260                 if (/\/etc\/sysconfig\// && !/%verify/) {
1261                         gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1262                 }
1263         }
1264
1265         # kill leading zeros
1266         if (/%attr\(0[1-9]/) {
1267                 gsub("%attr\\(0", "%attr(")
1268         }
1269
1270         # sort %verify attrs
1271         if (match($0, /%verify\(not([^)]+)\)/)) {
1272                 t = substr($0, RSTART, RLENGTH)
1273                 # kill commas: %verify(not,md5,size,mtime)
1274                 gsub(/,/, " ", t);
1275
1276                 gsub(/^%verify\(not |\)$/, "", t)
1277                 n = split(t, a, / /)
1278                 isort(a, n)
1279
1280                 s = "%verify(not"
1281                 for (i = 1 ; i <= n; i++) {
1282                         s = s " " a[i]
1283                 }
1284                 s = s ")"
1285
1286                 gsub(/%verify\(not[^)]+\)/, s)
1287         }
1288
1289         if (/%{_mandir}/) {
1290                 gsub("\.gz$", "*")
1291         }
1292
1293         # locale dir and no %lang -> bad
1294         if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
1295                 $(NF + 1) = "# FIXME consider using %find_lang"
1296         }
1297
1298         # atrpms
1299         $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1300         $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1301         $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
1302
1303         gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1304         gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1305         gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
1306
1307         gsub("%{_datadir}/applications", "%{_desktopdir}");
1308         gsub("%{_datadir}/icons", "%{_iconsdir}");
1309         gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
1310 }
1311
1312 function fill(ch, n, i) {
1313         for (i = 0; i < n; i++)
1314                 printf("%c", ch)
1315 }
1316
1317 function format_flush(line, indent, newline, word, first_word) {
1318         first_word = 1
1319         if (format_indent == -1)
1320                 newline = ""
1321         else
1322                 newline = fill(" ", format_indent) "- "
1323
1324         while (match(line, /[^\t ]+/)) {
1325                 word = substr(line, RSTART, RLENGTH)
1326                 if (length(newline) + length(word) + 1 > tw) {
1327                         print newline
1328
1329                         if (format_indent == -1)
1330                                 newline = ""
1331                         else
1332                                 newline = fill(" ", format_indent + 2)
1333                         first_word = 1
1334                 }
1335
1336                 if (first_word) {
1337                         newline = newline word
1338                         first_word = 0
1339                 } else
1340                         newline = newline " " word
1341
1342                 line = substr(line, RSTART + RLENGTH)
1343         }
1344         if (newline ~ /[^\t ]/) {
1345                 print newline
1346         }
1347 }
1348
1349 function cflags(var)
1350 {
1351         if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1352                 removed[var] = 1
1353                 return 0
1354         }
1355
1356         if (!/!\?debug/)
1357                 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
1358         return 1
1359 }
1360
1361 function demacroize(str)
1362 {
1363         if (mod_name) {
1364                 sub("%{mod_name}", mod_name, str);
1365         }
1366         if (name) {
1367                 sub("%{name}", name, str);
1368         }
1369         if (version) {
1370                 sub("%{version}", version, str);
1371         }
1372         if (_beta) {
1373                 sub("%{_beta}", _beta, str);
1374         }
1375         if (_rc) {
1376                 sub("%{_rc}", _rc, str);
1377         }
1378         if (_pre) {
1379                 sub("%{_pre}", _pre, str);
1380         }
1381         if (_snap) {
1382                 sub("%{_snap}", _snap, str);
1383         }
1384         return str;
1385 }
1386
1387 function kill_preamble_macros()
1388 {
1389         if ($1 ~ /^URL:/ || $1 ~ /^Obsoletes:/) {
1390                 # NB! assigning $2 a value breaks tabbing
1391                 $2 = demacroize($2);
1392                 # unify sourceforge url
1393                 sub("\.sf\.net/$", ".sourceforge.net/", $2);
1394         }
1395 }
1396
1397 function get_epoch(pkg, ver,    epoch)
1398 {
1399         return
1400 # should parse the BR lines more adequately:
1401 #       freetype = 2.0.0 -> correct
1402 #       freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1403
1404         shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1405         shell | getline epoch;
1406         return epoch;
1407 }
1408
1409 function format_requires(tag, value,    n, p, i, deps, ndeps) {
1410         # skip any formatting for commented out items or some weird macros
1411         if (/^#/ || /%\(/) {
1412                 return tag "\t" value
1413         }
1414         n = split(value, p, / *,? */);
1415         for (i = 1; i <= n; i++) {
1416                 if (p[i+1] ~ /[<=>]/) {
1417                         # add epoch if the version doesn't have it but BuildRequires.txt has
1418                         if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1419                                 epoch = get_epoch(p[i], p[i+2])
1420                                 if (epoch) {
1421                                         p[i+2] = epoch ":" p[i+2];
1422                                 }
1423                         }
1424                         deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1425                         i += 2;
1426                 } else {
1427                         deps[ndeps++] = p[i];
1428                 }
1429         }
1430         s = ""
1431         for (i in deps) {
1432                 s = s sprintf("%s\t%s\n", tag, deps[i]);
1433         }
1434         return substr(s, 1, length(s)-1);
1435 }
This page took 0.28197 seconds and 4 git commands to generate.