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