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