]> git.pld-linux.org Git - packages/adapter.git/blob - adapter.awk
- unuse (%ext_man)
[packages/adapter.git] / adapter.awk
1 #!/usr/bin/gawk -f
2 #
3 # Adapter adapts .spec files for PLD Linux.
4 #
5 # Copyright (C) 1999-2010 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 #       Jakub Bogusz <qboosh@pld-linux.org>
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 # - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
21 # - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
22 # - add "-nc" option to skip CVS interaction
23 # - sort Summary(XX)
24 # - sort Requires, BuildRequires
25 # - check if %description (lang=C) contains 8bit
26 # - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
27 # - it should change: /%source([0-9]+)/i to %{SOURCE\1}
28 # - extra quote on LDFLAGS line: https://bugs.launchpad.net/pld-linux/+bug/385836
29 # - %{with_foo:%attr()...} gets converted to %attr() %{with_foo:...} [vlc.spec]
30 # - 'R: foo ' (with traliling space) gets coverted to "R: foo\nR: " [vlc.spec @ 1.199 ]
31
32 BEGIN {
33         RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
34         SECTIONS = "^%(" RPM_SECTIONS ")"
35
36         RCSID = "$Id$"
37         rev = RCSID # TODO: parse from RCSID
38         VERSION = "0.35/" rev
39
40         PREAMBLE_TAGS = "(R|BR|Summary|Name|Version|Release|Epoch|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|Pre[Rr]eq|(Build)?Requires|Suggests|Auto(Req|Prov))"
41
42         usedigest = 0   # Enable to switch to rpm 4.4.6+ md5 digests
43
44         preamble = 1    # Is it part of preamble? Default - yes
45         boc = 4                 # Beginning of %changelog
46         bod = 0                 # Beginning of %description
47         tw = 70                 # Descriptions width
48
49         b_idx = 0               # index of BR/R arrays
50         BR_count = 0    # number of additional BuildRequires
51
52         # If variable removed, then 1 (for removing it from export)
53         removed["LDFLAGS"] = 0
54         removed["CFLAGS"] = 0
55         removed["CXXFLAGS"] = 0
56
57         # If 1, we are inside of comment block (started with /^#%/)
58         comment_block = 0
59
60         import_rpm_macros()
61
62         packages_dir = topdir
63         groups_file = packages_dir "/rpm.groups"
64
65         system("cd "packages_dir"; [ -f rpm.groups ] || cvs up rpm.groups > /dev/null")
66         system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
67
68         # Temporary file for changelog section
69         changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
70 }
71
72 # There should be a comment with CVS keywords on the first line of file.
73 FNR == 1 {
74         if (!/# \$Revision:/)   # If this line is already OK?
75                 print "# $" "Revision:$, " "$" "Date:$" # No
76         else {
77                 print $0                                # Yes
78                 next            # It is enough for first line
79         }
80 }
81
82 # If the latest line matched /%files/
83 defattr == 1 {
84         if (ENVIRON["SKIP_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                 }
90         }
91         defattr = 0
92 }
93
94 function b_makekey(a, b,        s) {
95         s = a "" b;
96         # kill bcond
97         gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
98
99         # kill commented out items
100         gsub(/^#[ \t]*/, "", s);
101
102         # force order
103         gsub(/^Summary\(/, "11Summary(", s);
104         gsub(/^Summary/, "10Summary", s);
105
106         gsub(/^Name/, "2Name", s);
107         gsub(/^Version/, "3Version", s);
108         gsub(/^Release/, "4Release", s);
109         gsub(/^Epoch/, "5Epoch", s);
110         gsub(/^License/, "5License", s);
111         gsub(/^Group/, "6Group", s);
112         gsub(/^URL/, "7URL", s);
113
114         gsub(/^BuildRequires/, "B1BuildRequires", s);
115         gsub(/^BuildConflicts/, "B2BuildConflicts", s);
116
117         gsub(/^Suggests/, "X1Suggests", s);
118         gsub(/^Provides/, "X2Provides", s);
119         gsub(/^Obsoletes/, "X3Obsoletes", s);
120         gsub(/^Conflicts/, "X4Conflicts", s);
121         gsub(/^BuildArch/, "X5BuildArch", s);
122         gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
123         gsub(/^ExcludeArch/, "X7ExcludeArch", s);
124         gsub(/^BuildRoot/, "X9BuildRoot", s);
125
126         gsub(/^AutoProv/, "Xx1AutoProv", s);
127         gsub(/^AutoReq/, "Xx2AutoReq", s);
128
129 #       printf("%s -> %s\n", a""b, s);
130         return s;
131 }
132
133 # Comments
134 /^#/ && (description == 0) {
135         if (/This file does not like to be adapterized!/) {
136                 print                   # print this message
137                 while (getline)         # print the rest of spec as it is
138                         print
139                 do_not_touch_anything = 1 # do not touch anything in END()
140                 exit(rc = 0)
141         }
142
143         # Generally, comments are printed without touching
144         sub(/[ \t]+$/, "")
145
146         if (/#[ \t]*Source.*md5/) {
147                 if (usedigest == 1) {
148                         sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
149                         sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
150                 }
151                 print $0
152                 next
153         }
154 }
155
156 /^%define/ {
157         # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
158         if ($2 == "_applnkdir") {
159                 next
160         }
161         if ($2 == "date") {
162                 date = 1
163                 if (did_files == 0) {
164                         print "%files"
165                         print ""
166                         did_files = 1
167                 }
168         }
169
170         # Do not add %define of _prefix if it already is.
171         if ($2 ~ /^_prefix/) {
172                 sub("^"prefix, $3, bindir)
173                 sub("^"prefix, $3, sbindir)
174                 sub("^"prefix, $3, libdir)
175                 sub("^"prefix, $3, datadir)
176                 sub("^"prefix, $3, includedir)
177                 prefix = $3
178         }
179
180         if ($2 ~ /_bindir/ && !/_sbindir/)
181                 bindir = $3
182         if ($2 ~ /_sbindir/)
183                 sbindir = $3
184         if ($2 ~ /_libdir/) {
185                 if ($3 ~ /^%\(/) {
186                         # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
187                         libdir = "%%%%%%%%%%%%%%"
188                 } else {
189                         libdir = $3
190                 }
191         }
192         if ($2 ~ /_sysconfdir/) {
193                 if ($3 ~ /^%\(/) {
194                         # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
195                         sysconfdir = "%%%%%%%%%%%%%%"
196                 } else {
197                         sysconfdir = $3
198                 }
199         }
200         if ($2 ~ /_datadir/) {
201                 if ($3 ~ /^%\(/) {
202                         # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
203                         datadir = "%%%%%%%%%%%%%%"
204                 } else {
205                         datadir = $3
206                 }
207         }
208         if ($2 ~ /_includedir/)
209                 includedir = $3
210         if ($2 ~ /_mandir/)
211                 mandir = $3
212         if ($2 ~ /_infodir/)
213                 infodir = $3
214         if ($2 ~ /_docdir/)
215                 docdir = $3
216
217         # version related macros
218         if ($2 ~ /^_beta$/)
219                 _beta = $3
220         if ($2 ~ /^_rc$/)
221                 _rc = $3
222         if ($2 ~ /^_pre$/)
223                 _pre = $3
224         if ($2 ~ /^_snap$/)
225                 _snap = $3
226         if ($2 ~ /^subver$/)
227                 subver = $3
228
229         # these are used usually when adapterizing external spec
230         if ($2 ~ /^name$/)
231                 name = $3
232         if ($2 ~ /^version$/)
233                 version = $3
234         if ($2 ~ /^release$/)
235                 release = $3
236
237         if ($2 ~ /^mod_name$/)
238                 mod_name = $3
239         if ($2 ~ /^_?pearname$/)
240                 pearname = $3
241
242         sub(/[ \t]+$/, "");
243         # do nothing further, otherwise adapter thinks we're at preamble
244         print
245         next
246 }
247
248 # Obsolete
249 /^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
250         next
251 }
252
253 ################
254 # %description #
255 ################
256 /^%description/, (!/^%description/ && $0 ~ SECTIONS) {
257         preamble = 0
258
259         if (/^%description/) {
260                 bod++
261                 format_line = ""
262                 format_indent = -1
263         }
264
265         # Format description
266         if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
267                 if (/^[ \t]*$/) {
268                         format_flush(format_line, format_indent)
269                         print ""
270                         format_line = ""
271                         format_indent = -1
272                 } else if (/^[ \t]*[-\*][ \t]*/) {
273                         format_flush(format_line, format_indent)
274                         match($0, /^[ \t]*/)
275                         format_indent = RLENGTH
276                         match($0, /^[ \t]*[-\*][ \t]/)
277                         format_line = substr($0, RLENGTH)
278                 } else
279                         format_line = format_line " " $0
280                 next
281         }
282
283         if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
284                 if (NF > 3 && $2 == "-l") {
285                         ll = $1
286                         for (i = 4; i <= NF; i++)
287                                 ll = ll " " $i
288                         $0 = ll " -l " $3
289                 }
290                 format_flush(format_line, format_indent)
291                 if (bod == 2) {
292                         bod = 1
293                         description = 1
294                 } else {
295                         bod = 0
296                         description = 0
297                 }
298         } else
299                 description = 1
300 }
301
302 #########
303 # %prep #
304 #########
305 /^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
306         preamble = 0
307         did_prep = 1
308
309         use_macros()
310
311         # Add '-q' to %setup
312         if (/^%setup/ && !/-q/) {
313                 sub(/^%setup/, "%setup -q")
314         }
315
316         if (/^%setup/ && name != "setup") {
317                 $0 = fixedsub(name, "%{name}", $0);
318                 $0 = fixedsub(version, "%{version}", $0);
319                 if (_beta) {
320                         $0 = fixedsub(_beta, "%{_beta}", $0);
321                 }
322                 if (_rc) {
323                         $0 = fixedsub(_rc, "%{_rc}", $0);
324                 }
325                 if (_pre) {
326                         $0 = fixedsub(_pre, "%{_pre}", $0);
327                 }
328                 if (_snap) {
329                         $0 = fixedsub(_snap, "%{_snap}", $0);
330                 }
331                 if (subver) {
332                         $0 = fixedsub(subver, "%{subver}", $0);
333                 }
334         }
335
336         if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
337                 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
338         }
339         sub("^%patch ", "%patch0 ");
340
341         # invalid in %prep
342         sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
343 }
344
345 ##########
346 # %build #
347 ##########
348 /^%build/, (!/^%build/ && $0 ~ SECTIONS) {
349         preamble = 0
350
351         if (did_prep == 0) {
352                 print "%prep"
353                 print ""
354                 did_prep = 1
355         }
356
357         use_macros()
358         use_tabs()
359
360         if (/^automake$/)
361                 sub(/$/, " -a -c")
362
363         if (/LDFLAGS/) {
364                 if (/LDFLAGS="-s"/) {
365                         removed["LDFLAGS"] = 1
366                         next
367                 } else {
368                         split($0, tmp, "LDFLAGS=")
369                         count = split(tmp[2], flags, "\"")
370                         if (flags[1] != "" && flags[1] !~ "!?debug") {
371                                 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
372                                 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
373                                 for (i = 2; i < count; i++)
374                                         $0 = $0 flags[i] "\""
375                         }
376                 }
377         }
378
379         if (/CFLAGS=/)
380                 if (cflags("CFLAGS") == 0)
381                         next
382
383         if (/CXXFLAGS=/)
384                 if (cflags("CXXFLAGS") == 0)
385                         next
386
387         if (/^export /) {
388                 if (removed["LDFLAGS"])
389                         sub(" LDFLAGS", "")
390                 if (removed["CFLAGS"])
391                         sub(" CFLAGS", "")
392                 if (removed["CXXFLAGS"])
393                         sub(" CXXFLAGS", "")
394                 # Is there still something?
395                 if (/^export[ ]*$/)
396                         next
397         }
398
399         # quote CC
400         if (/CC=%{__cc} /) {
401                 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
402         }
403         
404         # use PLD Linux macros
405         $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
406         $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
407         $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
408         $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
409         $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
410         $0 = fixedsub("automake -a -c", "%{__automake}", $0);
411         $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
412         $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
413
414         sub(/^aclocal$/, "%{__aclocal}");
415         sub(/^autoheader$/, "%{__autoheader}");
416         sub(/^autoconf$/, "%{__autoconf}");
417         sub(/^automake$/, "%{__automake}");
418         sub(/^libtoolize$/, "%{__libtoolize}");
419
420         # atrpms
421         $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
422         $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
423
424         # alt linux
425         $0 = fixedsub("%make_build", "%{__make}", $0);
426 }
427
428 ##########
429 # %clean #
430 ##########
431 /^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
432         did_clean = 1
433
434         use_macros()
435 }
436
437 ############
438 # %install #
439 ############
440 /^%install/, (!/^%install/ && $0 ~ SECTIONS) {
441
442         preamble = 0
443
444         # foreign rpms
445         sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
446         sub("%buildroot", "$RPM_BUILD_ROOT");
447         sub("%{buildroot}", "$RPM_BUILD_ROOT");
448
449         if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
450                 did_rmroot=1
451                 print "rm -rf $RPM_BUILD_ROOT"
452                 next
453         }
454
455         if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
456                 print "rm -rf $RPM_BUILD_ROOT"
457                 did_rmroot=1
458         }
459
460         if (tmpdir) {
461                 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
462                 gsub(buildroot, "$RPM_BUILD_ROOT")
463         }
464
465         if (!/%{_lib}/) {
466                 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
467         }
468
469         use_macros()
470
471         # 'install -d' instead 'mkdir -p'
472         if (/mkdir -p/)
473                 sub(/mkdir -p/, "install -d")
474
475         # cp -a already implies cp -r
476         sub(/^cp -ar/, "cp -a")
477
478         # No '-u root' or '-g root' for 'install'
479         if (/^install/ && /-[ug][ \t]*root/)
480                 gsub(/-[ug][ \t]*root /, "")
481
482         if (/^install/ && /-m[ \t]*[0-9]+/)
483                 gsub(/-m[ \t]*[0-9]+ /, "")
484
485         # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
486         if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
487                 next
488
489         # No lines contain 'chmod' if it sets the modes to '644'
490         if ($1 ~ /chmod/ && $2 ~ /644/)
491                 next
492
493         # atrpms
494         $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
495
496         # alt linux
497         $0 = fixedsub("%make_install DESTDIR=$RPM_BUILD_ROOT install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
498 }
499
500 ##########
501 # %files #
502 ##########
503 /^%files/, (!/^%files/ && $0 ~ SECTIONS) {
504         preamble = 0
505         did_files = 1
506
507         if ($0 ~ /^%files/)
508                 defattr = 1
509
510         if (!use_files_macros()) {
511                 next
512         }
513 }
514
515 ##############
516 # %changelog #
517 ##############
518 /^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
519         preamble = 0
520         has_changelog = 1
521         skip = 0
522         # There should be some CVS keywords on the first line of %changelog.
523         if (boc == 3) {
524                 if ($0 !~ _cvsmailfeedback) {
525                         print "* %{date} " _cvsmailfeedback > changelog_file
526                 } else {
527                         skip = 1
528                 }
529                 boc = 2
530         }
531         if (boc == 2 && !skip) {
532                 if (!/All persons listed below/) {
533                         printf "All persons listed below can be reached at " > changelog_file
534                         print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
535                 } else {
536                         skip = 1
537                 }
538                 boc = 1
539         }
540         if (boc == 1 && !skip) {
541                 if (!/^$/) {
542                         if (!/\$.*Log:.*\$/) {
543                                 print "$" "Log:$" > changelog_file
544                         }
545                         boc = 0
546                 }
547         }
548         # Define date macro.
549         if (boc == 4) {
550                 if (date == 0) {
551                         printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
552                         print " date +\"%a %b %d %Y\"`)" > changelog_file
553                         date = 1
554                 }
555                 boc = 3
556         }
557
558         sub(/[ \t]+$/, "");
559         if (!/^%[a-z]+$/ || /changelog/) {
560                 # stop changelog if "real" changelog starts
561                 if (boc == 0 && /^\* /) {
562                         boc = -1
563                 }
564                 if (boc == -1) {
565                         next;
566                 }
567                 print > changelog_file
568         } else {
569                 print
570         }
571         next
572 }
573
574 ###########
575 # SCRIPTS #
576 ###########
577 /^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
578         preamble = 0
579
580         if (gsub("/usr/sbin/useradd", "%useradd")) {
581                 sub(" 2> /dev/null \|\| :", "");
582                 sub(" >/dev/null 2>&1 \|\|:", "");
583         }
584
585         # %useradd and %groupadd may not be wrapped
586         if (/%(useradd|groupadd).*\\$/) {
587                 a = $0; getline;
588                 sub(/^[\s\t]*/, "");
589                 $0 = substr(a, 1, length(a) - 1) $0;
590         }
591         use_script_macros()
592 }
593
594 /^%post/, (!/^%post/ && $0 ~ SECTIONS) {
595         preamble = 0
596         use_macros()
597 }
598 /^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
599         preamble = 0
600         use_macros()
601 }
602 /^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
603         preamble = 0
604         use_script_macros()
605 }
606 /^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
607         preamble = 0
608         use_script_macros()
609 }
610 /^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
611         preamble = 0
612         use_script_macros()
613 }
614 /^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
615         preamble = 0
616         use_script_macros()
617 }
618 /^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
619         preamble = 0
620         use_script_macros()
621 }
622 /^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
623         preamble = 0
624         use_script_macros()
625 }
626 /^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
627         preamble = 0
628         use_script_macros()
629 }
630 /^%check/, (!/^%check/ && $0 ~ SECTIONS) {
631         preamble = 0
632         use_script_macros()
633 }
634
635 #############
636 # PREAMBLES #
637 #############
638 preamble == 1 {
639         # There should not be a space after the name of field
640         # and before the colon.
641         sub(/[ \t]*:/, ":")
642
643         if (/^%perl_module_wo_prefix/) {
644                 name = $2
645                 version = $3
646                 release = "0." fixedsub(".%{disttag}.at", "", $4)
647         }
648
649         field = tolower($1)
650         if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
651                 sub(/\.$/, "", $0);
652         }
653         if (field ~ /group(\([^)]+\)):/)
654                 next
655         if (field ~ /group:/) {
656                 format_preamble()
657                 group = $0;
658                 sub(/^[^ \t]*[ \t]*/, "", group);
659                 group = replace_groupnames(group);
660                 $0 = "Group:\t\t" group
661
662                 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
663                         x11 = 1
664
665                 byl_plik_z_groupmi = 0
666                 byl_opis_grupy = 0
667                 while ((getline linia_grup < groups_file) > 0) {
668                         byl_plik_z_groupmi = 1
669                         if (linia_grup == group) {
670                                 byl_opis_grupy = 1
671                                 break
672                         }
673                 }
674
675                 if (!byl_plik_z_groupmi)
676                         print "######\t\t" groups_file ": no such file"
677                 else if (!byl_opis_grupy)
678                         print "######\t\t" "Unknown group!"
679
680                 close(groups_file)
681                 did_groups = 1
682         }
683
684         if (field ~ /prereq:/) {
685                 sub(/Pre[Rr]eq:/, "Requires:", $1);
686         }
687
688         # split (build)requires, obsoletes on commas
689         if (field ~ /(obsoletes|requires|provides|conflicts|suggests):/ && NF > 2) {
690                 value = substr($0, index($0, $2));
691                 $0 = format_requires($1, value);
692         }
693
694         # BR: tar (and others) is to common (rpm-build requires it)
695         if (field ~ /^buildrequires:/) {
696                 l = substr($0, index($0, $2));
697                 if (l == "awk" ||
698                         l == "binutils" ||
699                         l == "bzip2" ||
700                         l == "cpio" ||
701                         l == "diffutils" ||
702                         l == "elfutils" ||
703                         l == "fileutils" ||
704                         l == "findutils" ||
705                         l == "glibc-devel" ||
706                         l == "grep" ||
707                         l == "gzip" ||
708                         l == "make" ||
709                         l == "patch" ||
710                         l == "sed" ||
711                         l == "sh-utils" ||
712                         l == "tar" ||
713                         l == "textutils") {
714                         next
715                 }
716
717                 replace_requires();
718         }
719
720         if (field ~ /^requires:/ || field ~ /^requires\(/) {
721                 replace_requires();
722         }
723
724
725         # obsolete/unwanted tags
726         if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
727                 next
728         }
729
730         if (field ~ /buildroot:/) {
731                 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
732                 did_build_root = 1
733         }
734
735         # Use "License" instead of "Copyright" if it is (L)GPL or BSD
736         if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
737                 $1 = "License:"
738         }
739
740         # ease updating from debian .dsc
741         if (field ~ /homepage:/) {
742                 $1 = "URL:"
743         }
744
745         # suse
746         if (field ~ /recommends:/) {
747                 $1 = "Suggests:"
748         }
749
750         if ($3 == "==") {
751                 $3 = "="
752         }
753
754         if (field ~ /license:/) {
755                 l = substr($0, index($0, $2));
756                 if (l == "Python Software Foundation License") {
757                         l = "PSF"
758                 }
759                 if (l == "Apache License 2.0" || l == "Apache 2.0" || l == "Apache License Version 2.0" || l == "Apache License, Version 2.0" || l == "Apache Software License v2") {
760                         l = "Apache v2.0"
761                 }
762                 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
763                         l = "Apache"
764                 }
765                 if (l == "Apache-style License" || l == "Apache-style Software License") {
766                         l = "Apache-like"
767                 }
768                 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
769                         l = "Apache v1.1"
770                 }
771                 if (l == "GPLv2") {
772                         l = "GPL v2"
773                 }
774                 if (l == "GPLv2+") {
775                         l = "GPL v2+"
776                 }
777                 if (l == "GPL v2 or later") {
778                         l = "GPL v2+"
779                 }
780                 if (l == "LGPL v2.0 only") {
781                         l = "LGPL v2"
782                 }
783                 if (l == "LGPLv2+") {
784                         l = "LGPL v2+"
785                 }
786                 if (l == "GPLv3") {
787                         l = "GPL v3"
788                 }
789                 if (l == "GPLv3+") {
790                         l = "GPL v3+"
791                 }
792                 if (l == "MPLv1.1") {
793                         l = "MPL v1.1"
794                 }
795                 $0 = "License:\t" l;
796         }
797
798
799         if (field ~ /name:/) {
800                 if ($2 == "%{name}" && name) {
801                         $2 = name
802                 }
803                 name = $2
804                 name_seen = 1;
805         }
806
807         if (field ~ /version:/) {
808                 if ($2 == "%{version}" && version) {
809                         $2 = version
810                 }
811                 version = $2
812                 version_seen = 1;
813         }
814
815         if (field ~ /release:/) {
816                 if ($2 == "%{release}" && release) {
817                         $2 = release
818                 }
819                 sub(/%atrelease /, "0.", $0)
820                 release = $2
821                 release_seen = 1;
822         }
823
824
825         if (field ~ /serial:/)
826                 $1 = "Epoch:"
827
828         if (field ~ /home-page:/)
829                 $1 = "URL:"
830
831         # proper caps
832         if (field ~ /^url:$/)
833                 $1 = "URL:"
834
835         if (field ~ /^patch/)
836                 $1 = "Patch" substr(field, 6);
837
838         if (field ~ /^description:$/)
839                 $1 = "\n%description\n"
840
841         # Use %{name} and %{version} in the filenames in "Source:"
842         if (field ~ /^source/ || field ~ /patch/) {
843                 n = split($2, url, /\//)
844                 if (url[n] ~ /\.gz$/) {
845                         url[n+1] = ".gz" url[n+1]
846                         sub(/\.gz$/,"",url[n])
847                 }
848                 if (url[n] ~ /\.zip$/) {
849                         url[n+1] = ".zip" url[n+1]
850                         sub(/\.zip$/,"",url[n])
851                 }
852                 if (url[n] ~ /\.tar$/) {
853                         url[n+1] = ".tar" url[n+1]
854                         sub(/\.tar$/,"",url[n])
855                 }
856                 if (url[n] ~ /\.patch$/) {
857                         url[n+1] = ".patch" url[n+1]
858                         sub(/\.patch$/,"",url[n])
859                 }
860                 if (url[n] ~ /\.bz2$/) {
861                         url[n+1] = ".bz2" url[n+1]
862                         sub(/\.bz2$/,"",url[n])
863                 }
864                 if (url[n] ~ /\.logrotate$/) {
865                         url[n+1] = ".logrotate" url[n+1]
866                         sub(/\.logrotate$/,"",url[n])
867                 }
868                 if (url[n] ~ /\.pamd$/) {
869                         url[n+1] = ".pamd" url[n+1]
870                         sub(/\.pamd$/,"",url[n])
871                 }
872
873                 # allow %{name} only in last url component
874                 s = ""
875                 for (i = 1; i <= n; i++) {
876                         url[i] = fixedsub("%{name}", name, url[i])
877                         if (s) {
878                                 s = s "/" url[i]
879                         } else {
880                                 s = url[i]
881                         }
882                 }
883                 $2 = s url[n+1]
884
885                 filename = url[n]
886                 if (name) {
887                         url[n] = fixedsub(name, "%{name}", url[n])
888                 }
889                 if (field ~ /source/) {
890                         if (version) {
891                                 url[n] = fixedsub(version, "%{version}", url[n])
892                         }
893                         if (_beta) {
894                                 url[n] = fixedsub(_beta, "%{_beta}", url[n])
895                         }
896                         if (_rc) {
897                                 url[n] = fixedsub(_rc, "%{_rc}", url[n])
898                         }
899                         if (_pre) {
900                                 url[n] = fixedsub(_pre, "%{_pre}", url[n])
901                         }
902                         if (_snap) {
903                                 url[n] = fixedsub(_snap, "%{_snap}", url[n])
904                         }
905                         if (subver) {
906                                 url[n] = fixedsub(subver, "%{subver}", url[n])
907                         }
908                 }
909                 # assigning to $2 kills preamble formatting
910                 $2 = fixedsub(filename, url[n], $2)
911
912                 $2 = unify_url($2)
913         }
914
915
916         if (field ~ /^source:/)
917                 $1 = "Source0:"
918
919         if (field ~ /^patch:/)
920                 $1 = "Patch0:"
921
922         kill_preamble_macros();
923         format_preamble()
924
925         if (field ~ /requires/) {
926                 # atrpms
927                 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
928         }
929 }
930
931 /^%bcond_/ {
932         # do nothing
933         print
934         next
935 }
936
937 # sort BR/R!
938 #
939 # NOTES:
940 # - mixing BR/R and anything else confuses this (all will be sorted together)
941 #       so don't do that.
942 # - comments leading the BR/R can not be associated,
943 #       so don't adapterize when the BR/R are mixed with comments
944 ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS ":", $0 ~ PREAMBLE_TAGS ":"{
945         if ($1 ~ /Pre[Rr]eq:/) {
946                 sub(/Pre[Rr]eq:/, "Requires:", $1);
947         }
948         if ($1 == "BR:" ) {
949                 $1 = "BuildRequires:"
950         }
951         if ($1 == "R:" ) {
952                 $1 = "Requires:"
953         }
954         format_preamble()
955 #       kill_preamble_macros(); # breaks tabbing
956
957         b_idx++;
958         l = substr($0, index($0, $2));
959         b_ktmp = b_makekey($1, l);
960         b_key[b_idx] = b_ktmp;
961         b_val[b_ktmp] = $0;
962
963         next;
964 }
965
966 preamble == 1 {
967         if (b_idx > 0) {
968                 isort(b_key, b_idx);
969                 for (i = 1; i <= b_idx; i++) {
970                         v = b_val[b_key[i]];
971                         sub(/[ \t]+$/, "", v);
972                         print "" v;
973                 }
974                 b_idx = 0
975         }
976 }
977
978 # main() ;-)
979 {
980         preamble = 1
981
982         sub(/[ \t]+$/, "")
983         print
984
985         if (name_seen == 0 && name) {
986                 print "Name:\t\t" name
987                 name_seen = 1
988         }
989
990         if (version_seen == 0 && version) {
991                 print "Version:\t" version
992                 version_seen = 1
993         }
994
995         if (release_seen == 0 && release) {
996                 print "Release:\t" release
997                 release_seen = 1
998         }
999
1000         if (did_build_root == 0) {
1001 #               print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
1002                 did_build_root = 1
1003         }
1004         if (did_groups == 0) {
1005 #               print "Group:\t\tunknown"
1006                 did_groups = 1
1007         }
1008 }
1009
1010
1011 END {
1012         if (do_not_touch_anything) {
1013                 exit(rc)
1014         }
1015
1016         # TODO: need to output these in proper place
1017         if (BR_count > 0) {
1018                 for (i = 0; i <= BR_count; i++) {
1019                         print BR[i];
1020                 }
1021         }
1022
1023         close(changelog_file)
1024         while ((getline < changelog_file) > 0)
1025                 print
1026         system("rm -f " changelog_file)
1027
1028         if (did_clean == 0) {
1029                 print ""
1030                 print "%clean"
1031                 print "rm -rf $RPM_BUILD_ROOT"
1032         }
1033
1034         if (date == 0) {
1035                 print ""
1036                 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1037         }
1038
1039         if (has_changelog == 0) {
1040                 print "%changelog"
1041         }
1042
1043         if (boc > 2) {
1044                 print "* %{date} PLD Team <feedback@pld-linux.org>"
1045         }
1046         if (boc > 1) {
1047                 printf "All persons listed below can be reached at "
1048                 print "<cvs_login>@pld-linux.org\n"
1049         }
1050         if (boc > 0) {
1051                 print "$" "Log:$"
1052         }
1053 }
1054
1055 # substitutes fixed strings (not regexps)
1056 function fixedsub(s1,s2,t, ind) {
1057         if (ind = index(t,s1))
1058                 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1059         return t
1060 }
1061
1062 # replace s with s2 if it equals to s1
1063 function replace(s, s1, s2) {
1064         if (s == s1) {
1065                 return s2;
1066         } else {
1067                 return s;
1068         }
1069 }
1070
1071 # There should be one or two tabs after the colon.
1072 function format_preamble()
1073 {
1074         if (/^#/ || /^%bcond_with/) {
1075                 return;
1076         }
1077         sub(/:[ \t]*/, ":")
1078         if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1079                 if (RLENGTH < 8) {
1080                         sub(/:/, ":\t\t")
1081                 } else {
1082                         sub(/:/, ":\t")
1083                 }
1084         }
1085 }
1086
1087 # Replace directly specified directories with macros
1088 function use_macros()
1089 {
1090         # -m, --skip-macros, --no-macros -- skip macros subst
1091         if (ENVIRON["SKIP_MACROS"]) {
1092                 return
1093         }
1094
1095         # leave inline sed lines alone
1096         if (/(%{__sed}|sed) -i -e/) {
1097                 return;
1098         }
1099
1100         sub("%{_defaultdocdir}", "%{_docdir}");
1101         sub("%{_bindir}/perl", "%{__perl}");
1102         sub("%{_bindir}/python", "%{__python}");
1103
1104         gsub(infodir, "%{_infodir}")
1105
1106         gsub(perl_sitearch, "%{perl_sitearch}")
1107         gsub(perl_archlib, "%{perl_archlib}")
1108         gsub(perl_privlib, "%{perl_privlib}")
1109         gsub(perl_vendorlib, "%{perl_vendorlib}")
1110         gsub(perl_vendorarch, "%{perl_vendorarch}")
1111         gsub(perl_sitelib, "%{perl_sitelib}")
1112         
1113         gsub(py_sitescriptdir, "%{py_sitescriptdir}")
1114         gsub(py_sitedir, "%{py_sitedir}")
1115         gsub(py_scriptdir, "%{py_scriptdir}")
1116         gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
1117
1118         gsub(ruby_archdir, "%{ruby_archdir}")
1119         gsub(ruby_ridir, "%{ruby_ridir}")
1120         gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1121         gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1122         gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1123         gsub(ruby_rdocdir, "%{ruby_rdocdir}")
1124
1125         gsub("%{_datadir}/applications", "%{_desktopdir}")
1126         gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
1127         gsub("%{_datadir}/java", "%{_javadir}")
1128
1129         gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
1130         gsub(pkgconfigdir, "%{_pkgconfigdir}")
1131
1132         gsub(libdir, "%{_libdir}")
1133         gsub(javadir, "%{_javadir}")
1134
1135         gsub(bindir, "%{_bindir}")
1136         gsub("%{prefix}/bin", "%{_bindir}")
1137         if (prefix"/bin" == bindir)
1138                 gsub("%{_prefix}/bin", "%{_bindir}")
1139
1140         for (c = 1; c <= NF; c++) {
1141                 if ($c ~ sbindir "/fix-info-dir")
1142                         continue;
1143                 if ($c ~ sbindir "/webapp")
1144                         continue;
1145                 if ($c ~ sbindir "/ldconfig")
1146                         continue;
1147                 if ($c ~ sbindir "/chsh")
1148                         continue;
1149                 if ($c ~ sbindir "/usermod")
1150                         continue;
1151                 if ($c ~ sbindir "/chkconfig")
1152                         continue;
1153                 if ($c ~ sbindir "/installzope(product|3package)")
1154                         continue;
1155                 gsub(sbindir, "%{_sbindir}", $c)
1156         }
1157
1158         gsub("%{prefix}/sbin", "%{_sbindir}")
1159         if (prefix"/sbin" == sbindir) {
1160                 gsub("%{_prefix}/sbin", "%{_sbindir}")
1161         }
1162
1163         for (c = 1; c <= NF; c++) {
1164                 if ($c ~ sysconfdir "/{?cron.")
1165                         continue;
1166                 if ($c ~ sysconfdir "/{?crontab.d")
1167                         continue;
1168                 if ($c ~ sysconfdir "/{?env.d")
1169                         continue;
1170                 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
1171                         continue;
1172                 if ($c ~ sysconfdir "/{?udev")
1173                         continue;
1174                 if ($c ~ sysconfdir "/{?hotplug")
1175                         continue;
1176                 if ($c ~ sysconfdir "/{?logrotate.d")
1177                         continue;
1178                 if ($c ~ sysconfdir "/{?pam.d")
1179                         continue;
1180                 if ($c ~ sysconfdir "/{?profile.d")
1181                         continue;
1182                 if ($c ~ sysconfdir "/{?rc.d")
1183                         continue;
1184                 if ($c ~ sysconfdir "/{?security")
1185                         continue;
1186                 if ($c ~ sysconfdir "/{?skel")
1187                         continue;
1188                 if ($c ~ sysconfdir "/{?sysconfig")
1189                         continue;
1190                 if ($c ~ sysconfdir "/{?shrc.d")
1191                         continue;
1192                 if ($c ~ sysconfdir "/{?certs")
1193                         continue;
1194                 if ($c ~ sysconfdir "/{?X11")
1195                         continue;
1196                 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1197                         continue;
1198                 if ($c ~ sysconfdir "/{?rpm")
1199                         continue;
1200                 if ($c ~ sysconfdir "/{?bash_completion.d")
1201                         continue;
1202                 if ($c ~ sysconfdir "/{?samba")
1203                         continue;
1204                 if ($c ~ sysconfdir "/shells")
1205                         continue;
1206                 if ($c ~ sysconfdir "/ppp")
1207                         continue;
1208                 if ($c ~ sysconfdir "/dbus-1")
1209                         continue;
1210                 if ($c ~ sysconfdir "/tmpwatch")
1211                         continue;
1212                 if ($c ~ sysconfdir "/acpi")
1213                         continue;
1214                 if ($c ~ sysconfdir "/apm")
1215                         continue;
1216                 gsub(sysconfdir, "%{_sysconfdir}", $c)
1217         }
1218
1219         gsub(docdir, "%{_docdir}")
1220
1221         gsub(kdedocdir, "%{_kdedocdir}")
1222
1223         gsub(gtkdocdir, "%{_gtkdocdir}")
1224         gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1225
1226         gsub(php_pear_dir, "%{php_pear_dir}")
1227         gsub(php_data_dir, "%{php_data_dir}")
1228
1229         for (c = 1; c <= NF; c++) {
1230                 if ($c ~ datadir "/automake")
1231                         continue;
1232                 if ($c ~ datadir "/unsermake")
1233                         continue;
1234                 if ($c ~ datadir "/file/magic.mime")
1235                         continue;
1236                 gsub(datadir, "%{_datadir}", $c)
1237         }
1238
1239         gsub("%{prefix}/share", "%{_datadir}")
1240         if (prefix"/share" == datadir)
1241                 gsub("%{_prefix}/share", "%{_datadir}")
1242
1243         # CFLAGS="-I/usr/include/ncurses is usually correct.
1244         if (!/-I\/usr\/include/) {
1245                 gsub(includedir, "%{_includedir}")
1246         }
1247
1248         gsub("%{prefix}/include", "%{_includedir}")
1249         if (prefix"/include" == includedir) {
1250                 gsub("%{_prefix}/include", "%{_includedir}")
1251         }
1252
1253         gsub(mandir, "%{_mandir}")
1254         if ($0 !~ "%{_datadir}/manual") {
1255                 gsub("%{_datadir}/man", "%{_mandir}")
1256         }
1257         gsub("%{_prefix}/share/man", "%{_mandir}")
1258         gsub("%{prefix}/share/man", "%{_mandir}")
1259         gsub("%{prefix}/man", "%{_mandir}")
1260         gsub("%{_prefix}/man", "%{_mandir}")
1261
1262         gsub(infodir, "%{_infodir}")
1263         gsub("%{prefix}/info", "%{_infodir}")
1264         gsub("%{_prefix}/info", "%{_infodir}")
1265
1266         if (prefix !~ "/X11R6") {
1267                 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1268         }
1269
1270         gsub(examplesdir, "%{_examplesdir}")
1271
1272         if (prefix != "/") {
1273                 # leave --with-foo=/usr alone
1274                 if ($0 !~ "--with.*=.*" prefix) {
1275                         for (c = 1; c <= NF; c++) {
1276                                 if ($c ~ prefix "/sbin/fix-info-dir")
1277                                         continue;
1278                                 if ($c ~ prefix "/sbin/webapp")
1279                                         continue;
1280                                 if ($c ~ prefix "/sbin/chsh")
1281                                         continue;
1282                                 if ($c ~ prefix "/sbin/usermod")
1283                                         continue;
1284                                 if ($c ~ prefix "/sbin/installzope(product|3package)")
1285                                         continue;
1286                                 if ($c ~ prefix "/share/automake")
1287                                         continue;
1288                                 if ($c ~ prefix "/share/unsermake")
1289                                         continue;
1290                                 if ($c ~ prefix "/lib/sendmail")
1291                                         continue;
1292                                 if ($c ~ prefix "/lib/pkgconfig")
1293                                         continue;
1294
1295                                 # CFLAGS="-I/usr..." is usually correct.
1296                                 if (/-I\/usr/)
1297                                         continue;
1298                                 # same for LDFLAGS="-L/usr..."
1299                                 if (/-L\/usr/)
1300                                         continue;
1301
1302                                 gsub(prefix, "%{_prefix}", $c)
1303                         }
1304                 }
1305                 gsub("%{prefix}", "%{_prefix}")
1306         }
1307
1308         # replace back
1309         gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1310         gsub("%{_includedir}/freetype", "/usr/include/freetype")
1311
1312         gsub("%{PACKAGE_VERSION}", "%{version}")
1313         gsub("%{PACKAGE_NAME}", "%{name}")
1314
1315         gsub("^make$", "%{__make}")
1316         gsub("^make ", "%{__make} ")
1317         gsub("^gcc ", "%{__cc} ")
1318         gsub("^rm --interactive=never ", "%{__rm} ")
1319
1320         # fedora
1321         gsub("%{ruby_sitearch}", "%{ruby_sitearchdir}")
1322         gsub("%{python_sitearch}", "%{py_sitedir}")
1323         gsub("%{python_sitelib}", "%{py_sitescriptdir}")
1324
1325         # alt linux
1326         gsub("%_man1dir", "%{_mandir}/man1")
1327
1328         # mandrake specs
1329         gsub("^%make$", "%{__make}")
1330         gsub("^%make ", "%{__make} ")
1331         gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1332         gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1333         gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1334         gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
1335         gsub("^%{__install}", "install")
1336         gsub("%optflags", "%{rpmcflags}")
1337         gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1338
1339         gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1340         gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
1341         $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1342         $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
1343         $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
1344         $0 = fixedsub("%__install", "install", $0);
1345
1346         # split configure line to multiple lines
1347         if (/%configure / && !/\\$/) {
1348                 $0 = format_configure($0);
1349         }
1350
1351         gsub("%_bindir", "%{_bindir}")
1352         gsub("%_datadir", "%{_datadir}")
1353         gsub("%_iconsdir", "%{_iconsdir}")
1354         gsub("%_sbindir", "%{_sbindir}")
1355         gsub("%_mandir", "%{_mandir}")
1356         gsub("%name", "%{name}")
1357         gsub(/%__rm/, "rm");
1358         gsub(/%__mkdir_p/, "install -d");
1359         gsub(/%__cp/, "cp");
1360         gsub(/%__ln_s/, "ln -s");
1361         gsub(/%__sed/, "%{__sed}");
1362         gsub(/%__cat/, "cat");
1363         gsub(/%__chmod/, "chmod");
1364
1365         gsub("/usr/src/linux", "%{_kernelsrcdir}")
1366         gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1367
1368         if (/^ant / || /^%{ant}/) {
1369                 sub(/^ant/, "%ant")
1370                 sub(/^%{ant}/, "%ant")
1371                 add_br("BuildRequires:  jpackage-utils");
1372                 add_br("BuildRequires:  rpmbuild(macros) >= 1.300");
1373         }
1374
1375         $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1376         $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
1377 }
1378
1379 function format_configure(line,         n, a, s) {
1380         n = split(line, a, / /);
1381         s = a[1] " \\\n";
1382         for (i = 2; i <= n; i++) {
1383                 s = s "\t" a[i] " \\\n"
1384         }
1385         return s
1386 }
1387
1388
1389 # insertion sort of A[1..n]
1390 # copied from mawk manual
1391 function isort(A,n,             i,j,hold) {
1392         for (i = 2; i <= n; i++) {
1393                 hold = A[j = i]
1394                 while (A[j-1] > hold) {
1395                         j-- ; A[j+1] = A[j]
1396                 }
1397                 A[j] = hold
1398         }
1399         # sentinel A[0] = "" will be created if needed
1400 }
1401
1402
1403 function use_files_macros(      i, n, t, a, l)
1404 {
1405         use_macros()
1406
1407         # skip comments
1408         if (/^#/) {
1409                 return 1;
1410         }
1411
1412         sub("^%doc %{_mandir}", "%{_mandir}")
1413
1414         gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1415         gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
1416
1417         # uid/gid nobody is not valid in %files
1418         if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1419                 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1420         }
1421
1422         # s[gu]id programs with globs are evil
1423         if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1424                 $0 = $0 " # FIXME no globs for suid/sgid files"
1425         }
1426
1427         # replace back
1428         gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
1429         gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
1430         gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1431         gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1432         gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1433         gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1434         gsub("%{_sysconfdir}/security", "/etc/security")
1435         gsub("%{_sysconfdir}/skel", "/etc/skel")
1436         gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1437         gsub("%{_sysconfdir}/certs", "/etc/certs")
1438         gsub("%{_sysconfdir}/init.d", "/etc/init.d")
1439         gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
1440         gsub("%{_sysconfdir}/pki", "/etc/pki")
1441         gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
1442
1443         # /etc/init.d -> /etc/rc.d/init.d
1444         if (!/^\/etc\/init\.d$/) {
1445                  gsub("/etc/init.d", "/etc/rc.d/init.d")
1446         }
1447
1448         if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
1449                 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1450                         $0 = "%attr(754,root,root) " $0
1451                 }
1452                 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
1453                         gsub("^%attr\\(... *,", "%attr(754,");
1454                 }
1455         }
1456
1457         if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
1458                 $0 = "%attr(755,root,root) " $0
1459         }
1460
1461         if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1462                 $0 = "%attr(755,root,root) " $0
1463         }
1464
1465         # remove attrs from man pages
1466         if (/%{_mandir}/ && /^%attr/) {
1467                 sub("^%attr\\(.*\\) *", "");
1468         }
1469
1470         # /etc/sysconfig files
1471         # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
1472         # attr not required, allow default 644 attr
1473         if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
1474                 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
1475                         gsub("%config", "%config(noreplace)")
1476                 }
1477
1478                 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
1479                         $NF = "%config(noreplace) " $NF
1480                 }
1481
1482                 if (/\/etc\/sysconfig\// && /%attr\(755/) {
1483                         gsub("^%attr\\(... *,", "%attr(640,");
1484                 }
1485
1486                 if (/\/etc\/sysconfig\// && !/%verify/) {
1487                         gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1488                 }
1489         }
1490
1491         # kill leading zeros
1492         if (/%attr\(0[1-9]/) {
1493                 gsub("%attr\\(0", "%attr(")
1494         }
1495
1496         # kill leading whitespace
1497         gsub(/^ +/, "");
1498
1499         # kill default attrs
1500         gsub(/%dir %attr\(755,root,root\)/, "%dir");
1501         gsub(/%attr\(755,root,root\) %dir/, "%dir");
1502         if (!/%dir/) {
1503                 gsub(/%attr\(644,root,root\) /, "");
1504         }
1505
1506         # sort %verify attrs
1507         if (match($0, /%verify\(not([^)]+)\)/)) {
1508                 t = substr($0, RSTART, RLENGTH)
1509                 # kill commas: %verify(not,md5,size,mtime)
1510                 gsub(/,/, " ", t);
1511
1512                 gsub(/^%verify\(not |\)$/, "", t)
1513                 n = split(t, a, / /)
1514                 isort(a, n)
1515
1516                 s = "%verify(not"
1517                 for (i = 1 ; i <= n; i++) {
1518                         s = s " " a[i]
1519                 }
1520                 s = s ")"
1521
1522                 gsub(/%verify\(not[^)]+\)/, s)
1523         }
1524
1525         if (/%{_mandir}/) {
1526                 gsub("\.gz$", "*")
1527                 gsub("%ext_man$", "*")
1528         }
1529
1530         # locale dir and no %lang -> bad
1531         if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
1532                 $(NF + 1) = "# FIXME consider using %find_lang"
1533         }
1534
1535         # python egg-infos
1536         if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
1537                 # tests:
1538                 #%{py_sitedir}/*-py2.4.egg-info
1539                 #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
1540                 #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
1541                 #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
1542
1543                 l = index($0, "/");
1544                 t = substr($0, 0, l);
1545                 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
1546                 if (match(s, "[^-]+$")) {
1547 #printf("s[%s]; start[%d]; length[%d]\n", s, RSTART, RLENGTH);
1548                         if (RSTART > 1) {
1549                                 s = substr(s, 0, RSTART - 1);
1550                         }
1551 #printf("s2[%s]\n", s);
1552                         print "%if \"%{py_ver}\" > \"2.4\""
1553 #print t "/.+.egg-info"
1554                         gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
1555                         print
1556                         print "%endif"
1557                         return 0;
1558                 }
1559         }
1560
1561         # atrpms
1562         $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1563         $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1564         $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
1565
1566         gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1567         gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1568         gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
1569
1570         gsub("%{_datadir}/applications", "%{_desktopdir}");
1571         gsub("%{_datadir}/icons", "%{_iconsdir}");
1572         gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
1573         gsub("%{_datadir}/pear", "%{php_pear_dir}");
1574         gsub("%{_datadir}/php", "%{php_data_dir}");
1575
1576         return 1
1577 }
1578
1579 function use_script_macros()
1580 {
1581         if (gsub("/sbin/service", "%service")) {
1582                 sub(" >/dev/null 2>&1 \|\|:", "");
1583                 sub(" 2> /dev/null \|\| :", "");
1584         }
1585 }
1586
1587 function fill(ch, n, i) {
1588         for (i = 0; i < n; i++)
1589                 printf("%c", ch)
1590 }
1591
1592 function format_flush(line, indent, newline, word, first_word) {
1593         first_word = 1
1594         if (format_indent == -1)
1595                 newline = ""
1596         else
1597                 newline = fill(" ", format_indent) "- "
1598
1599         while (match(line, /[^\t ]+/)) {
1600                 word = substr(line, RSTART, RLENGTH)
1601                 if (length(newline) + length(word) + 1 > tw) {
1602                         print newline
1603
1604                         if (format_indent == -1)
1605                                 newline = ""
1606                         else
1607                                 newline = fill(" ", format_indent + 2)
1608                         first_word = 1
1609                 }
1610
1611                 if (first_word) {
1612                         newline = newline word
1613                         first_word = 0
1614                 } else
1615                         newline = newline " " word
1616
1617                 line = substr(line, RSTART + RLENGTH)
1618         }
1619         if (newline ~ /[^\t ]/) {
1620                 print newline
1621         }
1622 }
1623
1624 function cflags(var)
1625 {
1626         if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1627                 removed[var] = 1
1628                 return 0
1629         }
1630
1631         if (!/!\?debug/)
1632                 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
1633         return 1
1634 }
1635
1636 function unify_url(url)
1637 {
1638
1639         # sourceforge urls
1640         # Docs about sourceforge mirror system: http://sourceforge.net/apps/trac/sourceforge/wiki/Mirrors
1641         sub("^http://prdownloads\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1642         sub("^http://download\.sf\.net/", "http://downloads.sourceforge.net/", url)
1643         sub("^http://download\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1644         sub("^http://dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1645         sub("^http://.*\.dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1646         sub("^http://dl\.sf\.net/", "http://downloads.sourceforge.net/", url)
1647         sub("^http://downloads\.sourceforge\.net/sourceforge/", "http://downloads.sourceforge.net/", url)
1648         # new style urls, strip "files/" between and prepend dl.
1649         if (match(url, "^http://sourceforge.net/projects/[^/]+/files/")) {
1650                 url = substr(url, 1, RLENGTH - length("files/")) substr(url, RSTART + RLENGTH);
1651                 sub("^http://sourceforge.net/projects/", "http://downloads.sourceforge.net/project/", url);
1652         }
1653         if (url ~ /sourceforge.net/) {
1654                 sub("[?&]big_mirror=.*$", "", url);
1655                 sub("[?&]modtime=.*$", "", url);
1656                 sub("[?]use_mirror=.*$", "", url);
1657                 sub("[?]download$", "", url);
1658                 sub("/download$", "", url);
1659         }
1660
1661         sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1662         sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1663
1664         # apache urls
1665         sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1666
1667         # gnu.org
1668         sub("^ftp://ftp\.gnu\.org/", "http://ftp.gnu.org/", url)
1669         sub("^http://ftp\.gnu\.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
1670
1671         # debian.org
1672         sub("^ftp://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1673         sub("^http://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1674         sub("^ftp://ftp\.debian\.org/pub/debian/", "ftp://ftp.debian.org/debian/", url)
1675
1676         return url
1677 }
1678
1679 function demacroize(str)
1680 {
1681         if (mod_name) {
1682                 sub("%{mod_name}", mod_name, str);
1683         }
1684         if (pearname) {
1685                 sub("%{_pearname}", pearname, str);
1686         }
1687         if (pearname) {
1688                 sub("%{pearname}", pearname, str);
1689         }
1690         if (name) {
1691                 sub("%{name}", name, str);
1692         }
1693         if (version) {
1694                 sub("%{version}", version, str);
1695         }
1696         if (_beta) {
1697                 sub("%{_beta}", _beta, str);
1698         }
1699         if (_rc) {
1700                 sub("%{_rc}", _rc, str);
1701         }
1702         if (_pre) {
1703                 sub("%{_pre}", _pre, str);
1704         }
1705         if (_snap) {
1706                 sub("%{_snap}", _snap, str);
1707         }
1708         if (subver) {
1709                 sub("%{subver}", subver, str);
1710         }
1711         return str;
1712 }
1713
1714 function kill_preamble_macros()
1715 {
1716         if ($1 ~ /^Obsoletes:/) {
1717                 # NB! assigning $2 a value breaks tabbing
1718                 $2 = demacroize($2);
1719         }
1720         if ($1 ~ /^URL:/) {
1721                 # NB! assigning $2 a value breaks tabbing
1722                 $2 = demacroize($2);
1723                 $2 = unify_url($2)
1724         }
1725 }
1726
1727 function get_epoch(pkg, ver,    epoch)
1728 {
1729         return
1730 # should parse the BR lines more adequately:
1731 #       freetype = 2.0.0 -> correct
1732 #       freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1733
1734         shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1735         shell | getline epoch;
1736         return epoch;
1737 }
1738
1739 function format_requires(tag, value,    n, p, i, deps, ndeps) {
1740         # skip any formatting for commented out items or some weird macros
1741         if (/^#/ || /%\(/) {
1742                 return tag "\t" value
1743         }
1744         n = split(value, p, / *,? */);
1745         for (i = 1; i <= n; i++) {
1746                 if (p[i+1] ~ /[<=>]/) {
1747                         # add epoch if the version doesn't have it but BuildRequires.txt has
1748                         if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1749                                 epoch = get_epoch(p[i], p[i+2])
1750                                 if (epoch) {
1751                                         p[i+2] = epoch ":" p[i+2];
1752                                 }
1753                         }
1754                         deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1755                         i += 2;
1756                 } else {
1757                         deps[ndeps++] = p[i];
1758                 }
1759         }
1760         s = ""
1761         for (i in deps) {
1762                 s = s sprintf("%s\t%s\n", tag, deps[i]);
1763         }
1764         return substr(s, 1, length(s)-1);
1765 }
1766
1767 function use_tabs()
1768 {
1769         # reverse vim: ts=4 sw=4 et
1770         gsub(/    /, "\t");
1771 }
1772
1773 function add_br(br)
1774 {
1775         BR[BR_count++] = br
1776 }
1777
1778
1779 # Load rpm macros
1780 # you should update the list also in adapter when making changes here
1781 function import_rpm_macros() {
1782         # File with rpm groups
1783         topdir = ENVIRON["_topdir"]
1784
1785         if (!topdir) {
1786                 print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
1787                 do_not_touch_anything = 1
1788                 exit(rc = 1);
1789         }
1790
1791         if (!ENVIRON["ADAPTER_REVISION"] || ENVIRON["ADAPTER_REVISION"] < 1.44) {
1792                 print "adapter shell script is outdated, please cvs up it" > "/dev/stderr"
1793                 do_not_touch_anything = 1
1794                 exit(rc = 1);
1795         }
1796
1797         # get cvsaddress for changelog section
1798         # using rpm macros as too lazy to add ~/.adapterrc parsing support.
1799         _cvsmaildomain = ENVIRON["_cvsmaildomain"]
1800         _cvsmailfeedback = ENVIRON["_cvsmailfeedback"]
1801
1802         prefix = ENVIRON["_prefix"]
1803         bindir = ENVIRON["_bindir"]
1804         sbindir = ENVIRON["_sbindir"]
1805         libdir = ENVIRON["_libdir"]
1806         sysconfdir = ENVIRON["_sysconfdir"]
1807         datadir = ENVIRON["_datadir"]
1808         includedir = ENVIRON["_includedir"]
1809         mandir = ENVIRON["_mandir"]
1810         infodir = ENVIRON["_infodir"]
1811         examplesdir = ENVIRON["_examplesdir"]
1812         docdir = ENVIRON["_defaultdocdir"]
1813         kdedocdir = ENVIRON["_kdedocdir"]
1814         gtkdocdir = ENVIRON["_gtkdocdir"]
1815         desktopdir = ENVIRON["_desktopdir"]
1816         pixmapsdir = ENVIRON["_pixmapsdir"]
1817         javadir = ENVIRON["_javadir"]
1818         pkgconfigdir = ENVIRON["_pkgconfigdir"]
1819
1820         perl_sitearch = ENVIRON["perl_sitearch"]
1821         perl_archlib = ENVIRON["perl_archlib"]
1822         perl_privlib = ENVIRON["perl_privlib"]
1823         perl_vendorlib = ENVIRON["perl_vendorlib"]
1824         perl_vendorarch = ENVIRON["perl_vendorarch"]
1825         perl_sitelib = ENVIRON["perl_sitelib"]
1826
1827         py_sitescriptdir = ENVIRON["py_sitescriptdir"]
1828         py_sitedir = ENVIRON["py_sitedir"]
1829         py_scriptdir = ENVIRON["py_scriptdir"]
1830         py_ver = ENVIRON["py_ver"]
1831
1832         ruby_archdir = ENVIRON["ruby_archdir"]
1833         ruby_ridir = ENVIRON["ruby_ridir"]
1834         ruby_rubylibdir = ENVIRON["ruby_rubylibdir"]
1835         ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
1836         ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
1837         ruby_rdocdir = ENVIRON["ruby_rdocdir"]
1838
1839         php_pear_dir = ENVIRON["php_pear_dir"]
1840         php_data_dir = ENVIRON["php_data_dir"]
1841         tmpdir = ENVIRON["tmpdir"]
1842 }
1843
1844
1845 # php virtual deps as discussed in devel-en
1846 function replace_php_virtual_deps() {
1847         pkg = $2
1848 #       if (pkg == "php-program") {
1849 #               $0 = $1 "\t/usr/bin/php"
1850 #               return
1851 #       }
1852
1853 #       if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1854 #               sub(/^php-/, "php(", pkg);
1855 #               sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1856 #               $2 = pkg
1857 #       }
1858
1859         if (pkg ~/^php$/) {
1860                 $2 = "webserver(php)";
1861                 if ($4 ~ /^[0-9]:/) {
1862                         $4 = substr($4, 3);
1863                 }
1864         }
1865
1866         if (pkg ~/^php4$/) {
1867                 $2 = "webserver(php)";
1868                 if ($4 ~ /^[0-9]:/) {
1869                         $4 = substr($4, 3);
1870                 }
1871         }
1872 }
1873
1874 function replace_requires() {
1875
1876         sub(/^python-setuptools-devel$/, "python-distribute", $2);
1877
1878         # use virtual, not package name
1879         sub(/^rpm-build-macros$/, "rpmbuild(macros)", $2);
1880
1881         # bad package.xml, see http://pear.php.net/bugs/bug.php?id=17779
1882         sub(/^php-php-gtk/, "php-gtk2", $2);
1883
1884         # jpackages
1885         sub(/^antlr3$/, "java-antlr3", $2);
1886         sub(/^avalon-framework$/, "java-avalon-framework", $2);
1887         sub(/^avalon-logkit$/, "java-avalon-logkit", $2);
1888         sub(/^axis$/, "java-axis", $2);
1889         sub(/^bsf$/, "java-bsf", $2);
1890         sub(/^gnu-regexp$/, "java-gnu-regexp", $2);
1891         sub(/^gnu.regexp$/, "java-gnu-regexp", $2);
1892         sub(/^hamcrest$/, "java-hamcrest", $2);
1893         sub(/^jaas$/, "java(jaas)", $2);
1894         sub(/^jaf$/, "java(jaf)", $2);
1895         sub(/^jakarta-ant$/, "ant", $2);
1896         sub(/^jakarta-commons-httpclient$/, "java-commons-httpclient", $2);
1897         sub(/^jakarta-log4j$/, "java-log4j", $2);
1898         sub(/^jakarta-oro$/, "java-oro", $2);
1899         sub(/^jakarta-servletapi$/, "java(servlet)", $2);
1900         sub(/^java-devel$/, "jdk", $2);
1901         sub(/^java\(JSP\)$/, "java(jsp)", $2);
1902         sub(/^java\(JavaServerFaces\)$/, "java(javaserverfaces)", $2);
1903         sub(/^java\(Portlet\)$/, "java(portlet)", $2);
1904         sub(/^java\(Servlet\)$/, "java(servlet)", $2);
1905         sub(/^javamail$/, "java(javamail)", $2);
1906         sub(/^jaxp$/, "java(jaxp)", $2);
1907         sub(/^jaxp_parser_impl$/, "java(jaxp_parser_impl)", $2);
1908         sub(/^jaxp_transform_impl$/, "java(jaxp_transform_impl)", $2);
1909         sub(/^jce$/, "java(jce)", $2);
1910         sub(/^jcommon$/, "java-jcommon", $2);
1911         sub(/^jdbc-stdext$/, "java(jdbc-stdext)", $2);
1912         sub(/^jdepend$/, "java-jdepend", $2);
1913         sub(/^jfreechart$/, "java-jfreechart", $2);
1914         sub(/^jmx$/, "java(jmx)", $2);
1915         sub(/^jndi$/, "java(jndi)", $2);
1916         sub(/^jsch$/, "java-jsch", $2);
1917         sub(/^jsse$/, "java(jsse)", $2);
1918         sub(/^jta$/, "java(jta)", $2);
1919         sub(/^junit$/, "java-junit", $2);
1920         sub(/^ldapjdk$/, "ldapsdk", $2);
1921         sub(/^log4j$/, "java-log4j", $2);
1922         sub(/^logging-log4j$/, "java-log4j", $2);
1923         sub(/^oro$/, "java-oro", $2);
1924         sub(/^rhino$/, "java-rhino", $2);
1925         sub(/^saxon-scripts$/, "saxon", $2);
1926         sub(/^servlet$/, "java(servlet)", $2);
1927         sub(/^uddi4j$/, "java-uddi4j", $2);
1928         sub(/^wsdl4j$/, "java-wsdl4j", $2);
1929         sub(/^xalan-j$/, "java-xalan", $2);
1930         sub(/^xalan-j2$/, "java-xalan", $2);
1931         sub(/^xerces-j$/, "java-xerces", $2);
1932         sub(/^xerces-j2$/, "java-xerces", $2);
1933         sub(/^xml-commons-apis$/, "java-xml-commons-apis", $2);
1934         sub(/^xml-commons-resolver$/, "java-xml-commons-resolver", $2);
1935
1936         # fedora / redhat
1937         sub(/^Django$/, "python-django", $2);
1938         sub(/^GitPython$/, "python-git", $2);
1939         sub(/^freetype2-devel$/, "freetype-devel", $2);
1940         sub(/^chkconfig$/, "/sbin/chkconfig", $2);
1941         sub(/^db4-devel$/, "db-devel", $2);
1942         sub(/^dbus-python$/, "python-dbus", $2);
1943         sub(/^file-devel$/, "libmagic-devel", $2);
1944         sub(/^fuse-devel$/, "libfuse-devel", $2);
1945         sub(/^gamin-python$/, "python-gamin", $2);
1946         sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
1947         sub(/^gnome-python2-extras$/, "python-gnome-extras", $2);
1948         sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2);
1949         sub(/^gtk2$/, "gtk+2", $2);
1950         sub(/^gtk2-devel$/, "gtk+2-devel", $2);
1951         sub(/^initscripts$/, "rc-scripts", $2);
1952         sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1953         sub(/^libXft-devel$/, "xorg-lib-libXft-devel", $2);
1954         sub(/^libXrandr-devel$/, "xorg-lib-libXrandr-devel", $2);
1955         sub(/^mod_wsgi$/, "apache-mod_wsgi", $2);
1956         sub(/^notify-python$/, "python-pynotify", $2);
1957         sub(/^pyOpenSSL$/, "python-pyOpenSSL", $2);
1958         sub(/^pygobject2$/, "python-pygobject", $2);
1959         sub(/^pygtk2$/, "python-pygtk", $2);
1960         sub(/^pygtk2-devel$/, "python-pygtk-devel", $2);
1961         sub(/^python-enchant$/, "python-pyenchant", $2);
1962         sub(/^python-imaging$/, "python-PIL", $2);
1963         sub(/^python-imaging-tk$/, "python-PIL-tk", $2);
1964         sub(/^python-pygtk$/, "python-pygtk-gtk", $2);
1965         sub(/^python2-devel$/, "python-devel", $2);
1966         sub(/^qt4-devel$/, "qt4-build", $2);
1967         sub(/^qtlockedfile-devel$/, "QtLockedFile-devel", $2);
1968         sub(/^tftp-server$/, "tftpdaemon", $2);
1969         sub(/^tkinter$/, "python-tkinter", $2);
1970         sub(/^xapian-bindings-python$/, "python-xapian", $2);
1971
1972         # debian / ubuntu
1973         sub(/^blkid-dev$/, "libblkid-devel", $2);
1974         sub(/^ext2fs-dev$/, "e2fsprogs-devel", $2);
1975         sub(/^libao-dev$/, "libao-devel", $2);
1976         sub(/^libboost-filesystem[0-9.]+-dev$/, "boost-devel", $2);
1977         sub(/^libboost-program-options[0-9.]+-dev$/, "boost-devel", $2);
1978         sub(/^libboost-regex[0-9.]+-dev$/, "boost-devel", $2);
1979         sub(/^libboost-thread[0-9.]+-dev$/, "boost-devel", $2);
1980         sub(/^libcurl4-openssl-dev$/, "curl-devel", $2);
1981         sub(/^libdnet-dev$/, "libdnet-devel", $2);
1982         sub(/^libesd0-dev$/, "esound-devel", $2);
1983         sub(/^libfishsound1-dev$/, "libfishsound-devel", $2);
1984         sub(/^libgconf2-dev$/, "GConf2-devel", $2);
1985         sub(/^libgl1-mesa-dev$/, "OpenGL-devel", $2);
1986         sub(/^libgl1-mesa-dri$/, "OpenGL", $2);
1987         sub(/^libglib2.0-dev$/, "glib2-devel", $2);
1988         sub(/^libglu1-mesa-dev$/, "OpenGL-GLU-devel", $2);
1989         sub(/^libgtk2.0-dev$/, "gtk+2-devel", $2);
1990         sub(/^libhunspell-dev$/, "hunspell-devel", $2);
1991         sub(/^libmcrypt-dev$/, "libmcrypt-devel", $2);
1992         sub(/^libmhash-dev$/, "mhash-devel", $2);
1993         sub(/^liboggz1-dev$/, "libggz-devel", $2);
1994         sub(/^libpango1.0-dev$/, "pango-devel", $2);
1995         sub(/^libqt4-dev$/, "qt4-build", $2);
1996         sub(/^libshout3-dev$/, "libshout-devel", $2);
1997         sub(/^libslp-dev$/, "openslp-devel", $2);
1998         sub(/^libsndfile1-dev$/, "libsndfile-devel", $2);
1999         sub(/^libspeex-dev$/, "speex-devel", $2);
2000         sub(/^libssl-dev$/, "openssl-devel", $2);
2001         sub(/^libvorbis-dev$/, "libvorbis-devel", $2);
2002         sub(/^libxslt1-dev$/, "libxslt-devel", $2);
2003         sub(/^libxss-dev$/, "xorg-lib-libXScrnSaver-devel", $2);
2004         sub(/^mesa-common-dev$/, "OpenGL-devel", $2);
2005
2006         # altlinux
2007         sub(/^libncurses-devel$/, "ncurses-devel", $2);
2008         sub(/^libncursesxx-devel$/, "ncurses-c++-devel", $2);
2009         sub(/^libpcre-devel$/, "pcre-devel", $2);
2010
2011         # suse
2012         sub(/^libffmpeg-devel$/, "ffmpeg-devel", $2);
2013         sub(/^libexpat-devel$/, "expat-devel", $2);
2014         sub(/^alsa-devel$/, "alsa-lib-devel", $2);
2015         sub(/^libpulse-devel$/, "pulseaudio-devel", $2);
2016         sub(/^gtk-sharp2$/, "dotnet-gtk-sharp2", $2);
2017         sub(/^monodoc-core$/, "mono-monodoc", $2);
2018
2019         replace_php_virtual_deps()
2020 }
2021
2022 function replace_groupnames(group) {
2023         group = replace(group, "Amusements/Games", "Applications/Games");
2024         group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
2025         group = replace(group, "Application/Multimedia", "Applications/Multimedia");
2026         group = replace(group, "Application/System", "Applications/System");
2027         group = replace(group, "Applications/Compilers", "Development/Languages");
2028         group = replace(group, "Applications/Daemons", "Daemons");
2029         group = replace(group, "Applications/Internet", "Applications/Networking");
2030         group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
2031         group = replace(group, "Applications/Productivity", "X11/Applications");
2032         group = replace(group, "Applications/Web", "Applications/WWW");
2033         group = replace(group, "Database", "Applications/Databases");
2034         group = replace(group, "Development/C", "Development/Libraries");
2035         group = replace(group, "Development/Code Generators", "Development");
2036         group = replace(group, "Development/Docs", "Documentation");
2037         group = replace(group, "Development/Documentation", "Documentation");
2038         group = replace(group, "Development/Java", "Development/Languages/Java");
2039         group = replace(group, "Development/Languages/C and C++", "Libraries");
2040         group = replace(group, "Development/Languages/Other", "Development/Languages");;
2041         group = replace(group, "Development/Languages/Ruby", "Development/Languages");
2042         group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
2043         group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
2044         group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
2045         group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
2046         group = replace(group, "Development/Other", "Development");
2047         group = replace(group, "Development/Python", "Development/Languages/Python");
2048         group = replace(group, "Development/Testing", "Development");
2049         group = replace(group, "Editors", "Applications/Text");
2050         group = replace(group, "Emulators", "Applications/Emulators");
2051         group = replace(group, "File tools", "Applications/File");
2052         group = replace(group, "Games", "Applications/Games");
2053         group = replace(group, "Library/Development", "Development/Libraries");
2054         group = replace(group, "Networking/Deamons", "Networking/Daemons");
2055         group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
2056         group = replace(group, "Productivity/Multimedia/Other", "X11/Applications/Multimedia");
2057         group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
2058         group = replace(group, "Shells", "Applications/Shells");
2059         group = replace(group, "System Environment/Base", "Base");
2060         group = replace(group, "System Environment/Daemons", "Daemons");
2061         group = replace(group, "System Environment/Kernel", "Base/Kernel");
2062         group = replace(group, "System Environment/Libraries", "Libraries");
2063         group = replace(group, "System Tools", "Applications/System");
2064         group = replace(group, "System", "Base");
2065         group = replace(group, "System/Base", "Base");
2066         group = replace(group, "System/Kernel and hardware", "Base/Kernel");
2067         group = replace(group, "System/Libraries", "Libraries");
2068         group = replace(group, "System/Servers", "Daemons");
2069         group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
2070         group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
2071         group = replace(group, "Text tools", "Applications/Text");
2072         group = replace(group, "User Interface/Desktops", "X11/Applications");
2073         group = replace(group, "Utilities/System", "Applications/System");
2074         group = replace(group, "Web/Database", "Applications/WWW");
2075         group = replace(group, "X11/GNOME", "X11/Applications");
2076         group = replace(group, "X11/GNOME/Applications", "X11/Applications");
2077         group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
2078         group = replace(group, "X11/Games", "X11/Applications/Games");
2079         group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
2080         group = replace(group, "X11/Library", "X11/Libraries");
2081         group = replace(group, "X11/Utilities", "X11/Applications");
2082         group = replace(group, "X11/XFree86", "X11");
2083         group = replace(group, "X11/Xserver", "X11/Servers");
2084
2085         return group;
2086 }
2087
2088 # vim:ts=4:sw=4
This page took 0.180248 seconds and 4 git commands to generate.