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