]> git.pld-linux.org Git - packages/adapter.git/blame - adapter.awk
- adapter %{_localedir}
[packages/adapter.git] / adapter.awk
CommitLineData
37fceb07 1#!/usr/bin/gawk -f
bf0a58ea 2#
18f95017 3# Adapter adapts .spec files for PLD Linux.
236b87ac 4#
a95ad41f 5# Copyright (C) 1999-2011 PLD-Team <feedback@pld-linux.org>
236b87ac 6# Authors:
b4e337d9 7# Michał Kuratczyk <kura@pld.org.pl>
dda3eaa5 8# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
b4e337d9 9# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
d8313167 10# Artur Frysiak <wiget@pld-linux.org>
f37c1259 11# Michal Kochanowicz <mkochano@pld.org.pl>
fccce8b5 12# Jakub Bogusz <qboosh@pld-linux.org>
b4e337d9 13# Elan Ruusamäe <glen@pld-linux.org>
115a3045
ER
14#
15# See cvs log adapter{,.awk} for list of contributors
16#
236b87ac 17# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3a14bf9d 18
8ebb1c08 19# TODO
03180d14 20# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
8ebb1c08
ER
21# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
22# - add "-nc" option to skip CVS interaction
6c67f9b1
ER
23# - sort Summary(XX)
24# - sort Requires, BuildRequires
fd5553c9 25# - check if %description (lang=C) contains 8bit
6e985933 26# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
da226e35
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
ba533641
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 ]
8ebb1c08 31
bf0a58ea 32BEGIN {
0ae11f54 33 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
2b47df45 34 SECTIONS = "^%(" RPM_SECTIONS ")"
93e2a87a 35
18f95017
ER
36 RCSID = "$Id$"
37 rev = RCSID # TODO: parse from RCSID
c71bffbc 38 VERSION = "0.35/" rev
18f95017 39
8492c30a 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))"
c58d1357 41
50037ea2
PZ
42 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
43
1c955424 44 preamble = 1 # Is it part of preamble? Default - yes
6e985933
ER
45 boc = 4 # Beginning of %changelog
46 bod = 0 # Beginning of %description
7a72f436 47 tw = 70 # Descriptions width
f171fd40 48
89c604c7 49 b_idx = 0 # index of BR/R arrays
b6875e34 50 BR_count = 0 # number of additional BuildRequires
89c604c7 51
85e708f2 52 # If variable removed, then 1 (for removing it from export)
53 removed["LDFLAGS"] = 0
54 removed["CFLAGS"] = 0
55 removed["CXXFLAGS"] = 0
5c18171e 56
246ad57e 57 # If 1, we are inside of comment block (started with /^#%/)
58 comment_block = 0
f171fd40 59
683ce9e3
ER
60 import_rpm_macros()
61
c5cb79f5 62 packages_dir = topdir
a877f3a5 63 groups_file = packages_dir "/rpm.groups"
683ce9e3 64
a877f3a5 65 system("cd "packages_dir"; [ -f rpm.groups ] || cvs up rpm.groups > /dev/null")
c2814373 66 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
f1991554 67
5c18171e 68 # Temporary file for changelog section
bbc531d9 69 changelog_file = mktemp("adapter.changelogXXXXXX")
bf0a58ea 70}
71
72# There should be a comment with CVS keywords on the first line of file.
8b1938ea 73FNR == 1 {
c8f621c0 74 if (!/^# \$[R]evision: .* \$, \$[D]ate: .* \$$/) { # If this line is already OK?
f1991554 75 print "# $" "Revision:$, " "$" "Date:$" # No
984e2295 76 if ( /^#.*([rR]evision|[dD]ate)/ ) # There was something similar, but incorrect
77 next
78 } else {
f1991554 79 print $0 # Yes
80 next # It is enough for first line
04dde927 81 }
bf0a58ea 82}
83
43c05c3c 84# If the latest line matched /%files/
85defattr == 1 {
13b24a87
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 }
aec1bddb 93 defattr = 0
43c05c3c 94}
95
bbc531d9
ER
96# call mktemp(1) and return the value
97function mktemp(template, tmp) {
98 "mktemp " template | getline tmp
99 return tmp
100}
101
89c604c7
ER
102function b_makekey(a, b, s) {
103 s = a "" b;
104 # kill bcond
b6875e34 105 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
3b0074cc 106
8409a9b2 107 # kill commented out items
b6875e34 108 gsub(/^#[ \t]*/, "", s);
3b0074cc 109
c58d1357 110 # force order
8492c30a 111 gsub(/^Summary\(/, "11Summary(", s);
2ce787c9 112 gsub(/^Summary/, "10Summary", s);
8492c30a 113
985d9bc7
ER
114 gsub(/^Name/, "2Name", s);
115 gsub(/^Version/, "3Version", s);
116 gsub(/^Release/, "4Release", s);
117 gsub(/^Epoch/, "5Epoch", s);
118 gsub(/^License/, "5License", s);
119 gsub(/^Group/, "6Group", s);
120 gsub(/^URL/, "7URL", s);
121
122 gsub(/^BuildRequires/, "B1BuildRequires", s);
123 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
43f8581a 124
43f8581a 125 gsub(/^Suggests/, "X1Suggests", s);
2eef43e9
JB
126 gsub(/^Provides/, "X2Provides", s);
127 gsub(/^Obsoletes/, "X3Obsoletes", s);
128 gsub(/^Conflicts/, "X4Conflicts", s);
129 gsub(/^BuildArch/, "X5BuildArch", s);
985d9bc7
ER
130 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
131 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
132 gsub(/^BuildRoot/, "X9BuildRoot", s);
d9e2bd9b 133
8492c30a
ER
134 gsub(/^AutoProv/, "Xx1AutoProv", s);
135 gsub(/^AutoReq/, "Xx2AutoReq", s);
136
d9e2bd9b 137# printf("%s -> %s\n", a""b, s);
89c604c7
ER
138 return s;
139}
140
eee34ffb 141# Comments
22622171 142/^#/ && (description == 0) {
eee34ffb 143 if (/This file does not like to be adapterized!/) {
144 print # print this message
145 while (getline) # print the rest of spec as it is
146 print
147 do_not_touch_anything = 1 # do not touch anything in END()
a4de4386 148 exit(rc = 0)
eee34ffb 149 }
246ad57e 150
eee34ffb 151 # Generally, comments are printed without touching
70a1dc9e 152 sub(/[ \t]+$/, "")
4414eb86 153
50037ea2
PZ
154 if (/#[ \t]*Source.*md5/) {
155 if (usedigest == 1) {
156 sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
157 sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
158 }
4414eb86
ER
159 print $0
160 next
161 }
246ad57e 162}
163
1da27823 164/^%define/ {
93e2a87a 165 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
71a4728c 166 if ($2 == "_applnkdir") {
ba4b52a7 167 next
71a4728c
ER
168 }
169 if ($2 == "date") {
ba4b52a7 170 date = 1
4ab1678b
ER
171 if (did_files == 0) {
172 print "%files"
173 print ""
174 did_files = 1
175 }
71a4728c
ER
176 }
177
178 # Do not add %define of _prefix if it already is.
179 if ($2 ~ /^_prefix/) {
180 sub("^"prefix, $3, bindir)
181 sub("^"prefix, $3, sbindir)
182 sub("^"prefix, $3, libdir)
183 sub("^"prefix, $3, datadir)
184 sub("^"prefix, $3, includedir)
185 prefix = $3
186 }
187
188 if ($2 ~ /_bindir/ && !/_sbindir/)
189 bindir = $3
190 if ($2 ~ /_sbindir/)
191 sbindir = $3
a27fac4d
ER
192 if ($2 ~ /_libdir/) {
193 if ($3 ~ /^%\(/) {
194 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
195 libdir = "%%%%%%%%%%%%%%"
196 } else {
197 libdir = $3
198 }
199 }
93e2a87a
ER
200 if ($2 ~ /_sysconfdir/) {
201 if ($3 ~ /^%\(/) {
202 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
203 sysconfdir = "%%%%%%%%%%%%%%"
204 } else {
205 sysconfdir = $3
206 }
207 }
a27fac4d
ER
208 if ($2 ~ /_datadir/) {
209 if ($3 ~ /^%\(/) {
210 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
211 datadir = "%%%%%%%%%%%%%%"
212 } else {
213 datadir = $3
214 }
215 }
71a4728c
ER
216 if ($2 ~ /_includedir/)
217 includedir = $3
218 if ($2 ~ /_mandir/)
219 mandir = $3
220 if ($2 ~ /_infodir/)
221 infodir = $3
c2b069de
ER
222 if ($2 ~ /_docdir/)
223 docdir = $3
71a4728c
ER
224
225 # version related macros
226 if ($2 ~ /^_beta$/)
227 _beta = $3
228 if ($2 ~ /^_rc$/)
229 _rc = $3
59de1799
ER
230 if ($2 ~ /^_pre$/)
231 _pre = $3
71a4728c
ER
232 if ($2 ~ /^_snap$/)
233 _snap = $3
3c5e6e5f
ER
234 if ($2 ~ /^subver$/)
235 subver = $3
71a4728c
ER
236
237 # these are used usually when adapterizing external spec
238 if ($2 ~ /^name$/)
239 name = $3
240 if ($2 ~ /^version$/)
241 version = $3
242 if ($2 ~ /^release$/)
243 release = $3
a39ddef5 244
0ea7c3cd
ER
245 if ($2 ~ /^mod_name$/)
246 mod_name = $3
f5f6280a
ER
247 if ($2 ~ /^_?pearname$/)
248 pearname = $3
d6e33af7
ER
249 if ($2 ~ /^_class$/)
250 pear_class = $3
251 if ($2 ~ /^_subclass$/)
252 pear_subclass = $3
253
254 # kill the _class and _subclass pear macros
255 if ($2 == "_pearname" || $2 == "pearname") {
256 if (pear_class) {
257 gsub("%{_class}", pear_class, $3);
258 }
259 if (pear_subclass) {
260 gsub("%{_subclass}", pear_subclass, $3);
261 }
262 }
0ea7c3cd 263
78d96561 264 sub(/[ \t]+$/, "");
a39ddef5
ER
265 # do nothing further, otherwise adapter thinks we're at preamble
266 print
267 next
1da27823
SZ
268}
269
6c67f9b1
ER
270# Obsolete
271/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
272 next
273}
274
246ad57e 275################
276# %description #
277################
93e2a87a 278/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
aec1bddb 279 preamble = 0
efe53381 280
3a14bf9d 281 if (/^%description/) {
aec1bddb 282 bod++
236b87ac 283 format_line = ""
284 format_indent = -1
3a14bf9d
SZ
285 }
286
236b87ac 287 # Format description
7b868d98 288 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3a14bf9d 289 if (/^[ \t]*$/) {
236b87ac 290 format_flush(format_line, format_indent)
3a14bf9d 291 print ""
236b87ac 292 format_line = ""
293 format_indent = -1
3a14bf9d 294 } else if (/^[ \t]*[-\*][ \t]*/) {
236b87ac 295 format_flush(format_line, format_indent)
f171fd40 296 match($0, /^[ \t]*/)
236b87ac 297 format_indent = RLENGTH
298 match($0, /^[ \t]*[-\*][ \t]/)
299 format_line = substr($0, RLENGTH)
f171fd40 300 } else
236b87ac 301 format_line = format_line " " $0
aec1bddb 302 next
efe53381 303 }
f171fd40 304
1da27823 305 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
ddb18dd4 306 if (NF > 3 && $2 == "-l") {
307 ll = $1
308 for (i = 4; i <= NF; i++)
309 ll = ll " " $i
310 $0 = ll " -l " $3
311 }
236b87ac 312 format_flush(format_line, format_indent)
efe53381 313 if (bod == 2) {
aec1bddb
SZ
314 bod = 1
315 description = 1
efe53381 316 } else {
aec1bddb
SZ
317 bod = 0
318 description = 0
efe53381 319 }
320 } else
aec1bddb 321 description = 1
bf0a58ea 322}
323
246ad57e 324#########
325# %prep #
326#########
93e2a87a 327/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
aec1bddb 328 preamble = 0
4ab1678b 329 did_prep = 1
f171fd40 330
ac779c71
ER
331 use_macros()
332
43c05c3c 333 # Add '-q' to %setup
e780ff0a 334 if (/^%setup/ && !/-q/) {
1da27823 335 sub(/^%setup/, "%setup -q")
e780ff0a
ER
336 }
337
af38fe16 338 if (/^%setup/ && name != "setup") {
e9097b46
ER
339 $0 = fixedsub(name, "%{name}", $0);
340 $0 = fixedsub(version, "%{version}", $0);
4a8d9a70 341 if (_beta) {
e9097b46 342 $0 = fixedsub(_beta, "%{_beta}", $0);
4a8d9a70
ER
343 }
344 if (_rc) {
e9097b46 345 $0 = fixedsub(_rc, "%{_rc}", $0);
4a8d9a70 346 }
59de1799
ER
347 if (_pre) {
348 $0 = fixedsub(_pre, "%{_pre}", $0);
349 }
4a8d9a70 350 if (_snap) {
e9097b46 351 $0 = fixedsub(_snap, "%{_snap}", $0);
4a8d9a70 352 }
3c5e6e5f
ER
353 if (subver) {
354 $0 = fixedsub(subver, "%{subver}", $0);
355 }
4f822e22
ER
356 }
357
10690436 358 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
e9097b46 359 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
e780ff0a 360 }
b6875e34 361 sub("^%patch ", "%patch0 ");
ac779c71 362
e31553a7
ER
363 # fedora extras
364 if (/^%apply/) {
365 sub("^%apply -n", "%patch");
366 }
367
ac779c71
ER
368 # invalid in %prep
369 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
bf0a58ea 370}
371
246ad57e 372##########
373# %build #
374##########
93e2a87a 375/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
aec1bddb 376 preamble = 0
bf0a58ea 377
4ab1678b
ER
378 if (did_prep == 0) {
379 print "%prep"
380 print ""
381 did_prep = 1
382 }
383
aec1bddb 384 use_macros()
6ebff802 385 use_tabs()
f171fd40 386
9cb72c72 387 if (/^automake$/)
388 sub(/$/, " -a -c")
389
eb4bf70e 390 if (/LDFLAGS/) {
85e708f2 391 if (/LDFLAGS="-s"/) {
392 removed["LDFLAGS"] = 1
393 next
394 } else {
395 split($0, tmp, "LDFLAGS=")
eb4bf70e 396 count = split(tmp[2], flags, "\"")
85e708f2 397 if (flags[1] != "" && flags[1] !~ "!?debug") {
fde8f52a 398 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
85e708f2 399 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
400 for (i = 2; i < count; i++)
401 $0 = $0 flags[i] "\""
402 }
eb4bf70e 403 }
404 }
405
406 if (/CFLAGS=/)
407 if (cflags("CFLAGS") == 0)
408 next
409
410 if (/CXXFLAGS=/)
411 if (cflags("CXXFLAGS") == 0)
412 next
f171fd40 413
85e708f2 414 if (/^export /) {
415 if (removed["LDFLAGS"])
416 sub(" LDFLAGS", "")
417 if (removed["CFLAGS"])
418 sub(" CFLAGS", "")
419 if (removed["CXXFLAGS"])
420 sub(" CXXFLAGS", "")
421 # Is there still something?
422 if (/^export[ ]*$/)
423 next
424 }
2d74be7e 425
db9b1bf2 426 # quote CC
2d74be7e
ER
427 if (/CC=%{__cc} /) {
428 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
429 }
b34b8660 430
e6f1551d 431 # use PLD Linux macros
b34b8660
ER
432 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
433 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
db9b1bf2 434 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
56699a32 435 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
4e26c5f2 436 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
ebeed758 437 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
56699a32
ER
438 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
439 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
db9b1bf2
ER
440
441 sub(/^aclocal$/, "%{__aclocal}");
442 sub(/^autoheader$/, "%{__autoheader}");
443 sub(/^autoconf$/, "%{__autoconf}");
444 sub(/^automake$/, "%{__automake}");
ebeed758 445 sub(/^libtoolize$/, "%{__libtoolize}");
f171fd40 446
5e15e952
ER
447 # atrpms
448 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
449 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
377e5b9e
ER
450
451 # alt linux
452 $0 = fixedsub("%make_build", "%{__make}", $0);
bf0a58ea 453}
454
246ad57e 455##########
456# %clean #
457##########
93e2a87a 458/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
1c52b18e 459 did_clean = 1
e6f1551d 460
b6875e34 461 use_macros()
1c52b18e
SZ
462}
463
246ad57e 464############
465# %install #
466############
93e2a87a 467/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
f171fd40 468
aec1bddb 469 preamble = 0
f171fd40 470
ec0082cc 471 # foreign rpms
624df313 472 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b6875e34
ER
473 sub("%buildroot", "$RPM_BUILD_ROOT");
474 sub("%{buildroot}", "$RPM_BUILD_ROOT");
ec0082cc 475
624df313 476 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
1c52b18e 477 did_rmroot=1
dda3eaa5
SZ
478 print "rm -rf $RPM_BUILD_ROOT"
479 next
480 }
43c05c3c 481
1c52b18e 482 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
dda3eaa5 483 print "rm -rf $RPM_BUILD_ROOT"
1c52b18e 484 did_rmroot=1
dda3eaa5 485 }
f171fd40 486
b6875e34
ER
487 if (tmpdir) {
488 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
3d8be7c3 489 gsub(buildroot, "$RPM_BUILD_ROOT")
b6875e34 490 }
3d8be7c3 491
b6875e34
ER
492 if (!/%{_lib}/) {
493 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
494 }
259883bf 495
dda3eaa5 496 use_macros()
f171fd40 497
bf0a58ea 498 # 'install -d' instead 'mkdir -p'
499 if (/mkdir -p/)
aec1bddb 500 sub(/mkdir -p/, "install -d")
fde90d94 501
48409aee 502 # cp -a already implies cp -r
b6875e34 503 sub(/^cp -ar/, "cp -a")
f171fd40 504
43c05c3c 505 # No '-u root' or '-g root' for 'install'
681a4871 506 if (/^install/ && /-[ug][ \t]*root/)
aec1bddb 507 gsub(/-[ug][ \t]*root /, "")
f171fd40 508
2016aa83
ER
509 if (/^install/ && /-m[ \t]*[0-9]+/)
510 gsub(/-m[ \t]*[0-9]+ /, "")
f171fd40 511
f1991554 512 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
43c05c3c 513 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
aec1bddb 514 next
f171fd40 515
43c05c3c 516 # No lines contain 'chmod' if it sets the modes to '644'
681a4871 517 if ($1 ~ /chmod/ && $2 ~ /644/)
aec1bddb 518 next
5e15e952 519
5e15e952
ER
520 # atrpms
521 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
377e5b9e
ER
522
523 # alt linux
524 $0 = fixedsub("%make_install DESTDIR=$RPM_BUILD_ROOT install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
bf0a58ea 525}
526
246ad57e 527##########
528# %files #
529##########
93e2a87a 530/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
aec1bddb 531 preamble = 0
4ab1678b 532 did_files = 1
f171fd40 533
1da27823 534 if ($0 ~ /^%files/)
aec1bddb 535 defattr = 1
f171fd40 536
484bbf6d
ER
537 if (!use_files_macros()) {
538 next
539 }
bf0a58ea 540}
541
246ad57e 542##############
543# %changelog #
544##############
93e2a87a 545/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
aec1bddb 546 preamble = 0
dda3eaa5 547 has_changelog = 1
97e21521 548 skip = 0
bf0a58ea 549 # There should be some CVS keywords on the first line of %changelog.
97e21521 550 if (boc == 3) {
4b7a9b6b 551 if ($0 !~ _cvsmailfeedback) {
f6f0c932 552 print "* %{date} " _cvsmailfeedback > changelog_file
4b7a9b6b 553 } else {
97e21521 554 skip = 1
4b7a9b6b 555 }
97e21521 556 boc = 2
d31b8a48 557 }
97e21521 558 if (boc == 2 && !skip) {
d31b8a48 559 if (!/All persons listed below/) {
fd5e70be 560 printf "All persons listed below can be reached at " > changelog_file
f6f0c932 561 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
4b7a9b6b 562 } else {
97e21521 563 skip = 1
4b7a9b6b 564 }
44379e57 565 boc = 1
bf0a58ea 566 }
97e21521
JB
567 if (boc == 1 && !skip) {
568 if (!/^$/) {
4b7a9b6b 569 if (!/\$.*Log:.*\$/) {
97e21521 570 print "$" "Log:$" > changelog_file
4b7a9b6b 571 }
97e21521
JB
572 boc = 0
573 }
d31b8a48 574 }
3fdddc43 575 # Define date macro.
d31b8a48 576 if (boc == 4) {
a1aa4976 577 if (date == 0) {
5c18171e 578 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
579 print " date +\"%a %b %d %Y\"`)" > changelog_file
1395ea1c 580 date = 1
a1aa4976 581 }
d31b8a48 582 boc = 3
3fdddc43 583 }
5c18171e 584
4b7a9b6b
ER
585 sub(/[ \t]+$/, "");
586 if (!/^%[a-z]+$/ || /changelog/) {
587 # stop changelog if "real" changelog starts
588 if (boc == 0 && /^\* /) {
589 boc = -1
590 }
591 if (boc == -1) {
592 next;
593 }
5c18171e 594 print > changelog_file
4b7a9b6b 595 } else {
5c18171e 596 print
4b7a9b6b 597 }
5c18171e 598 next
bf0a58ea 599}
600
246ad57e 601###########
602# SCRIPTS #
603###########
93e2a87a 604/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
246ad57e 605 preamble = 0
e9176470 606
723ce732
ER
607 if (gsub("/usr/sbin/useradd", "%useradd")) {
608 sub(" 2> /dev/null \|\| :", "");
609 sub(" >/dev/null 2>&1 \|\|:", "");
610 }
611
e31553a7
ER
612 # fedora extras macros
613 if (/%__fe_useradd/) {
614 sub("%__fe_useradd", "%useradd -u ");
615 sub(" 2> /dev/null \|\| :", "");
616 sub(" >/dev/null 2>&1 \|\|:", "");
617 sub(" &>/dev/null \\|\\| :", "");
618 }
619
620 if (/%__fe_groupadd/) {
621 sub("%__fe_groupadd", "%groupadd -g ");
622 sub(" &>/dev/null \\|\\| :", "");
623 }
624
e9176470
ER
625 # %useradd and %groupadd may not be wrapped
626 if (/%(useradd|groupadd).*\\$/) {
627 a = $0; getline;
628 sub(/^[\s\t]*/, "");
629 $0 = substr(a, 1, length(a) - 1) $0;
630 }
723ce732 631 use_script_macros()
246ad57e 632}
e9176470 633
93e2a87a 634/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
246ad57e 635 preamble = 0
e31553a7
ER
636
637 # fedora extras macros
638 sub("%__chkconfig", "/sbin/chkconfig");
639
a6490001
ER
640 sub("update-desktop-database &> /dev/null \\|\\| :", "%update_desktop_database");
641 sub("touch --no-create %{_datadir}/icons/hicolor", "%update_icon_cache_post hicolor");
642 sub("if \\[ -x %{_bindir}/gtk-update-icon-cache \\]; then\n\t%{_bindir}/gtk-update-icon-cache -q %{_datadir}/icons/hicolor \|\| :\nfi", "");
643
644 sub("export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`", "")
645 if (/gconftool-2 --makefile-install-rule/) {
646 sub("gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/", "%gconf_schema_install ")
24873dc2 647 sub("> /dev/null", "");
a6490001
ER
648 }
649
c2b069de 650 use_macros()
246ad57e 651}
93e2a87a 652/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
246ad57e 653 preamble = 0
d11acde9 654 use_macros()
246ad57e 655}
93e2a87a 656/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
246ad57e 657 preamble = 0
e31553a7
ER
658
659 # fedora extras macros
660 if (/%__fe_userdel|%__fe_groupdel/) {
661 sub("%__fe_groupdel", "%groupremove");
662 sub("%__fe_userdel", "%userremove");
663 sub(" &>/dev/null \\|\\| :", "");
664 }
665
723ce732 666 use_script_macros()
246ad57e 667}
93e2a87a 668/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
bdba3986 669 preamble = 0
723ce732 670 use_script_macros()
bdba3986 671}
93e2a87a 672/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
bdba3986 673 preamble = 0
723ce732 674 use_script_macros()
bdba3986 675}
93e2a87a 676/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
bdba3986 677 preamble = 0
723ce732 678 use_script_macros()
bdba3986 679}
93e2a87a 680/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
bdba3986 681 preamble = 0
723ce732 682 use_script_macros()
bdba3986 683}
93e2a87a 684/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
bdba3986 685 preamble = 0
723ce732 686 use_script_macros()
bdba3986 687}
0ae11f54
ER
688/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
689 preamble = 0
723ce732 690 use_script_macros()
0ae11f54
ER
691}
692/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
693 preamble = 0
723ce732 694 use_script_macros()
0ae11f54 695}
246ad57e 696
697#############
698# PREAMBLES #
699#############
bf0a58ea 700preamble == 1 {
681a4871 701 # There should not be a space after the name of field
702 # and before the colon.
aec1bddb 703 sub(/[ \t]*:/, ":")
f171fd40 704
1462d6a3
ER
705 if (/^%perl_module_wo_prefix/) {
706 name = $2
707 version = $3
708 release = "0." fixedsub(".%{disttag}.at", "", $4)
709 }
710
aec1bddb 711 field = tolower($1)
38cb34ef 712 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
024709c6
ER
713 sub(/\.$/, "", $0);
714 }
f37c1259 715 if (field ~ /group(\([^)]+\)):/)
1a5b27d5 716 next
f37c1259 717 if (field ~ /group:/) {
718 format_preamble()
d9e2bd9b
ER
719 group = $0;
720 sub(/^[^ \t]*[ \t]*/, "", group);
ad9ea417 721 group = replace_groupnames(group);
d9e2bd9b
ER
722 $0 = "Group:\t\t" group
723
724 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
7a72f436 725 x11 = 1
8e5358f8 726
d9e2bd9b 727 byl_plik_z_groupmi = 0
8e5358f8
SZ
728 byl_opis_grupy = 0
729 while ((getline linia_grup < groups_file) > 0) {
d9e2bd9b
ER
730 byl_plik_z_groupmi = 1
731 if (linia_grup == group) {
8e5358f8
SZ
732 byl_opis_grupy = 1
733 break
734 }
735 }
69501a12 736
d9e2bd9b 737 if (!byl_plik_z_groupmi)
8e5358f8
SZ
738 print "######\t\t" groups_file ": no such file"
739 else if (!byl_opis_grupy)
740 print "######\t\t" "Unknown group!"
f171fd40 741
8e5358f8 742 close(groups_file)
4ab1678b 743 did_groups = 1
8e5358f8 744 }
f171fd40 745
307f5229 746 if (field ~ /prereq:/) {
a68f7b3b 747 sub(/Pre[Rr]eq:/, "Requires:", $1);
307f5229
ER
748 }
749
4aa6db15 750 # split (build)requires, obsoletes on commas
21a50087 751 if (field ~ /(obsoletes|requires|provides|conflicts|suggests):/ && NF > 2) {
ba377afe
ER
752 value = substr($0, index($0, $2));
753 $0 = format_requires($1, value);
f12ab15d 754 }
b6875e34 755
8e734165
ER
756 # BR: tar (and others) is to common (rpm-build requires it)
757 if (field ~ /^buildrequires:/) {
eb028bca
ER
758 l = substr($0, index($0, $2));
759 if (l == "awk" ||
760 l == "binutils" ||
761 l == "bzip2" ||
762 l == "cpio" ||
763 l == "diffutils" ||
764 l == "elfutils" ||
765 l == "fileutils" ||
766 l == "findutils" ||
767 l == "glibc-devel" ||
768 l == "grep" ||
769 l == "gzip" ||
770 l == "make" ||
771 l == "patch" ||
772 l == "sed" ||
773 l == "sh-utils" ||
774 l == "tar" ||
775 l == "textutils") {
8e734165
ER
776 next
777 }
d0297fb3 778
92fa789e 779 replace_requires();
8e734165
ER
780 }
781
e27788d1 782 if (field ~ /^requires:/ || field ~ /^requires\(/) {
92fa789e 783 replace_requires();
b6875e34 784 }
30cd4686
ER
785
786
ff21ed9e 787 # obsolete/unwanted tags
32908bc5 788 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
aec1bddb 789 next
ba377afe 790 }
f171fd40 791
4ab1678b 792 if (field ~ /buildroot:/) {
376e6bc4 793 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
4ab1678b
ER
794 did_build_root = 1
795 }
681a4871 796
681a4871 797 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
4932d2c6 798 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
aec1bddb 799 $1 = "License:"
4932d2c6 800 }
f171fd40 801
ad2932df
ER
802 # ease updating from debian .dsc
803 if (field ~ /homepage:/) {
804 $1 = "URL:"
805 }
806
517313c5
ER
807 # suse
808 if (field ~ /recommends:/) {
809 $1 = "Suggests:"
810 }
811
4defab2b 812 if ($3 == "==" && $1 !~ /%/) {
517313c5
ER
813 $3 = "="
814 }
815
3b07e07f
ER
816 if (field ~ /license:/) {
817 l = substr($0, index($0, $2));
818 if (l == "Python Software Foundation License") {
819 l = "PSF"
820 }
6112ae02
ER
821 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") {
822 l = "Apache v2.0"
823 }
824 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
825 l = "Apache"
826 }
827 if (l == "Apache-style License" || l == "Apache-style Software License") {
828 l = "Apache-like"
829 }
830 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
831 l = "Apache v1.1"
832 }
ee9487af
ER
833 if (l == "GPLv2") {
834 l = "GPL v2"
835 }
836 if (l == "GPLv2+") {
837 l = "GPL v2+"
838 }
407e19de
ER
839 if (l == "GPL v2 or later") {
840 l = "GPL v2+"
841 }
517313c5
ER
842 if (l == "LGPL v2.0 only") {
843 l = "LGPL v2"
844 }
af8efb29
ER
845 if (l == "LGPLv2+") {
846 l = "LGPL v2+"
847 }
471a5464
ER
848 if (l == "GPLv3") {
849 l = "GPL v3"
850 }
851 if (l == "GPLv3+") {
852 l = "GPL v3+"
853 }
e02ad475
ER
854 if (l == "MPLv1.1") {
855 l = "MPL v1.1"
856 }
3b07e07f
ER
857 $0 = "License:\t" l;
858 }
859
860
1462d6a3 861 if (field ~ /name:/) {
6426afb8 862 if ($2 == "%{name}" && name) {
63d47bae
ER
863 $2 = name
864 }
aec1bddb 865 name = $2
1462d6a3
ER
866 name_seen = 1;
867 }
681a4871 868
1462d6a3 869 if (field ~ /version:/) {
63d47bae
ER
870 if ($2 == "%{version}" && version) {
871 $2 = version
872 }
aec1bddb 873 version = $2
1462d6a3
ER
874 version_seen = 1;
875 }
876
877 if (field ~ /release:/) {
63d47bae
ER
878 if ($2 == "%{release}" && release) {
879 $2 = release
880 }
4ab1678b 881 sub(/%atrelease /, "0.", $0)
1462d6a3
ER
882 release = $2
883 release_seen = 1;
884 }
681a4871 885
32908bc5 886
c4dde22b
SZ
887 if (field ~ /serial:/)
888 $1 = "Epoch:"
b6853342 889
32908bc5
ER
890 if (field ~ /home-page:/)
891 $1 = "URL:"
892
89b1cd55 893 # proper caps
cf038723 894 if (field ~ /^url:$/)
89b1cd55
ER
895 $1 = "URL:"
896
471a5464
ER
897 if (field ~ /^patch/)
898 $1 = "Patch" substr(field, 6);
899
32908bc5
ER
900 if (field ~ /^description:$/)
901 $1 = "\n%description\n"
902
681a4871 903 # Use %{name} and %{version} in the filenames in "Source:"
f4cb1924 904 if (field ~ /^source/ || field ~ /patch/) {
aec1bddb 905 n = split($2, url, /\//)
fd8718a5
SZ
906 if (url[n] ~ /\.gz$/) {
907 url[n+1] = ".gz" url[n+1]
908 sub(/\.gz$/,"",url[n])
909 }
910 if (url[n] ~ /\.zip$/) {
911 url[n+1] = ".zip" url[n+1]
912 sub(/\.zip$/,"",url[n])
913 }
914 if (url[n] ~ /\.tar$/) {
915 url[n+1] = ".tar" url[n+1]
916 sub(/\.tar$/,"",url[n])
917 }
918 if (url[n] ~ /\.patch$/) {
919 url[n+1] = ".patch" url[n+1]
920 sub(/\.patch$/,"",url[n])
921 }
922 if (url[n] ~ /\.bz2$/) {
923 url[n+1] = ".bz2" url[n+1]
924 sub(/\.bz2$/,"",url[n])
925 }
dac4e142
SZ
926 if (url[n] ~ /\.logrotate$/) {
927 url[n+1] = ".logrotate" url[n+1]
928 sub(/\.logrotate$/,"",url[n])
929 }
930 if (url[n] ~ /\.pamd$/) {
931 url[n+1] = ".pamd" url[n+1]
932 sub(/\.pamd$/,"",url[n])
933 }
934
a3fcc309 935 # allow %{name} only in last url component
ced0372e
ER
936 s = ""
937 for (i = 1; i <= n; i++) {
938 url[i] = fixedsub("%{name}", name, url[i])
939 if (s) {
940 s = s "/" url[i]
941 } else {
942 s = url[i]
943 }
944 }
945 $2 = s url[n+1]
946
aec1bddb 947 filename = url[n]
5e028343
ER
948 if (name) {
949 url[n] = fixedsub(name, "%{name}", url[n])
950 }
755ab9c0 951 if (field ~ /source/) {
5e028343
ER
952 if (version) {
953 url[n] = fixedsub(version, "%{version}", url[n])
954 }
755ab9c0
ER
955 if (_beta) {
956 url[n] = fixedsub(_beta, "%{_beta}", url[n])
957 }
958 if (_rc) {
959 url[n] = fixedsub(_rc, "%{_rc}", url[n])
960 }
59de1799
ER
961 if (_pre) {
962 url[n] = fixedsub(_pre, "%{_pre}", url[n])
963 }
755ab9c0
ER
964 if (_snap) {
965 url[n] = fixedsub(_snap, "%{_snap}", url[n])
966 }
3c5e6e5f
ER
967 if (subver) {
968 url[n] = fixedsub(subver, "%{subver}", url[n])
969 }
755ab9c0 970 }
57caba32 971 # assigning to $2 kills preamble formatting
fd8718a5 972 $2 = fixedsub(filename, url[n], $2)
f171fd40 973
8ea8f0ae 974 $2 = unify_url($2)
681a4871 975 }
8b1938ea 976
f171fd40 977
f4cb1924 978 if (field ~ /^source:/)
f171fd40 979 $1 = "Source0:"
aec1bddb 980
13b24a87 981 if (field ~ /^patch:/)
aec1bddb 982 $1 = "Patch0:"
f171fd40 983
0ea7c3cd 984 kill_preamble_macros();
aec1bddb 985 format_preamble()
f171fd40 986
c26ee7ef
ER
987 if (field ~ /requires/) {
988 # atrpms
989 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
990 }
bf0a58ea 991}
992
4c1b7426
ER
993/^%bcond_/ {
994 # do nothing
995 print
996 next
997}
c58d1357
ER
998
999# sort BR/R!
1000#
1001# NOTES:
1002# - mixing BR/R and anything else confuses this (all will be sorted together)
b6875e34 1003# so don't do that.
c58d1357 1004# - comments leading the BR/R can not be associated,
b6875e34 1005# so don't adapterize when the BR/R are mixed with comments
a6b7c72d 1006ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS ":", $0 ~ PREAMBLE_TAGS ":"{
57caba32 1007 if ($1 ~ /Pre[Rr]eq:/) {
a68f7b3b 1008 sub(/Pre[Rr]eq:/, "Requires:", $1);
c58d1357 1009 }
23ddcab1
ER
1010 if ($1 == "BR:" ) {
1011 $1 = "BuildRequires:"
1012 }
1013 if ($1 == "R:" ) {
1014 $1 = "Requires:"
1015 }
c58d1357 1016 format_preamble()
8f7c516b 1017# kill_preamble_macros(); # breaks tabbing
c58d1357
ER
1018
1019 b_idx++;
1020 l = substr($0, index($0, $2));
1021 b_ktmp = b_makekey($1, l);
1022 b_key[b_idx] = b_ktmp;
1023 b_val[b_ktmp] = $0;
1024
1025 next;
1026}
1027
c58d1357
ER
1028preamble == 1 {
1029 if (b_idx > 0) {
1030 isort(b_key, b_idx);
1031 for (i = 1; i <= b_idx; i++) {
4932d2c6
ER
1032 v = b_val[b_key[i]];
1033 sub(/[ \t]+$/, "", v);
1034 print "" v;
c58d1357
ER
1035 }
1036 b_idx = 0
1037 }
1038}
1039
7a72f436 1040# main() ;-)
bf0a58ea 1041{
aec1bddb 1042 preamble = 1
f171fd40 1043
70a1dc9e 1044 sub(/[ \t]+$/, "")
aec1bddb 1045 print
1462d6a3
ER
1046
1047 if (name_seen == 0 && name) {
31702e1e 1048 print "Name:\t\t" name
1462d6a3
ER
1049 name_seen = 1
1050 }
1051
1052 if (version_seen == 0 && version) {
1053 print "Version:\t" version
1054 version_seen = 1
1055 }
1056
1057 if (release_seen == 0 && release) {
1058 print "Release:\t" release
1059 release_seen = 1
1060 }
32908bc5
ER
1061
1062 if (did_build_root == 0) {
4ab1678b 1063# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
32908bc5
ER
1064 did_build_root = 1
1065 }
4ab1678b
ER
1066 if (did_groups == 0) {
1067# print "Group:\t\tunknown"
1068 did_groups = 1
1069 }
a1aa4976 1070}
1071
f1991554 1072
a1aa4976 1073END {
a4de4386
ER
1074 if (do_not_touch_anything) {
1075 exit(rc)
1076 }
f171fd40 1077
b6875e34
ER
1078 # TODO: need to output these in proper place
1079 if (BR_count > 0) {
1080 for (i = 0; i <= BR_count; i++) {
1081 print BR[i];
1082 }
1083 }
1c955424 1084
f1991554 1085 close(changelog_file)
1086 while ((getline < changelog_file) > 0)
1087 print
1088 system("rm -f " changelog_file)
48c6019c 1089
1c52b18e
SZ
1090 if (did_clean == 0) {
1091 print ""
1092 print "%clean"
1093 print "rm -rf $RPM_BUILD_ROOT"
1094 }
1095
dda3eaa5
SZ
1096 if (date == 0) {
1097 print ""
1098 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1099 }
f171fd40 1100
1c955424 1101 if (has_changelog == 0) {
1395ea1c 1102 print "%changelog"
b6875e34 1103 }
dda3eaa5 1104
1c955424 1105 if (boc > 2) {
5bdbef27 1106 print "* %{date} PLD Team <feedback@pld-linux.org>"
b6875e34 1107 }
d31b8a48 1108 if (boc > 1) {
f818cd64 1109 printf "All persons listed below can be reached at "
5bdbef27 1110 print "<cvs_login>@pld-linux.org\n"
a1aa4976 1111 }
1c955424 1112 if (boc > 0) {
d31b8a48 1113 print "$" "Log:$"
b6875e34 1114 }
bf0a58ea 1115}
1116
fd8718a5 1117# substitutes fixed strings (not regexps)
98e37f1f 1118function fixedsub(s1,s2,t, ind) {
7a72f436 1119 if (ind = index(t,s1))
1120 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1121 return t
fd8718a5
SZ
1122}
1123
98e37f1f
ER
1124# replace s with s2 if it equals to s1
1125function replace(s, s1, s2) {
1126 if (s == s1) {
1127 return s2;
1128 } else {
1129 return s;
1130 }
1131}
1132
8b1938ea 1133# There should be one or two tabs after the colon.
1134function format_preamble()
1135{
57caba32 1136 if (/^#/ || /^%bcond_with/) {
08f60a73
ER
1137 return;
1138 }
aec1bddb 1139 sub(/:[ \t]*/, ":")
2b94cfb4
ER
1140 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1141 if (RLENGTH < 8) {
aec1bddb 1142 sub(/:/, ":\t\t")
b6875e34 1143 } else {
aec1bddb 1144 sub(/:/, ":\t")
b6875e34 1145 }
8b1938ea 1146 }
1147}
1148
43c05c3c 1149# Replace directly specified directories with macros
1150function use_macros()
1151{
13b24a87
ER
1152 # -m, --skip-macros, --no-macros -- skip macros subst
1153 if (ENVIRON["SKIP_MACROS"]) {
1154 return
1155 }
1156
b05d5275
ER
1157 # leave inline sed lines alone
1158 if (/(%{__sed}|sed) -i -e/) {
1159 return;
1160 }
1161
b6875e34
ER
1162 sub("%{_defaultdocdir}", "%{_docdir}");
1163 sub("%{_bindir}/perl", "%{__perl}");
1164 sub("%{_bindir}/python", "%{__python}");
36d9a33d 1165
a372a159
ER
1166 gsub(infodir, "%{_infodir}")
1167
336c1a4f
ER
1168 gsub(perl_sitearch, "%{perl_sitearch}")
1169 gsub(perl_archlib, "%{perl_archlib}")
1170 gsub(perl_privlib, "%{perl_privlib}")
336c1a4f
ER
1171 gsub(perl_vendorlib, "%{perl_vendorlib}")
1172 gsub(perl_vendorarch, "%{perl_vendorarch}")
1173 gsub(perl_sitelib, "%{perl_sitelib}")
9732cb3d
ER
1174
1175 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
4ab1678b 1176 gsub(py_sitedir, "%{py_sitedir}")
1bdf7824 1177 gsub(py_scriptdir, "%{py_scriptdir}")
ae4d1624
ER
1178
1179 gsub(py3_sitescriptdir, "%{py3_sitescriptdir}")
1180 gsub(py3_sitedir, "%{py3_sitedir}")
1181 gsub(py3_scriptdir, "%{py3_scriptdir}")
6f2c1099
ER
1182
1183 gsub(ruby_archdir, "%{ruby_archdir}")
1184 gsub(ruby_ridir, "%{ruby_ridir}")
1185 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1186 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1187 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
51847161 1188 gsub(ruby_rdocdir, "%{ruby_rdocdir}")
6f2c1099 1189
4a62fb54
ER
1190 gsub("%{_datadir}/applications", "%{_desktopdir}")
1191 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
ee9487af 1192 gsub("%{_datadir}/java", "%{_javadir}")
336c1a4f 1193
a4de4386
ER
1194 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
1195 gsub(pkgconfigdir, "%{_pkgconfigdir}")
1196
1c298a13
ER
1197 gsub("%{_datadir}/pkgconfig", "%{_npkgconfigdir}")
1198 gsub(npkgconfigdir, "%{_npkgconfigdir}")
1199
4efeac87
ER
1200 gsub("%{_datadir}/locale", "%{_localedir}")
1201 gsub(localedir, "%{_localedir}")
1202
e00f41b5 1203 gsub(libdir, "%{_libdir}")
ee9487af 1204 gsub(javadir, "%{_javadir}")
e00f41b5 1205
df79d912
JR
1206 gsub(systemdunitdir, "%{systemdunitdir}")
1207 gsub(systemdtmpfilesdir, "%{systemdtmpfilesdir}")
1208
aec1bddb 1209 gsub(bindir, "%{_bindir}")
74edc57e 1210 gsub("%{prefix}/bin", "%{_bindir}")
b05d5275 1211 if (prefix"/bin" == bindir)
0080f34c 1212 gsub("%{_prefix}/bin", "%{_bindir}")
74edc57e 1213
de69503c 1214 for (c = 1; c <= NF; c++) {
1215 if ($c ~ sbindir "/fix-info-dir")
1216 continue;
3457b4f7
ER
1217 if ($c ~ sbindir "/webapp")
1218 continue;
a372a159
ER
1219 if ($c ~ sbindir "/ldconfig")
1220 continue;
4837c1e3
ER
1221 if ($c ~ sbindir "/chsh")
1222 continue;
1223 if ($c ~ sbindir "/usermod")
1224 continue;
f06959ff
ER
1225 if ($c ~ sbindir "/chkconfig")
1226 continue;
836e411f
ER
1227 if ($c ~ sbindir "/installzope(product|3package)")
1228 continue;
de69503c 1229 gsub(sbindir, "%{_sbindir}", $c)
1230 }
1231
74edc57e 1232 gsub("%{prefix}/sbin", "%{_sbindir}")
836e411f 1233 if (prefix"/sbin" == sbindir) {
5e1d0492 1234 gsub("%{_prefix}/sbin", "%{_sbindir}")
836e411f 1235 }
74edc57e 1236
353f5eea 1237 for (c = 1; c <= NF; c++) {
0965a1a0 1238 if ($c ~ sysconfdir "/{?cron.")
de69503c 1239 continue;
0080f34c 1240 if ($c ~ sysconfdir "/{?crontab.d")
807a0f6b 1241 continue;
6c178315
ER
1242 if ($c ~ sysconfdir "/{?env.d")
1243 continue;
90a421f5 1244 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
554d6b98 1245 continue;
5d7c48a4
ER
1246 if ($c ~ sysconfdir "/{?udev")
1247 continue;
1248 if ($c ~ sysconfdir "/{?hotplug")
e61b5989 1249 continue;
0080f34c 1250 if ($c ~ sysconfdir "/{?logrotate.d")
353f5eea 1251 continue;
0080f34c 1252 if ($c ~ sysconfdir "/{?pam.d")
a9b2c8c7 1253 continue;
0080f34c 1254 if ($c ~ sysconfdir "/{?profile.d")
66ef7810 1255 continue;
0080f34c 1256 if ($c ~ sysconfdir "/{?rc.d")
9ad7f20b 1257 continue;
0080f34c 1258 if ($c ~ sysconfdir "/{?security")
a9b2c8c7 1259 continue;
0080f34c 1260 if ($c ~ sysconfdir "/{?skel")
c21d1979 1261 continue;
0080f34c 1262 if ($c ~ sysconfdir "/{?sysconfig")
66ef7810 1263 continue;
6e985933
ER
1264 if ($c ~ sysconfdir "/{?shrc.d")
1265 continue;
7c73bc0f
ER
1266 if ($c ~ sysconfdir "/{?certs")
1267 continue;
de5d18d8
ER
1268 if ($c ~ sysconfdir "/{?X11")
1269 continue;
5debd9f6
ER
1270 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1271 continue;
ff21ed9e
ER
1272 if ($c ~ sysconfdir "/{?rpm")
1273 continue;
57caba32 1274 if ($c ~ sysconfdir "/{?bash_completion.d")
6e985933 1275 continue;
57caba32 1276 if ($c ~ sysconfdir "/{?samba")
9292b547 1277 continue;
b371c36f
ER
1278 if ($c ~ sysconfdir "/{?xdg")
1279 continue;
52a943cf
ER
1280 if ($c ~ sysconfdir "/shells")
1281 continue;
b371c36f
ER
1282 if ($c ~ sysconfdir "/inittab")
1283 continue;
98e9501e
ER
1284 if ($c ~ sysconfdir "/init")
1285 continue;
5dc7f5e4
ER
1286 if ($c ~ sysconfdir "/ppp")
1287 continue;
9395915a
ER
1288 if ($c ~ sysconfdir "/dbus-1")
1289 continue;
be827f42
ER
1290 if ($c ~ sysconfdir "/tmpwatch")
1291 continue;
471a5464
ER
1292 if ($c ~ sysconfdir "/acpi")
1293 continue;
1294 if ($c ~ sysconfdir "/apm")
1295 continue;
353f5eea 1296 gsub(sysconfdir, "%{_sysconfdir}", $c)
1297 }
74edc57e 1298
c2b069de 1299 gsub(docdir, "%{_docdir}")
7cb79e98
ER
1300
1301 gsub(kdedocdir, "%{_kdedocdir}")
1302
1303 gsub(gtkdocdir, "%{_gtkdocdir}")
1304 gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1305
57caba32 1306 gsub(php_pear_dir, "%{php_pear_dir}")
4b1d6e6d 1307 gsub(php_data_dir, "%{php_data_dir}")
c2b069de 1308
c4adc376
ER
1309 for (c = 1; c <= NF; c++) {
1310 if ($c ~ datadir "/automake")
1311 continue;
13670287
ER
1312 if ($c ~ datadir "/unsermake")
1313 continue;
a9fb2db8
ER
1314 if ($c ~ datadir "/file/magic.mime")
1315 continue;
c4adc376
ER
1316 gsub(datadir, "%{_datadir}", $c)
1317 }
1318
74edc57e 1319 gsub("%{prefix}/share", "%{_datadir}")
c4adc376 1320 if (prefix"/share" == datadir)
0080f34c 1321 gsub("%{_prefix}/share", "%{_datadir}")
74edc57e 1322
826b40ea
ER
1323 # CFLAGS="-I/usr/include/ncurses is usually correct.
1324 if (!/-I\/usr\/include/) {
1325 gsub(includedir, "%{_includedir}")
1326 }
1327
74edc57e 1328 gsub("%{prefix}/include", "%{_includedir}")
826b40ea 1329 if (prefix"/include" == includedir) {
0080f34c 1330 gsub("%{_prefix}/include", "%{_includedir}")
826b40ea 1331 }
74edc57e 1332
aec1bddb 1333 gsub(mandir, "%{_mandir}")
826b40ea 1334 if ($0 !~ "%{_datadir}/manual") {
5e1d0492 1335 gsub("%{_datadir}/man", "%{_mandir}")
826b40ea 1336 }
9ce0df66 1337 gsub("%{_prefix}/share/man", "%{_mandir}")
1338 gsub("%{prefix}/share/man", "%{_mandir}")
74edc57e 1339 gsub("%{prefix}/man", "%{_mandir}")
1340 gsub("%{_prefix}/man", "%{_mandir}")
1341
aec1bddb 1342 gsub(infodir, "%{_infodir}")
74edc57e 1343 gsub("%{prefix}/info", "%{_infodir}")
1344 gsub("%{_prefix}/info", "%{_infodir}")
1345
0965a1a0 1346 if (prefix !~ "/X11R6") {
1347 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1348 }
cfbf94ec 1349
2a638fcb 1350 gsub(examplesdir, "%{_examplesdir}")
7c6b85c4 1351
efd2d668 1352 if (prefix != "/") {
a9fb2db8
ER
1353 # leave --with-foo=/usr alone
1354 if ($0 !~ "--with.*=.*" prefix) {
1355 for (c = 1; c <= NF; c++) {
1356 if ($c ~ prefix "/sbin/fix-info-dir")
1357 continue;
3457b4f7
ER
1358 if ($c ~ prefix "/sbin/webapp")
1359 continue;
4837c1e3
ER
1360 if ($c ~ prefix "/sbin/chsh")
1361 continue;
1362 if ($c ~ prefix "/sbin/usermod")
1363 continue;
836e411f
ER
1364 if ($c ~ prefix "/sbin/installzope(product|3package)")
1365 continue;
a9fb2db8
ER
1366 if ($c ~ prefix "/share/automake")
1367 continue;
1368 if ($c ~ prefix "/share/unsermake")
1369 continue;
1370 if ($c ~ prefix "/lib/sendmail")
1371 continue;
97dae8dc
ER
1372 if ($c ~ prefix "/lib/pkgconfig")
1373 continue;
826b40ea 1374
b5fc4b79
ER
1375 # CFLAGS="-I/usr..." is usually correct.
1376 if (/-I\/usr/)
826b40ea 1377 continue;
474f0944
ER
1378 # same for LDFLAGS="-L/usr..."
1379 if (/-L\/usr/)
1380 continue;
826b40ea 1381
a9fb2db8
ER
1382 gsub(prefix, "%{_prefix}", $c)
1383 }
de69503c 1384 }
efd2d668 1385 gsub("%{prefix}", "%{_prefix}")
1386 }
3bcd1fab 1387
53d16b95
ER
1388 # replace back
1389 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1390 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1391
3bcd1fab 1392 gsub("%{PACKAGE_VERSION}", "%{version}")
1393 gsub("%{PACKAGE_NAME}", "%{name}")
b35c10f1 1394
59e208d5 1395 gsub("^make$", "%{__make}")
1396 gsub("^make ", "%{__make} ")
61b753c5 1397 gsub("^gcc ", "%{__cc} ")
67fe737e 1398 gsub("^rm --interactive=never ", "%{__rm} ")
9aece8c8 1399
471a5464
ER
1400 # fedora
1401 gsub("%{ruby_sitearch}", "%{ruby_sitearchdir}")
1402 gsub("%{python_sitearch}", "%{py_sitedir}")
e02ad475
ER
1403 gsub("%{python_sitelib}", "%{py_sitescriptdir}")
1404
1405 # alt linux
1406 gsub("%_man1dir", "%{_mandir}/man1")
471a5464 1407
cab706de
ER
1408 # mandrake specs
1409 gsub("^%make$", "%{__make}")
1410 gsub("^%make ", "%{__make} ")
1411 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
b7ca53a5 1412 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
63d47bae 1413 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
cab706de 1414 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b7ca53a5 1415 gsub("^%{__install}", "install")
cab706de
ER
1416 gsub("%optflags", "%{rpmcflags}")
1417 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1418
a6ed8b03 1419 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
d11acde9 1420 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
5e15e952
ER
1421 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1422 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
63d47bae 1423 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
43f8581a 1424 $0 = fixedsub("%__install", "install", $0);
63d47bae 1425
740e3cd8 1426 # split configure line to multiple lines
6c8a2863 1427 if (/%configure +$/) {
1428 sub( / +$/, "" );
1429 } else if (/%configure / && !/\\$/) {
740e3cd8
ER
1430 $0 = format_configure($0);
1431 }
1432
ac779c71
ER
1433 gsub("%_bindir", "%{_bindir}")
1434 gsub("%_datadir", "%{_datadir}")
1435 gsub("%_iconsdir", "%{_iconsdir}")
c2b069de
ER
1436 gsub("%_sbindir", "%{_sbindir}")
1437 gsub("%_mandir", "%{_mandir}")
1438 gsub("%name", "%{name}")
b6875e34
ER
1439 gsub(/%__rm/, "rm");
1440 gsub(/%__mkdir_p/, "install -d");
1441 gsub(/%__cp/, "cp");
1442 gsub(/%__ln_s/, "ln -s");
1443 gsub(/%__sed/, "%{__sed}");
1444 gsub(/%__cat/, "cat");
1445 gsub(/%__chmod/, "chmod");
a6ed8b03 1446
9aece8c8 1447 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1448 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1c955424 1449
ecaaa784 1450 if (/^ant / || /^%{ant}/) {
1c955424 1451 sub(/^ant/, "%ant")
ecaaa784 1452 sub(/^%{ant}/, "%ant")
b6875e34
ER
1453 add_br("BuildRequires: jpackage-utils");
1454 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1455 }
1c955424 1456
2dc1a8cd
ER
1457 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1458 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
d6e33af7
ER
1459
1460 # kill the _class and _subclass pear macros
1461 if (pear_class) {
1462 gsub("%{_class}", pear_class);
1463 }
1464 if (pear_subclass) {
1465 gsub("%{_subclass}", pear_subclass);
1466 }
9ae21f47 1467}
f171fd40 1468
740e3cd8
ER
1469function format_configure(line, n, a, s) {
1470 n = split(line, a, / /);
1471 s = a[1] " \\\n";
1472 for (i = 2; i <= n; i++) {
1473 s = s "\t" a[i] " \\\n"
1474 }
1475 return s
1476}
1477
7c23055b
ER
1478
1479# insertion sort of A[1..n]
1480# copied from mawk manual
1481function isort(A,n, i,j,hold) {
1482 for (i = 2; i <= n; i++) {
1483 hold = A[j = i]
1484 while (A[j-1] > hold) {
54caef3d 1485 j-- ; A[j+1] = A[j]
1486 }
7c23055b
ER
1487 A[j] = hold
1488 }
1489 # sentinel A[0] = "" will be created if needed
1490}
1491
1492
23e0529e 1493function use_files_macros( i, n, t, a, l)
eee34ffb 1494{
e6f1551d
ER
1495 use_macros()
1496
da6457aa
ER
1497 # skip comments
1498 if (/^#/) {
484bbf6d 1499 return 1;
da6457aa
ER
1500 }
1501
f158eddc
ER
1502 sub("^%doc %{_mandir}", "%{_mandir}")
1503
eee34ffb 1504 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1505 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
7c23055b 1506
61cb9711
ER
1507 # uid/gid nobody is not valid in %files
1508 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1509 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1510 }
1511
16bb0647
JB
1512 # s[gu]id programs with globs are evil
1513 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1514 $0 = $0 " # FIXME no globs for suid/sgid files"
85bed066
ER
1515 }
1516
5dc673eb 1517 # replace back
8f6ddcd9 1518 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
3feaeac8 1519 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
8f6ddcd9
ER
1520 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1521 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1522 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1523 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1524 gsub("%{_sysconfdir}/security", "/etc/security")
1525 gsub("%{_sysconfdir}/skel", "/etc/skel")
1526 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1527 gsub("%{_sysconfdir}/certs", "/etc/certs")
5dc673eb 1528 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
9395915a 1529 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
be827f42
ER
1530 gsub("%{_sysconfdir}/pki", "/etc/pki")
1531 gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
2fc0e274 1532
5dc673eb
ER
1533 # /etc/init.d -> /etc/rc.d/init.d
1534 if (!/^\/etc\/init\.d$/) {
1535 gsub("/etc/init.d", "/etc/rc.d/init.d")
1536 }
1537
1538 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
2fc0e274
ER
1539 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1540 $0 = "%attr(754,root,root) " $0
1541 }
1542 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
89c604c7 1543 gsub("^%attr\\(... *,", "%attr(754,");
2fc0e274 1544 }
9a7a5776
ER
1545 }
1546
1c298a13 1547 if (/lib.+\.so\b/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
55356feb
ER
1548 $0 = "%attr(755,root,root) " $0
1549 }
1550
ab9b09e2
ER
1551 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1552 $0 = "%attr(755,root,root) " $0
1553 }
1554
af8efb29
ER
1555 # remove attrs from man pages
1556 if (/%{_mandir}/ && /^%attr/) {
1557 sub("^%attr\\(.*\\) *", "");
1558 }
1559
f56d5519
ER
1560 # /etc/sysconfig files
1561 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
a825b76b 1562 # attr not required, allow default 644 attr
6ea64b8d 1563 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
6ea0907e 1564 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
5dc673eb
ER
1565 gsub("%config", "%config(noreplace)")
1566 }
f56d5519 1567
6ea0907e 1568 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
5dc673eb
ER
1569 $NF = "%config(noreplace) " $NF
1570 }
f56d5519 1571
5dc673eb 1572 if (/\/etc\/sysconfig\// && /%attr\(755/) {
89c604c7 1573 gsub("^%attr\\(... *,", "%attr(640,");
5dc673eb 1574 }
f56d5519 1575
5dc673eb
ER
1576 if (/\/etc\/sysconfig\// && !/%verify/) {
1577 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1578 }
a825b76b
ER
1579 }
1580
f56d5519 1581 # kill leading zeros
7dfb4dea
ER
1582 if (/%attr\(0[1-9]/) {
1583 gsub("%attr\\(0", "%attr(")
1584 }
f9d5d512 1585
95ae7268 1586 # kill leading whitespace
b8085249 1587 gsub(/^ +/, "");
95ae7268 1588
b6875e34
ER
1589 # kill default attrs
1590 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1591 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1592 if (!/%dir/) {
1593 gsub(/%attr\(644,root,root\) /, "");
1594 }
46292535 1595
7c23055b 1596 # sort %verify attrs
12bfc5c8 1597 if (match($0, /%verify\(not([^)]+)\)/)) {
7c23055b 1598 t = substr($0, RSTART, RLENGTH)
8409a9b2
ER
1599 # kill commas: %verify(not,md5,size,mtime)
1600 gsub(/,/, " ", t);
1601
7c23055b
ER
1602 gsub(/^%verify\(not |\)$/, "", t)
1603 n = split(t, a, / /)
1604 isort(a, n)
1605
1606 s = "%verify(not"
1607 for (i = 1 ; i <= n; i++) {
1608 s = s " " a[i]
1609 }
1610 s = s ")"
1611
12bfc5c8 1612 gsub(/%verify\(not[^)]+\)/, s)
7c23055b 1613 }
13defa79
ER
1614
1615 if (/%{_mandir}/) {
d64e2ec0 1616 gsub("\.gz$", "*")
1080e5b7 1617 gsub("%ext_man$", "*")
13defa79 1618 }
5e15e952 1619
ef6d2b7a 1620 # locale dir and no %lang -> bad
b9080a1b 1621 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
ef6d2b7a
ER
1622 $(NF + 1) = "# FIXME consider using %find_lang"
1623 }
1624
23e0529e 1625 # python egg-infos
860a6f52 1626 if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
484bbf6d
ER
1627 # tests:
1628 #%{py_sitedir}/*-py2.4.egg-info
1629 #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
1630 #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
1631 #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
1632
860a6f52 1633 l = index($0, "/");
484bbf6d 1634 t = substr($0, 0, l);
23e0529e 1635 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
860a6f52 1636 if (match(s, "[^-]+$")) {
484bbf6d
ER
1637 if (RSTART > 1) {
1638 s = substr(s, 0, RSTART - 1);
5384172a 1639 }
23e0529e 1640 print "%if \"%{py_ver}\" > \"2.4\""
860a6f52 1641 gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
23e0529e
ER
1642 print
1643 print "%endif"
484bbf6d 1644 return 0;
23e0529e
ER
1645 }
1646 }
1647
5e15e952
ER
1648 # atrpms
1649 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1650 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1651 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
97dae8dc
ER
1652
1653 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1654 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1655 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
eee20d8d
ER
1656
1657 gsub("%{_datadir}/applications", "%{_desktopdir}");
9730a549 1658 gsub("%{_datadir}/icons", "%{_iconsdir}");
0904210e 1659 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
4b1d6e6d
ER
1660 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1661 gsub("%{_datadir}/php", "%{php_data_dir}");
484bbf6d
ER
1662
1663 return 1
eee34ffb 1664}
236b87ac 1665
723ce732
ER
1666function use_script_macros()
1667{
1668 if (gsub("/sbin/service", "%service")) {
1669 sub(" >/dev/null 2>&1 \|\|:", "");
1670 sub(" 2> /dev/null \|\| :", "");
1671 }
1672}
1673
236b87ac 1674function fill(ch, n, i) {
1675 for (i = 0; i < n; i++)
1676 printf("%c", ch)
1677}
1678
1679function format_flush(line, indent, newline, word, first_word) {
1680 first_word = 1
f171fd40 1681 if (format_indent == -1)
236b87ac 1682 newline = ""
1683 else
1684 newline = fill(" ", format_indent) "- "
1685
1686 while (match(line, /[^\t ]+/)) {
1687 word = substr(line, RSTART, RLENGTH)
1688 if (length(newline) + length(word) + 1 > tw) {
1689 print newline
f171fd40 1690
236b87ac 1691 if (format_indent == -1)
1692 newline = ""
1693 else
1694 newline = fill(" ", format_indent + 2)
1695 first_word = 1
1696 }
1697
1698 if (first_word) {
1699 newline = newline word
1700 first_word = 0
1701 } else
1702 newline = newline " " word
f171fd40 1703
236b87ac 1704 line = substr(line, RSTART + RLENGTH)
1705 }
1706 if (newline ~ /[^\t ]/) {
1707 print newline
1708 }
1709}
1710
eb4bf70e 1711function cflags(var)
1712{
85e708f2 1713 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1714 removed[var] = 1
eb4bf70e 1715 return 0
85e708f2 1716 }
f171fd40 1717
246ad57e 1718 if (!/!\?debug/)
fde8f52a 1719 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
eb4bf70e 1720 return 1
1721}
0ea7c3cd 1722
9b781beb
ER
1723# return whole matched pattern
1724function matchstr(str, pat)
1725{
1726 match(str, "[^/]+$");
1727 return substr(str, RSTART, RLENGTH);
1728}
1729
8ea8f0ae
ER
1730function unify_url(url)
1731{
1732
1733 # sourceforge urls
3f8ea9bd 1734 # Docs about sourceforge mirror system: http://sourceforge.net/apps/trac/sourceforge/wiki/Mirrors
f6403de9
ER
1735
1736 # 1. unify domains
3f8ea9bd
JB
1737 sub("^http://prdownloads\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1738 sub("^http://download\.sf\.net/", "http://downloads.sourceforge.net/", url)
1739 sub("^http://download\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1740 sub("^http://dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1741 sub("^http://.*\.dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1742 sub("^http://dl\.sf\.net/", "http://downloads.sourceforge.net/", url)
1743 sub("^http://downloads\.sourceforge\.net/sourceforge/", "http://downloads.sourceforge.net/", url)
f6403de9 1744
f6403de9 1745 # 3. unify urls
2bee6485
ER
1746 if (url ~ /sourceforge.net/) {
1747 sub("[?&]big_mirror=.*$", "", url);
1748 sub("[?&]modtime=.*$", "", url);
1749 sub("[?]use_mirror=.*$", "", url);
1750 sub("[?]download$", "", url);
1751 sub("/download$", "", url);
1752 }
8ea8f0ae 1753
9b781beb
ER
1754 # SF: new style urls, strip "files/" between and prepend dl.
1755 if (match(url, "^http://sourceforge.net/projects/[^/]+/files/")) {
1756 url = substr(url, 1, RLENGTH - length("files/")) substr(url, RSTART + RLENGTH);
1757 sub("^http://sourceforge.net/projects/", "http://downloads.sourceforge.net/project/", url);
1758 }
1759
1760 # SF unify: http://downloads.sourceforge.net/PROJECT/TARBALL
1761 # http://downloads.sourceforge.net/project/PROJECT/FILE/VERSION/%{name}-%{version}.zip
1762 if (match(url, "^http://downloads.sourceforge.net/project/[^/]+")) {
1763 url = sprintf("http://downloads.sourceforge.net/%s/%s", substr(url, 42, RLENGTH - 41), matchstr(url, "[^/]+$"));
1764 }
1765
8ea8f0ae
ER
1766 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1767 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1768
1769 # apache urls
1770 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1771
11401cd0 1772 # gnu.org
a4799779
ER
1773 sub("^ftp://ftp\.gnu\.org/", "http://ftp.gnu.org/", url)
1774 sub("^http://ftp\.gnu\.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
1775
1776 # debian.org
1777 sub("^ftp://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1778 sub("^http://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1779 sub("^ftp://ftp\.debian\.org/pub/debian/", "ftp://ftp.debian.org/debian/", url)
11401cd0 1780
8ea8f0ae
ER
1781 return url
1782}
1783
4e26c5f2
ER
1784function demacroize(str)
1785{
8f7c516b
ER
1786 if (mod_name) {
1787 sub("%{mod_name}", mod_name, str);
1788 }
f5f6280a
ER
1789 if (pearname) {
1790 sub("%{_pearname}", pearname, str);
1791 }
1792 if (pearname) {
1793 sub("%{pearname}", pearname, str);
1794 }
8f7c516b
ER
1795 if (name) {
1796 sub("%{name}", name, str);
1797 }
4e26c5f2
ER
1798 if (version) {
1799 sub("%{version}", version, str);
1800 }
1801 if (_beta) {
1802 sub("%{_beta}", _beta, str);
1803 }
1804 if (_rc) {
1805 sub("%{_rc}", _rc, str);
1806 }
59de1799
ER
1807 if (_pre) {
1808 sub("%{_pre}", _pre, str);
1809 }
4e26c5f2
ER
1810 if (_snap) {
1811 sub("%{_snap}", _snap, str);
1812 }
3c5e6e5f
ER
1813 if (subver) {
1814 sub("%{subver}", subver, str);
1815 }
4e26c5f2
ER
1816 return str;
1817}
1818
0ea7c3cd
ER
1819function kill_preamble_macros()
1820{
a64d362e
ER
1821 if ($1 ~ /^Obsoletes:/) {
1822 # NB! assigning $2 a value breaks tabbing
1823 $2 = demacroize($2);
1824 }
1825 if ($1 ~ /^URL:/) {
8f7c516b 1826 # NB! assigning $2 a value breaks tabbing
4e26c5f2 1827 $2 = demacroize($2);
ec30d23e 1828 $2 = unify_url($2)
0ea7c3cd 1829 }
e31553a7
ER
1830
1831 # fedora extras
1832 if (/%{\?FE_USERADD_REQ}/) {
1833 $0 = "";
1834 print "BuildRequires: rpmbuild(macros) >= 1.202"
1835 print "Provides: user(xxx)"
1836 print "Requires(postun): /usr/sbin/userdel"
1837 print "Requires(pre): /bin/id"
1838 print "Requires(pre): /usr/sbin/useradd"
1839 }
0ea7c3cd 1840}
ba377afe 1841
9815f9b2
ER
1842function get_epoch(pkg, ver, epoch)
1843{
cccfa553
ER
1844 return
1845# should parse the BR lines more adequately:
1846# freetype = 2.0.0 -> correct
1847# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1848
9815f9b2
ER
1849 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1850 shell | getline epoch;
1851 return epoch;
1852}
1853
ba377afe 1854function format_requires(tag, value, n, p, i, deps, ndeps) {
87b130e2
ER
1855 # skip any formatting for commented out items or some weird macros
1856 if (/^#/ || /%\(/) {
3f81d059
ER
1857 return tag "\t" value
1858 }
ba377afe
ER
1859 n = split(value, p, / *,? */);
1860 for (i = 1; i <= n; i++) {
1861 if (p[i+1] ~ /[<=>]/) {
9815f9b2
ER
1862 # add epoch if the version doesn't have it but BuildRequires.txt has
1863 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1864 epoch = get_epoch(p[i], p[i+2])
1865 if (epoch) {
1866 p[i+2] = epoch ":" p[i+2];
1867 }
1868 }
ba377afe
ER
1869 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1870 i += 2;
1871 } else {
1872 deps[ndeps++] = p[i];
1873 }
1874 }
1875 s = ""
1876 for (i in deps) {
1877 s = s sprintf("%s\t%s\n", tag, deps[i]);
1878 }
1879 return substr(s, 1, length(s)-1);
1880}
6ebff802
ER
1881
1882function use_tabs()
1883{
1884 # reverse vim: ts=4 sw=4 et
1885 gsub(/ /, "\t");
1886}
1c955424
ER
1887
1888function add_br(br)
1889{
b6875e34 1890 BR[BR_count++] = br
1c955424
ER
1891}
1892
76c7e23c
ER
1893# Load rpm macros
1894# you should update the list also in adapter when making changes here
1895function import_rpm_macros() {
1896 # File with rpm groups
1897 topdir = ENVIRON["_topdir"]
1898
1899 if (!topdir) {
1900 print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
1901 do_not_touch_anything = 1
a4de4386
ER
1902 exit(rc = 1);
1903 }
1904
8fc7c329 1905 # update this version dep each time some new macro export is added
4efeac87 1906 if (!ENVIRON["ADAPTER_REVISION"] || ENVIRON["ADAPTER_REVISION"] < 1.49) {
a4de4386
ER
1907 print "adapter shell script is outdated, please cvs up it" > "/dev/stderr"
1908 do_not_touch_anything = 1
1909 exit(rc = 1);
76c7e23c
ER
1910 }
1911
1912 # get cvsaddress for changelog section
1913 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
1914 _cvsmaildomain = ENVIRON["_cvsmaildomain"]
1915 _cvsmailfeedback = ENVIRON["_cvsmailfeedback"]
1916
1917 prefix = ENVIRON["_prefix"]
1918 bindir = ENVIRON["_bindir"]
1919 sbindir = ENVIRON["_sbindir"]
1920 libdir = ENVIRON["_libdir"]
1921 sysconfdir = ENVIRON["_sysconfdir"]
1922 datadir = ENVIRON["_datadir"]
1923 includedir = ENVIRON["_includedir"]
1924 mandir = ENVIRON["_mandir"]
1925 infodir = ENVIRON["_infodir"]
1926 examplesdir = ENVIRON["_examplesdir"]
1927 docdir = ENVIRON["_defaultdocdir"]
1928 kdedocdir = ENVIRON["_kdedocdir"]
1929 gtkdocdir = ENVIRON["_gtkdocdir"]
1930 desktopdir = ENVIRON["_desktopdir"]
1931 pixmapsdir = ENVIRON["_pixmapsdir"]
1932 javadir = ENVIRON["_javadir"]
a4de4386 1933 pkgconfigdir = ENVIRON["_pkgconfigdir"]
1c298a13 1934 npkgconfigdir = ENVIRON["_npkgconfigdir"]
4efeac87 1935 localedir = ENVIRON["_localedir"]
76c7e23c
ER
1936
1937 perl_sitearch = ENVIRON["perl_sitearch"]
1938 perl_archlib = ENVIRON["perl_archlib"]
1939 perl_privlib = ENVIRON["perl_privlib"]
1940 perl_vendorlib = ENVIRON["perl_vendorlib"]
1941 perl_vendorarch = ENVIRON["perl_vendorarch"]
1942 perl_sitelib = ENVIRON["perl_sitelib"]
1943
1944 py_sitescriptdir = ENVIRON["py_sitescriptdir"]
1945 py_sitedir = ENVIRON["py_sitedir"]
1946 py_scriptdir = ENVIRON["py_scriptdir"]
1947 py_ver = ENVIRON["py_ver"]
1948
8fc7c329
ER
1949 py3_sitescriptdir = ENVIRON["py3_sitescriptdir"]
1950 py3_sitedir = ENVIRON["py3_sitedir"]
1951 py3_scriptdir = ENVIRON["py3_scriptdir"]
1952 py3_ver = ENVIRON["py3_ver"]
1953
76c7e23c
ER
1954 ruby_archdir = ENVIRON["ruby_archdir"]
1955 ruby_ridir = ENVIRON["ruby_ridir"]
1956 ruby_rubylibdir = ENVIRON["ruby_rubylibdir"]
1957 ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
1958 ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
1959 ruby_rdocdir = ENVIRON["ruby_rdocdir"]
1960
1961 php_pear_dir = ENVIRON["php_pear_dir"]
1962 php_data_dir = ENVIRON["php_data_dir"]
1963 tmpdir = ENVIRON["tmpdir"]
df79d912
JR
1964
1965 systemdunitdir = ENVIRON["systemdunitdir"]
1966 systemdtmpfilesdir = ENVIRON["systemdtmpfilesdir"]
76c7e23c
ER
1967}
1968
76c7e23c
ER
1969# php virtual deps as discussed in devel-en
1970function replace_php_virtual_deps() {
1971 pkg = $2
1972# if (pkg == "php-program") {
1973# $0 = $1 "\t/usr/bin/php"
1974# return
1975# }
1976
1977# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1978# sub(/^php-/, "php(", pkg);
1979# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1980# $2 = pkg
1981# }
1982
1983 if (pkg ~/^php$/) {
1984 $2 = "webserver(php)";
1985 if ($4 ~ /^[0-9]:/) {
1986 $4 = substr($4, 3);
1987 }
1988 }
1989
1990 if (pkg ~/^php4$/) {
1991 $2 = "webserver(php)";
1992 if ($4 ~ /^[0-9]:/) {
1993 $4 = substr($4, 3);
1994 }
1995 }
1996}
1997
b2cb3007
ER
1998function replace_groupnames(group) {
1999 group = replace(group, "Amusements/Games", "Applications/Games");
2000 group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
2001 group = replace(group, "Application/Multimedia", "Applications/Multimedia");
2002 group = replace(group, "Application/System", "Applications/System");
2003 group = replace(group, "Applications/Compilers", "Development/Languages");
2004 group = replace(group, "Applications/Daemons", "Daemons");
2005 group = replace(group, "Applications/Internet", "Applications/Networking");
2006 group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
2007 group = replace(group, "Applications/Productivity", "X11/Applications");
2008 group = replace(group, "Applications/Security", "Applications/System");
2009 group = replace(group, "Applications/Web", "Applications/WWW");
2010 group = replace(group, "Database", "Applications/Databases");
2011 group = replace(group, "Development/C", "Development/Libraries");
2012 group = replace(group, "Development/Code Generators", "Development");
2013 group = replace(group, "Development/Docs", "Documentation");
2014 group = replace(group, "Development/Documentation", "Documentation");
2015 group = replace(group, "Development/Java", "Development/Languages/Java");
2016 group = replace(group, "Development/Languages/C and C++", "Libraries");
2017 group = replace(group, "Development/Languages/Other", "Development/Languages");;
2018 group = replace(group, "Development/Languages/Ruby", "Development/Languages");
2019 group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
2020 group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
2021 group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
2022 group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
2023 group = replace(group, "Development/Other", "Development");
2024 group = replace(group, "Development/Python", "Development/Languages/Python");
2025 group = replace(group, "Development/Testing", "Development");
2026 group = replace(group, "Editors", "Applications/Text");
2027 group = replace(group, "Emulators", "Applications/Emulators");
2028 group = replace(group, "File tools", "Applications/File");
2029 group = replace(group, "Games", "Applications/Games");
2030 group = replace(group, "Library/Development", "Development/Libraries");
2031 group = replace(group, "Networking/Deamons", "Networking/Daemons");
2032 group = replace(group, "Networking/Mail", "Applications/Mail");
2033 group = replace(group, "Networking/Other", "Networking");
2034 group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
2035 group = replace(group, "Productivity/Multimedia/Other", "X11/Applications/Multimedia");
2036 group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
2037 group = replace(group, "Shells", "Applications/Shells");
2038 group = replace(group, "System Environment/Base", "Base");
2039 group = replace(group, "System Environment/Daemons", "Daemons");
2040 group = replace(group, "System Environment/Kernel", "Base/Kernel");
2041 group = replace(group, "System Environment/Libraries", "Libraries");
2042 group = replace(group, "System Tools", "Applications/System");
2043 group = replace(group, "System", "Base");
2044 group = replace(group, "System/Base", "Base");
2045 group = replace(group, "System/Kernel and hardware", "Base/Kernel");
2046 group = replace(group, "System/Libraries", "Libraries");
2047 group = replace(group, "System/Servers", "Daemons");
2048 group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
2049 group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
2050 group = replace(group, "Text tools", "Applications/Text");
2051 group = replace(group, "User Interface/Desktops", "X11/Applications");
2052 group = replace(group, "Utilities/System", "Applications/System");
2053 group = replace(group, "Web/Database", "Applications/WWW");
2054 group = replace(group, "X11/GNOME", "X11/Applications");
2055 group = replace(group, "X11/GNOME/Applications", "X11/Applications");
2056 group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
2057 group = replace(group, "X11/Games", "X11/Applications/Games");
2058 group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
2059 group = replace(group, "X11/Library", "X11/Libraries");
2060 group = replace(group, "X11/Utilities", "X11/Applications");
2061 group = replace(group, "X11/XFree86", "X11");
2062 group = replace(group, "X11/Xserver", "X11/Servers");
2063
2064 return group;
2065}
2066
e27788d1 2067function replace_requires() {
92fa789e 2068
517313c5 2069 sub(/^python-setuptools-devel$/, "python-distribute", $2);
1e1d065d 2070 sub(/^gcc-g77/, "gcc-fortran", $2);
532cbdf9
ER
2071
2072 # use virtual, not package name
2073 sub(/^rpm-build-macros$/, "rpmbuild(macros)", $2);
2074
6ca05bf8
ER
2075 # bad package.xml, see http://pear.php.net/bugs/bug.php?id=17779
2076 sub(/^php-php-gtk/, "php-gtk2", $2);
2077
40ee9b70 2078 # jpackages / fedora java packages
de0b52ae 2079 sub(/^antlr3$/, "java-antlr3", $2);
83ed1722 2080 sub(/^avalon-framework$/, "java-avalon-framework", $2);
2081 sub(/^avalon-logkit$/, "java-avalon-logkit", $2);
6b5f846d 2082 sub(/^axis$/, "java-axis", $2);
40ee9b70
ER
2083 sub(/^bouncycastle$/, "java-bcprov", $2);
2084 sub(/^bouncycastle-mail$/, "java-bcmail", $2);
2085 sub(/^bouncycastle-tsp$/, "java-bctsp", $2);
de0b52ae 2086 sub(/^bsf$/, "java-bsf", $2);
40ee9b70
ER
2087 sub(/^dom4j$/, "java-dom4j", $2);
2088 sub(/^flute$/, "java-flute", $2);
d95a12d3
ER
2089 sub(/^gnu-regexp$/, "java-gnu-regexp", $2);
2090 sub(/^gnu.regexp$/, "java-gnu-regexp", $2);
22e27c40 2091 sub(/^hamcrest$/, "java-hamcrest", $2);
40ee9b70 2092 sub(/^itext$/, "java-itext", $2);
ed0e2c9b 2093 sub(/^jaas$/, "java(jaas)", $2);
2094 sub(/^jaf$/, "java(jaf)", $2);
6b5f846d 2095 sub(/^jakarta-ant$/, "ant", $2);
40ee9b70 2096 sub(/^jakarta-commons-codec$/, "java-commons-codec", $2);
6b5f846d 2097 sub(/^jakarta-commons-httpclient$/, "java-commons-httpclient", $2);
40ee9b70 2098 sub(/^jakarta-commons-logging$/, "java-commons-logging", $2);
6b5f846d 2099 sub(/^jakarta-log4j$/, "java-log4j", $2);
2100 sub(/^jakarta-oro$/, "java-oro", $2);
83ed1722 2101 sub(/^jakarta-servletapi$/, "java(servlet)", $2);
3c606e9e
ER
2102 sub(/^java-devel$/, "jdk", $2);
2103 sub(/^java\(JSP\)$/, "java(jsp)", $2);
2104 sub(/^java\(JavaServerFaces\)$/, "java(javaserverfaces)", $2);
2105 sub(/^java\(Portlet\)$/, "java(portlet)", $2);
2106 sub(/^java\(Servlet\)$/, "java(servlet)", $2);
6b5f846d 2107 sub(/^javamail$/, "java(javamail)", $2);
ed0e2c9b 2108 sub(/^jaxp$/, "java(jaxp)", $2);
2109 sub(/^jaxp_parser_impl$/, "java(jaxp_parser_impl)", $2);
9d9c44b3 2110 sub(/^jaxp_transform_impl$/, "java(jaxp_transform_impl)", $2);
ed0e2c9b 2111 sub(/^jce$/, "java(jce)", $2);
dda2335f 2112 sub(/^jcommon$/, "java-jcommon", $2);
ed0e2c9b 2113 sub(/^jdbc-stdext$/, "java(jdbc-stdext)", $2);
de0b52ae 2114 sub(/^jdepend$/, "java-jdepend", $2);
dda2335f 2115 sub(/^jfreechart$/, "java-jfreechart", $2);
ed0e2c9b 2116 sub(/^jmx$/, "java(jmx)", $2);
2117 sub(/^jndi$/, "java(jndi)", $2);
de0b52ae 2118 sub(/^jsch$/, "java-jsch", $2);
ed0e2c9b 2119 sub(/^jsse$/, "java(jsse)", $2);
9d9c44b3 2120 sub(/^jta$/, "java(jta)", $2);
de0b52ae 2121 sub(/^junit$/, "java-junit", $2);
40ee9b70 2122 sub(/^junit4$/, "java-junit", $2);
6b5f846d 2123 sub(/^ldapjdk$/, "ldapsdk", $2);
40ee9b70
ER
2124 sub(/^libbase$/, "java-libbase", $2);
2125 sub(/^libfonts$/, "java-libfonts", $2);
2126 sub(/^libformula$/, "java-libformula", $2);
2127 sub(/^liblayout$/, "java-liblayout", $2);
2128 sub(/^libloader$/, "java-libloader", $2);
2129 sub(/^librepository$/, "java-librepository", $2);
2130 sub(/^libserializer$/, "java-libserializer", $2);
6b5f846d 2131 sub(/^log4j$/, "java-log4j", $2);
2132 sub(/^logging-log4j$/, "java-log4j", $2);
2133 sub(/^oro$/, "java-oro", $2);
40ee9b70
ER
2134 sub(/^pdf-renderer$/, "java-pdf-renderer", $2);
2135 sub(/^pentaho-libxml$/, "java-libxml", $2);
6b5f846d 2136 sub(/^rhino$/, "java-rhino", $2);
40ee9b70 2137 sub(/^sac$/, "java-sac", $2);
6b5f846d 2138 sub(/^saxon-scripts$/, "saxon", $2);
9d9c44b3 2139 sub(/^servlet$/, "java(servlet)", $2);
6b5f846d 2140 sub(/^uddi4j$/, "java-uddi4j", $2);
40ee9b70 2141 sub(/^ws-jaxme$/, "java-jaxme", $2);
6b5f846d 2142 sub(/^wsdl4j$/, "java-wsdl4j", $2);
6b5f846d 2143 sub(/^xalan-j$/, "java-xalan", $2);
3c606e9e 2144 sub(/^xalan-j2$/, "java-xalan", $2);
f75c7006
ER
2145 sub(/^xerces-j$/, "java-xerces", $2);
2146 sub(/^xerces-j2$/, "java-xerces", $2);
40ee9b70 2147 sub(/^xml-commons-apis$/, "java-xml-commons", $2);
6b5f846d 2148 sub(/^xml-commons-resolver$/, "java-xml-commons-resolver", $2);
40ee9b70
ER
2149 sub(/^xmldb-api$/, "java-xmldb", $2);
2150 sub(/^xmldb-api-sdk$/, "java-xmldb-sdk", $2);
92fa789e 2151
3c606e9e 2152 # fedora / redhat
435d1309 2153 sub(/^Django$/, "python-django", $2);
09f3f638 2154 sub(/^GitPython$/, "python-git", $2);
f6403de9
ER
2155 sub(/^PyQt4-devel$/, "python-PyQt4-devel", $2);
2156 sub(/^PyQwt-devel$/, "python-PyQwt-devel", $2);
87ffb46f 2157 sub(/^ccid$/, "pcsc-driver-ccid", $2);
03180d14 2158 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
da9ff7a7 2159 sub(/^db4-devel$/, "db-devel", $2);
3c606e9e
ER
2160 sub(/^dbus-python$/, "python-dbus", $2);
2161 sub(/^file-devel$/, "libmagic-devel", $2);
0e53c084 2162 sub(/^freetype2-devel$/, "freetype-devel", $2);
154cb95a 2163 sub(/^fuse-devel$/, "libfuse-devel", $2);
3c606e9e
ER
2164 sub(/^gamin-python$/, "python-gamin", $2);
2165 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
af8efb29 2166 sub(/^gnome-python2-extras$/, "python-gnome-extras", $2);
24873dc2
ER
2167 sub(/^gnome-python2-gconf$/, "python-gnome-gconf", $2);
2168 sub(/^gnome-python2-gnomekeyring$/, "python-gnome-desktop-keyring", $2);
471a5464 2169 sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2);
0e53c084 2170 sub(/^gtk-sharp2-devel$/, "dotnet-gtk-sharp2-devel", $2);
af8efb29 2171 sub(/^gtk2$/, "gtk+2", $2);
8aede7e3 2172 sub(/^gtk2-devel$/, "gtk+2-devel", $2);
e31553a7 2173 sub(/^gtk3-devel$/, "gtk+3-devel", $2);
3c606e9e 2174 sub(/^initscripts$/, "rc-scripts", $2);
0e53c084 2175 sub(/^iproute$/, "iproute2", $2);
3c606e9e 2176 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
40ee9b70 2177 sub(/^keyutils-libs-devel$/, "keyutils-devel", $2);
5f76b6c6
ER
2178 sub(/^libX11-devel$/, "xorg-lib-libX11-devel", $2);
2179 sub(/^libXScrnSaver-devel$/, "xorg-lib-libXScrnSaver-devel", $2);
2180 sub(/^libXext-devel$/, "xorg-lib-libXext-devel", $2);
3c606e9e 2181 sub(/^libXft-devel$/, "xorg-lib-libXft-devel", $2);
5f76b6c6 2182 sub(/^libXinerama-devel$/, "xorg-lib-libXinerama-devel", $2);
da9ff7a7 2183 sub(/^libXrandr-devel$/, "xorg-lib-libXrandr-devel", $2);
5f76b6c6 2184 sub(/^libXxf86vm-devel$/, "xorg-lib-libXxf86vm-devel", $2);
e31553a7 2185 sub(/^libacl-devel$/, "acl-devel", $2);
0e53c084 2186 sub(/^libcurl-devel$/, "curl-devel", $2);
24873dc2 2187 sub(/^libgudev1-devel$/, "udev-glib-devel", $2);
484bf2b0 2188 sub(/^libsrtp-devel$/, "srtp-devel", $2);
689721b0
ER
2189 sub(/^libtdb$/, "tdb", $2);
2190 sub(/^libtdb-devel$/, "tdb-devel", $2);
2191 sub(/^libtevent$/, "tevent", $2);
2192 sub(/^libtevent-devel$/, "tevent-devel", $2);
842b198d 2193 sub(/^libusb1-devel$/, "libusb-devel", $2);
e02ad475 2194 sub(/^mod_wsgi$/, "apache-mod_wsgi", $2);
3c606e9e 2195 sub(/^notify-python$/, "python-pynotify", $2);
87ffb46f 2196 sub(/^pcsc-lite-ccid$/, "pcsc-driver-ccid", $2);
039d8103 2197 sub(/^pulseaudio-libs-devel$/, "pulseaudio-devel", $2);
2bbf619a 2198 sub(/^pyOpenSSL$/, "python-pyOpenSSL", $2);
dd1ce547 2199 sub(/^pyflakes$/, "python-pyflakes", $2);
4a7554aa 2200 sub(/^pygobject2$/, "python-pygobject", $2);
3c606e9e
ER
2201 sub(/^pygtk2$/, "python-pygtk", $2);
2202 sub(/^pygtk2-devel$/, "python-pygtk-devel", $2);
24873dc2 2203 sub(/^pygtk2-libglade$/, "python-pygtk-glade", $2);
dd1ce547 2204 sub(/^pysvn$/, "python-pysvn", $2);
689721b0
ER
2205 sub(/^pytalloc$/, "python-talloc", $2);
2206 sub(/^pytalloc-devel$/, "python-talloc-devel", $2);
e02ad475 2207 sub(/^python-enchant$/, "python-pyenchant", $2);
e27788d1
ER
2208 sub(/^python-imaging$/, "python-PIL", $2);
2209 sub(/^python-imaging-tk$/, "python-PIL-tk", $2);
471a5464 2210 sub(/^python-pygtk$/, "python-pygtk-gtk", $2);
dd1ce547
ER
2211 sub(/^python-recaptcha-client$/, "python-recaptcha", $2);
2212 sub(/^python-twisted-core$/, "python-TwistedCore", $2);
f6403de9
ER
2213 sub(/^python-twisted-core$/, "python-TwistedCore", $2);
2214 sub(/^python-twisted-names$/, "python-TwistedNames", $2);
e02ad475 2215 sub(/^python2-devel$/, "python-devel", $2);
dd1ce547 2216 sub(/^pytz$/, "python-pytz", $2);
3c606e9e 2217 sub(/^qt4-devel$/, "qt4-build", $2);
f6403de9 2218 sub(/^qt4-webkit-devel$/, "QtWebKit-devel", $2);
da9ff7a7 2219 sub(/^qtlockedfile-devel$/, "QtLockedFile-devel", $2);
484bf2b0 2220 sub(/^qtsingleapplication-devel$/, "QtSingleApplication-devel", $2);
b86601da 2221 sub(/^rpm-python$/, "python-rpm", $2);
f6403de9 2222 sub(/^sip-devel$/, "python-sip-devel", $2);
3c606e9e
ER
2223 sub(/^tftp-server$/, "tftpdaemon", $2);
2224 sub(/^tkinter$/, "python-tkinter", $2);
40ee9b70 2225 sub(/^urw-fonts$/, "fonts-Type1-urw", $2);
435d1309 2226 sub(/^xapian-bindings-python$/, "python-xapian", $2);
484bf2b0 2227 sub(/^xorg-x11-server-sdk$/, "xorg-xserver-server-devel", $2);
40ee9b70 2228
b371c36f
ER
2229 # mandriva
2230 sub(/^python-gobject-devel$/, "python-pygobject-devel", $2);
2231 sub(/^python-pyrex$/, "python-Pyrex", $2);
2232 sub(/^webkitgtk-devel$/, "gtk-webkit-devel", $2);
2233 sub(/^python-curl$/, "python-pycurl", $2);
2234 sub(/^python-webkitgtk$/, "python-pywebkitgtk", $2);
2235 sub(/^pygtk2.0$/, "python-pygtk-gtk", $2);
2236 sub(/^gnome-python-gconf$/, "python-gnome-gconf", $2);
2237
b1fc2b39 2238 # debian / ubuntu
3c606e9e
ER
2239 sub(/^blkid-dev$/, "libblkid-devel", $2);
2240 sub(/^ext2fs-dev$/, "e2fsprogs-devel", $2);
2241 sub(/^libao-dev$/, "libao-devel", $2);
aead9fa9
ER
2242 sub(/^libboost-filesystem[0-9.]+-dev$/, "boost-devel", $2);
2243 sub(/^libboost-program-options[0-9.]+-dev$/, "boost-devel", $2);
2244 sub(/^libboost-regex[0-9.]+-dev$/, "boost-devel", $2);
2245 sub(/^libboost-thread[0-9.]+-dev$/, "boost-devel", $2);
aead9fa9 2246 sub(/^libcurl4-openssl-dev$/, "curl-devel", $2);
30a90064 2247 sub(/^libdnet-dev$/, "libdnet-devel", $2);
30a90064 2248 sub(/^libesd0-dev$/, "esound-devel", $2);
30a90064 2249 sub(/^libfishsound1-dev$/, "libfishsound-devel", $2);
3c606e9e
ER
2250 sub(/^libgconf2-dev$/, "GConf2-devel", $2);
2251 sub(/^libgl1-mesa-dev$/, "OpenGL-devel", $2);
2252 sub(/^libgl1-mesa-dri$/, "OpenGL", $2);
2253 sub(/^libglib2.0-dev$/, "glib2-devel", $2);
2254 sub(/^libglu1-mesa-dev$/, "OpenGL-GLU-devel", $2);
2255 sub(/^libgtk2.0-dev$/, "gtk+2-devel", $2);
2256 sub(/^libhunspell-dev$/, "hunspell-devel", $2);
2257 sub(/^libmcrypt-dev$/, "libmcrypt-devel", $2);
2258 sub(/^libmhash-dev$/, "mhash-devel", $2);
2259 sub(/^liboggz1-dev$/, "libggz-devel", $2);
2260 sub(/^libpango1.0-dev$/, "pango-devel", $2);
2261 sub(/^libqt4-dev$/, "qt4-build", $2);
2262 sub(/^libshout3-dev$/, "libshout-devel", $2);
30a90064 2263 sub(/^libslp-dev$/, "openslp-devel", $2);
3c606e9e
ER
2264 sub(/^libsndfile1-dev$/, "libsndfile-devel", $2);
2265 sub(/^libspeex-dev$/, "speex-devel", $2);
2266 sub(/^libssl-dev$/, "openssl-devel", $2);
2267 sub(/^libvorbis-dev$/, "libvorbis-devel", $2);
2268 sub(/^libxslt1-dev$/, "libxslt-devel", $2);
2269 sub(/^libxss-dev$/, "xorg-lib-libXScrnSaver-devel", $2);
2270 sub(/^mesa-common-dev$/, "OpenGL-devel", $2);
b371c36f
ER
2271 sub(/^libudev$/, "udev-libs", $2);
2272 sub(/^tcp_wrappers-devel$/, "libwrap-devel", $2);
2273 sub(/^vala-tools$/, "vala", $2);
2274 sub(/^vala-devel$/, "vala", $2);
c7f91339 2275
00697b90 2276 # altlinux
436f0f9e 2277 sub(/^libatk-devel$/, "atk-devel", $2);
7b8dbdb3 2278 sub(/^libgit-devel$/, "git-core-devel", $2);
436f0f9e 2279 sub(/^libgtk\+2-devel$/, "gtk+2-devel", $2);
00697b90
ER
2280 sub(/^libncurses-devel$/, "ncurses-devel", $2);
2281 sub(/^libncursesxx-devel$/, "ncurses-c++-devel", $2);
436f0f9e 2282 sub(/^libpango-devel$/, "pango-devel", $2);
00697b90 2283 sub(/^libpcre-devel$/, "pcre-devel", $2);
436f0f9e 2284 sub(/^libpopt-devel$/, "popt-devel", $2);
7b8dbdb3 2285 sub(/^libssl-devel$/, "openssl-devel", $2);
00697b90 2286
517313c5 2287 # suse
517313c5 2288 sub(/^alsa-devel$/, "alsa-lib-devel", $2);
517313c5 2289 sub(/^gtk-sharp2$/, "dotnet-gtk-sharp2", $2);
484bf2b0 2290 sub(/^gtkmm2-devel$/, "gtkmm-devel", $2);
87ffb46f
ER
2291 sub(/^libexpat-devel$/, "expat-devel", $2);
2292 sub(/^libffmpeg-devel$/, "ffmpeg-devel", $2);
484bf2b0 2293 sub(/^libopenssl-devel$/, "openssl-devel", $2);
87ffb46f 2294 sub(/^libpulse-devel$/, "pulseaudio-devel", $2);
517313c5 2295 sub(/^monodoc-core$/, "mono-monodoc", $2);
87ffb46f 2296 sub(/^python-gtk$/, "python-pygtk-gtk", $2);
517313c5 2297
92fa789e
ER
2298 replace_php_virtual_deps()
2299}
2300
2b94cfb4 2301# vim:ts=4:sw=4
This page took 0.598729 seconds and 4 git commands to generate.