]> git.pld-linux.org Git - packages/adapter.git/blob - adapter.awk
simplify version check
[packages/adapter.git] / adapter.awk
1 #!/usr/bin/gawk -f
2 #
3 # Adapter adapts .spec files for PLD Linux.
4 #
5 # Copyright (C) 1999-2016 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 git 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         VERSION="1.514"
37
38         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))"
39
40         usedigest = 0   # Enable to switch to rpm 4.4.6+ md5 digests
41
42         preamble = 1    # Is it part of preamble? Default - yes
43         bod = 0                 # Beginning of %description
44         tw = 70                 # Descriptions width
45
46         b_idx = 0               # index of BR/R arrays
47         BR_count = 0    # number of additional BuildRequires
48
49         # If variable removed, then 1 (for removing it from export)
50         removed["LDFLAGS"] = 0
51         removed["CFLAGS"] = 0
52         removed["CXXFLAGS"] = 0
53
54         # If 1, we are inside of comment block (started with /^#%/)
55         comment_block = 0
56
57         import_rpm_macros()
58
59         packages_dir = topdir
60         groups_file = packages_dir "/../rpm-build-tools/rpm.groups"
61
62         system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)")
63 }
64
65 # If the latest line matched /%files/
66 defattr == 1 {
67         if (ENVIRON["SKIP_DEFATTR"] != 1) {
68                 if ($0 !~ /defattr/) {  # If no %defattr
69                         print "%defattr(644,root,root,755)"     # Add it
70                 } else {
71                         $0 = "%defattr(644,root,root,755)"      # Correct mistakes (if any)
72                 }
73         }
74         defattr = 0
75 }
76
77 # call mktemp(1) and return the value
78 function mktemp(template, tmp) {
79    "mktemp " template | getline tmp
80    return tmp
81 }
82
83 function b_makekey(a, b,        s) {
84         s = a "" b
85         # kill bcond
86         gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s)
87
88         # kill commented out items
89         gsub(/^#[ \t]*/, "", s)
90
91         # force order
92         gsub(/^Summary\(/, "11Summary(", s)
93         gsub(/^Summary/, "10Summary", s)
94
95         gsub(/^Name/, "2Name", s)
96         gsub(/^Version/, "3Version", s)
97         gsub(/^Release/, "4Release", s)
98         gsub(/^Epoch/, "5Epoch", s)
99         gsub(/^License/, "5License", s)
100         gsub(/^Group/, "6Group", s)
101         gsub(/^URL/, "7URL", s)
102
103         gsub(/^BuildRequires/, "B1BuildRequires", s)
104         gsub(/^BuildConflicts/, "B2BuildConflicts", s)
105
106         gsub(/^Suggests/, "X1Suggests", s)
107         gsub(/^Provides/, "X2Provides", s)
108         gsub(/^Obsoletes/, "X3Obsoletes", s)
109         gsub(/^Conflicts/, "X4Conflicts", s)
110         gsub(/^BuildArch/, "X5BuildArch", s)
111         gsub(/^ExclusiveArch/, "X6ExclusiveArch", s)
112         gsub(/^ExcludeArch/, "X7ExcludeArch", s)
113         gsub(/^BuildRoot/, "X9BuildRoot", s)
114
115         gsub(/^AutoProv/, "Xx1AutoProv", s)
116         gsub(/^AutoReq/, "Xx2AutoReq", s)
117
118 #       printf("%s -> %s\n", a""b, s)
119         return s
120 }
121
122 # Comments
123 /^#/ && (description == 0) {
124         if (/This file does not like to be adapterized!/) {
125                 print                   # print this message
126                 while (getline)         # print the rest of spec as it is
127                         print
128                 do_not_touch_anything = 1 # do not touch anything in END()
129                 exit(rc = 0)
130         }
131
132         # Generally, comments are printed without touching
133         sub(/[ \t]+$/, "")
134
135         if (/#[ \t]*Source.*md5/) {
136                 if (usedigest == 1) {
137                         sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
138                         sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
139                 }
140                 print $0
141                 next
142         }
143 }
144
145 /^%define/ {
146         # FIXME: this section will likely never match after cvs->git migration
147         if ($2 == "date") {
148                 if (did_files == 0) {
149                         print "%files"
150                         print ""
151                         did_files = 1
152                 }
153         }
154
155         # Do not add %define of _prefix if it already is.
156         if ($2 ~ /^_prefix/) {
157                 sub("^"prefix, $3, bindir)
158                 sub("^"prefix, $3, sbindir)
159                 sub("^"prefix, $3, libdir)
160                 sub("^"prefix, $3, datadir)
161                 sub("^"prefix, $3, includedir)
162                 prefix = $3
163         }
164
165         if ($2 ~ /_bindir/ && !/_sbindir/)
166                 bindir = $3
167         if ($2 ~ /_sbindir/)
168                 sbindir = $3
169         if ($2 ~ /_libdir/) {
170                 if ($3 ~ /^%\(/) {
171                         # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
172                         libdir = "%%%%%%%%%%%%%%"
173                 } else {
174                         libdir = $3
175                 }
176         }
177         if ($2 ~ /_sysconfdir/) {
178                 if ($3 ~ /^%\(/) {
179                         # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
180                         sysconfdir = "%%%%%%%%%%%%%%"
181                 } else {
182                         sysconfdir = $3
183                 }
184         }
185         if ($2 ~ /_datadir/) {
186                 if ($3 ~ /^%\(/) {
187                         # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
188                         datadir = "%%%%%%%%%%%%%%"
189                 } else {
190                         datadir = $3
191                 }
192         }
193         if ($2 ~ /_includedir/)
194                 includedir = $3
195         if ($2 ~ /_mandir/)
196                 mandir = $3
197         if ($2 ~ /_infodir/)
198                 infodir = $3
199         if ($2 ~ /_docdir/)
200                 docdir = $3
201
202         # version related macros
203         if ($2 ~ /^_beta$/)
204                 _beta = $3
205         if ($2 ~ /^_rc$/)
206                 _rc = $3
207         if ($2 ~ /^_pre$/)
208                 _pre = $3
209         if ($2 ~ /^_snap$/)
210                 _snap = $3
211         if ($2 ~ /^subver$/)
212                 subver = $3
213
214         # these are used usually when adapterizing external spec
215         if ($2 ~ /^name$/)
216                 name = $3
217         if ($2 ~ /^version$/)
218                 version = $3
219         if ($2 ~ /^release$/)
220                 release = $3
221
222         if ($2 ~ /^mod_name$/)
223                 mod_name = $3
224         if ($2 ~ /^_?pearname$/)
225                 pearname = $3
226         if ($2 ~ /^_class$/)
227                 pear_class = $3
228         if ($2 ~ /^_subclass$/)
229                 pear_subclass = $3
230
231         # kill the _class and _subclass pear macros
232         if ($2 == "_pearname" || $2 == "pearname") {
233                 if (pear_class) {
234                         gsub("%{_class}", pear_class, $3)
235                 }
236                 if (pear_subclass) {
237                         gsub("%{_subclass}", pear_subclass, $3)
238                 }
239         }
240
241         # capture for URL unify in perl packages
242         if ($2 == "pdir") {
243                 pdir = $3
244         }
245         if ($2 == "pnam") {
246                 pnam = $3
247         }
248         if ($2 == "pkgname") {
249                 pkgname = $3
250         }
251         if ($2 == "pkg") {
252                 pkg = $3
253         }
254         if ($2 == "module") {
255                 module = $3
256         }
257
258         sub(/[ \t]+$/, "")
259         # do nothing further, otherwise adapter thinks we're at preamble
260         print
261         next
262 }
263
264 # Obsolete
265 /^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
266         next
267 }
268
269 # %package part
270 /^%package/, (!/^%package/ && $0 ~ SECTIONS) {
271         # FIXME: this breaks \t indenting in preamble?
272         gsub(/\t/, " ")
273 }
274
275 ################
276 # %description #
277 ################
278 /^%description/, (!/^%description/ && $0 ~ SECTIONS) {
279         preamble = 0
280
281         if (/^%description/) {
282                 bod++
283                 format_line = ""
284                 format_indent = -1
285         }
286
287         # Format description
288         if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
289                 if (/^[ \t]*$/) {
290                         format_flush(format_line, format_indent)
291                         print ""
292                         format_line = ""
293                         format_indent = -1
294                 } else if (/^[ \t]*[-\*][ \t]*/) {
295                         format_flush(format_line, format_indent)
296                         match($0, /^[ \t]*/)
297                         format_indent = RLENGTH
298                         match($0, /^[ \t]*[-\*][ \t]/)
299                         format_line = substr($0, RLENGTH)
300                 } else
301                         format_line = format_line " " $0
302                 next
303         }
304
305         if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
306                 if (NF > 3 && $2 == "-l") {
307                         ll = $1
308                         for (i = 4; i <= NF; i++)
309                                 ll = ll " " $i
310                         $0 = ll " -l " $3
311                 }
312                 format_flush(format_line, format_indent)
313                 if (bod == 2) {
314                         bod = 1
315                         description = 1
316                 } else {
317                         bod = 0
318                         description = 0
319                 }
320         } else
321                 description = 1
322 }
323
324 #########
325 # %prep #
326 #########
327 /^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
328         preamble = 0
329         did_prep = 1
330
331         use_macros()
332
333         # Add '-q' to %setup
334         if (/^%setup/ && !/-q/) {
335                 sub(/^%setup/, "%setup -q")
336         }
337
338         if (/^%setup/ && name != "setup") {
339                 $0 = fixedsub(name, "%{name}", $0)
340                 $0 = fixedsub(version, "%{version}", $0)
341                 if (_beta) {
342                         $0 = fixedsub(_beta, "%{_beta}", $0)
343                 }
344                 if (_rc) {
345                         $0 = fixedsub(_rc, "%{_rc}", $0)
346                 }
347                 if (_pre) {
348                         $0 = fixedsub(_pre, "%{_pre}", $0)
349                 }
350                 if (_snap) {
351                         $0 = fixedsub(_snap, "%{_snap}", $0)
352                 }
353                 if (subver) {
354                         $0 = fixedsub(subver, "%{subver}", $0)
355                 }
356         }
357
358         if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
359                 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
360         }
361         sub("^%patch ", "%patch0 ")
362
363         # fedora extras
364         if (/^%apply/) {
365                 sub("^%apply -n", "%patch")
366         }
367
368         # invalid in %prep
369         sub("^rm -rf \$RPM_BUILD_ROOT.*", "")
370 }
371
372 ##########
373 # %build #
374 ##########
375 /^%build([^A-Za-z0-9_]|$)/, (!/^%build/ && $0 ~ SECTIONS) {
376         preamble = 0
377
378         if (did_prep == 0) {
379                 print "%prep"
380                 print ""
381                 did_prep = 1
382         }
383
384         use_macros()
385         use_tabs()
386
387         if (/^automake$/)
388                 sub(/$/, " -a -c")
389
390         if (/LDFLAGS/) {
391                 if (/LDFLAGS="-s"/) {
392                         removed["LDFLAGS"] = 1
393                         next
394                 } else {
395                         split($0, tmp, "LDFLAGS=")
396                         count = split(tmp[2], flags, "\"")
397                         if (flags[1] != "" && flags[1] !~ "!?debug") {
398                                 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
399                                 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
400                                 for (i = 2; i < count; i++)
401                                         $0 = $0 flags[i] "\""
402                         }
403                 }
404         }
405
406         if (/CFLAGS=/)
407                 if (cflags("CFLAGS") == 0)
408                         next
409
410         if (/CXXFLAGS=/)
411                 if (cflags("CXXFLAGS") == 0)
412                         next
413
414         if (/^export /) {
415                 if (removed["LDFLAGS"])
416                         sub(" LDFLAGS", "")
417                 if (removed["CFLAGS"])
418                         sub(" CFLAGS", "")
419                 if (removed["CXXFLAGS"])
420                         sub(" CXXFLAGS", "")
421                 # Is there still something?
422                 if (/^export[ ]*$/)
423                         next
424         }
425
426         # quote CC
427         if (/CC=%{__cc} /) {
428                 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
429         }
430
431         # use PLD Linux macros
432         $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0)
433         $0 = fixedsub("glib-gettextize --force --copy", "%{__glib_gettextize}", $0)
434         $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0)
435         $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0)
436         $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0)
437         $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0)
438         $0 = fixedsub("automake -a -c", "%{__automake}", $0)
439         $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0)
440         $0 = fixedsub("libtoolize --force --copy", "%{__libtoolize}", $0)
441         $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0)
442
443         sub(/^aclocal$/, "%{__aclocal}")
444         sub(/^autoheader$/, "%{__autoheader}")
445         sub(/^autoconf$/, "%{__autoconf}")
446         sub(/^automake$/, "%{__automake}")
447         sub(/^libtoolize$/, "%{__libtoolize}")
448
449         # atrpms
450         $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0)
451         $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0)
452
453         # alt linux
454         $0 = fixedsub("%make_build", "%{__make}", $0)
455 }
456
457 ##########
458 # %clean #
459 ##########
460 /^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
461         did_clean = 1
462
463         use_macros()
464 }
465
466 ############
467 # %install #
468 ############
469 /^%install/, (!/^%install/ && $0 ~ SECTIONS) {
470
471         preamble = 0
472
473         # foreign rpms
474         sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
475         sub("%buildroot", "$RPM_BUILD_ROOT")
476         sub("%{buildroot}", "$RPM_BUILD_ROOT")
477         sub("%{\?buildroot}", "$RPM_BUILD_ROOT")
478
479         if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
480                 did_rmroot=1
481                 print "rm -rf $RPM_BUILD_ROOT"
482                 next
483         }
484
485         if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
486                 print "rm -rf $RPM_BUILD_ROOT"
487                 did_rmroot=1
488         }
489
490         if (tmpdir) {
491                 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
492                 gsub(buildroot, "$RPM_BUILD_ROOT")
493         }
494
495         if (!/%{_lib}/) {
496                 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
497         }
498
499         use_macros()
500
501         # 'install -d' instead 'mkdir -p'
502         if (/mkdir -p/)
503                 sub(/mkdir -p/, "install -d")
504
505         # cp -a already implies cp -r
506         sub(/^cp -ar/, "cp -a")
507
508         # No '-u root' or '-g root' for 'install'
509         if (/^install/ && /-[ug][ \t]*root/)
510                 gsub(/-[ug][ \t]*root /, "")
511
512         if (/^install/ && /-m[ \t]*[0-9]+/)
513                 gsub(/-m[ \t]*[0-9]+ /, "")
514
515         # install without options -> cp -p
516         if (/^install [^-]/)
517                 gsub(/^install/, "cp -p")
518
519         # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
520         if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
521                 next
522
523         # No lines contain 'chmod' if it sets the modes to '644'
524         if ($1 ~ /chmod/ && $2 ~ /644/)
525                 next
526
527         $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0)
528         $0 = fixedsub("%make_install DESTDIR=$RPM_BUILD_ROOT install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0)
529         $0 = fixedsub("%make_install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0)
530 }
531
532 ##########
533 # %files #
534 ##########
535 /^%files/, (!/^%files/ && $0 ~ SECTIONS) {
536         preamble = 0
537         did_files = 1
538
539         if ($0 ~ /^%files/)
540                 defattr = 1
541
542         if (!use_files_macros()) {
543                 next
544         }
545 }
546
547 ###########
548 # SCRIPTS #
549 ###########
550 /^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
551         preamble = 0
552
553         if (gsub("/usr/sbin/useradd", "%useradd")) {
554                 sub(" 2> /dev/null \|\| :", "")
555                 sub(" >/dev/null 2>&1 \|\|:", "")
556         }
557
558         # fedora extras macros
559         if (/%__fe_useradd/) {
560                 sub("%__fe_useradd", "%useradd -u ")
561                 sub(" 2> /dev/null \|\| :", "")
562                 sub(" >/dev/null 2>&1 \|\|:", "")
563                 sub(" &>/dev/null \\|\\| :", "")
564         }
565
566         if (/%__fe_groupadd/) {
567                 sub("%__fe_groupadd", "%groupadd -g ")
568                 sub(" &>/dev/null \\|\\| :", "")
569         }
570
571         # %useradd and %groupadd may not be wrapped
572         if (/%(useradd|groupadd).*\\$/) {
573                 a = $0; getline
574                 sub(/^[\s\t]*/, "")
575                 $0 = substr(a, 1, length(a) - 1) $0
576         }
577         use_script_macros()
578 }
579
580 /^%post/, (!/^%post/ && $0 ~ SECTIONS) {
581         preamble = 0
582
583         # fedora extras macros
584         sub("%__chkconfig", "/sbin/chkconfig")
585
586         sub("update-desktop-database &> /dev/null \\|\\| :", "%update_desktop_database")
587         sub("touch --no-create %{_datadir}/icons/hicolor", "%update_icon_cache_post hicolor")
588         sub("if \\[ -x %{_bindir}/gtk-update-icon-cache \\]; then\n\t%{_bindir}/gtk-update-icon-cache -q %{_datadir}/icons/hicolor \|\| :\nfi", "")
589
590         sub("export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`", "")
591         if (/gconftool-2 --makefile-install-rule/) {
592                 sub("gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/", "%gconf_schema_install ")
593                 sub("> /dev/null", "")
594         }
595
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
605         # fedora extras macros
606         if (/%__fe_userdel|%__fe_groupdel/) {
607                 sub("%__fe_groupdel", "%groupremove")
608                 sub("%__fe_userdel", "%userremove")
609                 sub(" &>/dev/null \\|\\| :", "")
610         }
611
612         use_script_macros()
613 }
614 /^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
615         preamble = 0
616         use_script_macros()
617 }
618 /^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
619         preamble = 0
620         use_script_macros()
621 }
622 /^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
623         preamble = 0
624         use_script_macros()
625 }
626 /^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
627         preamble = 0
628         use_script_macros()
629 }
630 /^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
631         preamble = 0
632         use_script_macros()
633 }
634 /^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
635         preamble = 0
636         use_script_macros()
637 }
638 /^%check/, (!/^%check/ && $0 ~ SECTIONS) {
639         preamble = 0
640         use_script_macros()
641 }
642
643 #############
644 # PREAMBLES #
645 #############
646 preamble == 1 {
647         # There should not be a space after the name of field
648         # and before the colon.
649         sub(/[ \t]*:/, ":")
650
651         if (/^%perl_module_wo_prefix/) {
652                 name = $2
653                 version = $3
654                 release = "0." fixedsub(".%{disttag}.at", "", $4)
655         }
656
657         # deprecated. currently just resolves to name in $2
658         if (/^%pyrequires_eq.+/) {
659                 $1 = "Requires:"
660         }
661
662         # deprecated. such deps are autogenerated in rpm5
663         if ($0 == "%{?ruby_mod_ver_requires_eq}") {
664                 next
665         }
666
667         # F<16 had requires(hint)
668         if (/^Requires\(hint\):/) {
669                 $1 = "Suggests:"
670         }
671
672         field = tolower($1)
673         if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
674                 sub(/\.$/, "", $0)
675         }
676         if (field ~ /group(\([^)]+\)):/) {
677                 next
678         }
679
680         if (field == "group:") {
681                 format_preamble()
682                 group = $0
683                 sub(/^[^ \t]*[ \t]*/, "", group)
684                 group = replace_groupnames(group)
685                 $0 = "Group:\t\t" group
686
687                 byl_plik_z_groupmi = 0
688                 byl_opis_grupy = 0
689                 while ((getline linia_grup < groups_file) > 0) {
690                         byl_plik_z_groupmi = 1
691                         if (linia_grup == group) {
692                                 byl_opis_grupy = 1
693                                 break
694                         }
695                 }
696
697                 if (!byl_plik_z_groupmi)
698                         print "######\t\t" groups_file ": no such file"
699                 else if (!byl_opis_grupy)
700                         print "######\t\t" "Unknown group!"
701
702                 close(groups_file)
703                 did_groups = 1
704         }
705
706         if (field == "prereq:") {
707                 sub(/Pre[Rr]eq:/, "Requires:", $1)
708         }
709
710         # split (build)requires, obsoletes on commas
711         if (field ~ /(obsoletes|requires|provides|conflicts|suggests):/ && NF > 2) {
712                 value = substr($0, index($0, $2))
713                 $0 = format_requires($1, value)
714         }
715
716         # BR: tar (and others) are too common (rpm-build requires them)
717         if (field == "buildrequires:") {
718                 l = substr($0, index($0, $2))
719                 if (l == "awk" ||
720                         l == "binutils" ||
721                         l == "bzip2" ||
722                         l == "cpio" ||
723                         l == "diffutils" ||
724                         l == "elfutils" ||
725                         l == "fileutils" ||
726                         l == "findutils" ||
727                         l == "glibc-devel" ||
728                         l == "grep" ||
729                         l == "gzip" ||
730                         l == "make" ||
731                         l == "patch" ||
732                         l == "sed" ||
733                         l == "sh-utils" ||
734                         l == "tar" ||
735                         l == "textutils") {
736                         next
737                 }
738
739                 replace_requires(field)
740         }
741
742         if (field == "requires:" || field ~ /^requires\(/ || field == "suggests:") {
743                 replace_requires(field)
744         }
745
746
747         # obsolete/unwanted tags
748         if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
749                 next
750         }
751
752         if (field ~ /buildroot:/) {
753                 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
754                 did_build_root = 1
755         }
756
757         # Use "License" instead of "Copyright" if it is (L)GPL or BSD
758         if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
759                 $1 = "License:"
760         }
761
762         if (field == "buildarch:") {
763                 $1 = "BuildArch:"
764         }
765
766
767         # ease updating from debian .dsc
768         if (field ~ /homepage:/) {
769                 $1 = "URL:"
770         }
771
772         # suse
773         if (field ~ /recommends:/) {
774                 $1 = "Suggests:"
775         }
776
777         if ($3 == "==" && $1 !~ /%/) {
778                 $3 = "="
779         }
780
781         if (field ~ /license:/) {
782                 l = substr($0, index($0, $2))
783                 if (l == "Python Software Foundation License") {
784                         l = "PSF"
785                 }
786                 if (l == "Apache License 2.0" || \
787                            l == "Apache 2.0" || \
788                            l == "Apache 2" || \
789                            l == "Apache-2.0" || \
790                            l == "Apache License (2.0)" ||
791                            l == "Apache License Version 2.0" || \
792                            l == "Apache License, Version 2.0" || \
793                            l == "Apache Software License v2" || \
794                            l == "ASL 2.0" \
795                         ) {
796                         l = "Apache v2.0"
797                 }
798                 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
799                         l = "Apache"
800                 }
801                 if (l == "Apache-style License" || l == "Apache-style Software License") {
802                         l = "Apache-like"
803                 }
804                 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
805                         l = "Apache v1.1"
806                 }
807                 if (l == "GPLv2") {
808                         l = "GPL v2"
809                 }
810                 if (l == "The BSD 3-Clause License") {
811                         l = "BSD"
812                 }
813                 if (l == "GPLv2+") {
814                         l = "GPL v2+"
815                 }
816                 if (l == "GPL v2 or later") {
817                         l = "GPL v2+"
818                 }
819                 if (l == "LGPL v2.0 only") {
820                         l = "LGPL v2"
821                 }
822                 if (l == "LGPLv2+") {
823                         l = "LGPL v2+"
824                 }
825                 if (l == "GPLv3") {
826                         l = "GPL v3"
827                 }
828                 if (l == "GPLv3+") {
829                         l = "GPL v3+"
830                 }
831                 if (l == "MPLv1.1") {
832                         l = "MPL v1.1"
833                 }
834                 if (l == "Mozilla Public License, version 2.0") {
835                         l = "MPL v2.0"
836                 }
837                 $0 = "License:\t" l
838         }
839
840
841         if (field ~ /name:/) {
842                 if ($2 == "%{name}" && name) {
843                         $2 = name
844                 }
845                 name = $2
846                 name_seen = 1
847         }
848
849         if (field ~ /version:/) {
850                 if ($2 == "%{version}" && version) {
851                         $2 = version
852                 }
853                 version = $2
854                 version_seen = 1
855         }
856
857         if (field ~ /release:/) {
858                 if ($2 == "%{release}" && release) {
859                         $2 = release
860                 }
861                 sub(/%atrelease /, "0.", $0)
862                 release = $2
863                 release_seen = 1
864         }
865
866
867         if (field ~ /serial:/)
868                 $1 = "Epoch:"
869
870         if (field ~ /home-page:/)
871                 $1 = "URL:"
872
873         if (field ~ /^url:$/) {
874                 # set proper caps
875                 $1 = "URL:"
876
877                 # should not use these in URL field, for copy-paste
878                 if (/%{pdir}/ || /%{pnam}/) {
879                         gsub(/%{pdir}/, pdir, $2);
880                         gsub(/%{pnam}/, pnam, $2);
881                 }
882
883                 if (/%{pkgname}/ && pkgname) {
884                         gsub(/%{pkgname}/, pkgname, $2);
885                 }
886
887                 if (/%{pkg}/ && pkg) {
888                         gsub(/%{pkg}/, pkg, $2);
889                 }
890                 if (/%{module}/ && module) {
891                         gsub(/%{module}/, module, $2);
892                 }
893         }
894
895         if (field ~ /^patch/)
896                 $1 = "Patch" substr(field, 6)
897
898         if (field ~ /^description:$/)
899                 $1 = "\n%description\n"
900
901         # Use %{name} and %{version} in the filenames in "Source:"
902         if (field ~ /^source/ || field ~ /patch/) {
903                 n = split($2, url, /\//)
904                 if (url[n] ~ /\.gz$/) {
905                         url[n+1] = ".gz" url[n+1]
906                         sub(/\.gz$/,"",url[n])
907                 }
908                 if (url[n] ~ /\.zip$/) {
909                         url[n+1] = ".zip" url[n+1]
910                         sub(/\.zip$/,"",url[n])
911                 }
912                 if (url[n] ~ /\.tar$/) {
913                         url[n+1] = ".tar" url[n+1]
914                         sub(/\.tar$/,"",url[n])
915                 }
916                 if (url[n] ~ /\.patch$/) {
917                         url[n+1] = ".patch" url[n+1]
918                         sub(/\.patch$/,"",url[n])
919                 }
920                 if (url[n] ~ /\.bz2$/) {
921                         url[n+1] = ".bz2" url[n+1]
922                         sub(/\.bz2$/,"",url[n])
923                 }
924                 if (url[n] ~ /\.logrotate$/) {
925                         url[n+1] = ".logrotate" url[n+1]
926                         sub(/\.logrotate$/,"",url[n])
927                 }
928                 if (url[n] ~ /\.pamd$/) {
929                         url[n+1] = ".pamd" url[n+1]
930                         sub(/\.pamd$/,"",url[n])
931                 }
932
933                 # allow %{name} only in last url component
934                 s = ""
935                 for (i = 1; i <= n; i++) {
936                         url[i] = fixedsub("%{name}", name, url[i])
937                         if (s) {
938                                 s = s "/" url[i]
939                         } else {
940                                 s = url[i]
941                         }
942                 }
943                 $2 = s url[n+1]
944
945                 filename = url[n]
946                 if (name) {
947                         url[n] = fixedsub(name, "%{name}", url[n])
948                 }
949                 if (field ~ /source/) {
950                         if (version) {
951                                 url[n] = fixedsub(version, "%{version}", url[n])
952                         }
953                         if (_beta) {
954                                 url[n] = fixedsub(_beta, "%{_beta}", url[n])
955                         }
956                         if (_rc) {
957                                 url[n] = fixedsub(_rc, "%{_rc}", url[n])
958                         }
959                         if (_pre) {
960                                 url[n] = fixedsub(_pre, "%{_pre}", url[n])
961                         }
962                         if (_snap) {
963                                 url[n] = fixedsub(_snap, "%{_snap}", url[n])
964                         }
965                         if (subver) {
966                                 url[n] = fixedsub(subver, "%{subver}", url[n])
967                         }
968                 }
969                 # assigning to $2 kills preamble formatting
970                 $2 = fixedsub(filename, url[n], $2)
971
972                 $2 = unify_url($2)
973         }
974
975
976         if (field ~ /^source:/)
977                 $1 = "Source0:"
978
979         if (field ~ /^patch:/)
980                 $1 = "Patch0:"
981
982         kill_preamble_macros()
983         format_preamble()
984
985         if (field ~ /requires/) {
986                 # atrpms
987                 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0)
988         }
989 }
990
991 /^%bcond_/ {
992         # do nothing
993         print
994         next
995 }
996
997 # sort BR/R!
998 #
999 # NOTES:
1000 # - mixing BR/R and anything else confuses this (all will be sorted together)
1001 #       so don't do that.
1002 # - comments leading the BR/R can not be associated,
1003 #       so don't adapterize when the BR/R are mixed with comments
1004 ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS ":", $0 ~ PREAMBLE_TAGS ":"{
1005         if ($1 ~ /Pre[Rr]eq:/) {
1006                 sub(/Pre[Rr]eq:/, "Requires:", $1)
1007         }
1008         if ($1 == "BR:" ) {
1009                 $1 = "BuildRequires:"
1010         }
1011         if ($1 == "R:" ) {
1012                 $1 = "Requires:"
1013         }
1014         common_macros()
1015         format_preamble()
1016 #       kill_preamble_macros(); # breaks tabbing
1017
1018         b_idx++
1019         l = substr($0, index($0, $2))
1020         b_ktmp = b_makekey($1, l)
1021         b_key[b_idx] = b_ktmp
1022         b_val[b_ktmp] = $0
1023
1024         next
1025 }
1026
1027 preamble == 1 {
1028         if (b_idx > 0) {
1029                 isort(b_key, b_idx)
1030                 for (i = 1; i <= b_idx; i++) {
1031                         v = b_val[b_key[i]]
1032                         sub(/[ \t]+$/, "", v)
1033                         print "" v
1034                 }
1035                 b_idx = 0
1036         }
1037 }
1038
1039 # main() ;-)
1040 {
1041         preamble = 1
1042
1043         sub(/[ \t]+$/, "")
1044         print
1045
1046         if (name_seen == 0 && name) {
1047                 print "Name:\t\t" name
1048                 name_seen = 1
1049         }
1050
1051         if (version_seen == 0 && version) {
1052                 print "Version:\t" version
1053                 version_seen = 1
1054         }
1055
1056         if (release_seen == 0 && release) {
1057                 print "Release:\t" release
1058                 release_seen = 1
1059         }
1060
1061         if (did_build_root == 0) {
1062 #               print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
1063                 did_build_root = 1
1064         }
1065         if (did_groups == 0) {
1066 #               print "Group:\t\tunknown"
1067                 did_groups = 1
1068         }
1069 }
1070
1071
1072 END {
1073         if (do_not_touch_anything) {
1074                 exit(rc)
1075         }
1076
1077         # TODO: need to output these in proper place
1078         if (BR_count > 0) {
1079                 for (i = 0; i <= BR_count; i++) {
1080                         print BR[i]
1081                 }
1082         }
1083
1084         if (did_clean == 0) {
1085                 print ""
1086                 print "%clean"
1087                 print "rm -rf $RPM_BUILD_ROOT"
1088         }
1089 }
1090
1091 # substitutes fixed strings (not regexps)
1092 function fixedsub(s1,s2,t, ind) {
1093         if (ind = index(t,s1))
1094                 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1095         return t
1096 }
1097
1098 # replace s with s2 if it equals to s1
1099 function replace(s, s1, s2) {
1100         if (s == s1) {
1101                 return s2
1102         } else {
1103                 return s
1104         }
1105 }
1106
1107 # replace common macros
1108 function common_macros() {
1109         gsub(/%name/, "%{name}")
1110         gsub(/%version/, "%{version}")
1111         gsub(/%release/, "%{release}")
1112         gsub(/%epoch/, "%{epoch}")
1113         gsub(/%_sysconfdir/, "%{_sysconfdir}")
1114         gsub(/%_unitdir/, "%{systemdunitdir}")
1115         gsub(/%_initdir/, "/etc/rc.d/init.d")
1116         gsub(/%_man1dir/, "%{_mandir}/man1")
1117         gsub(/%_man2dir/, "%{_mandir}/man2")
1118         gsub(/%_man3dir/, "%{_mandir}/man3")
1119         gsub(/%_man5dir/, "%{_mandir}/man5")
1120         gsub(/%_man8dir/, "%{_mandir}/man8")
1121
1122 }
1123
1124 # There should be one or two tabs after the colon.
1125 function format_preamble()
1126 {
1127         if (/^#/ || /^%bcond_with/) {
1128                 return
1129         }
1130         sub(/:[ \t]*/, ":")
1131         if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1132                 if (RLENGTH < 8) {
1133                         sub(/:/, ":\t\t")
1134                 } else {
1135                         sub(/:/, ":\t")
1136                 }
1137         }
1138 }
1139
1140 # Replace directly specified directories with macros
1141 function use_macros()
1142 {
1143         # -m, --skip-macros, --no-macros -- skip macros subst
1144         if (ENVIRON["SKIP_MACROS"]) {
1145                 return
1146         }
1147
1148         # leave inline sed lines alone
1149         if (/(%{__sed}|sed) -i -e/) {
1150                 return
1151         }
1152
1153         # leave alone with -DSOMETHING=/path/to/bin
1154         if (/-D.+=.+/) {
1155                 return
1156         }
1157
1158         common_macros()
1159
1160         sub("%{_defaultdocdir}", "%{_docdir}")
1161         sub("%{_pkgdocdir}", "%{_docdir}")
1162         sub("%{_datadir}/doc", "%{_docdir}")
1163         sub("%{_bindir}/perl", "%{__perl}")
1164         sub("%{_bindir}/python", "%{__python}")
1165         sub("%{__python2}", "%{__python}")
1166         sub("%{nodejs_sitelib}", "%{nodejs_libdir}")
1167
1168         sub("%py2_build", "%py_build")
1169         sub("%py2_install", "%py_install")
1170
1171         gsub(infodir, "%{_infodir}")
1172
1173         gsub(perl_sitearch, "%{perl_sitearch}")
1174         gsub(perl_archlib, "%{perl_archlib}")
1175         gsub(perl_privlib, "%{perl_privlib}")
1176         gsub(perl_vendorlib, "%{perl_vendorlib}")
1177         gsub(perl_vendorarch, "%{perl_vendorarch}")
1178         gsub(perl_sitelib, "%{perl_sitelib}")
1179
1180         gsub(py_sitescriptdir, "%{py_sitescriptdir}")
1181         gsub(py_sitedir, "%{py_sitedir}")
1182         gsub(py_scriptdir, "%{py_scriptdir}")
1183         gsub("%{python2_sitelib}", "%{py_sitescriptdir}")
1184
1185         gsub(py3_sitescriptdir, "%{py3_sitescriptdir}")
1186         gsub(py3_sitedir, "%{py3_sitedir}")
1187         gsub(py3_scriptdir, "%{py3_scriptdir}")
1188         gsub("%{python3_sitelib}", "%{py3_sitescriptdir}")
1189         gsub("%{python3_version}", "%{py3_ver}")
1190         gsub("%{python2_version}", "%{py_ver}")
1191         gsub("%{python3_sitearch}", "%{py3_sitedir}")
1192
1193         gsub(ruby_archdir, "%{ruby_archdir}")
1194         gsub(ruby_libdir, "%{ruby_libdir}")
1195
1196         gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1197         gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1198         gsub(ruby_sitedir, "%{ruby_sitedir}")
1199         gsub(ruby_vendorarchdir, "%{ruby_vendorarchdir}")
1200         gsub(ruby_vendorlibdir, "%{ruby_vendorlibdir}")
1201         gsub(ruby_vendordir, "%{ruby_vendordir}")
1202         gsub(ruby_rubylibdir, "%{ruby_rubylibdir}") # deprecated
1203         gsub(ruby_rdocdir, "%{ruby_rdocdir}")
1204         gsub(ruby_ridir, "%{ruby_ridir}")
1205         gsub(ruby_specdir, "%{ruby_specdir}")
1206
1207         gsub("%{_unitdir}", "%{systemdunitdir}")
1208         gsub(systemdunitdir, "%{systemdunitdir}")
1209         gsub("%{_userunitdir}", "%{systemduserunitdir}")
1210         gsub(systemduserunitdir, "%{systemduserunitdir}")
1211         gsub(systemdtmpfilesdir, "%{systemdtmpfilesdir}")
1212         gsub("%{_tmpfilesdir}", "%{systemdtmpfilesdir}")
1213         gsub("%{_prefix}/lib/tmpfiles.d", "%{systemdtmpfilesdir}")
1214
1215         gsub("%{_datadir}/applications", "%{_desktopdir}")
1216         gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
1217         gsub("%{_datadir}/java", "%{_javadir}")
1218
1219         gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
1220         gsub(pkgconfigdir, "%{_pkgconfigdir}")
1221
1222         gsub("%{_datadir}/pkgconfig", "%{_npkgconfigdir}")
1223         gsub(npkgconfigdir, "%{_npkgconfigdir}")
1224
1225         gsub("%{_datadir}/locale", "%{_localedir}")
1226         gsub(localedir, "%{_localedir}")
1227
1228         gsub(libdir, "%{_libdir}")
1229         gsub(javadir, "%{_javadir}")
1230
1231         gsub(bindir, "%{_bindir}")
1232         gsub("%{prefix}/bin", "%{_bindir}")
1233         if (prefix"/bin" == bindir)
1234                 gsub("%{_prefix}/bin", "%{_bindir}")
1235
1236         for (c = 1; c <= NF; c++) {
1237                 if ($c ~ sbindir "/fix-info-dir")
1238                         continue
1239                 if ($c ~ sbindir "/webapp")
1240                         continue
1241                 if ($c ~ sbindir "/ldconfig")
1242                         continue
1243                 if ($c ~ sbindir "/chsh")
1244                         continue
1245                 if ($c ~ sbindir "/usermod")
1246                         continue
1247                 if ($c ~ sbindir "/chkconfig")
1248                         continue
1249                 if ($c ~ sbindir "/installzope(product|3package)")
1250                         continue
1251                 gsub(sbindir, "%{_sbindir}", $c)
1252         }
1253
1254         gsub("%{prefix}/sbin", "%{_sbindir}")
1255         if (prefix"/sbin" == sbindir) {
1256                 gsub("%{_prefix}/sbin", "%{_sbindir}")
1257         }
1258
1259         for (c = 1; c <= NF; c++) {
1260                 if ($c ~ sysconfdir "/{?cron.")
1261                         continue
1262                 if ($c ~ sysconfdir "/{?crontab.d")
1263                         continue
1264                 if ($c ~ sysconfdir "/{?env.d")
1265                         continue
1266                 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
1267                         continue
1268                 if ($c ~ sysconfdir "/{?udev")
1269                         continue
1270                 if ($c ~ sysconfdir "/{?hotplug")
1271                         continue
1272                 if ($c ~ sysconfdir "/{?logrotate.d")
1273                         continue
1274                 if ($c ~ sysconfdir "/{?pam.d")
1275                         continue
1276                 if ($c ~ sysconfdir "/{?apparmor.d")
1277                         continue
1278                 if ($c ~ sysconfdir "/{?profile.d")
1279                         continue
1280                 if ($c ~ sysconfdir "/{?rc.d")
1281                         continue
1282                 if ($c ~ sysconfdir "/{?security")
1283                         continue
1284                 if ($c ~ sysconfdir "/{?skel")
1285                         continue
1286                 if ($c ~ sysconfdir "/{?sysconfig")
1287                         continue
1288                 if ($c ~ sysconfdir "/{?shrc.d")
1289                         continue
1290                 if ($c ~ sysconfdir "/{?certs")
1291                         continue
1292                 if ($c ~ sysconfdir "/{?X11")
1293                         continue
1294                 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1295                         continue
1296                 if ($c ~ sysconfdir "/{?rpm")
1297                         continue
1298                 if ($c ~ sysconfdir "/{?bash_completion.d")
1299                         continue
1300                 if ($c ~ sysconfdir "/{?samba")
1301                         continue
1302                 if ($c ~ sysconfdir "/{?xdg")
1303                         continue
1304                 if ($c ~ sysconfdir "/{?NetworkManager")
1305                         continue
1306                 if ($c ~ sysconfdir "/{?default")
1307                         continue
1308                 if ($c ~ sysconfdir "/{?pm")
1309                         continue
1310                 if ($c ~ sysconfdir "/shells")
1311                         continue
1312                 if ($c ~ sysconfdir "/inittab")
1313                         continue
1314                 if ($c ~ sysconfdir "/init")
1315                         continue
1316                 if ($c ~ sysconfdir "/ppp")
1317                         continue
1318                 if ($c ~ sysconfdir "/dbus-1")
1319                         continue
1320                 if ($c ~ sysconfdir "/tmpwatch")
1321                         continue
1322                 if ($c ~ sysconfdir "/acpi")
1323                         continue
1324                 if ($c ~ sysconfdir "/apm")
1325                         continue
1326                 if ($c ~ sysconfdir "/modules-load\.d")
1327                         continue
1328                 gsub(sysconfdir, "%{_sysconfdir}", $c)
1329         }
1330
1331         gsub(docdir, "%{_docdir}")
1332
1333         gsub(kdedocdir, "%{_kdedocdir}")
1334
1335         gsub(gtkdocdir, "%{_gtkdocdir}")
1336         gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1337
1338         gsub(php_pear_dir, "%{php_pear_dir}")
1339         gsub(php_data_dir, "%{php_data_dir}")
1340         gsub("%{_datadir}/php", "%{php_data_dir}")
1341         gsub("%{php_home}", "%{php_data_dir}")
1342         gsub("%{php_extdir}", "%{php_extensiondir}")
1343
1344         # change to %{_datadir}, with some exceptions
1345         for (c = 1; c <= NF; c++) {
1346                 if ($c ~ datadir "/automake")
1347                         continue
1348                 if ($c ~ datadir "/unsermake")
1349                         continue
1350                 if ($c ~ datadir "/file/magic.mime")
1351                         continue
1352                 gsub(datadir, "%{_datadir}", $c)
1353         }
1354
1355         # completions dir, after datadir change
1356         gsub("%{_datadir}/bash-completion/completions", "%{bash_compdir}")
1357         gsub("%{_datadir}/fish/vendor_completions.d", "%{fish_compdir}")
1358         gsub("%{_datadir}/zsh/site-functions", "%{zsh_compdir}")
1359
1360         gsub("%{prefix}/share", "%{_datadir}")
1361         if (prefix"/share" == datadir)
1362                 gsub("%{_prefix}/share", "%{_datadir}")
1363
1364         # CFLAGS="-I/usr/include/ncurses is usually correct.
1365         if (!/-I\/usr\/include/) {
1366                 gsub(includedir, "%{_includedir}")
1367         }
1368
1369         gsub("%{prefix}/include", "%{_includedir}")
1370         if (prefix"/include" == includedir) {
1371                 gsub("%{_prefix}/include", "%{_includedir}")
1372         }
1373
1374         gsub(mandir, "%{_mandir}")
1375         if ($0 !~ "%{_datadir}/manual") {
1376                 gsub("%{_datadir}/man", "%{_mandir}")
1377         }
1378         gsub("%{_prefix}/share/man", "%{_mandir}")
1379         gsub("%{prefix}/share/man", "%{_mandir}")
1380         gsub("%{prefix}/man", "%{_mandir}")
1381         gsub("%{_prefix}/man", "%{_mandir}")
1382
1383         gsub(infodir, "%{_infodir}")
1384         gsub("%{prefix}/info", "%{_infodir}")
1385         gsub("%{_prefix}/info", "%{_infodir}")
1386
1387         if (prefix !~ "/X11R6") {
1388                 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1389         }
1390
1391         gsub(examplesdir, "%{_examplesdir}")
1392
1393         if (prefix != "/") {
1394                 # leave --with-foo=/usr alone
1395                 if ($0 !~ "--with.*=.*" prefix) {
1396                         for (c = 1; c <= NF; c++) {
1397                                 if ($c ~ prefix "/sbin/fix-info-dir")
1398                                         continue
1399                                 if ($c ~ prefix "/sbin/webapp")
1400                                         continue
1401                                 if ($c ~ prefix "/sbin/chsh")
1402                                         continue
1403                                 if ($c ~ prefix "/sbin/usermod")
1404                                         continue
1405                                 if ($c ~ prefix "/sbin/installzope(product|3package)")
1406                                         continue
1407                                 if ($c ~ prefix "/share/automake")
1408                                         continue
1409                                 if ($c ~ prefix "/share/unsermake")
1410                                         continue
1411                                 if ($c ~ prefix "/lib/sendmail")
1412                                         continue
1413                                 if ($c ~ prefix "/lib/pkgconfig")
1414                                         continue
1415
1416                                 # CFLAGS="-I/usr..." is usually correct.
1417                                 if (/-I\/usr/)
1418                                         continue
1419                                 # same for LDFLAGS="-L/usr..."
1420                                 if (/-L\/usr/)
1421                                         continue
1422
1423                                 gsub(prefix, "%{_prefix}", $c)
1424                         }
1425                 }
1426                 gsub("%{prefix}", "%{_prefix}")
1427         }
1428
1429         # replace back
1430         gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1431         gsub("%{_includedir}/freetype", "/usr/include/freetype")
1432
1433         gsub("%{PACKAGE_VERSION}", "%{version}")
1434         gsub("%{PACKAGE_NAME}", "%{name}")
1435
1436         gsub("^make$", "%{__make}")
1437         gsub("^make ", "%{__make} ")
1438         gsub("^gcc ", "%{__cc} ")
1439         gsub("^rm --interactive=never ", "%{__rm} ")
1440
1441         # fedora
1442         gsub("%{ruby_sitearch}", "%{ruby_sitearchdir}")
1443         gsub("%{python_sitearch}", "%{py_sitedir}")
1444         gsub("%{python_sitelib}", "%{py_sitescriptdir}")
1445         gsub("%{python2_sitearch}", "%{py_sitedir}")
1446
1447         # alt linux
1448         gsub("%_man1dir", "%{_mandir}/man1")
1449
1450         # mandrake specs
1451         gsub("^%make$", "%{__make}")
1452         gsub("^%make ", "%{__make} ")
1453         gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1454         gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1455         gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1456         gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
1457         gsub("^%{__install}", "install")
1458         gsub("%optflags", "%{rpmcflags}")
1459         gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1460
1461         gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
1462         gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
1463         $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1464         $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
1465         $0 = fixedsub("%{?buildroot}", "$RPM_BUILD_ROOT", $0)
1466         $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0)
1467         $0 = fixedsub("%__install", "install", $0)
1468
1469         # split configure line to multiple lines
1470         if (/%configure +$/) {
1471                 sub( / +$/, "" )
1472         } else if (/%configure / && !/\\$/) {
1473                 $0 = format_configure($0)
1474         }
1475
1476         gsub("%_bindir", "%{_bindir}")
1477         gsub("%_datadir", "%{_datadir}")
1478         gsub("%_iconsdir", "%{_iconsdir}")
1479         gsub("%_sbindir", "%{_sbindir}")
1480         gsub("%_mandir", "%{_mandir}")
1481         gsub("%name", "%{name}")
1482         gsub(/%__rm/, "rm")
1483         gsub(/%__mkdir_p/, "install -d")
1484         gsub(/%__cp/, "cp")
1485         gsub(/%__ln_s/, "ln -s")
1486         gsub(/%__sed/, "%{__sed}")
1487         gsub(/%__cat/, "cat")
1488         gsub(/%__chmod/, "chmod")
1489
1490         gsub(/%desktop_database_postun/, "%update_desktop_database")
1491         gsub(/%desktop_database_post/, "%update_desktop_database")
1492
1493         gsub("/usr/src/linux", "%{_kernelsrcdir}")
1494         gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1495
1496         if (/^ant / || /^%{ant}/) {
1497                 sub(/^ant/, "%ant")
1498                 sub(/^%{ant}/, "%ant")
1499                 add_br("BuildRequires:  jpackage-utils")
1500                 add_br("BuildRequires:  rpmbuild(macros) >= 1.300")
1501         }
1502
1503         $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0)
1504         $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0)
1505
1506         # kill the _class and _subclass pear macros
1507         if (pear_class) {
1508                 gsub("%{_class}", pear_class)
1509         }
1510         if (pear_subclass) {
1511                 gsub("%{_subclass}", pear_subclass)
1512         }
1513 }
1514
1515 function format_configure(line,         n, a, s) {
1516         n = split(line, a, / /)
1517         s = a[1] " \\\n"
1518         for (i = 2; i <= n; i++) {
1519                 s = s "\t" a[i] " \\\n"
1520         }
1521         return s
1522 }
1523
1524
1525 # insertion sort of A[1..n]
1526 # copied from mawk manual
1527 function isort(A,n,             i,j,hold) {
1528         for (i = 2; i <= n; i++) {
1529                 hold = A[j = i]
1530                 while (A[j-1] > hold) {
1531                         j-- ; A[j+1] = A[j]
1532                 }
1533                 A[j] = hold
1534         }
1535         # sentinel A[0] = "" will be created if needed
1536 }
1537
1538
1539 function use_files_macros(      i, n, t, a, l)
1540 {
1541         use_macros()
1542
1543         # skip comments
1544         if (/^#/) {
1545                 return 1
1546         }
1547
1548         sub("^%doc %{_mandir}", "%{_mandir}")
1549         sub("^%license", "%doc")
1550
1551         gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1552         gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
1553
1554         # uid/gid nobody is not valid in %files
1555         if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1556                 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1557         }
1558
1559         # s[gu]id programs with globs are evil
1560         if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1561                 $0 = $0 " # FIXME no globs for suid/sgid files"
1562         }
1563
1564         # replace back
1565         gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
1566         gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
1567         gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1568         gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1569         gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1570         gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1571         gsub("%{_sysconfdir}/security", "/etc/security")
1572         gsub("%{_sysconfdir}/skel", "/etc/skel")
1573         gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1574         gsub("%{_sysconfdir}/certs", "/etc/certs")
1575         gsub("%{_sysconfdir}/init.d", "/etc/init.d")
1576         gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
1577         gsub("%{_sysconfdir}/pki", "/etc/pki")
1578         gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
1579
1580         # /etc/init.d -> /etc/rc.d/init.d
1581         if (!/^\/etc\/init\.d$/) {
1582                  gsub("/etc/init.d", "/etc/rc.d/init.d")
1583         }
1584
1585         if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
1586                 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1587                         $0 = "%attr(754,root,root) " $0
1588                 }
1589                 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
1590                         gsub("^%attr\\(... *,", "%attr(754,")
1591                 }
1592         }
1593
1594         if (/lib.+\.so\b/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
1595                 $0 = "%attr(755,root,root) " $0
1596         }
1597
1598         if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1599                 $0 = "%attr(755,root,root) " $0
1600         }
1601
1602         # remove attrs from man pages
1603         if (/%{_mandir}/ && /^%attr/) {
1604                 sub("^%attr\\(.*\\) *", "")
1605         }
1606
1607         # /etc/sysconfig files
1608         # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
1609         # attr not required, allow default 644 attr
1610         if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
1611                 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
1612                         gsub("%config", "%config(noreplace)")
1613                 }
1614
1615                 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
1616                         $NF = "%config(noreplace) " $NF
1617                 }
1618
1619                 if (/\/etc\/sysconfig\// && /%attr\(755/) {
1620                         gsub("^%attr\\(... *,", "%attr(640,")
1621                 }
1622
1623                 if (/\/etc\/sysconfig\// && !/%verify/) {
1624                         gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig")
1625                 }
1626         }
1627
1628         # kill leading zeros
1629         if (/%attr\(0[1-9]/) {
1630                 gsub("%attr\\(0", "%attr(")
1631         }
1632
1633         # kill leading whitespace
1634         gsub(/^ +/, "")
1635
1636         # kill default attrs
1637         gsub(/%dir %attr\(755,root,root\)/, "%dir")
1638         gsub(/%attr\(755,root,root\) %dir/, "%dir")
1639         if (!/%dir/) {
1640                 gsub(/%attr\(644,root,root\) /, "")
1641         }
1642
1643         # sort %verify attrs
1644         if (match($0, /%verify\(not([^)]+)\)/)) {
1645                 t = substr($0, RSTART, RLENGTH)
1646                 # kill commas: %verify(not,md5,size,mtime)
1647                 gsub(/,/, " ", t)
1648
1649                 gsub(/^%verify\(not |\)$/, "", t)
1650                 n = split(t, a, / /)
1651                 isort(a, n)
1652
1653                 s = "%verify(not"
1654                 for (i = 1 ; i <= n; i++) {
1655                         s = s " " a[i]
1656                 }
1657                 s = s ")"
1658
1659                 gsub(/%verify\(not[^)]+\)/, s)
1660         }
1661
1662         if (/%{_mandir}/) {
1663                 gsub("\.gz$", "*")
1664                 gsub("%ext_man$", "*")
1665         }
1666
1667         # locale dir and no %lang -> bad
1668         if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
1669                 $(NF + 1) = "# FIXME consider using %find_lang"
1670         }
1671
1672         # python egg-infos
1673         if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
1674                 # tests:
1675                 #%{py_sitedir}/*-py2.4.egg-info
1676                 #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
1677                 #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
1678                 #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
1679
1680                 l = index($0, "/")
1681                 t = substr($0, 0, l)
1682                 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"))
1683                 if (match(s, "[^-]+$")) {
1684                         if (RSTART > 1) {
1685                                 s = substr(s, 0, RSTART - 1)
1686                         }
1687                         print "%if \"%{py_ver}\" > \"2.4\""
1688                         gsub(t "/.+.egg-info", t "/" s "-*.egg-info")
1689                         print
1690                         print "%endif"
1691                         return 0
1692                 }
1693         }
1694
1695         # atrpms
1696         $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0)
1697         $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0)
1698         $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0)
1699
1700         gsub(libdir "/pkgconfig", "%{_pkgconfigdir}")
1701         gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
1702         gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}")
1703
1704         gsub("%{_datadir}/applications", "%{_desktopdir}")
1705         gsub("%{_datadir}/icons", "%{_iconsdir}")
1706         gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
1707         gsub("%{_datadir}/pear", "%{php_pear_dir}")
1708         gsub("%{_datadir}/php", "%{php_data_dir}")
1709
1710         return 1
1711 }
1712
1713 function use_script_macros()
1714 {
1715         if (gsub("/sbin/service", "%service")) {
1716                 sub(" >/dev/null 2>&1 \|\|:", "")
1717                 sub(" 2> /dev/null \|\| :", "")
1718         }
1719 }
1720
1721 function fill(ch, n, i) {
1722         for (i = 0; i < n; i++)
1723                 printf("%c", ch)
1724 }
1725
1726 function format_flush(line, indent, newline, word, first_word) {
1727         first_word = 1
1728         if (format_indent == -1)
1729                 newline = ""
1730         else
1731                 newline = fill(" ", format_indent) "- "
1732
1733         while (match(line, /[^\t ]+/)) {
1734                 word = substr(line, RSTART, RLENGTH)
1735                 if (length(newline) + length(word) + 1 > tw) {
1736                         print newline
1737
1738                         if (format_indent == -1)
1739                                 newline = ""
1740                         else
1741                                 newline = fill(" ", format_indent + 2)
1742                         first_word = 1
1743                 }
1744
1745                 if (first_word) {
1746                         newline = newline word
1747                         first_word = 0
1748                 } else
1749                         newline = newline " " word
1750
1751                 line = substr(line, RSTART + RLENGTH)
1752         }
1753         if (newline ~ /[^\t ]/) {
1754                 print newline
1755         }
1756 }
1757
1758 function cflags(var)
1759 {
1760         if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1761                 removed[var] = 1
1762                 return 0
1763         }
1764
1765         if (!/!\?debug/)
1766                 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
1767         return 1
1768 }
1769
1770 # return whole matched pattern
1771 function matchstr(str, pat)
1772 {
1773         match(str, "[^/]+$")
1774         return substr(str, RSTART, RLENGTH)
1775 }
1776
1777 function unify_url(url)
1778 {
1779
1780         # sourceforge urls
1781         # Docs about sourceforge mirror system: http://sourceforge.net/apps/trac/sourceforge/wiki/Mirrors
1782
1783         # 0. strip "#", rpm5 chops it off
1784         sub("#.*", "", url)
1785
1786         # 1. unify domains
1787         sub("^http://prdownloads\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1788         sub("^http://download\.sf\.net/", "http://downloads.sourceforge.net/", url)
1789         sub("^http://download\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1790         sub("^http://dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1791         sub("^http://.*\.dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1792         sub("^http://dl\.sf\.net/", "http://downloads.sourceforge.net/", url)
1793         sub("^http://downloads\.sourceforge\.net/sourceforge/", "http://downloads.sourceforge.net/", url)
1794
1795         # 3. unify urls
1796         if (url ~ /sourceforge.net/) {
1797                 sub("[?&]big_mirror=.*$", "", url)
1798                 sub("[?&]modtime=.*$", "", url)
1799                 sub("[?&]r=.*$", "", url)
1800                 sub("[?]use_mirror=.*$", "", url)
1801                 sub("[?]download$", "", url)
1802                 sub("/download$", "", url)
1803         }
1804
1805         # SF: new style urls, strip "files/" between and prepend dl.
1806         if (match(url, "^http://sourceforge.net/projects/[^/]+/files/")) {
1807                 url = substr(url, 1, RLENGTH - length("files/")) substr(url, RSTART + RLENGTH)
1808                 sub("^http://sourceforge.net/projects/", "http://downloads.sourceforge.net/project/", url)
1809         }
1810
1811         # SF unify: http://downloads.sourceforge.net/PROJECT/TARBALL
1812         # http://downloads.sourceforge.net/project/PROJECT/FILE/VERSION/%{name}-%{version}.zip
1813         if (match(url, "^http://downloads.sourceforge.net/project/[^/]+")) {
1814                 url = sprintf("http://downloads.sourceforge.net/%s/%s", substr(url, 42, RLENGTH - 41), matchstr(url, "[^/]+$"))
1815         }
1816
1817         sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1818         sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1819
1820         # apache urls
1821         sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1822
1823         # gnu.org
1824         sub("^ftp://ftp\.gnu\.org/", "http://ftp.gnu.org/", url)
1825         sub("^http://ftp\.gnu\.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
1826
1827         # debian.org
1828         sub("^ftp://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1829         sub("^http://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1830         sub("^ftp://ftp\.debian\.org/pub/debian/", "ftp://ftp.debian.org/debian/", url)
1831
1832         return url
1833 }
1834
1835 function demacroize(str)
1836 {
1837         if (mod_name) {
1838                 sub("%{mod_name}", mod_name, str)
1839         }
1840         if (pearname) {
1841                 sub("%{_pearname}", pearname, str)
1842         }
1843         if (pearname) {
1844                 sub("%{pearname}", pearname, str)
1845         }
1846         if (name) {
1847                 sub("%{name}", name, str)
1848         }
1849         if (version) {
1850                 sub("%{version}", version, str)
1851         }
1852         if (_beta) {
1853                 sub("%{_beta}", _beta, str)
1854         }
1855         if (_rc) {
1856                 sub("%{_rc}", _rc, str)
1857         }
1858         if (_pre) {
1859                 sub("%{_pre}", _pre, str)
1860         }
1861         if (_snap) {
1862                 sub("%{_snap}", _snap, str)
1863         }
1864         if (subver) {
1865                 sub("%{subver}", subver, str)
1866         }
1867         return str
1868 }
1869
1870 function kill_preamble_macros()
1871 {
1872         if ($1 ~ /^Obsoletes:/) {
1873                 # NB! assigning $2 a value breaks tabbing
1874                 $2 = demacroize($2)
1875         }
1876         if ($1 ~ /^URL:/) {
1877                 # NB! assigning $2 a value breaks tabbing
1878                 $2 = demacroize($2)
1879                 $2 = unify_url($2)
1880         }
1881
1882         # fedora extras
1883         if (/%{\?FE_USERADD_REQ}/) {
1884                 $0 = ""
1885                 print "BuildRequires:   rpmbuild(macros) >= 1.202"
1886                 print "Provides:        user(xxx)"
1887                 print "Requires(postun):        /usr/sbin/userdel"
1888                 print "Requires(pre):  /bin/id"
1889                 print "Requires(pre):  /usr/sbin/useradd"
1890         }
1891 }
1892
1893 function get_epoch(pkg, ver,    epoch)
1894 {
1895         return
1896 # should parse the BR lines more adequately:
1897 #       freetype = 2.0.0 -> correct
1898 #       freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1899
1900         shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'"
1901         shell | getline epoch
1902         return epoch
1903 }
1904
1905 function format_requires(tag, value,    n, p, i, deps, ndeps) {
1906         # skip any formatting for commented out items or some weird macros
1907         if (/^#/ || /%\(/) {
1908                 return tag "\t" value
1909         }
1910         n = split(value, p, / *,? */)
1911         for (i = 1; i <= n; i++) {
1912                 if (p[i+1] ~ /[<=>]/) {
1913                         # add epoch if the version doesn't have it but BuildRequires.txt has
1914                         if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1915                                 epoch = get_epoch(p[i], p[i+2])
1916                                 if (epoch) {
1917                                         p[i+2] = epoch ":" p[i+2]
1918                                 }
1919                         }
1920                         deps[ndeps++] = p[i] " " p[i+1] " " p[i+2]
1921                         i += 2
1922                 } else {
1923                         deps[ndeps++] = p[i]
1924                 }
1925         }
1926         s = ""
1927         for (i in deps) {
1928                 s = s sprintf("%s\t%s\n", tag, deps[i])
1929         }
1930         return substr(s, 1, length(s)-1)
1931 }
1932
1933 function use_tabs()
1934 {
1935         # reverse vim: ts=4 sw=4 et
1936         gsub(/    /, "\t")
1937 }
1938
1939 function add_br(br)
1940 {
1941         BR[BR_count++] = br
1942 }
1943
1944 # {{{ Load rpm macros
1945 # you should update the list also in adapter when making changes here
1946 function import_rpm_macros(  v) {
1947         # File with rpm groups
1948         topdir = ENVIRON["_topdir"]
1949
1950         if (!topdir) {
1951                 print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
1952                 do_not_touch_anything = 1
1953                 exit(rc = 1)
1954         }
1955
1956         prefix = ENVIRON["_prefix"]
1957         bindir = ENVIRON["_bindir"]
1958         sbindir = ENVIRON["_sbindir"]
1959         libdir = ENVIRON["_libdir"]
1960         sysconfdir = ENVIRON["_sysconfdir"]
1961         datadir = ENVIRON["_datadir"]
1962         includedir = ENVIRON["_includedir"]
1963         mandir = ENVIRON["_mandir"]
1964         infodir = ENVIRON["_infodir"]
1965         examplesdir = ENVIRON["_examplesdir"]
1966         docdir = ENVIRON["_defaultdocdir"]
1967         kdedocdir = ENVIRON["_kdedocdir"]
1968         gtkdocdir = ENVIRON["_gtkdocdir"]
1969         desktopdir = ENVIRON["_desktopdir"]
1970         pixmapsdir = ENVIRON["_pixmapsdir"]
1971         javadir = ENVIRON["_javadir"]
1972         pkgconfigdir = ENVIRON["_pkgconfigdir"]
1973         npkgconfigdir = ENVIRON["_npkgconfigdir"]
1974         localedir = ENVIRON["_localedir"]
1975
1976         perl_sitearch = ENVIRON["perl_sitearch"]
1977         perl_archlib = ENVIRON["perl_archlib"]
1978         perl_privlib = ENVIRON["perl_privlib"]
1979         perl_vendorlib = ENVIRON["perl_vendorlib"]
1980         perl_vendorarch = ENVIRON["perl_vendorarch"]
1981         perl_sitelib = ENVIRON["perl_sitelib"]
1982
1983         py_sitescriptdir = ENVIRON["py_sitescriptdir"]
1984         py_sitedir = ENVIRON["py_sitedir"]
1985         py_scriptdir = ENVIRON["py_scriptdir"]
1986         py_ver = ENVIRON["py_ver"]
1987
1988         py3_sitescriptdir = ENVIRON["py3_sitescriptdir"]
1989         py3_sitedir = ENVIRON["py3_sitedir"]
1990         py3_scriptdir = ENVIRON["py3_scriptdir"]
1991         py3_ver = ENVIRON["py3_ver"]
1992
1993         ruby_archdir = ENVIRON["ruby_archdir"]
1994         ruby_libdir = ENVIRON["ruby_libdir"]
1995         ruby_sitedir = ENVIRON["ruby_sitedir"]
1996         ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
1997         ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
1998         ruby_vendordir = ENVIRON["ruby_vendordir"]
1999         ruby_vendorarchdir = ENVIRON["ruby_vendorarchdir"]
2000         ruby_vendorlibdir = ENVIRON["ruby_vendorlibdir"]
2001         ruby_rubylibdir = ENVIRON["ruby_rubylibdir"] # deprecated
2002         ruby_rdocdir = ENVIRON["ruby_rdocdir"]
2003         ruby_ridir = ENVIRON["ruby_ridir"]
2004         ruby_specdir = ENVIRON["ruby_specdir"]
2005
2006         php_pear_dir = ENVIRON["php_pear_dir"]
2007         php_data_dir = ENVIRON["php_data_dir"]
2008         tmpdir = ENVIRON["tmpdir"]
2009
2010         systemdunitdir = ENVIRON["systemdunitdir"]
2011         systemduserunitdir = ENVIRON["systemduserunitdir"]
2012         systemdtmpfilesdir = ENVIRON["systemdtmpfilesdir"]
2013 }
2014 # }}}
2015
2016 # {{{ replace opam names (caml)
2017 function replace_opam_deps(field,     name) {
2018         name = $2
2019         if (name ~ "^(cryptokit|extlib|xmlm)$") {
2020                 name = "ocaml-" name
2021         } else if (name ~ "^(biniou|easy-format|yojson|gapi-ocaml)$") {
2022                 name = "ocaml-" name "-devel"
2023         } else if (name == "ocamlfind") {
2024                 name = "ocaml-findlib"
2025         } else if (name == "sqlite3-ocaml") {
2026                 name = "ocaml-sqlite"
2027         } else if (name == "ocamlnet") {
2028                 name = "ocaml-net"
2029         } else if (name == "ocurl") {
2030                 name = "ocaml-curl-devel"
2031         } else if (name == "ocamlfuse") {
2032                 name = "ocaml-fuse-devel"
2033         } else if (name == "camlidl") {
2034                 name = "ocaml-idl-devel"
2035         }
2036
2037         if (name != $2) {
2038                 $2 = name
2039         }
2040 }
2041 # }}}
2042
2043 # {{{ php virtual deps as discussed in devel-en
2044 function replace_php_virtual_deps(field) {
2045         pkg = $2
2046 #       if (pkg == "php-program") {
2047 #               $0 = $1 "\t/usr/bin/php"
2048 #               return
2049 #       }
2050
2051         if (field == "requires:" || field == "suggests:") {
2052                 if (pkg ~ /^php-(bcmath|bz2|calendar|ctype|curl|dba|date|dom|enchant|exif|fileinfo|filter|fpm|ftp|gd|gettext|gmp|hash|iconv|imap|interbase|intl|json|ldap|mbstring|mcrypt|mssql|mysql|mysqli|odbc|openssl|pcntl|pcre|pdo|pdo-dblib|pdo-firebird|pdo-mysql|pdo-odbc|pdo-pgsql|pdo-sqlite|pgsql|phar|posix|pspell|readline|recode|reflection|session|shmop|simplexml|snmp|soap|sockets|spl|sqlite|sqlite3|sybase-ct|sysvmsg|sysvsem|sysvshm|tidy|tokenizer|wddx|xml|xmlreader|xmlrpc|xmlwriter|xsl|zip|zlib)/) {
2053                         sub(/^php-/, "php(", pkg)
2054                         sub(/$/, ")", pkg)
2055                         $2 = pkg
2056                 } else if (pkg ~ /^php-pecl-/) {
2057                         sub(/^php-pecl-/, "php(", pkg)
2058                         sub(/$/, ")", pkg)
2059                         $2 = pkg
2060                 }
2061         }
2062
2063         if (pkg == "php" || pkg == "php-common") {
2064                 $2 = "php(core)"
2065                 if ($4 ~ /^[0-9]:/) {
2066                         $4 = substr($4, 3)
2067                 }
2068         }
2069
2070         if (pkg == "php(language)") {
2071                 $2 = "php(core)"
2072         }
2073
2074         if (pkg == "php4") {
2075                 $2 = "webserver(php)"
2076                 if ($4 ~ /^[0-9]:/) {
2077                         $4 = substr($4, 3)
2078                 }
2079         }
2080 }
2081 # }}}
2082
2083 # {{{ replace_groupnames(group)
2084 function replace_groupnames(group) {
2085         group = replace(group, "Amusements/Games", "Applications/Games")
2086         group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy")
2087         group = replace(group, "Application/Multimedia", "Applications/Multimedia")
2088         group = replace(group, "Application/System", "Applications/System")
2089         group = replace(group, "Applications/Compilers", "Development/Languages")
2090         group = replace(group, "Applications/Daemons", "Daemons")
2091         group = replace(group, "Applications/Internet", "Applications/Networking")
2092         group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking")
2093         group = replace(group, "Applications/Productivity", "X11/Applications")
2094         group = replace(group, "Applications/Security", "Applications/System")
2095         group = replace(group, "Applications/Web", "Applications/WWW")
2096         group = replace(group, "Database", "Applications/Databases")
2097         group = replace(group, "Development/C", "Development/Libraries")
2098         group = replace(group, "Development/Code Generators", "Development")
2099         group = replace(group, "Development/Docs", "Documentation")
2100         group = replace(group, "Development/Documentation", "Documentation")
2101         group = replace(group, "Development/Java", "Development/Languages/Java")
2102         group = replace(group, "Development/Languages/C and C++", "Libraries")
2103         group = replace(group, "Development/Languages/Other", "Development/Languages")
2104         group = replace(group, "Development/Languages/Ruby", "Development/Languages")
2105         group = replace(group, "Development/Libraries/C and C++", "Development/Libraries")
2106         group = replace(group, "Development/Libraries/Java", "Development/Languages/Java")
2107         group = replace(group, "Development/Libraries/Python", "Development/Languages/Python")
2108         group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl")
2109         group = replace(group, "Development/Libraries/X11", "X11/Development/Libraries")
2110         group = replace(group, "Development/Other", "Development")
2111         group = replace(group, "Development/Python", "Development/Languages/Python")
2112         group = replace(group, "Development/Testing", "Development")
2113         group = replace(group, "Editors", "Applications/Text")
2114         group = replace(group, "Emulators", "Applications/Emulators")
2115         group = replace(group, "File tools", "Applications/File")
2116         group = replace(group, "Games", "Applications/Games")
2117         group = replace(group, "Library/Development", "Development/Libraries")
2118         group = replace(group, "Networking/Deamons", "Networking/Daemons")
2119         group = replace(group, "Networking/Mail", "Applications/Mail")
2120         group = replace(group, "Networking/Other", "Networking")
2121         group = replace(group, "Productivity/Databases/Servers", "Applications/Databases")
2122         group = replace(group, "Productivity/Multimedia/Other", "X11/Applications/Multimedia")
2123         group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP")
2124         group = replace(group, "Python/Libraries", "Libraries/Python")
2125         group = replace(group, "Shells", "Applications/Shells")
2126         group = replace(group, "System Environment/Base", "Base")
2127         group = replace(group, "System Environment/Daemons", "Daemons")
2128         group = replace(group, "System Environment/Kernel", "Base/Kernel")
2129         group = replace(group, "System Environment/Libraries", "Libraries")
2130         group = replace(group, "System Tools", "Applications/System")
2131         group = replace(group, "System", "Base")
2132         group = replace(group, "System/Base", "Base")
2133         group = replace(group, "System/Configuration/Networking", "Applications/Networking")
2134         group = replace(group, "System/Kernel and hardware", "Base/Kernel")
2135         group = replace(group, "System/Libraries", "Libraries")
2136         group = replace(group, "System/Servers", "Daemons")
2137         group = replace(group, "Text Processing/Markup/HTML", "Applications/Text")
2138         group = replace(group, "Text Processing/Markup/XML", "Applications/Text")
2139         group = replace(group, "Text tools", "Applications/Text")
2140         group = replace(group, "User Interface/Desktops", "X11/Applications")
2141         group = replace(group, "User Interface/X", "X11/Applications")
2142         group = replace(group, "Utilities/System", "Applications/System")
2143         group = replace(group, "Web/Database", "Applications/WWW")
2144         group = replace(group, "X11/GNOME", "X11/Applications")
2145         group = replace(group, "X11/GNOME/Applications", "X11/Applications")
2146         group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries")
2147         group = replace(group, "X11/Games", "X11/Applications/Games")
2148         group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy")
2149         group = replace(group, "X11/Library", "X11/Libraries")
2150         group = replace(group, "X11/Utilities", "X11/Applications")
2151         group = replace(group, "X11/XFree86", "X11")
2152         group = replace(group, "X11/Xserver", "X11/Servers")
2153
2154         return group
2155 }
2156 # }}}
2157
2158 # {{{ replace_pkgconfig(pkg)
2159 function replace_pkgconfig(pkg,    cmd, path, n, i, line) {
2160         n = split("/usr/lib64/pkgconfig /usr/lib/pkgconfig /usr/share/pkgconfig", path, / /)
2161         for (i = 1; i <= n; i++) {
2162                 cmd = "rpm -qf --qf '%{N}' " path[i] "/" pkg ".pc"
2163                 # Getline returns 0 on end-of-file, -1 on error, otherwise 1.
2164                 if ((cmd | getline line) <= 0) {
2165                         continue
2166                 }
2167
2168                 if (line !~ /No such file or directory/) {
2169                         # @modifies global $2
2170                         $2 = line
2171                         return
2172                 }
2173         }
2174 }
2175 # }}}
2176
2177 # {{{ replace_perlmod(pkg)
2178 function replace_perlmod(pkg, version,   cmd, line) {
2179         # do nothing if version is specified
2180         if (version) {
2181                 return
2182         }
2183         cmd = "rpm -q --qf '%{N}\n' --whatprovides 'perl(" pkg ")' "
2184
2185         # Getline returns 0 on end-of-file, -1 on error, otherwise 1.
2186         if ((cmd | getline line) <= 0) {
2187                 return
2188         }
2189
2190         if (line !~ /no package provides/) {
2191                 # @modifies global $2
2192                 $2 = line
2193                 return
2194         }
2195 }
2196 # }}}
2197
2198 # {{{ replace_pythonegg(pkg)
2199 function replace_pythonegg(pkg,    cmd, line) {
2200         cmd = "rpm -q --qf '%{N}' --whatprovides 'pythonegg(" pkg ")'"
2201         # Getline returns 0 on end-of-file, -1 on error, otherwise 1.
2202         if ((cmd | getline line) <= 0) {
2203                 return
2204         }
2205
2206         if (line !~ /no package provides/) {
2207                 # @modifies global $2
2208                 $2 = line
2209                 return
2210         }
2211 }
2212 # }}}
2213
2214 # {{{ replace_requires
2215 function replace_requires(field,   pkg) {
2216         # strip %{?_isa}
2217         if ($2 ~ /_isa/) {
2218                 $2 = fixedsub("%{?_isa}", "", $2);
2219         }
2220
2221         # pkg-config -> package names
2222         if (match($2, /pkgconfig\(([^)]+)\)/)) {
2223                 pkg = substr($2, RSTART + 10, RLENGTH - 11)
2224                 replace_pkgconfig(pkg)
2225         }
2226
2227         # pythonegg -> package names
2228         if (match($2, /pythonegg\(([^)]+)\)/)) {
2229                 pkg = substr($2, RSTART + 10, RLENGTH - 11)
2230                 replace_pythonegg(pkg)
2231         }
2232
2233         # perl() -> package names
2234         if (match($2, /perl\(([^)]+)\)/)) {
2235                 pkg = substr($2, RSTART + 5, RLENGTH - 6)
2236                 replace_perlmod(pkg, $3)
2237         }
2238
2239         sub(/^python-setuptools-devel$/, "python-distribute", $2)
2240         sub(/^gcc-g77/, "gcc-fortran", $2)
2241
2242         # use virtual, not package name
2243         sub(/^rpm-build-macros$/, "rpmbuild(macros)", $2)
2244
2245         # bad package.xml, see http://pear.php.net/bugs/bug.php?id=17779
2246         sub(/^php-php-gtk/, "php-gtk2", $2)
2247
2248         sub(/^rake/, "ruby-rake", $2)
2249
2250         # {{{ jpackages / fedora java packages
2251         sub(/^antlr3$/, "java-antlr3", $2)
2252         sub(/^aqute-bnd$/, "java-bnd", $2)
2253         sub(/^avalon-framework$/, "java-avalon-framework", $2)
2254         sub(/^avalon-logkit$/, "java-avalon-logkit", $2)
2255         sub(/^axis$/, "java-axis", $2)
2256         sub(/^bouncycastle$/, "java-bcprov", $2)
2257         sub(/^bouncycastle-mail$/, "java-bcmail", $2)
2258         sub(/^bouncycastle-pg$/, "java-bcpg", $2)
2259         sub(/^bouncycastle-tsp$/, "java-bctsp", $2)
2260         sub(/^bsf$/, "java-bsf", $2)
2261         sub(/^dom4j$/, "java-dom4j", $2)
2262         sub(/^flute$/, "java-flute", $2)
2263         sub(/^gnu-regexp$/, "java-gnu-regexp", $2)
2264         sub(/^gnu.regexp$/, "java-gnu-regexp", $2)
2265         sub(/^hamcrest$/, "java-hamcrest", $2)
2266         sub(/^itext$/, "java-itext", $2)
2267         sub(/^jaas$/, "java(jaas)", $2)
2268         sub(/^jaf$/, "java(jaf)", $2)
2269         sub(/^jakarta-ant$/, "ant", $2)
2270         sub(/^jakarta-commons-codec$/, "java-commons-codec", $2)
2271         sub(/^jakarta-commons-httpclient$/, "java-commons-httpclient", $2)
2272         sub(/^jakarta-commons-lang24$/, "java-commons-lang", $2)
2273         sub(/^jakarta-commons-logging$/, "java-commons-logging", $2)
2274         sub(/^jakarta-commons-net$/, "java-commons-net", $2)
2275         sub(/^jakarta-log4j$/, "java-log4j", $2)
2276         sub(/^jakarta-oro$/, "java-oro", $2)
2277         sub(/^jakarta-servletapi$/, "java(servlet)", $2)
2278         sub(/^java-devel$/, "jdk", $2)
2279         sub(/^java-dom$/, "java-dom4j", $2)
2280         sub(/^java\(JSP\)$/, "java(jsp)", $2)
2281         sub(/^java\(JavaServerFaces\)$/, "java(javaserverfaces)", $2)
2282         sub(/^java\(Portlet\)$/, "java(portlet)", $2)
2283         sub(/^java\(Servlet\)$/, "java(servlet)", $2)
2284         sub(/^javamail$/, "java(javamail)", $2)
2285         sub(/^jaxp$/, "java(jaxp)", $2)
2286         sub(/^jaxp_parser_impl$/, "java(jaxp_parser_impl)", $2)
2287         sub(/^jaxp_transform_impl$/, "java(jaxp_transform_impl)", $2)
2288         sub(/^jce$/, "java(jce)", $2)
2289         sub(/^jcommon$/, "java-jcommon", $2)
2290         sub(/^jdbc-stdext$/, "java(jdbc-stdext)", $2)
2291         sub(/^jdepend$/, "java-jdepend", $2)
2292         sub(/^jfreechart$/, "java-jfreechart", $2)
2293         sub(/^jmx$/, "java(jmx)", $2)
2294         sub(/^jndi$/, "java(jndi)", $2)
2295         sub(/^jsch$/, "java-jsch", $2)
2296         sub(/^jsse$/, "java(jsse)", $2)
2297         sub(/^jta$/, "java(jta)", $2)
2298         sub(/^junit$/, "java-junit", $2)
2299         sub(/^junit4$/, "java-junit", $2)
2300         sub(/^ldapjdk$/, "ldapsdk", $2)
2301         sub(/^libbase$/, "java-libbase", $2)
2302         sub(/^libfonts$/, "java-libfonts", $2)
2303         sub(/^libformula$/, "java-libformula", $2)
2304         sub(/^liblayout$/, "java-liblayout", $2)
2305         sub(/^libloader$/, "java-libloader", $2)
2306         sub(/^librepository$/, "java-librepository", $2)
2307         sub(/^libserializer$/, "java-libserializer", $2)
2308         sub(/^log4j$/, "java-log4j", $2)
2309         sub(/^logging-log4j$/, "java-log4j", $2)
2310         sub(/^oro$/, "java-oro", $2)
2311         sub(/^pdf-renderer$/, "java-pdf-renderer", $2)
2312         sub(/^pentaho-libxml$/, "java-libxml", $2)
2313         sub(/^rhino$/, "java-rhino", $2)
2314         sub(/^sac$/, "java-sac", $2)
2315         sub(/^saxon-scripts$/, "saxon", $2)
2316         sub(/^servlet$/, "java(servlet)", $2)
2317         sub(/^uddi4j$/, "java-uddi4j", $2)
2318         sub(/^ws-jaxme$/, "java-jaxme", $2)
2319         sub(/^wsdl4j$/, "java-wsdl4j", $2)
2320         sub(/^xalan-j$/, "java-xalan", $2)
2321         sub(/^xalan-j2$/, "java-xalan", $2)
2322         sub(/^xerces-j$/, "java-xerces", $2)
2323         sub(/^xerces-j2$/, "java-xerces", $2)
2324         sub(/^xml-commons-apis$/, "java-xml-commons", $2)
2325         sub(/^xml-commons-resolver$/, "java-xml-commons-resolver", $2)
2326         sub(/^xmldb-api$/, "java-xmldb", $2)
2327         sub(/^xmldb-api-sdk$/, "java-xmldb-sdk", $2)
2328         # }}}
2329
2330         # {{{ fedora / redhat
2331         sub(/^Django$/, "python-django", $2)
2332         sub(/^GitPython$/, "python-git", $2)
2333         sub(/^MySQL-python$/, "python-MySQLdb", $2)
2334         sub(/^NetworkManager-glib-devel$/, "NetworkManager-devel", $2)
2335         sub(/^PyQt4-devel$/, "python-PyQt4-devel", $2)
2336         sub(/^PyQwt-devel$/, "python-PyQwt-devel", $2)
2337         sub(/^PyYAML$/, "python-PyYAML", $2)
2338         sub(/^ccid$/, "pcsc-driver-ccid", $2)
2339         sub(/^cdparanoia-devel$/, "cdparanoia-III-devel", $2)
2340         sub(/^chkconfig$/, "/sbin/chkconfig", $2)
2341         sub(/^db4-devel$/, "db-devel", $2)
2342         sub(/^dbus-python$/, "python-dbus", $2)
2343         sub(/^desktop-notification-daemon$/, "dbus(org.freedesktop.Notifications)", $2)
2344         sub(/^device-mapper-multipath$/, "multipath-tools", $2)
2345         sub(/^django-tagging$/, "python-django_tagging", $2)
2346         sub(/^elfutils-libelf-devel$/, "elfutils-devel", $2)
2347         sub(/^file-devel$/, "libmagic-devel", $2)
2348         sub(/^firebird-devel$/, "Firebird-devel", $2)
2349         sub(/^freetype2-devel$/, "freetype-devel", $2)
2350         sub(/^fuse-devel$/, "libfuse-devel", $2)
2351         sub(/^gamin-python$/, "python-gamin", $2)
2352         sub(/^gcc-c\+\+$/, "libstdc++-devel", $2)
2353         sub(/^gnome-desktop3-devel$/, "gnome-desktop-devel", $2)
2354         sub(/^gnome-python2-extras$/, "python-gnome-extras", $2)
2355         sub(/^gnome-python2-gconf$/, "python-gnome-gconf", $2)
2356         sub(/^gnome-python2-gnomekeyring$/, "python-gnome-desktop-keyring", $2)
2357         sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2)
2358         sub(/^gtk-sharp2-devel$/, "dotnet-gtk-sharp2-devel", $2)
2359         sub(/^gtk2$/, "gtk+2", $2)
2360         sub(/^gtk2-devel$/, "gtk+2-devel", $2)
2361         sub(/^gtk3$/, "gtk+3", $2)
2362         sub(/^gtk3-devel$/, "gtk+3-devel", $2)
2363         sub(/^initscripts$/, "rc-scripts", $2)
2364         sub(/^iproute$/, "iproute2", $2)
2365         sub(/^iptables-ipv6$/, "iptables", $2)
2366         sub(/^iscsi-initiator-utils$/, "open-iscsi", $2)
2367         sub(/^kdelibs4-devel$/, "kde4-kdelibs-devel", $2)
2368         sub(/^keyutils-libs-devel$/, "keyutils-devel", $2)
2369         sub(/^lasso-python$/, "python-lasso", $2)
2370         sub(/^libICE-devel$/, "xorg-lib-libICE-devel", $2)
2371         sub(/^libSM-devel$/, "xorg-lib-libSM-devel", $2)
2372         sub(/^libX11-devel$/, "xorg-lib-libX11-devel", $2)
2373         sub(/^libXScrnSaver-devel$/, "xorg-lib-libXScrnSaver-devel", $2)
2374         sub(/^libXau-devel$/, "xorg-lib-libXau-devel", $2)
2375         sub(/^libXcomposite-devel$/, "xorg-lib-libXcomposite-devel", $2)
2376         sub(/^libXcursor-devel$/, "xorg-lib-libXcursor-devel", $2)
2377         sub(/^libXdamage-devel$/, "xorg-lib-libXdamage-devel", $2)
2378         sub(/^libXext-devel$/, "xorg-lib-libXext-devel", $2)
2379         sub(/^libXft-devel$/, "xorg-lib-libXft-devel", $2)
2380         sub(/^libXi-devel$/, "xorg-lib-libXi-devel", $2)
2381         sub(/^libXinerama-devel$/, "xorg-lib-libXinerama-devel", $2)
2382         sub(/^libXmu-devel$/, "xorg-lib-libXmu-devel", $2)
2383         sub(/^libXrandr-devel$/, "xorg-lib-libXrandr-devel", $2)
2384         sub(/^libXrender-devel$/, "xorg-lib-libXrender-devel", $2)
2385         sub(/^libXt-devel$/, "xorg-lib-libXt-devel", $2)
2386         sub(/^libXtst-devel$/, "xorg-lib-libXtst-devel", $2)
2387         sub(/^libXv-devel$/, "xorg-lib-libXv-devel", $2)
2388         sub(/^libXxf86misc-devel$/, "xorg-lib-libXxf86misc-devel", $2)
2389         sub(/^libXxf86vm-devel$/, "xorg-lib-libXxf86vm-devel", $2)
2390         sub(/^libacl-devel$/, "acl-devel", $2)
2391         sub(/^libappstream-glib$/, "appstream-glib", $2)
2392         sub(/^libattr-devel$/, "attr-devel", $2)
2393         sub(/^libcurl-devel$/, "curl-devel", $2)
2394         sub(/^libgudev1-devel$/, "udev-glib-devel", $2)
2395         sub(/^libicns-utils$/, "libicns", $2)
2396         sub(/^libmx-devel$/, "mx-devel", $2)
2397         sub(/^libselinux-python$/, "python-selinux", $2)
2398         sub(/^libsrtp-devel$/, "srtp-devel", $2)
2399         sub(/^libtdb$/, "tdb", $2)
2400         sub(/^libtdb-devel$/, "tdb-devel", $2)
2401         sub(/^libtevent$/, "tevent", $2)
2402         sub(/^libtevent-devel$/, "tevent-devel", $2)
2403         sub(/^libusb1-devel$/, "libusb-devel", $2)
2404         sub(/^libuser-python$/, "python-libuser", $2)
2405         sub(/^libvirt-python$/, "python-libvirt", $2)
2406         sub(/^libxkbfile-devel$/, "xorg-lib-libxkbfile", $2)
2407         sub(/^libxml2-python$/, "python-libxml2", $2)
2408         sub(/^m2crypto$/, "python-M2Crypto", $2)
2409         sub(/^mod_wsgi$/, "apache-mod_wsgi", $2)
2410         sub(/^newt-python$/, "python-snack", $2)
2411         sub(/^notify-python$/, "python-pynotify", $2)
2412         sub(/^oxygen-icon-theme$/, "kde4-icons-oxygen", $2)
2413         sub(/^pcsc-lite-ccid$/, "pcsc-driver-ccid", $2)
2414         sub(/^pulseaudio-libs-devel$/, "pulseaudio-devel", $2)
2415         sub(/^pyOpenSSL$/, "python-pyOpenSSL", $2)
2416         sub(/^pycairo$/, "python-pycairo", $2)
2417         sub(/^pyflakes$/, "python-pyflakes", $2)
2418         sub(/^pygobject2$/, "python-pygobject", $2)
2419         sub(/^pygobject3$/, "python-pygobject3", $2)
2420         sub(/^pygobject3-devel$/, "python-pygobject3-common-devel", $2)
2421         sub(/^pygpgme$/, "python-pygpgme", $2)
2422         sub(/^pygtk2$/, "python-pygtk", $2)
2423         sub(/^pygtk2-devel$/, "python-pygtk-devel", $2)
2424         sub(/^pygtk2-libglade$/, "python-pygtk-glade", $2)
2425         sub(/^pykickstart$/, "python-pykickstart", $2)
2426         sub(/^pyliblzma$/, "python-pygpgme", $2)
2427         sub(/^pyparsing$/, "python-pyparsing", $2)
2428         sub(/^pyparted$/, "python-parted", $2)
2429         sub(/^pyserial$/, "python-serial", $2)
2430         sub(/^pysvn$/, "python-pysvn", $2)
2431         sub(/^pytalloc$/, "python-talloc", $2)
2432         sub(/^pytalloc-devel$/, "python-talloc-devel", $2)
2433         sub(/^pytest$/, "python-pytest", $2)
2434         sub(/^python-PyQt4-devel$/, "sip-PyQt4", $2)
2435         sub(/^python-crypto$/, "python-Crypto", $2)
2436         sub(/^python-cups$/, "python-pycups", $2)
2437         sub(/^python-docker-py$/, "python-docker", $2)
2438         sub(/^python-enchant$/, "python-pyenchant", $2)
2439         sub(/^python-imaging$/, "python-PIL", $2)
2440         sub(/^python-imaging-tk$/, "python-PIL-tk", $2)
2441         sub(/^python-ndg_httpsclient$/, "python-ndg-httpsclient", $2)
2442         sub(/^python-newt$/, "python-snack", $2)
2443         sub(/^python-pygtk$/, "python-pygtk-gtk", $2)
2444         sub(/^python-recaptcha-client$/, "python-recaptcha", $2)
2445         sub(/^python-sphinx$/, "sphinx-pdg", $2)
2446         sub(/^python-sqlalchemy$/, "python-SQLAlchemy", $2)
2447         sub(/^python-twisted$/, "python-TwistedCore", $2)
2448         sub(/^python-twisted-core$/, "python-TwistedCore", $2)
2449         sub(/^python-twisted-names$/, "python-TwistedNames", $2)
2450         sub(/^python-twisted-web$/, "python-TwistedWeb", $2)
2451         sub(/^python-unittest2$/, "python-modules", $2)
2452         sub(/^python-uuid$/, "python-modules", $2)
2453         sub(/^python-xlib$/, "python-Xlib", $2)
2454         sub(/^python-zope-interface$/, "Zope-Interface", $2)
2455         sub(/^python-zope.component$/, "Zope-Component", $2)
2456         sub(/^python-zope.interface$/, "Zope-Interface", $2)
2457         sub(/^python2-devel$/, "python-devel", $2)
2458         sub(/^python3-docker-py$/, "python3-docker", $2)
2459         sub(/^pytz$/, "python-pytz", $2)
2460         sub(/^pyxdg$/, "python-pyxdg", $2)
2461         sub(/^qt4-devel$/, "qt4-build", $2)
2462         sub(/^qt4-webkit-devel$/, "QtWebKit-devel", $2)
2463         sub(/^qt5-qtgraphicaleffects$/, "Qt5Quick-graphicaleffects", $2)
2464         sub(/^qt5-qtquickcontrols$/, "Qt5Quick-controls", $2)
2465         sub(/^qt5-qtwebkit-devel$/, "Qt5WebKit-devel", $2)
2466         sub(/^qtiocompressor-devel$/, "QtIOCompressor-devel", $2)
2467         sub(/^qtlockedfile-devel$/, "QtLockedFile-devel", $2)
2468         sub(/^qtsingleapplication-devel$/, "QtSingleApplication-devel", $2)
2469         sub(/^rpm-python$/, "python-rpm", $2)
2470         sub(/^sip-devel$/, "python-sip-devel", $2)
2471         sub(/^tftp-server$/, "tftpdaemon", $2)
2472         sub(/^tkinter$/, "python-tkinter", $2)
2473         sub(/^urw-fonts$/, "fonts-Type1-urw", $2)
2474         sub(/^webkitgtk3-devel$/, "gtk-webkit3-devel", $2)
2475         sub(/^xapian-bindings-python$/, "python-xapian", $2)
2476         sub(/^xorg-x11-proto-devel$/, "xorg-proto-xproto-devel", $2)
2477         sub(/^xorg-x11-server-sdk$/, "xorg-xserver-server-devel", $2)
2478         # }}}
2479
2480         # {{{ mandriva
2481         sub(/^gnome-python-gconf$/, "python-gnome-gconf", $2)
2482         sub(/^pygtk2.0$/, "python-pygtk-gtk", $2)
2483         sub(/^python-curl$/, "python-pycurl", $2)
2484         sub(/^python-gobject-devel$/, "python-pygobject-devel", $2)
2485         sub(/^python-pyrex$/, "python-Pyrex", $2)
2486         sub(/^python-webkitgtk$/, "python-pywebkitgtk", $2)
2487         sub(/^webkitgtk-devel$/, "gtk-webkit-devel", $2)
2488         # }}}
2489
2490         # {{{ debian / ubuntu
2491         sub(/^blkid-dev$/, "libblkid-devel", $2)
2492         sub(/^ext2fs-dev$/, "e2fsprogs-devel", $2)
2493         sub(/^libao-dev$/, "libao-devel", $2)
2494         sub(/^libboost-filesystem[0-9.]+-dev$/, "boost-devel", $2)
2495         sub(/^libboost-program-options[0-9.]+-dev$/, "boost-devel", $2)
2496         sub(/^libboost-regex[0-9.]+-dev$/, "boost-devel", $2)
2497         sub(/^libboost-thread[0-9.]+-dev$/, "boost-devel", $2)
2498         sub(/^libcurl4-openssl-dev$/, "curl-devel", $2)
2499         sub(/^libdnet-dev$/, "libdnet-devel", $2)
2500         sub(/^libesd0-dev$/, "esound-devel", $2)
2501         sub(/^libfishsound1-dev$/, "libfishsound-devel", $2)
2502         sub(/^libgconf2-dev$/, "GConf2-devel", $2)
2503         sub(/^libgl1-mesa-dev$/, "OpenGL-devel", $2)
2504         sub(/^libgl1-mesa-dri$/, "OpenGL", $2)
2505         sub(/^libglib2.0-dev$/, "glib2-devel", $2)
2506         sub(/^libglu1-mesa-dev$/, "OpenGL-GLU-devel", $2)
2507         sub(/^libgtk2.0-dev$/, "gtk+2-devel", $2)
2508         sub(/^libhunspell-dev$/, "hunspell-devel", $2)
2509         sub(/^libmcrypt-dev$/, "libmcrypt-devel", $2)
2510         sub(/^libmhash-dev$/, "mhash-devel", $2)
2511         sub(/^liboggz1-dev$/, "libggz-devel", $2)
2512         sub(/^libpango1.0-dev$/, "pango-devel", $2)
2513         sub(/^libqt4-dev$/, "qt4-build", $2)
2514         sub(/^libshout3-dev$/, "libshout-devel", $2)
2515         sub(/^libslp-dev$/, "openslp-devel", $2)
2516         sub(/^libsndfile1-dev$/, "libsndfile-devel", $2)
2517         sub(/^libspeex-dev$/, "speex-devel", $2)
2518         sub(/^libssl-dev$/, "openssl-devel", $2)
2519         sub(/^libudev$/, "udev-libs", $2)
2520         sub(/^libvorbis-dev$/, "libvorbis-devel", $2)
2521         sub(/^libxslt1-dev$/, "libxslt-devel", $2)
2522         sub(/^libxss-dev$/, "xorg-lib-libXScrnSaver-devel", $2)
2523         sub(/^mesa-common-dev$/, "OpenGL-devel", $2)
2524         sub(/^tcp_wrappers-devel$/, "libwrap-devel", $2)
2525         sub(/^vala-devel$/, "vala", $2)
2526         sub(/^vala-tools$/, "vala", $2)
2527         # }}}
2528
2529         # {{{ altlinux
2530         sub(/^libatk-devel$/, "atk-devel", $2)
2531         sub(/^libgit-devel$/, "git-core-devel", $2)
2532         sub(/^libgtk\+2-devel$/, "gtk+2-devel", $2)
2533         sub(/^libncurses-devel$/, "ncurses-devel", $2)
2534         sub(/^libncursesxx-devel$/, "ncurses-c++-devel", $2)
2535         sub(/^libpango-devel$/, "pango-devel", $2)
2536         sub(/^libpcre-devel$/, "pcre-devel", $2)
2537         sub(/^libpopt-devel$/, "popt-devel", $2)
2538         sub(/^libssl-devel$/, "openssl-devel", $2)
2539         # }}}
2540
2541         # {{{ suse/opensuse
2542         sub(/^alsa-devel$/, "alsa-lib-devel", $2)
2543         sub(/^python-djangorestframework$/, "python-django-rest-framework", $2)
2544         sub(/^python-django_compressor$/, "python-django-compressor", $2)
2545         sub(/^bitstream-vera$/, "fonts-TTF-bitstream-vera", $2)
2546         sub(/^gtk-sharp2$/, "dotnet-gtk-sharp2", $2)
2547         sub(/^gtkmm2-devel$/, "gtkmm-devel", $2)
2548         sub(/^libexpat-devel$/, "expat-devel", $2)
2549         sub(/^libffmpeg-devel$/, "ffmpeg-devel", $2)
2550         sub(/^libffms2-devel$/, "ffms2-devel", $2)
2551         sub(/^libopenssl-devel$/, "openssl-devel", $2)
2552         sub(/^libpulse-devel$/, "pulseaudio-devel", $2)
2553         sub(/^libqt4-devel$/, "qt4-build, qt4-qmake, QtCore-devel", $2)
2554         sub(/^monodoc-core$/, "mono-monodoc", $2)
2555         sub(/^python-Babel$/, "python-babel", $2)
2556         sub(/^python-Django$/, "python-django", $2)
2557         sub(/^python-Pillow$/, "python-pillow", $2)
2558         sub(/^python-cairo$/, "python-pycairo", $2)
2559         sub(/^python-gobject$/, "python-pygobject", $2)
2560         sub(/^python-gstreamer-0_10$/, "python-gstreamer", $2)
2561         sub(/^python-gtk$/, "python-pygtk-gtk", $2)
2562         sub(/^python-xdg$/, "python-pyxdg", $2)
2563         # }}}
2564
2565         replace_php_virtual_deps(field)
2566
2567         replace_opam_deps(field)
2568 }
2569 # }}}
2570
2571 # vim:ts=4:sw=4 fdm=marker
This page took 0.292554 seconds and 4 git commands to generate.