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