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