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