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