]> git.pld-linux.org Git - packages/adapter.git/blame - adapter.awk
- replace groupnames with plain strings
[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#
fccce8b5 5# Copyright (C) 1999-2007 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-
8ebb1c08 27
bf0a58ea 28BEGIN {
0ae11f54 29 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
2b47df45 30 SECTIONS = "^%(" RPM_SECTIONS ")"
93e2a87a 31
18f95017
ER
32 RCSID = "$Id$"
33 rev = RCSID # TODO: parse from RCSID
34 VERSION = "0.31/" rev
35
43f8581a 36 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)"
c58d1357 37
50037ea2
PZ
38 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
39
1c955424 40 preamble = 1 # Is it part of preamble? Default - yes
6e985933
ER
41 boc = 4 # Beginning of %changelog
42 bod = 0 # Beginning of %description
7a72f436 43 tw = 70 # Descriptions width
f171fd40 44
89c604c7 45 b_idx = 0 # index of BR/R arrays
b6875e34 46 BR_count = 0 # number of additional BuildRequires
89c604c7 47
85e708f2 48 # If variable removed, then 1 (for removing it from export)
49 removed["LDFLAGS"] = 0
50 removed["CFLAGS"] = 0
51 removed["CXXFLAGS"] = 0
5c18171e 52
f6f0c932
ER
53 # get cvsaddress for changelog section
54 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
55 "rpm --eval '%{?_cvsmaildomain}%{!?_cvsmaildomain:@pld-linux.org}'" | getline _cvsmaildomain
3fc5a496 56 "rpm --eval '%{?_cvsmailfeedback}%{!?_cvsmailfeedback:PLD Team <feedback@pld-linux.org>}'" | getline _cvsmailfeedback
f6f0c932 57
246ad57e 58 # If 1, we are inside of comment block (started with /^#%/)
59 comment_block = 0
f171fd40 60
ed86212f 61 # File with rpm groups
312c5d87
SZ
62 "rpm --eval %_sourcedir" | getline groups_file
63 groups_file = groups_file "/rpm.groups"
826b40ea 64 system("cd `rpm --eval %_sourcedir`; [ -f rpm.groups ] || cvs up rpm.groups >/dev/null")
c2814373 65 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
f1991554 66
5c18171e 67 # Temporary file for changelog section
68 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
69
f1991554 70 # Load rpm macros
43c05c3c 71 "rpm --eval %_prefix" | getline prefix
72 "rpm --eval %_bindir" | getline bindir
73 "rpm --eval %_sbindir" | getline sbindir
74 "rpm --eval %_libdir" | getline libdir
75 "rpm --eval %_sysconfdir" | getline sysconfdir
76 "rpm --eval %_datadir" | getline datadir
77 "rpm --eval %_includedir" | getline includedir
78 "rpm --eval %_mandir" | getline mandir
79 "rpm --eval %_infodir" | getline infodir
2a638fcb 80 "rpm --eval %_examplesdir" | getline examplesdir
c2b069de 81 "rpm --eval %_defaultdocdir" | getline docdir
1077f405 82 "rpm --eval %_kdedocdir" | getline kdedocdir
7cb79e98 83 "rpm --eval %_gtkdocdir" | getline gtkdocdir
4a62fb54
ER
84 "rpm --eval %_desktopdir" | getline desktopdir
85 "rpm --eval %_pixmapsdir" | getline pixmapsdir
ee9487af 86 "rpm --eval %_javadir" | getline javadir
336c1a4f
ER
87
88 "rpm --eval %perl_sitearch" | getline perl_sitearch
89 "rpm --eval %perl_archlib" | getline perl_archlib
90 "rpm --eval %perl_privlib" | getline perl_privlib
336c1a4f
ER
91 "rpm --eval %perl_vendorlib" | getline perl_vendorlib
92 "rpm --eval %perl_vendorarch" | getline perl_vendorarch
93 "rpm --eval %perl_sitelib" | getline perl_sitelib
9732cb3d 94
b7839d5b
ER
95 "rpm --eval %py_sitescriptdir 2>/dev/null" | getline py_sitescriptdir
96 "rpm --eval %py_sitedir 2>/dev/null" | getline py_sitedir
97 "rpm --eval %py_scriptdir 2>/dev/null" | getline py_scriptdir
23e0529e 98 "rpm --eval %py_ver 2>/dev/null" | getline py_ver
6f2c1099
ER
99
100 "rpm --eval %ruby_archdir" | getline ruby_archdir
101 "rpm --eval %ruby_ridir" | getline ruby_ridir
102 "rpm --eval %ruby_rubylibdir" | getline ruby_rubylibdir
103 "rpm --eval %ruby_sitearchdir" | getline ruby_sitearchdir
104 "rpm --eval %ruby_sitelibdir" | getline ruby_sitelibdir
105
57caba32 106 "rpm --eval %php_pear_dir" | getline php_pear_dir
4b1d6e6d 107 "rpm --eval %php_data_dir" | getline php_data_dir
3d8be7c3 108 "rpm --eval %tmpdir" | getline tmpdir
bf0a58ea 109}
110
111# There should be a comment with CVS keywords on the first line of file.
8b1938ea 112FNR == 1 {
f1991554 113 if (!/# \$Revision:/) # If this line is already OK?
114 print "# $" "Revision:$, " "$" "Date:$" # No
04dde927 115 else {
f1991554 116 print $0 # Yes
117 next # It is enough for first line
04dde927 118 }
bf0a58ea 119}
120
43c05c3c 121# If the latest line matched /%files/
122defattr == 1 {
13b24a87
ER
123 if (ENVIRON["SKIP_DEFATTR"] != 1) {
124 if ($0 !~ /defattr/) { # If no %defattr
125 print "%defattr(644,root,root,755)" # Add it
126 } else {
127 $0 = "%defattr(644,root,root,755)" # Correct mistakes (if any)
128 }
129 }
aec1bddb 130 defattr = 0
43c05c3c 131}
132
89c604c7
ER
133function b_makekey(a, b, s) {
134 s = a "" b;
135 # kill bcond
b6875e34 136 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
3b0074cc 137
8409a9b2 138 # kill commented out items
b6875e34 139 gsub(/^#[ \t]*/, "", s);
3b0074cc 140
c58d1357 141 # force order
985d9bc7
ER
142 gsub(/^Summary\(/, "11Summary(", s);
143 gsub(/^Summary/, "10Summary", s);
144 gsub(/^Name/, "2Name", s);
145 gsub(/^Version/, "3Version", s);
146 gsub(/^Release/, "4Release", s);
147 gsub(/^Epoch/, "5Epoch", s);
148 gsub(/^License/, "5License", s);
149 gsub(/^Group/, "6Group", s);
150 gsub(/^URL/, "7URL", s);
151
152 gsub(/^BuildRequires/, "B1BuildRequires", s);
153 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
43f8581a 154
43f8581a 155 gsub(/^Suggests/, "X1Suggests", s);
2eef43e9
JB
156 gsub(/^Provides/, "X2Provides", s);
157 gsub(/^Obsoletes/, "X3Obsoletes", s);
158 gsub(/^Conflicts/, "X4Conflicts", s);
159 gsub(/^BuildArch/, "X5BuildArch", s);
985d9bc7
ER
160 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
161 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
162 gsub(/^BuildRoot/, "X9BuildRoot", s);
d9e2bd9b
ER
163
164# printf("%s -> %s\n", a""b, s);
89c604c7
ER
165 return s;
166}
167
eee34ffb 168# Comments
22622171 169/^#/ && (description == 0) {
eee34ffb 170 if (/This file does not like to be adapterized!/) {
171 print # print this message
172 while (getline) # print the rest of spec as it is
173 print
174 do_not_touch_anything = 1 # do not touch anything in END()
175 exit 0
176 }
246ad57e 177
eee34ffb 178 # Generally, comments are printed without touching
70a1dc9e 179 sub(/[ \t]+$/, "")
4414eb86 180
50037ea2
PZ
181 if (/#[ \t]*Source.*md5/) {
182 if (usedigest == 1) {
183 sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
184 sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
185 }
4414eb86
ER
186 print $0
187 next
188 }
246ad57e 189}
190
1da27823 191/^%define/ {
93e2a87a 192 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
71a4728c 193 if ($2 == "_applnkdir") {
ba4b52a7 194 next
71a4728c
ER
195 }
196 if ($2 == "date") {
ba4b52a7 197 date = 1
4ab1678b
ER
198 if (did_files == 0) {
199 print "%files"
200 print ""
201 did_files = 1
202 }
71a4728c
ER
203 }
204
205 # Do not add %define of _prefix if it already is.
206 if ($2 ~ /^_prefix/) {
207 sub("^"prefix, $3, bindir)
208 sub("^"prefix, $3, sbindir)
209 sub("^"prefix, $3, libdir)
210 sub("^"prefix, $3, datadir)
211 sub("^"prefix, $3, includedir)
212 prefix = $3
213 }
214
215 if ($2 ~ /_bindir/ && !/_sbindir/)
216 bindir = $3
217 if ($2 ~ /_sbindir/)
218 sbindir = $3
a27fac4d
ER
219 if ($2 ~ /_libdir/) {
220 if ($3 ~ /^%\(/) {
221 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
222 libdir = "%%%%%%%%%%%%%%"
223 } else {
224 libdir = $3
225 }
226 }
93e2a87a
ER
227 if ($2 ~ /_sysconfdir/) {
228 if ($3 ~ /^%\(/) {
229 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
230 sysconfdir = "%%%%%%%%%%%%%%"
231 } else {
232 sysconfdir = $3
233 }
234 }
a27fac4d
ER
235 if ($2 ~ /_datadir/) {
236 if ($3 ~ /^%\(/) {
237 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
238 datadir = "%%%%%%%%%%%%%%"
239 } else {
240 datadir = $3
241 }
242 }
71a4728c
ER
243 if ($2 ~ /_includedir/)
244 includedir = $3
245 if ($2 ~ /_mandir/)
246 mandir = $3
247 if ($2 ~ /_infodir/)
248 infodir = $3
c2b069de
ER
249 if ($2 ~ /_docdir/)
250 docdir = $3
71a4728c
ER
251
252 # version related macros
253 if ($2 ~ /^_beta$/)
254 _beta = $3
255 if ($2 ~ /^_rc$/)
256 _rc = $3
59de1799
ER
257 if ($2 ~ /^_pre$/)
258 _pre = $3
71a4728c
ER
259 if ($2 ~ /^_snap$/)
260 _snap = $3
3c5e6e5f
ER
261 if ($2 ~ /^subver$/)
262 subver = $3
71a4728c
ER
263
264 # these are used usually when adapterizing external spec
265 if ($2 ~ /^name$/)
266 name = $3
267 if ($2 ~ /^version$/)
268 version = $3
269 if ($2 ~ /^release$/)
270 release = $3
a39ddef5 271
0ea7c3cd
ER
272 if ($2 ~ /^mod_name$/)
273 mod_name = $3
274
78d96561 275 sub(/[ \t]+$/, "");
a39ddef5
ER
276 # do nothing further, otherwise adapter thinks we're at preamble
277 print
278 next
1da27823
SZ
279}
280
6c67f9b1
ER
281# Obsolete
282/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
283 next
284}
285
246ad57e 286################
287# %description #
288################
93e2a87a 289/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
aec1bddb 290 preamble = 0
efe53381 291
3a14bf9d 292 if (/^%description/) {
aec1bddb 293 bod++
236b87ac 294 format_line = ""
295 format_indent = -1
3a14bf9d
SZ
296 }
297
236b87ac 298 # Format description
7b868d98 299 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3a14bf9d 300 if (/^[ \t]*$/) {
236b87ac 301 format_flush(format_line, format_indent)
3a14bf9d 302 print ""
236b87ac 303 format_line = ""
304 format_indent = -1
3a14bf9d 305 } else if (/^[ \t]*[-\*][ \t]*/) {
236b87ac 306 format_flush(format_line, format_indent)
f171fd40 307 match($0, /^[ \t]*/)
236b87ac 308 format_indent = RLENGTH
309 match($0, /^[ \t]*[-\*][ \t]/)
310 format_line = substr($0, RLENGTH)
f171fd40 311 } else
236b87ac 312 format_line = format_line " " $0
aec1bddb 313 next
efe53381 314 }
f171fd40 315
1da27823 316 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
ddb18dd4 317 if (NF > 3 && $2 == "-l") {
318 ll = $1
319 for (i = 4; i <= NF; i++)
320 ll = ll " " $i
321 $0 = ll " -l " $3
322 }
236b87ac 323 format_flush(format_line, format_indent)
efe53381 324 if (bod == 2) {
aec1bddb
SZ
325 bod = 1
326 description = 1
efe53381 327 } else {
aec1bddb
SZ
328 bod = 0
329 description = 0
efe53381 330 }
331 } else
aec1bddb 332 description = 1
bf0a58ea 333}
334
246ad57e 335#########
336# %prep #
337#########
93e2a87a 338/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
aec1bddb 339 preamble = 0
4ab1678b 340 did_prep = 1
f171fd40 341
ac779c71
ER
342 use_macros()
343
43c05c3c 344 # Add '-q' to %setup
e780ff0a 345 if (/^%setup/ && !/-q/) {
1da27823 346 sub(/^%setup/, "%setup -q")
e780ff0a
ER
347 }
348
af38fe16 349 if (/^%setup/ && name != "setup") {
e9097b46
ER
350 $0 = fixedsub(name, "%{name}", $0);
351 $0 = fixedsub(version, "%{version}", $0);
4a8d9a70 352 if (_beta) {
e9097b46 353 $0 = fixedsub(_beta, "%{_beta}", $0);
4a8d9a70
ER
354 }
355 if (_rc) {
e9097b46 356 $0 = fixedsub(_rc, "%{_rc}", $0);
4a8d9a70 357 }
59de1799
ER
358 if (_pre) {
359 $0 = fixedsub(_pre, "%{_pre}", $0);
360 }
4a8d9a70 361 if (_snap) {
e9097b46 362 $0 = fixedsub(_snap, "%{_snap}", $0);
4a8d9a70 363 }
3c5e6e5f
ER
364 if (subver) {
365 $0 = fixedsub(subver, "%{subver}", $0);
366 }
4f822e22
ER
367 }
368
10690436 369 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
e9097b46 370 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
e780ff0a 371 }
b6875e34 372 sub("^%patch ", "%patch0 ");
ac779c71
ER
373
374 # invalid in %prep
375 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
bf0a58ea 376}
377
246ad57e 378##########
379# %build #
380##########
93e2a87a 381/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
aec1bddb 382 preamble = 0
bf0a58ea 383
4ab1678b
ER
384 if (did_prep == 0) {
385 print "%prep"
386 print ""
387 did_prep = 1
388 }
389
aec1bddb 390 use_macros()
6ebff802 391 use_tabs()
f171fd40 392
9cb72c72 393 if (/^automake$/)
394 sub(/$/, " -a -c")
395
eb4bf70e 396 if (/LDFLAGS/) {
85e708f2 397 if (/LDFLAGS="-s"/) {
398 removed["LDFLAGS"] = 1
399 next
400 } else {
401 split($0, tmp, "LDFLAGS=")
eb4bf70e 402 count = split(tmp[2], flags, "\"")
85e708f2 403 if (flags[1] != "" && flags[1] !~ "!?debug") {
fde8f52a 404 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
85e708f2 405 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
406 for (i = 2; i < count; i++)
407 $0 = $0 flags[i] "\""
408 }
eb4bf70e 409 }
410 }
411
412 if (/CFLAGS=/)
413 if (cflags("CFLAGS") == 0)
414 next
415
416 if (/CXXFLAGS=/)
417 if (cflags("CXXFLAGS") == 0)
418 next
f171fd40 419
85e708f2 420 if (/^export /) {
421 if (removed["LDFLAGS"])
422 sub(" LDFLAGS", "")
423 if (removed["CFLAGS"])
424 sub(" CFLAGS", "")
425 if (removed["CXXFLAGS"])
426 sub(" CXXFLAGS", "")
427 # Is there still something?
428 if (/^export[ ]*$/)
429 next
430 }
2d74be7e 431
db9b1bf2 432 # quote CC
2d74be7e
ER
433 if (/CC=%{__cc} /) {
434 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
435 }
b34b8660 436
e6f1551d 437 # use PLD Linux macros
b34b8660
ER
438 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
439 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
db9b1bf2 440 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
56699a32 441 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
4e26c5f2 442 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
ebeed758 443 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
56699a32
ER
444 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
445 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
db9b1bf2
ER
446
447 sub(/^aclocal$/, "%{__aclocal}");
448 sub(/^autoheader$/, "%{__autoheader}");
449 sub(/^autoconf$/, "%{__autoconf}");
450 sub(/^automake$/, "%{__automake}");
ebeed758 451 sub(/^libtoolize$/, "%{__libtoolize}");
f171fd40 452
5e15e952
ER
453 # atrpms
454 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
455 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
bf0a58ea 456}
457
246ad57e 458##########
459# %clean #
460##########
93e2a87a 461/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
1c52b18e 462 did_clean = 1
e6f1551d 463
b6875e34 464 use_macros()
1c52b18e
SZ
465}
466
246ad57e 467############
468# %install #
469############
93e2a87a 470/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
f171fd40 471
aec1bddb 472 preamble = 0
f171fd40 473
ec0082cc 474 # foreign rpms
624df313 475 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b6875e34
ER
476 sub("%buildroot", "$RPM_BUILD_ROOT");
477 sub("%{buildroot}", "$RPM_BUILD_ROOT");
ec0082cc 478
624df313 479 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
1c52b18e 480 did_rmroot=1
dda3eaa5
SZ
481 print "rm -rf $RPM_BUILD_ROOT"
482 next
483 }
43c05c3c 484
1c52b18e 485 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
dda3eaa5 486 print "rm -rf $RPM_BUILD_ROOT"
1c52b18e 487 did_rmroot=1
dda3eaa5 488 }
f171fd40 489
b6875e34
ER
490 if (tmpdir) {
491 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
3d8be7c3 492 gsub(buildroot, "$RPM_BUILD_ROOT")
b6875e34 493 }
3d8be7c3 494
b6875e34
ER
495 if (!/%{_lib}/) {
496 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
497 }
259883bf 498
dda3eaa5 499 use_macros()
f171fd40 500
bf0a58ea 501 # 'install -d' instead 'mkdir -p'
502 if (/mkdir -p/)
aec1bddb 503 sub(/mkdir -p/, "install -d")
fde90d94 504
48409aee 505 # cp -a already implies cp -r
b6875e34 506 sub(/^cp -ar/, "cp -a")
f171fd40 507
43c05c3c 508 # No '-u root' or '-g root' for 'install'
681a4871 509 if (/^install/ && /-[ug][ \t]*root/)
aec1bddb 510 gsub(/-[ug][ \t]*root /, "")
f171fd40 511
2016aa83
ER
512 if (/^install/ && /-m[ \t]*[0-9]+/)
513 gsub(/-m[ \t]*[0-9]+ /, "")
f171fd40 514
f1991554 515 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
43c05c3c 516 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
aec1bddb 517 next
f171fd40 518
43c05c3c 519 # No lines contain 'chmod' if it sets the modes to '644'
681a4871 520 if ($1 ~ /chmod/ && $2 ~ /644/)
aec1bddb 521 next
5e15e952 522
5e15e952
ER
523 # atrpms
524 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_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
e9176470
ER
612 # %useradd and %groupadd may not be wrapped
613 if (/%(useradd|groupadd).*\\$/) {
614 a = $0; getline;
615 sub(/^[\s\t]*/, "");
616 $0 = substr(a, 1, length(a) - 1) $0;
617 }
723ce732 618 use_script_macros()
246ad57e 619}
e9176470 620
93e2a87a 621/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
246ad57e 622 preamble = 0
c2b069de 623 use_macros()
246ad57e 624}
93e2a87a 625/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
246ad57e 626 preamble = 0
d11acde9 627 use_macros()
246ad57e 628}
93e2a87a 629/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
246ad57e 630 preamble = 0
723ce732 631 use_script_macros()
246ad57e 632}
93e2a87a 633/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
bdba3986 634 preamble = 0
723ce732 635 use_script_macros()
bdba3986 636}
93e2a87a 637/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
bdba3986 638 preamble = 0
723ce732 639 use_script_macros()
bdba3986 640}
93e2a87a 641/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
bdba3986 642 preamble = 0
723ce732 643 use_script_macros()
bdba3986 644}
93e2a87a 645/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
bdba3986 646 preamble = 0
723ce732 647 use_script_macros()
bdba3986 648}
93e2a87a 649/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
bdba3986 650 preamble = 0
723ce732 651 use_script_macros()
bdba3986 652}
0ae11f54
ER
653/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
654 preamble = 0
723ce732 655 use_script_macros()
0ae11f54
ER
656}
657/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
658 preamble = 0
723ce732 659 use_script_macros()
0ae11f54 660}
246ad57e 661
662#############
663# PREAMBLES #
664#############
bf0a58ea 665preamble == 1 {
681a4871 666 # There should not be a space after the name of field
667 # and before the colon.
aec1bddb 668 sub(/[ \t]*:/, ":")
f171fd40 669
1462d6a3
ER
670 if (/^%perl_module_wo_prefix/) {
671 name = $2
672 version = $3
673 release = "0." fixedsub(".%{disttag}.at", "", $4)
674 }
675
aec1bddb 676 field = tolower($1)
db170a71 677 fieldnlower = $1
38cb34ef 678 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
024709c6
ER
679 sub(/\.$/, "", $0);
680 }
f37c1259 681 if (field ~ /group(\([^)]+\)):/)
1a5b27d5 682 next
f37c1259 683 if (field ~ /group:/) {
684 format_preamble()
d9e2bd9b
ER
685 group = $0;
686 sub(/^[^ \t]*[ \t]*/, "", group);
ad9ea417 687 group = replace_groupnames(group);
d9e2bd9b
ER
688 $0 = "Group:\t\t" group
689
690 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
7a72f436 691 x11 = 1
8e5358f8 692
d9e2bd9b 693 byl_plik_z_groupmi = 0
8e5358f8
SZ
694 byl_opis_grupy = 0
695 while ((getline linia_grup < groups_file) > 0) {
d9e2bd9b
ER
696 byl_plik_z_groupmi = 1
697 if (linia_grup == group) {
8e5358f8
SZ
698 byl_opis_grupy = 1
699 break
700 }
701 }
69501a12 702
d9e2bd9b 703 if (!byl_plik_z_groupmi)
8e5358f8
SZ
704 print "######\t\t" groups_file ": no such file"
705 else if (!byl_opis_grupy)
706 print "######\t\t" "Unknown group!"
f171fd40 707
8e5358f8 708 close(groups_file)
4ab1678b 709 did_groups = 1
8e5358f8 710 }
f171fd40 711
307f5229 712 if (field ~ /prereq:/) {
a68f7b3b 713 sub(/Pre[Rr]eq:/, "Requires:", $1);
307f5229
ER
714 }
715
4aa6db15 716 # split (build)requires, obsoletes on commas
44ff0c79 717 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
ba377afe
ER
718 value = substr($0, index($0, $2));
719 $0 = format_requires($1, value);
f12ab15d 720 }
b6875e34 721
8e734165
ER
722 # BR: tar (and others) is to common (rpm-build requires it)
723 if (field ~ /^buildrequires:/) {
eb028bca
ER
724 l = substr($0, index($0, $2));
725 if (l == "awk" ||
726 l == "binutils" ||
727 l == "bzip2" ||
728 l == "cpio" ||
729 l == "diffutils" ||
730 l == "elfutils" ||
731 l == "fileutils" ||
732 l == "findutils" ||
733 l == "glibc-devel" ||
734 l == "grep" ||
735 l == "gzip" ||
736 l == "make" ||
737 l == "patch" ||
738 l == "sed" ||
739 l == "sh-utils" ||
740 l == "tar" ||
741 l == "textutils") {
8e734165
ER
742 next
743 }
d0297fb3 744
92fa789e 745 replace_requires();
8e734165
ER
746 }
747
30cd4686 748 if (field ~ /^requires:/) {
92fa789e 749 replace_requires();
b6875e34 750 }
30cd4686
ER
751
752
ff21ed9e 753 # obsolete/unwanted tags
32908bc5 754 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
aec1bddb 755 next
ba377afe 756 }
f171fd40 757
4ab1678b 758 if (field ~ /buildroot:/) {
376e6bc4 759 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
4ab1678b
ER
760 did_build_root = 1
761 }
681a4871 762
681a4871 763 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
4932d2c6 764 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
aec1bddb 765 $1 = "License:"
4932d2c6 766 }
f171fd40 767
3b07e07f
ER
768 if (field ~ /license:/) {
769 l = substr($0, index($0, $2));
770 if (l == "Python Software Foundation License") {
771 l = "PSF"
772 }
6112ae02
ER
773 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") {
774 l = "Apache v2.0"
775 }
776 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
777 l = "Apache"
778 }
779 if (l == "Apache-style License" || l == "Apache-style Software License") {
780 l = "Apache-like"
781 }
782 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
783 l = "Apache v1.1"
784 }
ee9487af
ER
785 if (l == "GPLv2") {
786 l = "GPL v2"
787 }
788 if (l == "GPLv2+") {
789 l = "GPL v2+"
790 }
3b07e07f
ER
791 $0 = "License:\t" l;
792 }
793
794
1462d6a3 795 if (field ~ /name:/) {
6426afb8 796 if ($2 == "%{name}" && name) {
63d47bae
ER
797 $2 = name
798 }
aec1bddb 799 name = $2
1462d6a3
ER
800 name_seen = 1;
801 }
681a4871 802
1462d6a3 803 if (field ~ /version:/) {
63d47bae
ER
804 if ($2 == "%{version}" && version) {
805 $2 = version
806 }
aec1bddb 807 version = $2
1462d6a3
ER
808 version_seen = 1;
809 }
810
811 if (field ~ /release:/) {
63d47bae
ER
812 if ($2 == "%{release}" && release) {
813 $2 = release
814 }
4ab1678b 815 sub(/%atrelease /, "0.", $0)
1462d6a3
ER
816 release = $2
817 release_seen = 1;
818 }
681a4871 819
32908bc5 820
c4dde22b
SZ
821 if (field ~ /serial:/)
822 $1 = "Epoch:"
b6853342 823
32908bc5
ER
824 if (field ~ /home-page:/)
825 $1 = "URL:"
826
89b1cd55 827 # proper caps
cf038723 828 if (field ~ /^url:$/)
89b1cd55
ER
829 $1 = "URL:"
830
32908bc5
ER
831 if (field ~ /^description:$/)
832 $1 = "\n%description\n"
833
681a4871 834 # Use %{name} and %{version} in the filenames in "Source:"
f4cb1924 835 if (field ~ /^source/ || field ~ /patch/) {
aec1bddb 836 n = split($2, url, /\//)
fd8718a5
SZ
837 if (url[n] ~ /\.gz$/) {
838 url[n+1] = ".gz" url[n+1]
839 sub(/\.gz$/,"",url[n])
840 }
841 if (url[n] ~ /\.zip$/) {
842 url[n+1] = ".zip" url[n+1]
843 sub(/\.zip$/,"",url[n])
844 }
845 if (url[n] ~ /\.tar$/) {
846 url[n+1] = ".tar" url[n+1]
847 sub(/\.tar$/,"",url[n])
848 }
849 if (url[n] ~ /\.patch$/) {
850 url[n+1] = ".patch" url[n+1]
851 sub(/\.patch$/,"",url[n])
852 }
853 if (url[n] ~ /\.bz2$/) {
854 url[n+1] = ".bz2" url[n+1]
855 sub(/\.bz2$/,"",url[n])
856 }
dac4e142
SZ
857 if (url[n] ~ /\.logrotate$/) {
858 url[n+1] = ".logrotate" url[n+1]
859 sub(/\.logrotate$/,"",url[n])
860 }
861 if (url[n] ~ /\.pamd$/) {
862 url[n+1] = ".pamd" url[n+1]
863 sub(/\.pamd$/,"",url[n])
864 }
865
a3fcc309 866 # allow %{name} only in last url component
ced0372e
ER
867 s = ""
868 for (i = 1; i <= n; i++) {
869 url[i] = fixedsub("%{name}", name, url[i])
870 if (s) {
871 s = s "/" url[i]
872 } else {
873 s = url[i]
874 }
875 }
876 $2 = s url[n+1]
877
aec1bddb 878 filename = url[n]
5e028343
ER
879 if (name) {
880 url[n] = fixedsub(name, "%{name}", url[n])
881 }
755ab9c0 882 if (field ~ /source/) {
5e028343
ER
883 if (version) {
884 url[n] = fixedsub(version, "%{version}", url[n])
885 }
755ab9c0
ER
886 if (_beta) {
887 url[n] = fixedsub(_beta, "%{_beta}", url[n])
888 }
889 if (_rc) {
890 url[n] = fixedsub(_rc, "%{_rc}", url[n])
891 }
59de1799
ER
892 if (_pre) {
893 url[n] = fixedsub(_pre, "%{_pre}", url[n])
894 }
755ab9c0
ER
895 if (_snap) {
896 url[n] = fixedsub(_snap, "%{_snap}", url[n])
897 }
3c5e6e5f
ER
898 if (subver) {
899 url[n] = fixedsub(subver, "%{subver}", url[n])
900 }
755ab9c0 901 }
57caba32 902 # assigning to $2 kills preamble formatting
fd8718a5 903 $2 = fixedsub(filename, url[n], $2)
f171fd40 904
8ea8f0ae 905 $2 = unify_url($2)
681a4871 906 }
8b1938ea 907
f171fd40 908
f4cb1924 909 if (field ~ /^source:/)
f171fd40 910 $1 = "Source0:"
aec1bddb 911
13b24a87 912 if (field ~ /^patch:/)
aec1bddb 913 $1 = "Patch0:"
f171fd40 914
0ea7c3cd 915 kill_preamble_macros();
aec1bddb 916 format_preamble()
f171fd40 917
c26ee7ef
ER
918 if (field ~ /requires/) {
919 # atrpms
920 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
921 }
bf0a58ea 922}
923
4c1b7426
ER
924/^%bcond_/ {
925 # do nothing
926 print
927 next
928}
c58d1357
ER
929
930# sort BR/R!
931#
932# NOTES:
933# - mixing BR/R and anything else confuses this (all will be sorted together)
b6875e34 934# so don't do that.
c58d1357 935# - comments leading the BR/R can not be associated,
b6875e34 936# so don't adapterize when the BR/R are mixed with comments
c58d1357 937ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
57caba32 938 if ($1 ~ /Pre[Rr]eq:/) {
a68f7b3b 939 sub(/Pre[Rr]eq:/, "Requires:", $1);
c58d1357 940 }
23ddcab1
ER
941 if ($1 == "BR:" ) {
942 $1 = "BuildRequires:"
943 }
944 if ($1 == "R:" ) {
945 $1 = "Requires:"
946 }
c58d1357 947 format_preamble()
8f7c516b 948# kill_preamble_macros(); # breaks tabbing
c58d1357
ER
949
950 b_idx++;
951 l = substr($0, index($0, $2));
952 b_ktmp = b_makekey($1, l);
953 b_key[b_idx] = b_ktmp;
954 b_val[b_ktmp] = $0;
955
956 next;
957}
958
c58d1357
ER
959preamble == 1 {
960 if (b_idx > 0) {
961 isort(b_key, b_idx);
962 for (i = 1; i <= b_idx; i++) {
4932d2c6
ER
963 v = b_val[b_key[i]];
964 sub(/[ \t]+$/, "", v);
965 print "" v;
c58d1357
ER
966 }
967 b_idx = 0
968 }
969}
970
7a72f436 971# main() ;-)
bf0a58ea 972{
aec1bddb 973 preamble = 1
f171fd40 974
70a1dc9e 975 sub(/[ \t]+$/, "")
aec1bddb 976 print
1462d6a3
ER
977
978 if (name_seen == 0 && name) {
31702e1e 979 print "Name:\t\t" name
1462d6a3
ER
980 name_seen = 1
981 }
982
983 if (version_seen == 0 && version) {
984 print "Version:\t" version
985 version_seen = 1
986 }
987
988 if (release_seen == 0 && release) {
989 print "Release:\t" release
990 release_seen = 1
991 }
32908bc5
ER
992
993 if (did_build_root == 0) {
4ab1678b 994# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
32908bc5
ER
995 did_build_root = 1
996 }
4ab1678b
ER
997 if (did_groups == 0) {
998# print "Group:\t\tunknown"
999 did_groups = 1
1000 }
a1aa4976 1001}
1002
f1991554 1003
a1aa4976 1004END {
eee34ffb 1005 if (do_not_touch_anything)
1006 exit 0
f171fd40 1007
b6875e34
ER
1008 # TODO: need to output these in proper place
1009 if (BR_count > 0) {
1010 for (i = 0; i <= BR_count; i++) {
1011 print BR[i];
1012 }
1013 }
1c955424 1014
f1991554 1015 close(changelog_file)
1016 while ((getline < changelog_file) > 0)
1017 print
1018 system("rm -f " changelog_file)
48c6019c 1019
1c52b18e
SZ
1020 if (did_clean == 0) {
1021 print ""
1022 print "%clean"
1023 print "rm -rf $RPM_BUILD_ROOT"
1024 }
1025
dda3eaa5
SZ
1026 if (date == 0) {
1027 print ""
1028 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1029 }
f171fd40 1030
1c955424 1031 if (has_changelog == 0) {
1395ea1c 1032 print "%changelog"
b6875e34 1033 }
dda3eaa5 1034
1c955424 1035 if (boc > 2) {
5bdbef27 1036 print "* %{date} PLD Team <feedback@pld-linux.org>"
b6875e34 1037 }
d31b8a48 1038 if (boc > 1) {
f818cd64 1039 printf "All persons listed below can be reached at "
5bdbef27 1040 print "<cvs_login>@pld-linux.org\n"
a1aa4976 1041 }
1c955424 1042 if (boc > 0) {
d31b8a48 1043 print "$" "Log:$"
b6875e34 1044 }
bf0a58ea 1045}
1046
fd8718a5 1047# substitutes fixed strings (not regexps)
98e37f1f 1048function fixedsub(s1,s2,t, ind) {
7a72f436 1049 if (ind = index(t,s1))
1050 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1051 return t
fd8718a5
SZ
1052}
1053
98e37f1f
ER
1054# replace s with s2 if it equals to s1
1055function replace(s, s1, s2) {
1056 if (s == s1) {
1057 return s2;
1058 } else {
1059 return s;
1060 }
1061}
1062
8b1938ea 1063# There should be one or two tabs after the colon.
1064function format_preamble()
1065{
57caba32 1066 if (/^#/ || /^%bcond_with/) {
08f60a73
ER
1067 return;
1068 }
aec1bddb 1069 sub(/:[ \t]*/, ":")
2b94cfb4
ER
1070 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1071 if (RLENGTH < 8) {
aec1bddb 1072 sub(/:/, ":\t\t")
b6875e34 1073 } else {
aec1bddb 1074 sub(/:/, ":\t")
b6875e34 1075 }
8b1938ea 1076 }
1077}
1078
43c05c3c 1079# Replace directly specified directories with macros
1080function use_macros()
1081{
13b24a87
ER
1082 # -m, --skip-macros, --no-macros -- skip macros subst
1083 if (ENVIRON["SKIP_MACROS"]) {
1084 return
1085 }
1086
b05d5275
ER
1087 # leave inline sed lines alone
1088 if (/(%{__sed}|sed) -i -e/) {
1089 return;
1090 }
1091
b6875e34
ER
1092 sub("%{_defaultdocdir}", "%{_docdir}");
1093 sub("%{_bindir}/perl", "%{__perl}");
1094 sub("%{_bindir}/python", "%{__python}");
36d9a33d 1095
a372a159
ER
1096 gsub(infodir, "%{_infodir}")
1097
336c1a4f
ER
1098 gsub(perl_sitearch, "%{perl_sitearch}")
1099 gsub(perl_archlib, "%{perl_archlib}")
1100 gsub(perl_privlib, "%{perl_privlib}")
336c1a4f
ER
1101 gsub(perl_vendorlib, "%{perl_vendorlib}")
1102 gsub(perl_vendorarch, "%{perl_vendorarch}")
1103 gsub(perl_sitelib, "%{perl_sitelib}")
9732cb3d
ER
1104
1105 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
4ab1678b 1106 gsub(py_sitedir, "%{py_sitedir}")
1bdf7824 1107 gsub(py_scriptdir, "%{py_scriptdir}")
4a62fb54 1108 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
22ee0568 1109 gsub("%{python_sitelib}", "%{py_sitedir}")
6f2c1099
ER
1110
1111 gsub(ruby_archdir, "%{ruby_archdir}")
1112 gsub(ruby_ridir, "%{ruby_ridir}")
1113 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1114 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1115 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1116
4a62fb54
ER
1117 gsub("%{_datadir}/applications", "%{_desktopdir}")
1118 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
ee9487af 1119 gsub("%{_datadir}/java", "%{_javadir}")
336c1a4f 1120
e00f41b5 1121 gsub(libdir, "%{_libdir}")
ee9487af 1122 gsub(javadir, "%{_javadir}")
e00f41b5 1123
aec1bddb 1124 gsub(bindir, "%{_bindir}")
74edc57e 1125 gsub("%{prefix}/bin", "%{_bindir}")
b05d5275 1126 if (prefix"/bin" == bindir)
0080f34c 1127 gsub("%{_prefix}/bin", "%{_bindir}")
74edc57e 1128
de69503c 1129 for (c = 1; c <= NF; c++) {
1130 if ($c ~ sbindir "/fix-info-dir")
1131 continue;
3457b4f7
ER
1132 if ($c ~ sbindir "/webapp")
1133 continue;
a372a159
ER
1134 if ($c ~ sbindir "/ldconfig")
1135 continue;
4837c1e3
ER
1136 if ($c ~ sbindir "/chsh")
1137 continue;
1138 if ($c ~ sbindir "/usermod")
1139 continue;
f06959ff
ER
1140 if ($c ~ sbindir "/chkconfig")
1141 continue;
836e411f
ER
1142 if ($c ~ sbindir "/installzope(product|3package)")
1143 continue;
de69503c 1144 gsub(sbindir, "%{_sbindir}", $c)
1145 }
1146
74edc57e 1147 gsub("%{prefix}/sbin", "%{_sbindir}")
836e411f 1148 if (prefix"/sbin" == sbindir) {
5e1d0492 1149 gsub("%{_prefix}/sbin", "%{_sbindir}")
836e411f 1150 }
74edc57e 1151
353f5eea 1152 for (c = 1; c <= NF; c++) {
0965a1a0 1153 if ($c ~ sysconfdir "/{?cron.")
de69503c 1154 continue;
0080f34c 1155 if ($c ~ sysconfdir "/{?crontab.d")
807a0f6b 1156 continue;
6c178315
ER
1157 if ($c ~ sysconfdir "/{?env.d")
1158 continue;
90a421f5 1159 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
554d6b98 1160 continue;
5d7c48a4
ER
1161 if ($c ~ sysconfdir "/{?udev")
1162 continue;
1163 if ($c ~ sysconfdir "/{?hotplug")
e61b5989 1164 continue;
0080f34c 1165 if ($c ~ sysconfdir "/{?logrotate.d")
353f5eea 1166 continue;
0080f34c 1167 if ($c ~ sysconfdir "/{?pam.d")
a9b2c8c7 1168 continue;
0080f34c 1169 if ($c ~ sysconfdir "/{?profile.d")
66ef7810 1170 continue;
0080f34c 1171 if ($c ~ sysconfdir "/{?rc.d")
9ad7f20b 1172 continue;
0080f34c 1173 if ($c ~ sysconfdir "/{?security")
a9b2c8c7 1174 continue;
0080f34c 1175 if ($c ~ sysconfdir "/{?skel")
c21d1979 1176 continue;
0080f34c 1177 if ($c ~ sysconfdir "/{?sysconfig")
66ef7810 1178 continue;
6e985933
ER
1179 if ($c ~ sysconfdir "/{?shrc.d")
1180 continue;
7c73bc0f
ER
1181 if ($c ~ sysconfdir "/{?certs")
1182 continue;
de5d18d8
ER
1183 if ($c ~ sysconfdir "/{?X11")
1184 continue;
5debd9f6
ER
1185 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1186 continue;
ff21ed9e
ER
1187 if ($c ~ sysconfdir "/{?rpm")
1188 continue;
57caba32 1189 if ($c ~ sysconfdir "/{?bash_completion.d")
6e985933 1190 continue;
57caba32 1191 if ($c ~ sysconfdir "/{?samba")
9292b547 1192 continue;
52a943cf
ER
1193 if ($c ~ sysconfdir "/shells")
1194 continue;
5dc7f5e4
ER
1195 if ($c ~ sysconfdir "/ppp")
1196 continue;
9395915a
ER
1197 if ($c ~ sysconfdir "/dbus-1")
1198 continue;
be827f42
ER
1199 if ($c ~ sysconfdir "/tmpwatch")
1200 continue;
353f5eea 1201 gsub(sysconfdir, "%{_sysconfdir}", $c)
1202 }
74edc57e 1203
c2b069de 1204 gsub(docdir, "%{_docdir}")
7cb79e98
ER
1205
1206 gsub(kdedocdir, "%{_kdedocdir}")
1207
1208 gsub(gtkdocdir, "%{_gtkdocdir}")
1209 gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1210
57caba32 1211 gsub(php_pear_dir, "%{php_pear_dir}")
4b1d6e6d 1212 gsub(php_data_dir, "%{php_data_dir}")
c2b069de 1213
c4adc376
ER
1214 for (c = 1; c <= NF; c++) {
1215 if ($c ~ datadir "/automake")
1216 continue;
13670287
ER
1217 if ($c ~ datadir "/unsermake")
1218 continue;
a9fb2db8
ER
1219 if ($c ~ datadir "/file/magic.mime")
1220 continue;
c4adc376
ER
1221 gsub(datadir, "%{_datadir}", $c)
1222 }
1223
74edc57e 1224 gsub("%{prefix}/share", "%{_datadir}")
c4adc376 1225 if (prefix"/share" == datadir)
0080f34c 1226 gsub("%{_prefix}/share", "%{_datadir}")
74edc57e 1227
826b40ea
ER
1228 # CFLAGS="-I/usr/include/ncurses is usually correct.
1229 if (!/-I\/usr\/include/) {
1230 gsub(includedir, "%{_includedir}")
1231 }
1232
74edc57e 1233 gsub("%{prefix}/include", "%{_includedir}")
826b40ea 1234 if (prefix"/include" == includedir) {
0080f34c 1235 gsub("%{_prefix}/include", "%{_includedir}")
826b40ea 1236 }
74edc57e 1237
aec1bddb 1238 gsub(mandir, "%{_mandir}")
826b40ea 1239 if ($0 !~ "%{_datadir}/manual") {
5e1d0492 1240 gsub("%{_datadir}/man", "%{_mandir}")
826b40ea 1241 }
9ce0df66 1242 gsub("%{_prefix}/share/man", "%{_mandir}")
1243 gsub("%{prefix}/share/man", "%{_mandir}")
74edc57e 1244 gsub("%{prefix}/man", "%{_mandir}")
1245 gsub("%{_prefix}/man", "%{_mandir}")
1246
aec1bddb 1247 gsub(infodir, "%{_infodir}")
74edc57e 1248 gsub("%{prefix}/info", "%{_infodir}")
1249 gsub("%{_prefix}/info", "%{_infodir}")
1250
0965a1a0 1251 if (prefix !~ "/X11R6") {
1252 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1253 }
cfbf94ec 1254
2a638fcb 1255 gsub(examplesdir, "%{_examplesdir}")
7c6b85c4 1256
efd2d668 1257 if (prefix != "/") {
a9fb2db8
ER
1258 # leave --with-foo=/usr alone
1259 if ($0 !~ "--with.*=.*" prefix) {
1260 for (c = 1; c <= NF; c++) {
1261 if ($c ~ prefix "/sbin/fix-info-dir")
1262 continue;
3457b4f7
ER
1263 if ($c ~ prefix "/sbin/webapp")
1264 continue;
4837c1e3
ER
1265 if ($c ~ prefix "/sbin/chsh")
1266 continue;
1267 if ($c ~ prefix "/sbin/usermod")
1268 continue;
836e411f
ER
1269 if ($c ~ prefix "/sbin/installzope(product|3package)")
1270 continue;
a9fb2db8
ER
1271 if ($c ~ prefix "/share/automake")
1272 continue;
1273 if ($c ~ prefix "/share/unsermake")
1274 continue;
1275 if ($c ~ prefix "/lib/sendmail")
1276 continue;
97dae8dc
ER
1277 if ($c ~ prefix "/lib/pkgconfig")
1278 continue;
826b40ea 1279
b5fc4b79
ER
1280 # CFLAGS="-I/usr..." is usually correct.
1281 if (/-I\/usr/)
826b40ea 1282 continue;
474f0944
ER
1283 # same for LDFLAGS="-L/usr..."
1284 if (/-L\/usr/)
1285 continue;
826b40ea 1286
a9fb2db8
ER
1287 gsub(prefix, "%{_prefix}", $c)
1288 }
de69503c 1289 }
efd2d668 1290 gsub("%{prefix}", "%{_prefix}")
1291 }
3bcd1fab 1292
53d16b95
ER
1293 # replace back
1294 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1295 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1296
3bcd1fab 1297 gsub("%{PACKAGE_VERSION}", "%{version}")
1298 gsub("%{PACKAGE_NAME}", "%{name}")
b35c10f1 1299
59e208d5 1300 gsub("^make$", "%{__make}")
1301 gsub("^make ", "%{__make} ")
61b753c5 1302 gsub("^gcc ", "%{__cc} ")
67fe737e 1303 gsub("^rm --interactive=never ", "%{__rm} ")
9aece8c8 1304
cab706de
ER
1305 # mandrake specs
1306 gsub("^%make$", "%{__make}")
1307 gsub("^%make ", "%{__make} ")
1308 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
b7ca53a5 1309 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
63d47bae 1310 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
cab706de 1311 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b7ca53a5 1312 gsub("^%{__install}", "install")
cab706de
ER
1313 gsub("%optflags", "%{rpmcflags}")
1314 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1315
a6ed8b03 1316 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
d11acde9 1317 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
5e15e952
ER
1318 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1319 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
63d47bae 1320 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
43f8581a 1321 $0 = fixedsub("%__install", "install", $0);
63d47bae 1322
740e3cd8
ER
1323 # split configure line to multiple lines
1324 if (/%configure / && !/\\$/) {
1325 $0 = format_configure($0);
1326 }
1327
ac779c71
ER
1328 gsub("%_bindir", "%{_bindir}")
1329 gsub("%_datadir", "%{_datadir}")
1330 gsub("%_iconsdir", "%{_iconsdir}")
c2b069de
ER
1331 gsub("%_sbindir", "%{_sbindir}")
1332 gsub("%_mandir", "%{_mandir}")
1333 gsub("%name", "%{name}")
b6875e34
ER
1334 gsub(/%__rm/, "rm");
1335 gsub(/%__mkdir_p/, "install -d");
1336 gsub(/%__cp/, "cp");
1337 gsub(/%__ln_s/, "ln -s");
1338 gsub(/%__sed/, "%{__sed}");
1339 gsub(/%__cat/, "cat");
1340 gsub(/%__chmod/, "chmod");
a6ed8b03 1341
9aece8c8 1342 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1343 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1c955424 1344
ecaaa784 1345 if (/^ant / || /^%{ant}/) {
1c955424 1346 sub(/^ant/, "%ant")
ecaaa784 1347 sub(/^%{ant}/, "%ant")
b6875e34
ER
1348 add_br("BuildRequires: jpackage-utils");
1349 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1350 }
1c955424 1351
2dc1a8cd
ER
1352 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1353 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
9ae21f47 1354}
f171fd40 1355
740e3cd8
ER
1356function format_configure(line, n, a, s) {
1357 n = split(line, a, / /);
1358 s = a[1] " \\\n";
1359 for (i = 2; i <= n; i++) {
1360 s = s "\t" a[i] " \\\n"
1361 }
1362 return s
1363}
1364
7c23055b
ER
1365
1366# insertion sort of A[1..n]
1367# copied from mawk manual
1368function isort(A,n, i,j,hold) {
1369 for (i = 2; i <= n; i++) {
1370 hold = A[j = i]
1371 while (A[j-1] > hold) {
54caef3d 1372 j-- ; A[j+1] = A[j]
1373 }
7c23055b
ER
1374 A[j] = hold
1375 }
1376 # sentinel A[0] = "" will be created if needed
1377}
1378
1379
23e0529e 1380function use_files_macros( i, n, t, a, l)
eee34ffb 1381{
e6f1551d
ER
1382 use_macros()
1383
da6457aa
ER
1384 # skip comments
1385 if (/^#/) {
484bbf6d 1386 return 1;
da6457aa
ER
1387 }
1388
f158eddc
ER
1389 sub("^%doc %{_mandir}", "%{_mandir}")
1390
eee34ffb 1391 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1392 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
7c23055b 1393
61cb9711
ER
1394 # uid/gid nobody is not valid in %files
1395 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1396 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1397 }
1398
16bb0647
JB
1399 # s[gu]id programs with globs are evil
1400 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1401 $0 = $0 " # FIXME no globs for suid/sgid files"
85bed066
ER
1402 }
1403
5dc673eb 1404 # replace back
8f6ddcd9 1405 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
3feaeac8 1406 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
8f6ddcd9
ER
1407 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1408 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1409 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1410 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1411 gsub("%{_sysconfdir}/security", "/etc/security")
1412 gsub("%{_sysconfdir}/skel", "/etc/skel")
1413 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1414 gsub("%{_sysconfdir}/certs", "/etc/certs")
5dc673eb 1415 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
9395915a 1416 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
be827f42
ER
1417 gsub("%{_sysconfdir}/pki", "/etc/pki")
1418 gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
2fc0e274 1419
5dc673eb
ER
1420 # /etc/init.d -> /etc/rc.d/init.d
1421 if (!/^\/etc\/init\.d$/) {
1422 gsub("/etc/init.d", "/etc/rc.d/init.d")
1423 }
1424
1425 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
2fc0e274
ER
1426 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1427 $0 = "%attr(754,root,root) " $0
1428 }
1429 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
89c604c7 1430 gsub("^%attr\\(... *,", "%attr(754,");
2fc0e274 1431 }
9a7a5776
ER
1432 }
1433
71a4728c 1434 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
55356feb
ER
1435 $0 = "%attr(755,root,root) " $0
1436 }
1437
ab9b09e2
ER
1438 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1439 $0 = "%attr(755,root,root) " $0
1440 }
1441
f56d5519
ER
1442 # /etc/sysconfig files
1443 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
a825b76b 1444 # attr not required, allow default 644 attr
6ea64b8d 1445 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
6ea0907e 1446 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
5dc673eb
ER
1447 gsub("%config", "%config(noreplace)")
1448 }
f56d5519 1449
6ea0907e 1450 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
5dc673eb
ER
1451 $NF = "%config(noreplace) " $NF
1452 }
f56d5519 1453
5dc673eb 1454 if (/\/etc\/sysconfig\// && /%attr\(755/) {
89c604c7 1455 gsub("^%attr\\(... *,", "%attr(640,");
5dc673eb 1456 }
f56d5519 1457
5dc673eb
ER
1458 if (/\/etc\/sysconfig\// && !/%verify/) {
1459 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1460 }
a825b76b
ER
1461 }
1462
f56d5519 1463 # kill leading zeros
7dfb4dea
ER
1464 if (/%attr\(0[1-9]/) {
1465 gsub("%attr\\(0", "%attr(")
1466 }
f9d5d512 1467
95ae7268 1468 # kill leading whitespace
b8085249 1469 gsub(/^ +/, "");
95ae7268 1470
b6875e34
ER
1471 # kill default attrs
1472 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1473 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1474 if (!/%dir/) {
1475 gsub(/%attr\(644,root,root\) /, "");
1476 }
46292535 1477
7c23055b 1478 # sort %verify attrs
12bfc5c8 1479 if (match($0, /%verify\(not([^)]+)\)/)) {
7c23055b 1480 t = substr($0, RSTART, RLENGTH)
8409a9b2
ER
1481 # kill commas: %verify(not,md5,size,mtime)
1482 gsub(/,/, " ", t);
1483
7c23055b
ER
1484 gsub(/^%verify\(not |\)$/, "", t)
1485 n = split(t, a, / /)
1486 isort(a, n)
1487
1488 s = "%verify(not"
1489 for (i = 1 ; i <= n; i++) {
1490 s = s " " a[i]
1491 }
1492 s = s ")"
1493
12bfc5c8 1494 gsub(/%verify\(not[^)]+\)/, s)
7c23055b 1495 }
13defa79
ER
1496
1497 if (/%{_mandir}/) {
d64e2ec0 1498 gsub("\.gz$", "*")
13defa79 1499 }
5e15e952 1500
ef6d2b7a 1501 # locale dir and no %lang -> bad
b9080a1b 1502 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
ef6d2b7a
ER
1503 $(NF + 1) = "# FIXME consider using %find_lang"
1504 }
1505
23e0529e 1506 # python egg-infos
860a6f52 1507 if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
484bbf6d
ER
1508 # tests:
1509 #%{py_sitedir}/*-py2.4.egg-info
1510 #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
1511 #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
1512 #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
1513
860a6f52 1514 l = index($0, "/");
484bbf6d 1515 t = substr($0, 0, l);
23e0529e 1516 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
860a6f52 1517 if (match(s, "[^-]+$")) {
484bbf6d
ER
1518#printf("s[%s]; start[%d]; length[%d]\n", s, RSTART, RLENGTH);
1519 if (RSTART > 1) {
1520 s = substr(s, 0, RSTART - 1);
5384172a 1521 }
484bbf6d 1522#printf("s2[%s]\n", s);
23e0529e 1523 print "%if \"%{py_ver}\" > \"2.4\""
484bbf6d 1524#print t "/.+.egg-info"
860a6f52 1525 gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
23e0529e
ER
1526 print
1527 print "%endif"
484bbf6d 1528 return 0;
23e0529e
ER
1529 }
1530 }
1531
5e15e952
ER
1532 # atrpms
1533 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1534 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1535 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
97dae8dc
ER
1536
1537 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1538 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1539 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
eee20d8d
ER
1540
1541 gsub("%{_datadir}/applications", "%{_desktopdir}");
9730a549 1542 gsub("%{_datadir}/icons", "%{_iconsdir}");
0904210e 1543 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
4b1d6e6d
ER
1544 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1545 gsub("%{_datadir}/php", "%{php_data_dir}");
484bbf6d
ER
1546
1547 return 1
eee34ffb 1548}
236b87ac 1549
723ce732
ER
1550function use_script_macros()
1551{
1552 if (gsub("/sbin/service", "%service")) {
1553 sub(" >/dev/null 2>&1 \|\|:", "");
1554 sub(" 2> /dev/null \|\| :", "");
1555 }
1556}
1557
236b87ac 1558function fill(ch, n, i) {
1559 for (i = 0; i < n; i++)
1560 printf("%c", ch)
1561}
1562
1563function format_flush(line, indent, newline, word, first_word) {
1564 first_word = 1
f171fd40 1565 if (format_indent == -1)
236b87ac 1566 newline = ""
1567 else
1568 newline = fill(" ", format_indent) "- "
1569
1570 while (match(line, /[^\t ]+/)) {
1571 word = substr(line, RSTART, RLENGTH)
1572 if (length(newline) + length(word) + 1 > tw) {
1573 print newline
f171fd40 1574
236b87ac 1575 if (format_indent == -1)
1576 newline = ""
1577 else
1578 newline = fill(" ", format_indent + 2)
1579 first_word = 1
1580 }
1581
1582 if (first_word) {
1583 newline = newline word
1584 first_word = 0
1585 } else
1586 newline = newline " " word
f171fd40 1587
236b87ac 1588 line = substr(line, RSTART + RLENGTH)
1589 }
1590 if (newline ~ /[^\t ]/) {
1591 print newline
1592 }
1593}
1594
eb4bf70e 1595function cflags(var)
1596{
85e708f2 1597 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1598 removed[var] = 1
eb4bf70e 1599 return 0
85e708f2 1600 }
f171fd40 1601
246ad57e 1602 if (!/!\?debug/)
fde8f52a 1603 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
eb4bf70e 1604 return 1
1605}
0ea7c3cd 1606
8ea8f0ae
ER
1607function unify_url(url)
1608{
1609
1610 # sourceforge urls
1611 sub("[?&]big_mirror=.*$", "", url);
1612 sub("[?&]modtime=.*$", "", url);
1613 sub("[?]use_mirror=.*$", "", url);
1614 sub("[?]download$", "", url);
1615
1616 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1617 sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", url)
1618 sub("^http://download\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1619 sub("^http://downloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1620
1621 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1622 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", url)
1623 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", url)
1624
1625 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1626 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1627
1628 # apache urls
1629 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1630
11401cd0 1631 # gnu.org
22753e56 1632 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
29c65f09 1633 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
11401cd0 1634
8ea8f0ae
ER
1635 return url
1636}
1637
4e26c5f2
ER
1638function demacroize(str)
1639{
8f7c516b
ER
1640 if (mod_name) {
1641 sub("%{mod_name}", mod_name, str);
1642 }
1643 if (name) {
1644 sub("%{name}", name, str);
1645 }
4e26c5f2
ER
1646 if (version) {
1647 sub("%{version}", version, str);
1648 }
1649 if (_beta) {
1650 sub("%{_beta}", _beta, str);
1651 }
1652 if (_rc) {
1653 sub("%{_rc}", _rc, str);
1654 }
59de1799
ER
1655 if (_pre) {
1656 sub("%{_pre}", _pre, str);
1657 }
4e26c5f2
ER
1658 if (_snap) {
1659 sub("%{_snap}", _snap, str);
1660 }
3c5e6e5f
ER
1661 if (subver) {
1662 sub("%{subver}", subver, str);
1663 }
4e26c5f2
ER
1664 return str;
1665}
1666
0ea7c3cd
ER
1667function kill_preamble_macros()
1668{
a64d362e
ER
1669 if ($1 ~ /^Obsoletes:/) {
1670 # NB! assigning $2 a value breaks tabbing
1671 $2 = demacroize($2);
1672 }
1673 if ($1 ~ /^URL:/) {
8f7c516b 1674 # NB! assigning $2 a value breaks tabbing
4e26c5f2 1675 $2 = demacroize($2);
ec30d23e 1676 $2 = unify_url($2)
0ea7c3cd
ER
1677 }
1678}
ba377afe 1679
9815f9b2
ER
1680function get_epoch(pkg, ver, epoch)
1681{
cccfa553
ER
1682 return
1683# should parse the BR lines more adequately:
1684# freetype = 2.0.0 -> correct
1685# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1686
9815f9b2
ER
1687 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1688 shell | getline epoch;
1689 return epoch;
1690}
1691
ba377afe 1692function format_requires(tag, value, n, p, i, deps, ndeps) {
87b130e2
ER
1693 # skip any formatting for commented out items or some weird macros
1694 if (/^#/ || /%\(/) {
3f81d059
ER
1695 return tag "\t" value
1696 }
ba377afe
ER
1697 n = split(value, p, / *,? */);
1698 for (i = 1; i <= n; i++) {
1699 if (p[i+1] ~ /[<=>]/) {
9815f9b2
ER
1700 # add epoch if the version doesn't have it but BuildRequires.txt has
1701 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1702 epoch = get_epoch(p[i], p[i+2])
1703 if (epoch) {
1704 p[i+2] = epoch ":" p[i+2];
1705 }
1706 }
ba377afe
ER
1707 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1708 i += 2;
1709 } else {
1710 deps[ndeps++] = p[i];
1711 }
1712 }
1713 s = ""
1714 for (i in deps) {
1715 s = s sprintf("%s\t%s\n", tag, deps[i]);
1716 }
1717 return substr(s, 1, length(s)-1);
1718}
6ebff802
ER
1719
1720function use_tabs()
1721{
1722 # reverse vim: ts=4 sw=4 et
1723 gsub(/ /, "\t");
1724}
1c955424
ER
1725
1726function add_br(br)
1727{
b6875e34 1728 BR[BR_count++] = br
1c955424
ER
1729}
1730
92fa789e
ER
1731function replace_requires()
1732{
1733
1734 # jpackages
1735 sub(/^java-devel$/, "jdk", $2);
1736 sub(/^log4j$/, "logging-log4j", $2);
1737 sub(/^jakarta-log4j$/, "logging-log4j", $2);
1738 sub(/^oro$/, "jakarta-oro", $2);
1739 sub(/^jakarta-ant$/, "ant", $2);
1740 sub(/^xerces-j2$/, "xerces-j", $2);
1741 sub(/^ldapjdk$/, "ldapsdk", $2);
1742 sub(/^saxon-scripts$/, "saxon", $2);
1743 sub(/^xalan-j2$/, "xalan-j", $2);
1744 sub(/^xerces-j2$/, "xerces-j", $2);
1745 sub(/^gnu-regexp$/, "gnu.regexp", $2);
1746
1747 # redhat virtual
1748 sub(/^tftp-server$/, "tftpdaemon", $2);
1749
76c234fd 1750 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
03180d14 1751 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
76c234fd 1752
06509408
ER
1753 # fedora
1754 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1755
92fa789e
ER
1756 replace_php_virtual_deps()
1757}
1758
30cd4686
ER
1759# php virtual deps as discussed in devel-en
1760function replace_php_virtual_deps()
1761{
b6875e34
ER
1762 pkg = $2
1763# if (pkg == "php-program") {
1764# $0 = $1 "\t/usr/bin/php"
1765# return
1766# }
1767
f72c52cf
ER
1768# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1769# sub(/^php-/, "php(", pkg);
1770# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1771# $2 = pkg
1772# }
b6875e34
ER
1773
1774 if (pkg ~/^php$/) {
1775 $2 = "webserver(php)";
1776 if ($4 ~ /^[0-9]:/) {
1777 $4 = substr($4, 3);
1778 }
1779 }
1780
1781 if (pkg ~/^php4$/) {
1782 $2 = "webserver(php)";
1783 if ($4 ~ /^[0-9]:/) {
1784 $4 = substr($4, 3);
1785 }
1786 }
30cd4686
ER
1787}
1788
ad9ea417
ER
1789function replace_groupnames(group)
1790{
98e37f1f
ER
1791 group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
1792 group = replace(group, "Application/Multimedia", "Applications/Multimedia");
1793 group = replace(group, "Application/System", "Applications/System");
1794 group = replace(group, "Applications/Compilers", "Development/Languages");
1795 group = replace(group, "Applications/Daemons", "Daemons");
1796 group = replace(group, "Applications/Internet", "Applications/Networking");
1797 group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
1798 group = replace(group, "Applications/Productivity", "X11/Applications");
1799 group = replace(group, "Database", "Applications/Databases");
1800 group = replace(group, "Development/C", "Development/Libraries");
1801 group = replace(group, "Development/Code Generators", "Development");
1802 group = replace(group, "Development/Docs", "Documentation");
1803 group = replace(group, "Development/Documentation", "Documentation");
1804 group = replace(group, "Development/Java", "Development/Languages/Java");
1805 group = replace(group, "Development/Languages/Other", "Development/Languages");;
1806 group = replace(group, "Development/Languages/Ruby", "Development/Languages");
1807 group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
1808 group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
1809 group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
1810 group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
1811 group = replace(group, "Development/Other", "Development");
1812 group = replace(group, "Development/Python", "Development/Languages/Python");
1813 group = replace(group, "Development/Testing", "Development");
1814 group = replace(group, "Emulators", "Applications/Emulators");
1815 group = replace(group, "Games", "Applications/Games");
1816 group = replace(group, "Library/Development", "Development/Libraries");
1817 group = replace(group, "Networking/Deamons", "Networking/Daemons");
1818 group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
1819 group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
1820 group = replace(group, "Shells", "Applications/Shells");
1821 group = replace(group, "System Environment/Base", "Base");
1822 group = replace(group, "System Environment/Daemons", "Daemons");
1823 group = replace(group, "System Environment/Kernel", "Base/Kernel");
1824 group = replace(group, "System Environment/Libraries", "Libraries");
1825 group = replace(group, "System", "Base");
1826 group = replace(group, "System/Base", "Base");
1827 group = replace(group, "System/Kernel and hardware", "Base/Kernel");
1828 group = replace(group, "System/Libraries", "Libraries");
1829 group = replace(group, "System/Servers", "Daemons");
1830 group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
1831 group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
1832 group = replace(group, "Web/Database", "Applications/WWW");
1833 group = replace(group, "X11/GNOME", "X11/Applications");
1834 group = replace(group, "X11/GNOME/Applications", "X11/Applications");
1835 group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
1836 group = replace(group, "X11/Games", "X11/Applications/Games");
1837 group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
1838 group = replace(group, "X11/Library", "X11/Libraries");
1839 group = replace(group, "X11/Utilities", "X11/Applications");
1840 group = replace(group, "X11/XFree86", "X11");
1841 group = replace(group, "X11/Xserver", "X11/Servers");
ad9ea417
ER
1842
1843 return group;
1844}
1845
2b94cfb4 1846# vim:ts=4:sw=4
This page took 0.432378 seconds and 4 git commands to generate.