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